:root {
    --unnamed-color-000000: #000000;
    --unnamed-color-9a9a9a: #9A9A9A;
    --unnamed-color-4b4b4b: #4B4B4B;
    --unnamed-color-fff7e4: #FFF7E4;
    --unnamed-color-ffffff: #FFFFFF;
    --unnamed-color-23232300: rgba(35, 35, 35, 1);
    --unnamed-color-1d1d1d: #1D1D1D;
    --unnamed-color-fff4dd: #FFF4DD;
    --unnamed-color-f1eb76: #F1EB76;
    --fs: 20px;
    --title: 152px;
    --font-family: "tenon", sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
}

@media(max-width:1599px) {
    :root {
        --fs: 20px;
        --title: 122px;
    }
}

@media(max-width:1199px) {
    :root {
        --fs: 18px;
        --title: 80px;
    }
}


@media(max-width:767px) {
    :root {
        --fs: 16px;
        --title: 60px;
    }
}

body {
    background-color: var(--unnamed-color-23232300);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    font-family: var(--font-family);
    font-style: normal;
}

.main-wrapper {
    width: 90vw;
    background-image: url('../img/WORLD.png');
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 13%;
}

header {
    height: 90vh;
}

p, h3, .Label1, .policy {
    color: var(--unnamed-color-fff7e4);
    font-size: var(--fs);
    font-weight: var(--fw-regular);
}

.hero-header {
    display: flex;
    align-items: center;
    width: 20%;
    justify-content: space-between;
}

.hero-content {
    display: flex;
    flex-direction: column;
    height: 70vh;
    justify-content: space-evenly;
}

h1 {
    font-size: var(--title);
    font-weight: bold;
    margin: 0px;
    font-weight: var(--fw-medium);
}

.hero-title {
    color: var(--unnamed-color-fff7e4);
}

span {
    color: var(--unnamed-color-f1eb76);
}

.hero-description {
    width: 28%;
}

.buttons {
    display: flex;
    align-items: center;
}


.btnScroll, .btnSubmit, .btnLogin {
    background-color: var(--unnamed-color-f1eb76);
    display: flex;
    width: 15%;
    height: fit-content;
    padding: 15px 10px;
    text-decoration: none;
    color: var(--unnamed-color-000000);
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
}

.btnLogin {
    margin-left: 20px;
    height: stretch;
}

.logo1, .logo2 {
    height: 100%;
}

img {
    padding-right: 15px;
    height: 100%;
}

.contact-section {
    background-color: var(--unnamed-color-1d1d1d);
    display: flex;
    flex-direction: column;
    height: 70vh;
    padding: 100px;
    justify-content: space-between;
}

.textbox {
    display: flex;
    flex-direction: column;
    height: 33%;
}

.form-control {
    background-color: var(--unnamed-color-4b4b4b);
    border: 1px solid var(--unnamed-color-9a9a9a);
    height: stretch;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px;
}

    .form-control::placeholder {
        color: var(--unnamed-color-fff7e4);
        font-family: var(--font-family);
        font-style: normal;
    }

.form-check {
    display: flex;
    align-items: center;
}

.Label1 {
    padding-left: 10px;
}

.Checkbox1 {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--unnamed-color-4b4b4b);
    border: 1px solid var(--unnamed-color-9a9a9a);
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    outline: none;
}

    .Checkbox1:checked {
        background-color: var(--unnamed-color-4b4b4b);
        border-color: var(--unnamed-color-9a9a9a);
    }

        .Checkbox1:checked::after {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }

.tel, .mail {
    color: var(--unnamed-color-f1eb76);
    font-size: var(--fs);
    text-decoration: auto;
}

.site-footer {
    display: flex;
    align-items: center;
    padding-top: 50px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    width: 70%;
    align-items: center;
}

.footer-policy {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.policy {
    padding-left: 20px;
}

@media(max-width:1399px) {
    .btnSubmit{
        width:fit-content;
    }
}

@media(max-width:1199px) {

    .hero-description {
        width: 75%;
    }

    .btnScroll, .btnLogin{
        width:35%;
    }
}


@media(max-width:991px) {
    .hero-description {
        width: 100%;
    }

    .buttons {
        flex-direction: column;
        align-items: normal;
    }

    .btnScroll {
        margin-bottom: 20px;
        width: 75%;
    }

    .btnLogin {
        margin-left: 0px;
        height: stretch;
        width: 75%;
    }

    .site-footer {
        flex-direction: column;
    }

    .footer-info {
        width: 100%;
        padding-bottom: 20px;
        display:block;
    }

    .footer-policy {
        width: 100%;
        justify-content: space-between;
        display:block
    }

    .policy {
        padding-left: 0px;
    }

    .contact-section {
        padding:20px;
    }

    .hero-header {
        display:block;
        padding-top:50px;
    }
    .btnScroll, .btnSubmit, .btnLogin {
        width: auto;
    }
}
