@font-face {
    font-family:OpenSans;
    src: url(/assets/fonts/OpenSans.eot);
    src: url(/assets/fonts/OpenSans.eot?#iefix) format("embedded-opentype"),url(/assets/fonts/OpenSans.woff) format("woff"),url(/assets/fonts/OpenSans.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

 

@font-face {
    font-family: OpenSans;
    src: url(/assets/fonts/OpenSans-Semibold.eot);
    src: url(/assets/fonts/OpenSans-Semibold.eot?#iefix) format("embedded-opentype"),url(/assets/fonts/OpenSans-Semibold.woff) format("woff"),url(/assets/fonts/OpenSans-Semibold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

 

@font-face {
    font-family: OpenSans;
    src: url(/assets/fonts/OpenSans-SemiboldItalic.eot);
    src: url(/assets/fonts/OpenSans-SemiboldItalic.eot?#iefix) format("embedded-opentype"),url(/assets/fonts/OpenSans-SemiboldItalic.woff) format("woff"),url(/assets/fonts/OpenSans-SemiboldItalic.ttf) format("truetype");
    font-weight: 600;
    font-style: italic;
    font-display: swap
}

 

@font-face {
    font-family: OpenSans;
    src: url(/assets/fonts/OpenSans-Bold.eot);
    src: url(/assets/fonts/OpenSans-Bold.eot?#iefix) format("embedded-opentype"),url(/assets/fonts/OpenSans-Bold.woff) format("woff"),url(/assets/fonts/OpenSans-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

 

@font-face {
    font-family: ADPortsGroup;
    src: url(/assets/fonts/ADPortsGroup-Regular.eot);
    src: url(/assets/fonts/ADPortsGroup-Regular.eot?#iefix) format("embedded-opentype"),url(/assets/fonts/ADPortsGroup-Regular.woff) format("woff"),url(/assets/fonts/ADPortsGroup-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

 

@font-face {
    font-family: ADPortsGroup;
    src: url(/assets/fonts/ADPortsGroup-Bold.eot);
    src: url(/assets/fonts/ADPortsGroup-Bold.eot?#iefix) format("embedded-opentype"),url(/assets/fonts/ADPortsGroup-Bold.woff) format("woff"),url(/assets/fonts/ADPortsGroup-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

 

@font-face {
    font-family: ADPortsGroup;
    src: url(/assets/fonts/ADPortsGroup-Light.eot);
    src: url(/assets/fonts/ADPortsGroup-Light.eot?#iefix) format("embedded-opentype"),url(/assets/fonts/ADPortsGroup-Light.woff) format("woff"),url(/assets/fonts/ADPortsGroup-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap
}
body {
    font-family: "ADPortsGroup", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url("/assets/images/ports-bg.png") no-repeat center bottom fixed;
    background-size: cover;
    color: #fff;
    padding-top:0 !important;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(45, 57, 85, 1);
        opacity: 0.5;
        z-index: 0;
        z-index: 0;
    }

header,
main,
footer {
    position: relative;
    z-index: 1;
}

/* HEADER */
header {
    display: flex;
    justify-content: center;
    padding: 60px 20px 0px;
}

.logo img {
    max-width: 520px;
    width: 100%;
}

/* MAIN */
main {
    flex: 1;
    text-align: center;
    padding: 60px 20px !important;
}

h1 {
    font-size: 40px;
    margin-bottom: 20px !important;
    font-weight: 700;
}

.description {
    max-width: 800px;
    margin: 0 auto 40px !important;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 400;
    color:#fff;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    justify-content: center;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto 80px !important;
}

.social-btn {
    width: 400px;
    height: 72px;
    padding: 10px 20px 10px 16px;
    border-radius: 46px;
    background: rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 87px;
    color: #fff;
    text-decoration: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    box-shadow: 0px -1px 0 #fff;
}

.social-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.social-text {
    font-family: "ADPortsGroup", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0px;
    text-align: right;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    color:#fff;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    font-size: 15px;
    font-weight: 400;
}



/* MOBILE */
@media (max-width: 900px) {
    h1 {
        font-size: 20px;
    }


    .logo img {
        max-width: 320px;
    }

    .social-text {
        font-size: 20px;
    }
    header {
        padding: 30px 20px 0px;
    }
    main {
        padding: 30px 20px !important;
    }
    h1,
    .description {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-top:0px !important;
        margin-bottom:0px !important;
        color:#fff !important;
        padding-bottom:30px;
       
    }
    
    .social-links {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .social-btn {
        width: 312px;
        height: 54px;
        padding: 6px 20px 6px 6px;
        gap: 68px;
    }

}
.social-icon {
    border-radius: 50%;
    background-color: #fff;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .social-icon.fab::before {
        color: #2d3955;
        font-size: 22px;
    }
.social-btn:hover {
    animation: ripple 0.6s linear;
}

.social-btn.LinkedIn:hover {
    background: var(--Linkedin, rgba(0, 119, 181, 0.2));
    opacity: 0.5;
}

.social-btn.Facebook:hover {
    background: var(--Facebook, rgba(24, 119, 242, 0.2));
    opacity: 0.5;
}

.social-btn.Twitter:hover {
    background: var(--Twitter, rgba(0, 0, 0, 1));
    opacity: 0.5;
}

.social-btn.Youtube:hover {
    background: var(--Youtube, rgba(255, 0, 0, 1));
    opacity: 0.15;
}

.social-btn.Tiktok:hover {
    opacity: 0.5;
    background: var(--Tiktok, radial-gradient(92.75% 510.87% at 7.25% 50%, rgba(4, 4, 4, 0.2) 0%, rgba(254, 40, 88, 0.2) 39.4%, rgba(42, 240, 234, 0.2) 75%, rgba(57, 118, 132, 0.2) 100%));
}

.social-btn.Instagram:hover {
    opacity: 0.5;
    background: var(--Instagram, linear-gradient(90deg, rgba(81, 91, 212, 0.2) 0%, rgba(129, 52, 175, 0.2) 25%, rgba(221, 42, 123, 0.2) 50%, rgba(245, 133, 41, 0.2) 75%, rgba(254, 218, 119, 0.2) 100%));
}