
#head{
    background-color: #093046;
}

.head-block{
    max-width: 1140px;
    margin: auto;
    padding: 80px 16px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.head-container {
    width: 643px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 425px) {
    .head-container {
        width: 100%;
    }

}

.contain{
    padding: 16px;
    box-sizing: border-box;
    overflow: hidden;
    background: var(--neutral-colors-white, #FFF);
}

.menu_button{
    width: 25px;
}
nav{
    flex: 1;
    text-align: right;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-right: 20px;
}

nav ul li a{
    text-decoration: none;
    color: var(--neutral-colors-white, #000);
    font-size: 14px;
}

.link_1{
    width: 60px;
    height: 40px;
    border-radius: 4px;
    padding: 8px;
    gap: 8px;
    color: #093046;
    text-align: center;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.link_2{
    width: 87px;
    height: 40px;
    border-radius: 4px;
    padding: 8px;
    gap: 8px;
    color: #093046;
    text-align: center;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.ref:hover{
    color: #F18412;
}

.link_3{
    width: 82px;
    height: 40px;
    border-radius: 4px;
    padding: 8px;
    gap: 8px;
    color: #093046;
    text-align: center;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.link_4{
    width: 67px;
    height: 40px;
    border-radius: 4px;
    padding: 8px;
    gap: 8px;
    color: #093046;
    text-align: center;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.action_btn{
    width: 111px;
    height: 60px;
    padding: 18px, 24px, 18px, 24px;
    gap: 8px;
    border-radius: 8px;
    border: 0;
    background: var(--orange-o-300, #F18412);
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    color: var(--neutral-colors-white, #FFF);
    text-align: center;
}

.icon{
    color: #000;
    font-size: 20px;
    line-height: 80px;
    float: right;
    display: none;
}

.btn{
    width: 100%;
    gap: 8px;
    border-radius: 8px;
    background: var(--orange-o-300, #F18412);
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    color: var(--neutral-colors-white, #FFF);
    text-align: center;
}

.links{
    display: flex;
    justify-content: flex-end;
}

.toggle_btn{
    color: #000;
    font-size: 1.5rem;
    display: none;
}

/* Dropdown Menu */
.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    top: 90px;
    height: 0;
    width: 300px;
    background: #FFF;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.drop_menu{
    color: #093046;
}

.dropdown_menu.open{
    padding: 0 32px;
    height: auto;
    left: 0;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 80px;
}

.dropdown_menu .dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.dropdown_menu li{
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;

}

.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}


/* Responsive Design */

@media(max-width:375px){
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }

}

@media(max-width:992px){
    .links, .action_btn {
        display: none;
    }

    .toggle_btn{
        display: block;
    }

    .dropdown_menu{
        display: block;
    }

}

.test_1{
    position: relative;
    background: var(--neutral-colors-white, #FFF);
}

.head-title{
    display: flex;
    justify-content: center;
    color: var(--neutral-colors-white, #FFF);
    text-align: center;
    font-family: Space Grotesk;
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

@media (max-width: 768px) {
    .head-title {
        font-size: 49px;
    }
}

.head-txt{
    color: var(--neutral-colors-color-600, #D4D2E3);
    text-align: center;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

#form{
    background: #FFF;
    padding: 0 20px;
}

.form input[type="checkbox"] {
    
}

input[type="checkbox"]:checked {
    background-color: #F18412;
    color: #fff;
}

.form-block{
    max-width: 1140px;
    padding: 24px 32px 24px 32px;
    border-radius: 3px;
    background: #F0F3F4;
    box-shadow: 0px 4px 4px 0px rgba(87, 100, 126, 0.21);
    margin: auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.form-title{
    color: #2C3345;
    text-align: center;
    font-family: Space Grotesk;
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.form-txt{
    margin-top: 20px;
    margin-bottom: 20px;
    color: #2C3345;
    text-align: center;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.sub-title-txt{
    margin-top: 40px;
    color: #2C3345;
    font-family: Space Grotesk;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 24px */
}

.sub-form-block{
    display: flex;
    gap: 24px;
}

.contForm{
    margin-top: 20px;
}

.sub-form-group{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px;
}

input:not([type="checkbox"]) {
    all: unset;
    padding: 16px 10px;
    border: 0;
    border-radius: 8px;
    background: var(--neutral-colors-white, #FFF);
}

input::placeholder {
    color: var(--gray-3, #a0a0a0);
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

textarea::placeholder {
    color: var(--gray-3, #a0a0a0);
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}


.btn-file{
    position: relative;
    padding: 22px;
    border-radius: 4px;
    border: 1px dashed #2C3345;
    background: #FBFCFF;
    overflow: hidden;
}

.btn-file input[type="file"]{
    position: absolute;
    text-align: center;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.form-file-txt{
    color: var(--blue-b-300, #093046);
    font-family: Space Grotesk;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 24px */
}

.form-file-txt-1{
    color: var(--blue-b-100, #708794);
    font-family: Space Grotesk;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 19.5px */
}

.form-file-txt-2{
    color: var(--blue-b-100, #708794);
    font-family: Space Grotesk;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 19.5px */
}

.btn-checkbox{
    display: flex;
}

.check{
    margin-right: 10px;
}

.checkbox-text{
    color: #2C3345;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.checkbox-text-1{
    color: #00E;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.btn-submit{
    margin-top: 20px;
    padding: 16px 20px;
    gap: 8px;
    border-radius: 8px;
    background: var(--orange-o-300, #F18412);
    border: 0;
}

.btn-submit:hover{
    background: #093046;
}

.btn-txt{
    color: var(--neutral-colors-white, #FFF);
    text-align: center;
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

/*footer*/

.ends{
    position: relative;
    display: flex;
    margin-top: 150px;
    height: 162px;
    background: var(--blue-b-300, #093046);
    overflow: hidden;
}

.foot_imgs{
    position: absolute;
    right: 120px;
    bottom: 0px;
    opacity: 1.1;
    fill: #F18412;
}

.foot_blocks {
    width: 100%;
    display: flex;
    margin-right: 149px;
    margin-left: 150px;
    flex-wrap: wrap;
    align-content: center;
}

.sub_foot_block_1{
    width: 50%;
    display: flex;
}
.sub_foot_block{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

input:focus-visible {
    border: 1px solid #F18412;
    animation: bounceColorChange 0.5s 1;
}

.foot_txts_1{
    color: var(--gray-5, #E0E0E0);
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.foot_txts_2{
    color: var(--gray-4, #BDBDBD);
    font-family: Space Grotesk;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-decoration-line: underline;
}

/* responsive 630px */
@media(max-width:630px) {
    .contain {
        padding: 13px 50px 13px 50px;
        box-sizing: border-box;
        overflow: hidden;
        border-bottom: 1px solid var(--neutral-colors-color-600, #D4D2E3);
        background: var(--neutral-colors-white, #FFF);
    }

    .sub-form-block {
        display: flex;
        gap: 8px;
        margin-top: 20px;
        flex-direction: column;
    }

    .foot_block {
        width: 100%;
        display: flex;
        margin-right: 50px;
        margin-left: 50px;
        flex-wrap: wrap;
        align-content: center;
    }
}

/* responsive 418px */
@media (max-width: 425px){
    .contain {
        padding: 13px 20px 13px 20px;
    }
}

/* responsive 316px */
@media(max-width:316px) {
    .toggle_btn {
        display: block;
    }
}
