@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 */
}

body::-webkit-scrollbar-track {
    background: white;
    /* color of the tracking area */
}

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 */
}

/*
HEADER SECTION
*/

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

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(255, 255, 255, 1), rgba(255, 255, 255, 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: center;
    flex-direction: column;
    position: absolute;
    color: white;
    top: calc(100% / 3.5);
    left: 20px;
}

.Container-Header-Text h1 {
    text-align: center;
    font-size: 80px;
}

.Container-Header-Text span {
    text-align: end;
    font-size: 50px;
    margin-left: 80%;
    font-family: 'Display Fair';
    font-size: 55px;
}

.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;
    }
}

.Welcome-Dermaestetic-Section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.Welcome-Dermaestetic-Section__Container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    gap: 10px;
}

.WD-Text, .WD-Title-Img {
    width: 50%;
}

.WD-Text {
    width: 60%;
}

.WD-Text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.WD-Text__Container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 35px;
}

.WD-Text__Container p {
    text-align: justify;
}

.Welcome-Dermaestetic-Section__Container, .WD-Title-Img__Container {
    width: 100%;
}

.Welcome-Dermaestetic-Section__Container {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
}

.WD-Text__Container {
    display: flex;
    justify-content: start;
    align-items: start;
    padding-top: 100px; 
}

.WD-Text__Container p {
    font-size: 20px;
}

.Welcome-Dermaestetic-Section__Container p {
    width: 80%;
}

.WD-Title-Img__Container img {
    width: 90%;
    margin-top: 18px;
    z-index: 999;
}

.WD-Title-Img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.WD-Title-Img__Container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}

.WD-Title-Img__Container h2 {
    font-size: 22px;
    color: rgb(56, 56, 56);
}

.WD-Title-Img__Container h3 {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: rgb(56, 56, 56);
}


/*
FORM CONTENT AND INFORMATION SECTION
*/

.Content-FormAndInformation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.CFI-Container {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 45px;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 60px;
}

.Information-Content, .Form-Content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 50%;
}

.Form-Content h2 {
    font-size: 35px;
    margin-bottom: 10px;
}

.Form-Content form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.formTag-Container {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 100%;
}

.formTag-Container label {
    margin-top: 10px;
}

.formTag-Container input {
    width: 100%;
    height: 35px;
    padding-left: 10px;
    border: 1px solid #8DA7BE;
    border-radius: 8px;
    outline: #9ED7F5;
    background: rgb(158, 215, 245, .2);
    backdrop-filter: blur(7px);
}

.formTag-Container input::placeholder {
    color: #8DA7BE;
}

.formTag-Container input:focus {
    outline: 2px solid #9ED7F5;
}

.formTag-Container textarea {
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    border: 1px solid #8DA7BE;
    border-radius: 8px;
    outline: #1c465d;
    background: rgb(158, 215, 245, .2);
    backdrop-filter: blur(7px);
}

.formTag-Container textarea::placeholder {
    color: #8DA7BE;
}

.formTag-Container textarea:focus {
    outline: 2px solid #9ED7F5;
}

.formTag-Container button {
    position: relative;
    width: 120px;
    height: 50px;
    border: 2px solid #9ED7F5;
    border-radius: 25px;
    margin-top: 20px;
    background: white;
    text-transform: uppercase;
    color: #8DA7BE;
    transition: all ease-in-out .1s;
    cursor: pointer;
    z-index: 11000;
}

.formTag-Container button::before {
    content: "";
    width: 120px;
    height: 50px;
    border-radius: 25px;
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 0;
    transition: all ease-in-out .1s;
}

.formTag-Container button:hover::before {
    background: transparent;
    border: 1px solid #9ED7F5;
}

.formTag-Container button:hover {
    border: none;
    background: #9ED7F5;
    color: white;
}

.Information-Content ul {
    margin-top: 8px;
    margin-bottom: 12px;
}

.Information-Content h3 {
    font-size: 18px;
    color: rgb(47, 47, 47);
}

.Information-Content ul li {
    list-style: none;
}

.Information-Content p {
    margin-bottom: 15px;
    color: rgb(46, 46, 46);
}

.Map-Shape {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 99000;
}

.Map-Shape:hover {
    background: rgb(158, 215, 245, .2);
}

.Map-Map-Code {
    width: 100%;
    padding-bottom: 50px;
}

.Map-Map-Code__Container {
    position: relative;
    width: 100%;
    height: 450px;
}

@media screen and (max-width: 768px) {
    .Container-Header-Text h1 {
        text-align: center;
        font-size: 51px;
    }

    .CFI-Container {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 45px;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 60px;
    }

    .Information-Content, .Form-Content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }

    .Information-Content {
        align-items: start;
    }

    .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;
        }
    }

    .Form-Content h2, .Form-Content p {
        text-align: center;
    }

    .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;
        }
    }

}