@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --source: 'Source Sans 3', sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 80%;
    margin-left: 10%;
}

.open_btn,
.close_btn,
#check {
    display: none;
}

.nav.scrolled .open_btn {
    color: #000;
}

.nav {
    width: 100%;
    /* padding: 20px 0; */
    position: fixed;
    z-index: 1;
    background: unset;
    transition: background-color 0.3s;

}

.nav.scrolled {
    background-color: rgb(255, 255, 255, 0.8);
}

.nav_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Source Sans 3', sans-serif;

}

.logo img {
    width: 220px;
}

.nav_list {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
}

.nav_link {
    font-size: 16px;
    font-weight: 600;
    line-height: 23.04px;
    letter-spacing: 2.303999900817871px;
    text-decoration: none;
    color: white;
    display: inline-flex;
}

.nav_link:hover {
    color: rgba(255, 255, 255, 0.766);
}

.nav.scrolled .nav_link:hover {
    color: #134236;
}

.nav.scrolled .nav_link {
    color: black;
}

.selector_box {
    width: 100%;
    display: flex;
    align-items: center;
}

.language-selector {

    border-radius: 8px;
    position: relative;
}

.option {
    color: white;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.nav.scrolled .option {
    color: black;
}

.nav.scrolled .option:hover {
    color: #134236;
}

.option:nth-of-type(2) {
    border-top: 1px solid grey;

}

.option.active {
    color: #fff;
    /* Oq rang */
    background-color: #333;
    /* Qorong'i kulrang fon */
}

.selected {
    color: white;
    cursor: pointer;
}

.nav.scrolled .selected {
    color: black;
}

.options {
    position: absolute;
    width: 70px;
    /* box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); */
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    left: -15px;
}

.nav.scrolled .options {
    background: rgba(255, 255, 255, 0.9);
    margin-top: 39px;
    /* color: black; */
}

.globe {
    color: white;
    cursor: pointer;
    margin-left: 5px;
}

.nav.scrolled .globe {
    color: black;
}

.nav_contact {
    padding: 12px 16px;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 23.04px;
    letter-spacing: 2.303999900817871px;
    color: white;
    transition: background 0.3s ease-out;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}

.nav.scrolled .nav_contact {
    transition: background 0.3s ease-out;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}

.nav_contact:hover {
    background-position: left bottom;
}

.nav.scrolled .nav_contact:hover {
    background-position: left bottom;

}

.nav.scrolled .nav_contact {
    color: black;
    border: 1px solid #000;

}

.nav_item {
    position: relative;
    padding: 39px 0;
    display: inline-block;
}
.nav_item_card{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.dropdown_content {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    width: 160px;
    z-index: 1;
    display: none;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-top: 22px;
}

.nav.scrolled .dropdown_content {
    margin-top: 62px;
    background-color: rgba(255, 255, 255, 0.8);
}

.nav_item:hover .dropdown_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.nav_link2 {
    border-top: 1px solid grey;
    font-size: 16px;
    font-weight: 600;
    line-height: 23.04px;
    letter-spacing: 2.303999900817871px;
    text-decoration: none;
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
}

.nav_link2:nth-of-type(1) {
    padding: 5px 0;
    border: none;
}

.nav.scrolled .nav_link2 {
    color: black;
}

.nav.scrolled .nav_link2:hover {
    color: #134236;
}

@media (max-width:1550px) {
    .nav_list {
        gap: 40px;
    }
}

@media (max-width:1450px) {
    .nav_list {
        gap: 35px;
    }

    .container {
        width: 90%;
        margin-left: 5%;
    }
}

@media (max-width:1200px) {
    .nav_item_card{
        display: block;
    }
    .nav {
        /* width: 100%; */
        padding: 20px 0;
    }

    .nav_item {
        padding: 0;
    }

    .header {
        position: relative;
    }

    .nav_box {
        align-items: start;
    }

    .nav_link2 {
        color: black;
        max-width: 160px;
    }

    .nav_list {
        max-width: 400px;
        width: 100%;
        height: 100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 80px 50px 50px 50px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99999999;
        transform: translateX(-110%);
        transition: .5s;
    }

    .nav_link {
        width: 100%;
        display: inline;
        padding: 15px 50px;
    }

    .nav.scrolled .nav_link {
        color: white;

    }

    .nav.scrolled .nav_link:hover {
        color: rgba(255, 255, 255, 0.813)
    }

    .nav.scrolled .nav_contact {
        color: white;
        border: 1px solid white;

    }

    .nav.scrolled .selected {
        color: white;
    }

    .nav.scrolled .globe {
        color: white;
    }

    .close_btn,
    .open_btn {
        display: block;
        color: white;
        font-size: 35px;
    }

    .close_btn {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .dropdown_content {
        position: absolute;
        width: 100%;
        background-color: transparent;
        padding: 15px;
        background-color: unset;
        display: flex;
        position: static;
        flex-direction: column;
        margin-top: 20px;
    }

    .nav_link2 {
        color: #ffff;
    }

    .nav.scrolled .nav_link2 {
        color: #fff;
    }

    .options {
        background: unset;
        color: white;
    }

    .nav.scrolled .option {
        color: white;

    }

    .nav.scrolled .options {
        margin-top: 0;
        background: unset;
    }

    .nav.scrolled .dropdown_content {
        margin-top: 20px;
        background-color: unset;
    }

    .dropdown_toggle:active+.dropdown_content,
    .dropdown_toggle:focus+.dropdown_content {
        display: flex;
    }

}

.main-carousel {
    margin-top: -30px;
    position: relative;
    font-size: 30px;
    width: 100%;
    height: 100vh;

}

.main-carousel .carousel {
    margin: 0px 0 30px 0;
    width: 100%;
}

.main-carousel .carousel .items {
    width: 100%;
}

.main-carousel .carousel .items .carousel-image {
    width: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: 0.8s all;
    height: 100vh;
}

.main-carousel .carousel .items .current {
    opacity: 1;
}

.buttons {
    display: none;
}

.main-carousel .nav-dots {
    width: 200px;
    height: 40px;
    display: flex;
    justify-content: space-around;
    top: 85%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 99;
}

.main-carousel .nav-dots .dot {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.main-carousel .nav-dots .active {
    opacity: 1;
}

.img_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_text {
    top: 0px !important;
    position: absolute;
    color: white;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    padding: 10px;
    height: 100%;
    display: flex;
}

.img_text h3 {
    width: 100%;
    margin: auto 0;
    font-size: 90px;
}

@media (max-width:1400px) {
    .main-carousel {
        height: 100vh;
    }

    .main-carousel .carousel .items .carousel-image {
        height: 100vh;
    }

    .img_text h3 {
        font-size: 80px;
    }
}

@media (max-width:1300px) {


    .main-carousel .carousel .items .carousel-image,
    .main-carousel {
        height: 100vh;
    }

    .img_text h3 {
        font-size: 70px;
    }
}

@media (max-width:1200px) {

    .main-carousel .carousel .items .carousel-image,
    .main-carousel {
        height: 100vh;
    }

    .img_text h3 {
        font-size: 60px;
    }

    .language-selector {
        order: 1;
    }
}

@media (max-width:1100px) {

    .main-carousel .carousel .items .carousel-image,
    .main-carousel {
        height: 100vh;
    }

    .img_text h3 {
        font-size: 50px;
    }
}

@media (max-width:1000px) {

    .main-carousel .carousel .items .carousel-image,
    .main-carousel {
        height: 80vh;
    }

    .img_text h3 {
        font-size: 40px;
    }
}

@media (max-width:900px) {
    .img_text h3 {
        font-size: 30px;

    }

    .main-carousel .carousel .items .carousel-image,
    .main-carousel {
        height: 70vh;
    }
}

@media (max-width:700px) {

    .open_btn,
    .close_btn {
        font-size: 30px;
    }

    .img_text h3 {
        font-size: 25px;
    }

    .main-carousel .carousel .items .carousel-image,
    .main-carousel {
        height: 60vh;
    }

    .logo img {
        width: 190px;
    }
}

@media (max-width:550px) {



    .img_text h3 {
        margin-top: 200px;
        font-size: 22px;
    }

    .logo img {
        width: 180px;
    }
}


@media (max-width:450px) {

    .main-carousel .carousel .items .carousel-image,
    .main-carousel {
        height: 55vh;
    }
}

.about {
    background: rgba(18, 64, 52, 1);
    padding-top: 20px;
}

.about_title {
    font-family: var(--source);
    font-size: 22px;
    font-weight: 600;
    line-height: 23.04px;
    letter-spacing: 2.303999900817871px;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.about_box {
    display: flex;
    align-items: center;
    column-gap: 10%;
}

.about_img {
    width: 431px;
    height: auto;
}

.about_card2 {
    max-width: 735px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}

.about_text1 {
    font-family: 'Inter', sans-serif;
    font-size: 35.06px;
    font-weight: 200;
    line-height: 52.8px;
    letter-spacing: 0.7039999961853027px;
    color: rgba(255, 255, 255, 1);
}

.about_text2 {
    font-family: 'Barlow', sans-serif;
    font-size: 17.6px;
    font-weight: 300;
    line-height: 28.16px;
    letter-spacing: 1.055999994277954px;
    text-align: left;
    color: rgba(217, 216, 213, 1);
}

@media (max-width:1250px) {
    .about_img{
        width: 100%;
    }
    .about_box {
        flex-direction: column;
    }

    .about_card2 {
        margin-top: 20px;
        text-align: center;
    }

    .about_text2 {
        text-align: center;
    }
}

@media (max-width:1000px) {
    .about_card2 {
        row-gap: 40px;
    }

    .about_text1 {
        font-size: 30px;
    }
}

@media (max-width:750px) {
    .about_text1 {
        font-size: 28px;
        line-height: 160%;
    }
}

@media (max-width:550px) {
    .about_text1 {
        font-size: 24px;
        line-height: 140%;
    }

    .about_text2 {
        font-size: 15px;
    }
    .about_img{
        height: auto;
        width: 85%;
        margin: 0 auto;
        display: block;
    }
}

.about_bottom {
    height: 450px;
    width: 100%;
    background: linear-gradient(170deg, rgba(18, 64, 52) 50%, white 50%);
}

@media (max-width:100px) {
    .about_bottom {
        height: 400px;
    }
}

@media (max-width:900px) {
    .about_bottom {
        height: 350px;
    }
}

@media (max-width:700px) {
    .about_bottom {
        height: 300px;
    }
}

@media (max-width:600px) {
    .about_bottom {
        height: 250px;
    }
}

@media (max-width:500px) {
    .about_bottom {
        height: 200px;
    }
}

@media (max-width:400px) {
    .about_bottom {
        height: 150px;
    }
}

.category {
    background-color: #FAFAFA;
    padding: 90px 0px 70px 0px;
}

.title_card {
    position: relative;
}

.title {
    font-family: 'Barlow', sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 45.6px;
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
}

.link {
    display: block;
    text-align: right;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 13.8px;
    letter-spacing: 0.029999999329447746px;
    margin: auto 0;
    color: black;
    display: flex;
    align-items: center;
    position: absolute;
    top: 15px;
    right: 0;
}

.link1 {
    position: absolute;
    bottom: -50px;
    right: -10px;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 13.8px;
    letter-spacing: 0.029999999329447746px;
    color: black;
    text-decoration: none;
    display: none;


}

@media (max-width:1200px) {
    .link {
        display: none;
    }

    .link1 {
        display: block;
    }

    .category {
        padding: 80px 0px 70px 0px;
    }

}

@media (max-width:1000px) {
    .category {
        padding: 70px 0px 70px 0px;
    }

}

@media (max-width:800px) {
    .category {
        padding: 60px 0px 70px 0px;
    }

}

@media (max-width:600px) {
    .category {
        padding: 50px 0px 70px 0px;
    }

}


.category_box {
    margin-top: 42px;
    width: 100%;
    height: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.category_card {
    text-decoration: none;
    color: black;
    max-width: 290px;
    width: 100%;
    background: white;
    padding: 26px 40px 110px 40px;
    border: 2px dashed green;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.category_img {
    border: 10px solid white;
    box-shadow: 0px 15px 25px 0px rgb(131, 128, 128);
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.category_text {
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.5px;
    text-align: center;
}

/* catalog  */
.catalog {
    padding-top: 100px;
}

.catalog_box {
    margin-top: 40px;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 100px;
    position: relative;
}

.catalog_card {
    max-width: 370px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.catalog_img {
        object-fit: cover;
    width: 350px;
    height: 300px;
    margin: 0 auto;
}

.catalog_subtitle {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    text-align: left;
}

.catalog_text {
    font-family: "PT Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
}

.catalog_link {
    padding: 13px 25px;
    background: #009084;
    text-decoration: none;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    text-align: center;
    display: block;
    border-radius: 55px;
    margin: 0 auto;
    color: white;
}



.c_link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    right: 0;
    color: black;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width:1300px) {
    .catalog {
        padding-top: 90px;
    }
}

@media (max-width:1200px) {
    .catalog {
        padding-top: 80px;
    }

    .catalog_box {
        gap: 40px;
        padding-bottom: 80px;
    }

    .catalog_subtitle,
    .catalog_text {
        text-align: center;
    }
}

@media (max-width:1100px) {
    .catalog {
        padding-top: 70px;
    }
}

@media (max-width:1000px) {
    .catalog {
        padding-top: 60px;
    }

    .catalog_box {
        gap: 35px;
        padding-bottom: 70px;

    }
}

@media (max-width:900px) {
    .catalog {
        padding-top: 50px;
    }

    .catalog_box {
        gap: 30px;
    }
}

@media (max-width:500px) {
    .catalog_img {
        width: 300px;
        margin: 0 auto;
    }
}

.specialist {
    margin-top: 60px;
}

.specialist_title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: -1px;
    color: #134236;
}

.specialist_box {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
}

.specialist_card {
    max-width: 384px;
    width: 100%;
    background-color: #134236;
    padding: 80px 50px;
}

.specialist_card:nth-of-type(2) {
    background-color: white;
}

.specialist_card:nth-of-type(2) .specialist_subtitle {
    color: black;
}

.specialist_card:nth-of-type(2) .specialist_text {
    color: black;
}

.specialist_card:nth-of-type(4) {
    background-color: white;
}

.specialist_card:nth-of-type(4) .specialist_subtitle {
    color: black;
}

.specialist_card:nth-of-type(4) .specialist_text {
    color: black;
}

.specialist_img {
    margin: 0 auto;
    display: block;
    width: 225px;
    height: 254px;
}

.specialist_subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 25.65px;
    letter-spacing: -1px;
    text-align: center;
    color: white;
    padding-top: 40px;
    margin: auto 0;
}

.specialist_text {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: white;
    margin-top: 15px;
}

@media (max-width:1600px) {
    .specialist_box {
        flex-wrap: wrap;
        gap: 20px;
    }

    .specialist_card:nth-of-type(4) {
        background-color: #f2f2f3;
    }

    .specialist_card:nth-of-type(2) {
        background-color: #f2f2f3;
    }

    .specialist_card {
        padding: 70px 40px;
    }
}

@media (max-width:1250px) {
    .specialist_box {
        gap: 20px;
        overflow-x: scroll;
        flex-wrap: nowrap;
        justify-content: start;
    }

    .specialist_card {
        padding: 60px 30px;
        flex-shrink: 0;
    }
}

@media (max-width:1000px) {
    .specialist_card {
        padding: 50px 25px;
    }

    .specialist_img {
        width: 300px;
    }
}

@media (max-width:900px) {
    .specialist_img {
        width: 270px;
    }
}

.news {
    margin-top: 100px;
}

.news_link_card {
    border-top: 2px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 45px;
}

.news_title {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 13.8px;
    letter-spacing: 0.029999999329447746px;
    text-align: left;
}

.news_link,
.news_link2 {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 13.8px;
}

.news_link2 {
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
}

.news_box {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 65px;
    position: relative;
    padding-bottom: 40px;
}

.news_card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 300px;
    width: 100%;
}

.news_img {
    border-radius: 10px;
    display: block;
    width: 300px;
    height: 170px;
}

.news_date {
    display: flex;
    gap: 10px;
    align-items: center;
}

.news_date_text {
    font-family: 'Nunito',sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 18.7px;
    letter-spacing: 0.6880000233650208px;
    text-align: left;
    color: #141414;
}

.news_date span {
    display: block;
    width: 5px;
    height: 5px;
    background: #C03317;
    border-radius: 50%;
}

.news_subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 33.6px;
    text-align: left;
    color: #141414;
}

.news_text {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
    letter-spacing: -0.1120000034570694px;
    text-align: left;
    color: #141414;
}

@media (max-width:1500px) {
    .news_box {
        gap: 55px;
        flex-wrap: wrap;
    }
}

@media (max-width:1200px) {
    .news_box {
        gap: 45px;
        position: relative;

    }

    .news_link2 {
        display: block;
    }

    .news_link {
        display: none;
    }
}

@media (max-width:1000px) {
    .news {
        margin-top: 80px;
    }

    .news_box {
        gap: 30px;
    }
}

@media (max-width:1000px) {
    .news {
        margin-top: 60px;
    }
}

@media (max-width:800px) {
    .news {
        margin-top: 50px;
    }
}

.form {
    margin-top: 100px;
}

.title2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: -1px;
    text-align: center;
}

.subtitle2 {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #8C8C8C;
}

.form_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 20px;
    margin-top: 50px;
}

.form_input {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input {
    width: 100%;
    border: 1px solid #E8E8E8;
    background: #F5F5F5;
    outline: none;
    font-size: 20px;
    padding: 10px 5px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.form_textarea {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #E8E8E8;
    background: #F5F5F5;
    outline: none;
    padding: 10px 5px;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
}
.form_text_card{
    display: flex;
}
.form_text {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    color: #232323;
}

.form_text span {
    font-family: 'Montserrat', sans-serif;
    color: black;
    font-size: 18px;
}

.form_link {
    padding: 15px 35px;
    background: #41A85F;
    border: 1px solid #41A85F;
    display: block;
    margin-top: 20px;
    border-radius: 25px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width:1000px) {
    .form {
        margin-top: 90px;
    }

    .textarea {
        margin-bottom: 20px;
    }

    .form_link {
        margin: 0 auto;
    }
}

@media (max-width:900px) {
    .form {
        margin-top: 80px;
    }
}

@media (max-width:700px) {
    .form {
        margin-top: 70px;
    }

    .form_box {
        flex-wrap: nowrap;
        flex-direction: column;
    }
}

@media (max-width:600px) {
    .form {
        margin-top: 60px;
    }
}

@media (max-width:500px) {
    .form {
        margin-top: 50px;
    }
}

.map {
    margin-top: 100px;
}

.googlemap-container {
    margin-top: 30px;
}

@media (max-width:100px) {
    .map {
        margin-top: 90px;
    }
}

@media (max-width:900px) {
    .map {
        margin-top: 80px;
    }
}

@media (max-width:800px) {
    .map {
        margin-top: 70px;
    }
}

@media (max-width:700px) {
    .map {
        margin-top: 60px;
    }
}

@media (max-width:600px) {
    .map {
        margin-top: 50px;
    }
}

.footer {
    margin-top: 20px;
    background: #FAFAFA;
    padding: 60px 0;
}

.footer_box {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer_card {
    max-width: 265px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    letter-spacing: -1px;
    margin-bottom: 30px;
}

.footer_text {
    margin-top: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #232323;
    text-decoration: none;
}

.footer_link {
    margin-top: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #41A85F;
    text-decoration: none;
}

@media (max-width:1210px) {
    .footer {
        padding: 50px 0;
    }

    .footer_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;

    }

    .footer_title {
        margin-bottom: 10px;
    }
}

@media (max-width:700px) {
    .footer {
        padding: 40px 0;
    }

    .footer_box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form_input {
        width: 100%;
    }
}

/* Modal */
#myModal{
        display: none;

}
.modal {
    /* display: none; */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
}

.modal-content {
    background-color: rgba(255, 255, 255);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    text-align: center;
    position: relative;
    border-radius: 10px;
    padding-bottom: 40px;

}

.modal-content p {
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: 20px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width:1300px) {
    .modal-content {
        width: 40%;
    }
}

@media (max-width:1000px) {
    .modal-content {
        width: 50%;
    }

    .modal-content p {
        font-size: 22px;
    }
}

@media (max-width:850px) {
    .modal-content {
        width: 60%;
    }
}

@media (max-width:700px) {
    .modal-content {
        width: 70%;
    }
}

@media (max-width:600px) {
    .modal-content {
        width: 80%;
    }

    .modal-content p {
        font-size: 20px;
    }
}

@media (max-width:500px) {
    .modal-content {
        width: 90%;
    }
}

.footer_end {
    padding: 5px 0px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.footer_end {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
}

.footer_end img {
    width: 200px;
}


@media (max-width:440px) {
    .footer_end {
        padding: 5px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 10px;
    }

    .footer_end {
        color: #FFF;
        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px;
    }

    .footer_end img {
        width: 150px;
        height: 39.06px;
    }

}



/* /////////////// BRANDS //////////// */

.brands{
    margin-top: 50px;
}
.brands_box{
    margin-top: 50px;
    gap: 30px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.brand_images {
    width: 100%;
    height: 100%;
    box-shadow: 10px 10px 10px 0px #00000033;
    border: 10px solid white;
    flex-shrink: 0;
}
.brands_title {
    font-family: 'Barlow', sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 45.6px;
    text-align: center;
    color: #151515;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}
.slider a {
    width: 270px;
    max-height:270px;
}
.container2{
    position: relative;
}
.brand_link{
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 13.8px;
    margin-top: 20px;
    right: 0;
    position: absolute;
}
@media (max-width:1100px) {
    .slider a {
        width: 200px;
        max-height:200px;
    }
}
@media (max-width:850px) {
    .slider a {
        width: 180px;
    }
}
@media (max-width:550px) {
    .slider a {
        width: 150px;
    }
}
