/*
========================
main area start
========================
*/

@font-face {
    font-family: 'Gilroy-Medium';
    src: url(fonts/gilroy-medium.ttf);
}

@font-face {
    font-family: 'Gilroy-SemiBold';
    src: url(fonts/gilroy-semibold.ttf);
}

*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy-Medium';
    font-family: 'Gilroy-SemiBold';
    font-size: 20px;
    background: #ffffff;
    color: #2B2B2B;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.container820 {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.link-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fierce-social-container {
    margin-top: -150px;
    position: relative;
    z-index: 999;
}

.go-fierce-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: bottom center;;
}

.go-fierce-logo {
    margin-bottom: 10px;
}

.go-fierce-logo>a {
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 180px;
    height: 180px;
    background: #ffffff;
    border-radius: 50%;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-fierce-logo>a div {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-fierce-logo>a div img {
    width: 100%;
    max-width: 116px;
    border-radius: 70px;
}

.go-fierce-content {
    margin-top: 20px;
}

.go-fierce-content ul li a {
    width: 100%;
    max-width: 520px;
    min-height: 50px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Gilroy-SemiBold';
    text-decoration: none;
    font-size: 16px;
    color: #2B2B2B;
    border: 1px solid #000;
    border-radius: 50px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 5;
    transition: 0.4s;
}

.go-fierce-content ul li a::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    top: 0;
    left: 0;
    background-color: #000;
    color: #fff;
    z-index: -1;
    transition: 0.4s;
    transform: scale(.8);
    opacity: 0;
}

.go-fierce-content ul li a:hover:after {
    transform: scale(1);
    opacity: 1;
}

.go-fierce-content ul li a:hover {
    color: #fff;
}

.go-fierce-content ul li a.active::after,.go-fierce-content ul li a.active {
    color: #fff !important; 
    transition: 0.4s;
    transform: scale(1);
    opacity: 1;
}

.go-fierce-content ul li a>div {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.go-fierce-content ul li:nth-child(1) a div img {
    width: 25px;
}

.go-fierce-content ul li:nth-child(1) a {
    background-color: #eae1d7 !important;
    color: #000 !important;
}

.go-fierce-content ul li:nth-child(1) a::after {
    background-color: #000 !important;
}

.go-fierce-content ul li:nth-child(1) a:hover,
.go-fierce-content ul li:nth-child(1) a.active {
    color: #fff !important;
}

.go-fierce-content ul li a:hover div i:last-child {
    animation: pulse 0.3s ease-in-out infinite;
}

.go-fierce-content ul li a div i:last-child {
    font-size: 18px;
    transform: rotate(-48deg);
}

.go-fierce-content ul li:nth-child(2) a div i:first-child {
    font-size: 20px;
}

.go-fierce-content ul li:nth-child(3) a div i:first-child {
    font-size: 25px;
}

.go-fierce-content ul li:nth-child(4) a div i:first-child {
    font-size: 25px;
}

.go-fierce-content ul li:nth-child(5) a div i:first-child {
    font-size: 19px;
}

.go-fierce-title h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.go-fierce-content .social-btn .icon-white {
    display: none;
}
.go-fierce-content .social-btn.active .icon-black,
.go-fierce-content .social-btn:hover .icon-black {
    display: none !important;
}
.go-fierce-content .social-btn.active .icon-white,
.go-fierce-content .social-btn:hover .icon-white {
    display: block;
}

footer {
    padding: 15px 0;
    background-color: #000;
    margin-top: 13px;
    position: sticky;
    bottom: 0;
    z-index: 999;
}

footer h6 {
    font-family: 'Gilroy-Medium';
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
}


/* logo hover effect */
.effect-1 {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
}

.effect-1:hover {
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.effect-1:hover:after {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1.2, 1.2);
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -o-transition: -o-transform 0.2s;
    transition: transform 0.2s;
    -webkit-box-shadow: 0 0 0 2px #000;
    -moz-box-shadow: 0 0 0 2px #000;
    box-shadow: 0 0 0 2px #000;
}

.effect-1:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 100%;
    width: 100%;
    padding: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -moz-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-transform: scale(0.7, 0.7);
    -moz-transform: scale(0.7, 0.7);
    -ms-transform: scale(0.7, 0.7);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -o-transition: -o-transform 0.2s;
    transition: transform 0.2s;
}