html {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden; /* Отключает горизонтальный скролл */
}

* {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

@font-face {
    src: local("Inter"),
        url(./Inter.ttf) format("truetype");
    font-family: "Inter";
}


.h1 {
    font-family: "Inter", sans-serif;
    font-size: 6.25vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
    color: white;
    margin: 0;
}

.h3 {
    font-family: "Inter", sans-serif;
    font-size: 1.2vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
}

.t1 {
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    max-width: 30vw;
    margin: 7.4vh 0;
    text-align: left;
}

.kk {
    margin: 0;
    max-width: 100%;
}

.black {
    color: #1A1A1A;
}

.center {
    text-align: center;
}



.gr {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2000;
    gap: 0;
}



.menu {
    width: 100%;
    height: 5vh;
    background-color: #1a1a1a;
    z-index: 1000;
    margin: 0;
    padding: 0 40px;
    border-bottom: 1px solid white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 10px;
}

.menu-main {
    display: flex;
    justify-content: center;
    gap: 1vw;
    list-style: none;
    font-size: 0;
    padding: 0;
    margin: 0;
    min-height: 3vh;
}

.menu-main a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    padding-bottom: 10px;
    transition: color 0.3s ease-in-out;
}

.menu-main a.active {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}


.menu-main li {
    display: flex;
    margin: 0;
    padding: 0;
}

.dropbtn {
    background: none;
    padding: 8px;
    border-radius: 100px;
    font-size: 1vw;
    width: max-content;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 5vh;
}



.dropbtn:hover, .dropbtn:focus {
    background-color: #1A1A1A;
    color: white;
}

.dropdown {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #1a1a1a;
}

.dropdown-content {
    display: none;
    position: fixed;
    width: 100px;
    height: 100px;
    margin-top: 20px;
    top: 20px;
    left: 50%;
    background-color: #1a1a1a;
    font-size: 12px;
    padding: 10px 6px;
    border: 1px white solid;
    /* box-shadow: 0px 8px 16px 0px rgba(0, 0 ,0, 0.2); */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.dropdown-content.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) !important; 
    z-index: 11000;
}


.dropdown-content a {
    position: relative;
    color: white;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content a:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: white; /* Цвет линии */
}

.dropdown-content a:hover {
    text-decoration: underline;
}

.menu-main a.active {
    text-decoration: underline;
    text-decoration-thickness: 1px; /* Толщина линии */
    text-underline-offset: 4px; /* Отступ от текста */
    text-decoration-color: white; /* Цвет подчёркивания */
}


.burger {
    display: none;
    flex-direction: column;
    gap: 9px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 30px;
    z-index: 110;
    overflow: hidden;
}

.burger span {
    display: block;
    width: 40px;
    height: 4px;
    background: white;
    transition: 0.3s ease-in-out;
}


.burger.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}


.link {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    text-decoration: none;
    font-weight: 400;
    line-height: normal;
    color: white; 
    padding: 0;
    letter-spacing: 0;
    text-align: center;
}

.link-accent {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    color: white; 
    padding: 0;
    letter-spacing: 0;
    text-align: center;
}


.header {
    position: absolute;
    top: 40%;
    left: 80%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 100;
}

.screen {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    width: 100vw;
    padding: 10vh 80px 0;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    background-color: #000;
    overflow: none;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 2vh;
    z-index: 10;
    height: 100%;
}


.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    object-position: top center;
    z-index: -1;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

.screeen {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100vw;
    padding: 0 80px;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    background-color: #1A1A1A;
    overflow: none;
    z-index: 100;
}

.img1 {
    width: 20vw;
}

.col {
    width: 30vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px; 
}

.col p {
    width: 30vw;
    margin: 0;
}

.btn {
    width: 10vw;
    border: none;
    height: 40px;
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 30px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.btn.active {
    background-color: #1A1A1A;
    border: 1px solid white;
    color: white;
}

.sc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    padding: 10vh 80px 0;
}

.circle {
    position: absolute;
    top: 10%;
    left: 60%;
    background-color: white;
    width: 25vw;
    height: 25vw;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    transition: border-radius 0.6s ease;
}

.circle:hover {
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
}

.circle p {
    text-decoration: none;
    transition: text-decoraton 0.2s ease;
}

.circle p:hover {
    text-decoration: underline;
}

.circle2 {
    position: absolute;
    top: 55%;
    left: 55%;
    background-color: white;
    width: 20vw;
    height: 20vw;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    transition: border-radius 0.6s ease;
}

.circle2:hover {
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
}

.circle2 p {
    text-decoration: none;
    transition: text-decoraton 0.2s ease;
}

.circle2 p:hover {
    text-decoration: underline;
}

.circle3 {
    position: absolute;
    top: 0;
    left: 110%;
    background-color: white;
    width: 15vw;
    height: 15vw;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    transition: border-radius 0.6s ease;
}

.circle3 p {
    text-decoration: none;
    transition: text-decoraton 0.2s ease;
}

.circle3 p:hover {
    text-decoration: underline;
}

.circle3:hover {
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
}

.scc {
    padding: 0;
    height: 100%;
    width: 100%;
}

.img2 {
    width: 30vw;
    padding-top: 10vh;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    justify-content: space-between;
    max-height: 40vh;
    width: 20vw;
}

.imgs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 180px;
}

.img3{
    width: 10vw;
}

.block {
    padding-top: 10vh;
    display: flex;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    height: auto;
    max-height: 0;
    margin-bottom: 120px;
    transition: opacity 0.5s ease, visibility 0.5s ease, max-height 0.5s ease;
}

.block.show {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
}


.educ {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-bottom: 120px;
}

.img4 {
    height: 40vh;
    width: auto;
    padding-top: 2vh;
}

.tc {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: space-between;
    max-height: 40vh;
    width: 20vw;
}

.tc2 {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    justify-content: space-between;
    max-height: 40vh;
    width: 20vw;
}

.langs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-bottom: 120px;
}

.lang {
    width: 300px;
    height: 300px;
    background-color: white;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.lang-sm {
    width: 200px;
    height: 200px;
    border: 1px solid white;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.exp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding-top: 20vh;
}

.img5-mob {
    display: none;
    opacity: 0;
    visibility: none;
}

.con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20vh 0 10vh;
}

.contact-form {
    width: 30vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    background: none;
    border: 1px solid white;
    margin-bottom: 10px;
    height: 40px;
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    padding: 10px;
}

.message-input {
    background: none;
    border: 1px solid white;
    height: 80px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    padding: 10px;
}

.send-button {
    width: 10vw;
    border: none;
    height: 40px;
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 30px;
    background-color: white;
    cursor: pointer;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20vh;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.lil {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
}

footer {
    position: relative;
    left: 0;
    bottom: 0;
    background-color: #1A1A1A;
    color: white;
    padding: 4vh 40px;
    text-align: left;
    z-index: 100;
    border-top: 1px solid white;
}

.footer-container {
    width: 100%;
    margin: 0;
}

.footer-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vw;
    text-align: left;
    font-size: 12px;
    margin-bottom: 30px;
    pointer-events: auto;
}

.footer-menu div {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    flex-grow: 1;
    margin-left: 40px;
}

.footer-menu a {
    position: relative;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    z-index: 10;
}

.accent {
    position: relative;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    text-align: left;
    z-index: 10;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-form {
    display: flex;
    justify-content: center;
    font-size: 12px;
    gap: 120px;
    margin: 80px 0;
    padding: 0 40px 0;
    height: 40px;
}

.footer-form input {
    display: flex;
    align-items: center;
    padding: 16px;
    width: 40%;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 12px;
    line-height: 1;
}

.footer-form input::placeholder {
    color: gray;
    font-size: 12px;
}

.footer-button {
    background: white;
    color: #1A1A1A;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: bold;
    max-width: 20vw;
    font-size: 12px;
}

.footer-bottom {
    width: 100%;
    font-size: 12px;
    border-top: 2px solid white;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-bottom div {
    flex-grow: 1;
    text-align: center;
    margin-top: 40px;
}

.firma {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    text-transform: uppercase;
    margin: 0;
    text-wrap: nowrap;
}

.go {
    background: none;
    border: none;
    font-family: "Inter", sans-serif;
    font-size: 1vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    text-align: left;
    gap: 20px;
}

.go span {
    text-decoration: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    font-size: 1vw;
}

.go:hover span {
    text-decoration: underline;
}

.arrow-icon {
   transition: transform 0.3s ease;
   margin: 0;
   padding: 0;
   opacity: 1;
   
}

.go:hover .arrow-icon {
    transform: translateX(5px);
}

@media screen and (min-width: 320px) and (max-width: 490px) {
    
    html {
        width: 100%;
    }
    main {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
    }
    
    .body {
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .h1 {
        display: block;
        font-size: 10vw;
        font-family: "Inter", sans-serif;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        margin: 1vh 0;
    }

       .h3 {
        display: block;
        font-family: "Inter", sans-serif;
        font-size: 5vw;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        text-align: center !important;
        color: white;
        margin: 1vh 0;
        min-width: 100%;
    }


    .t1 {
        font-size: 4vw;
        min-width: 100%;
    }

    .black {
        color: black;
    }

    .link {
        color: white;
    }


    nav {
        height: 100px;
        max-width: 100%;
    }

    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 50px;
        z-index: 1000;
        background: #1a1a1a; 
    }


    .menu-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #1a1a1a;
        z-index: 100;
        padding: 10px;
        justify-content: center;
        transform: translateY(-100%);
        opacity: 1;
        visibility: visible;
        color: white;
        font-size: 14px !important;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }


    .menu-main.active {
        transform: translateY(100%);
        opacity: 1;
        visibility: visible;
    }

    .menu-main .link {
        font-size: 20px;
    }

    .menu-main .link-accent {
        font-size: 20px;
    }


    .dropbtn {
        position: absolute;
        top: 0;
        right: 20px;
        background: red;
        color: white;
        padding: 4px;
        width: 56px;
        height: 56px;
        border-radius: 100px;
        border: none;
        cursor: none;
        display: none;
        visibility: hidden;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        z-index: 2100;
    }
    
    .lang-icon {
        width: 52px;
        height: 52px;
    }
    .dropbtn:focus {
        background-color: #1A1A1A;
        color: white;
    }
    
    .dropdown {
        position: absolute;
        top: 10%;
        transform: translateY(-10%);
    }
    
    .dropdown-content {
        position: absolute;
        width: 160px;
        height: 150px;
        margin-top: 20px;
        top: 100%;
        left: 55%;
        background-color: white;
        font-size: 4vw;
        padding: 10px;
        border: 1px #1A1A1A solid;
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    
    .dropdown-content.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) !important; 
        z-index: 1100;
    }
    
    
    .dropdown-content a {
        position: relative;
        color: #1A1A1A;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    .dropdown-content a:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 1px;
        background-color: #1A1A1A; /* Цвет линии */
    }
    
    .dropdown-content a:hover {
        text-decoration: underline;
    }
    
    .menu-main a.active {
        text-decoration: underline;
        text-decoration-thickness: 4px; /* Толщина линии */
        text-underline-offset: 10px; /* Отступ от текста */
        text-decoration-color: #1A1A1A; /* Цвет подчёркивания */
    }
    

    .burger {
        display: flex;
        position: absolute;
        top: 30%;
        left: 32px;
        margin-bottom: 20px;
        z-index: 2100;
    }

    footer {
        position: relative;
        left: 0;
        bottom: 0;
        background-color: #1A1A1A;
        color: white;
        padding: 8vh 20px;
        text-align: left;
        font-size: 18px;
    }
    
    .footer-container {
        width: 100%;
        margin: 0;
    }
    
    .footer-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
        text-align: left;
        font-size: 18px;
        margin-bottom: 10vh;
        pointer-events: auto;
    }
    
    .footer-menu div {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        max-width: 335px;
    }
    
    .footer-menu a {
        position: relative;
        color: white;
        text-decoration: none;
        display: block;
        text-align: left;
        font-size: 18px;
        z-index: 10;
    }
    
    .footer-menu a:hover {
        text-decoration: underline;
    }
    
    .footer-form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-size: 18px;
        gap: 40px;
        margin: 120px 0;
        padding: 0 40px;
    }
    
    .footer-form input {
        display: flex;
        align-items: center;
        padding: 10px;
        width: 100%;
        height: 50px;
        border: 2px solid white;
        background: transparent;
        color: white;
        font-size: 18px;
        line-height: 1;
    }
    
    .footer-form input::placeholder {
        color: gray;
        font-size: 18px;
    }
    
    .footer-button {
        background: white;
        color: #1A1A1A;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 20px;
        font-weight: bold;
        min-width: 100%;
        font-size: 18px;
    }
    
    .footer-bottom {
        width: 100%;
        font-size: 10px;
        border-top: 2px solid white;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-bottom div {
        flex-grow: 1;
        text-align: center;
        margin-top: 20px;
    }
    
    .firma {
        font-family: "Inter", sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: white;
        text-transform: uppercase;
        margin: 0;
        text-wrap: nowrap;
    }




    .screen {
        position: relative;
        top: 0;
        left: 0;
        display: block;
        min-width: 100vw;
        max-height: 100vh;
        padding: 80px 20px;
        transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
        background-color: #000;
        overflow: hidden;
    }

    .background-img {
    position: fixed;
    top: 35%;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    object-position: 50% 30%;
    z-index: -2;
    }


    .content {
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 10;
        padding-bottom: 0;
        overflow: hidden;
    }

    .header {
    position: absolute;
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 100;
}

.screeen {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100vw;
    padding: 0;
    transition: transform 0.5s ease-in-out, opacity 0.3s ease-in-out;
    background-color: #1A1A1A;
    overflow: hidden;
    z-index: 100;
}

.sc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 120px;
    padding: 10vh 0;
    overflow-y: hidden;
}

.col {
    width: 80vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px; 
    overflow-y: hidden;
}

.img1 {
    width: 80vw;
}


.col p {
    width: 80vw;
    margin: 0;
}

.btn {
    width: 80vw;
    height: 40px;
    font-size: 3vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 30px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;
    color: #1a1a1a;
}

.sphere {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: auto;
    overflow-y: hidden;
}

.circle {
    position: relative;
    left: 10%;
    top: 0;
    height: 80vw;
    width: 80vw;
    display: flex;
}
.circle2 {
    position: relative;
    left: 10%;
    top: 0;
    height: 60vw;
    width: 60vw;
    display: flex;
}
.circle3 {
    position: relative;
    left: 10%;
    top: 30%;
    height: 40vw;
    width: 40vw;
    display: flex;
    padding: 20px;
    gap: 10px;
}

.img2 {
    width: 80vw;
    padding-top: 2vh;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
    max-height: 40vh;
    width: 80vw;
}

.imgs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

.img3{
    width: 30vw;
    transform: rotate(90deg);
}

.block {
    padding-top: 0;
    display: flex;
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;
    height: 100%;
     height: auto;
    max-height: 0;
    margin-bottom: 120px;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, max-height 0.5s ease;
}

.block.show {
    opacity: 1;
    visibility: visible;
    max-height: 1500px;
}

.educ {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
    height: 100%;
}

.img4 {
    height: auto;
    width: 4vw;
    padding-top: 0;
}

.img5-mob {
    width: 80vw;
}

.tc {
    position: relative;
    top: -50px;
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: center;
    justify-content: space-between;
    width: 40vw;
    padding: 0;
}

.tc2 {
    position: relative;
    top: -50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
    max-height: 40vh;
    width: 40vw;
}

.lang {
    width: 300px;
    height: 300px;
    background-color: white;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.lang-sm {
    width: 150px;
    height: 150px;
    border: 1px solid white;
    border-radius: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.langs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 0;
    height: 100%;
}

.img5 {
    display: none;
    opacity: 0;
    visibility: none;
}

.img5-mob {
    display: block;
    opacity: 1;
    visibility: visible;
}

.con {
    gap: 40px;
    padding: 20vh 0 10vh;
}

.contact-form {
    width: 80vw;
    gap: 20px;
}

input {
    background: none;
    border: 1px solid white;
    height: 40px;
    font-family: "Inter", sans-serif;
    font-size: 4vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    padding: 10px;
}

.message-input {
    height: 80px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    font-size: 4vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
    padding: 10px;
}

.send-button {
    width: 80vw;
    height: 40px;
    font-size: 4vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 30px;
    cursor: pointer;
}

.ff {
    font-size: 5vw;
}

.links {
    gap: 40px;
    padding-bottom: 20vh;
}

.go {
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    text-align: left;
    gap: 20px;
}

.go span {
    text-decoration: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    font-size: 3vw;
    color: #1a1a1a;
}

.arrow-icon {
    width: 40px;
    height: 40px;
}
    
}
