@font-face {
    font-family: 'Montserrat Thin';
    src: url('../../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Display Fair';
    src: url('../../fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat Thin';
}

.BranText {
    font-family: 'Montserrat Thin';
    color: white;
}

.BranText span {
    font-size: 45px;
    margin-bottom: 50px;
}

.BranText span span {
    font-family: 'Display Fair';
    color: #9ED7F5;
}

.Loading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #8DA7BE;
    z-index: 800000;
}

.Loading p {
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body::-webkit-scrollbar {
    width: 5px;
    /* width of the entire scrollbar */
    transition: all ease-in-out .2s;
}

body::-webkit-scrollbar-track {
    background: white;
    /* color of the tracking area */
    transition: all ease-in-out .2s;
}

body::-webkit-scrollbar-thumb {
    background-color: #455869;
    /* color of the scroll thumb */
    border-radius: 5px;
    /* roundness of the scroll thumb */
    border: 1px solid #455869;
    /* creates padding around scroll thumb */
    transition: all ease-in-out .2s;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 89vh;
}

.Container-Header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.Container-Header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, rgba(141, 167, 190, 1), rgba(141, 167, 190, 0));
    z-index: 999;
}

.Container-Header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.Line-Into {
    width: 50px;
    height: 3px;
    background: white;
    transform: rotate(90deg)
}

.Container-Header-Text {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    position: absolute;
    color: white;
    width: 50%;
    top: 60%;
    left: 20px;
}

.Container-Header-Text h1 {
    text-align: center;
    font-size: 65px;
    font-weight: 500;
}

.Container-Header-Text h1 span {
    font-family: 'Display Fair';
    font-size: 60px;
    font-weight: 100;
}

.WD-Title-Img__Container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.WD-Title-Img__Container h2 {
    font-family: 'Display Fair';
}

.WD-Title-Img__Container h3 {
    width: 100%;
    font-size: 25px;
    font-family: 'Montserrat Thin';
    font-weight: 500;
}

.Container-Header-Text .Line-Into {
    margin-top: 30px;
    margin-bottom: 30px;
}

.Container-Header-Text button {
    width: 170px;
    height: 60px;
    border-radius: 35px;
    padding: 5px;
    background: transparent;
    border: 2px solid white;
    transition: all ease-in-out .2s;
    cursor: pointer;
}

.Container-Header-Text button div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background:  #8DA7BE;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    transition: all ease-in-out .2s;
}

.Container-Header-Text button:hover {
    padding: 8px;
    > div {
        background: white;
        color: #8DA7BE;
    }
}

.Container-Links-A {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    width: 40px;
    background: #8DA7BE;
    box-shadow: 3px 2px 2px 2px rgb(0, 0, 0, .5);
    border-radius: 20px;
    position: fixed;
    top: calc(100% / 3.5);
    right: 0;
    z-index: 99000;
}

.Container-Links-A ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.Container-Links-A ul li {
    list-style: none;
}

.Container-Links-A ul li a {
    width: 26px;
    height: 26px;
    color: white;
    transition: all ease-in-out .1s;
}

.Container-Links-A ul li a svg {
    width: 20px;
    height: 20px;
    transition: all ease-in-out .1s;
}

.Container-Links-A ul li a:hover {
    > svg {
        width: 23px;
        height: 23px;
    }
}


.About-Us-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: #8DA7BE;
}

.AUS-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
    gap: 20px;
    padding-left: 50px;
    padding-right: 50px;
}

.AUS-Container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 999;
}

.AUSC-Text, .AUSC-Image {
    width: 50%;
    height: 100%;
    position: relative;
}

.AUSC-Image {
    width: 70%;
}

.AUSC-Text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: justify;
    gap: 20px;
}

.AUSC-Text p {
    color: white;
    width: 100%;
    line-height: 1.5;
}

.AUSC-Image img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.SergioM-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.SMS-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

.SMS-Image, .SMS-Text {
    width: 50%;
}

.SMS-Text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.SMS-Text p {
    text-align: justify;
    line-height: 1.5;
}

.SMS-Image img {
    width: 100%;
}

.SMS-Image img:nth-child(1) {
    width: 80%;
}

.ZuleimaC-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background: #8DA7BE;
}

.ZCS-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
}

.ZCS-Container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 999;
}

.ZCS-Text, .ZCS-Image {
    width: 50%;
}

.ZCS-Text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.ZCS-Text p {
    text-align: justify;
    line-height: 1.5;
}

.ZCS-Image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ZCS-Image img {
    width: 80%;
}

.TechR-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
}

.TRS-Container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.TRS-Text, .TRS-Image {
    width: 50%;
}

.TRS-Text h2 {
    font-family: 'Display Fair';
    font-size: 50px;
}


.TRS-Text {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 30px;
    height: 100vh;
}

.TRS-Image img {
    width: 100%;
}

.Content-Button-TRS {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 50px;
    width: 100%;
}

.Content-Button-TRS a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 70px;
    background: #9ED7F5;
    border-radius: 40px;
    text-decoration: none;
}

.Content-Button-TRS a div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    height: 90%;
    background: #607282;
    border-radius: 35px;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
    transition: all ease-in-out .2s;
}

.Content-Button-TRS a div:hover {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1069px) {
    .AUS-Container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        width: 100%;
        height: auto;
        gap: 20px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .AUS-Container::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgb(69, 88, 105, .5);
        z-index: 2;
    }

    .AUSC-Text, .AUSC-Image {
        width: 100%;
        height: 100%;
    }

    .AUSC-Text {
        z-index: 3;
        padding-bottom: 50px;
        padding-top: 50px;
        position: relative;
    }

    .AUSC-Image {
        position: absolute;
    }

    .AUSC-Image img {
        z-index: 1;
    }

    .SMS-Container {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .SMS-Image, .SMS-Text {
        width: 100%;
    }

    .SMS-Image {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .Container-Header::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 60px;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: linear-gradient(to top, rgb(69, 88, 105, 1), rgb(69, 88, 105, 0));
        z-index: 999;
    }

    .ZCS-Container {
        flex-direction: column-reverse;
        position: relative;
        padding-bottom: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .ZCS-Text, .ZCS-Image {
        width: 100%;
    }

    .TRS-Container {
        flex-direction: column;
        gap: 20px;
    }

    .TRS-Text {
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        gap: 30px;
        height: auto;
    }

    .TRS-Text, .TRS-Image {
        width: 100%;
    }

    .Content-Button-TRS {
        position: relative;
        bottom: auto;
    }

    .Container-Header-Text h1 {
        text-align: center;
        font-size: 44px;
        font-weight: 500;
    }

    .Container-Header-Text h1 span {
        font-family: 'Display Fair';
        font-size: 41px;
        font-weight: 100;
    }

    .Content-Button-TRS a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 193px;
        height: 54px;
        background: #9ED7F5;
        border-radius: 40px;
        text-decoration: none;
        font-size: 15px;
    }

    .Container-Links-A {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 184px;
        width: 32px;
        background: #8DA7BE;
        box-shadow: 3px 2px 2px 2px rgb(0, 0, 0, .5);
        border-radius: 20px;
        position: fixed;
        top: calc(100% / 3.5);
        right: 0;
        z-index: 99000;
    }

    .Container-Links-A ul li a svg {
        width: 15px;
        height: 15px;
        transition: all ease-in-out .1s;
    }

    .Container-Links-A ul li a:hover {
        > svg {
            width: 15px;
            height: 15px;
            color: #607282;
        }
    }
}