/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    font-family: "Inter", sans-serif;
    position: absolute;
}
body, html {
    overflow-x: hidden;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
}
header{
    /*min-height: 1080px;*/
    background-image: url("../images/back1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 60px;
}
.header__container{
    /*background-color: #002117;*/
    /*position: fixed;*/
    /*width: 100%;*/
}
.header__nav{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 10px;
    transition: transform 0.3s ease-in-out;
    gap: 50px;
}
.adaptive__logo{
    display: none;
}
.header__nav a{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.8px;
}
.link-with-circle {
    position: relative; /* Для корректного позиционирования псевдоэлемента */
    font-size: 1.4rem; /* Размер текста */
    font-weight: bold;
    text-decoration: none; /* Убираем стандартное подчеркивание */
    color: #000; /* Цвет текста */
}

.link-with-circle::after {
    content: ''; /* Псевдоэлемент не содержит текст, только визуальный контент */
    position: absolute;
    bottom: -10px; /* Расстояние между текстом и кружочком */
    left: 50%; /* Центрируем кружок по горизонтали относительно текста */
    transform: translateX(-50%); /* Центрируем кружок точно по середине */
    width: 8px; /* Ширина кружка */
    height: 8px; /* Высота кружка */
    border-radius: 50%; /* Делаем элемент кругом */
    background-color: #ffffff; /* Цвет кружка */
}

.header__nav img{
    width: 120px;
    height: 107px;
    flex-shrink: 0;
    aspect-ratio: 120/107;
}
.burger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
/*--------------------*/
.header__preview{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*min-height: 875px;*/
}
.header__preview h2{
    text-align: center;
    -webkit-text-stroke-width: 2.5px;
    -webkit-text-stroke-color: #FFF;
    font-size: 75px;
    font-style: normal;
    font-weight: 400;
    line-height: 138px;
    letter-spacing: 1.5px;
    color: #058069;
    margin-bottom: 30px;
}
.header__preview h3{
    color: #FFF;
    text-align: center;
    font-size: 57px;
    font-style: normal;
    font-weight: 500;
    line-height: 107.8px;
    letter-spacing: 1.5px;
    margin-bottom: 54px;
}
.header__preview button{
    display: flex;
    width: 203.44px;
    height: 62px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #FFF;
}
.header__preview button{
    color: #FFF;
    text-align: center;
    font-size: 15.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    background: none;
    transition: 0.3s;
}
.header__preview button:hover{
    background: #FFFFFF;
    transition: 0.3s;
    color: black;
}
/*--------------------*/
.contact-container {
    max-width: 1300px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 70px 20px;
}

.contact-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 21px;
    color: #333;
    margin-bottom: 40px;
}
.all{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-info1 {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}

.contact-info1 p {
    margin: 5px 0;
    font-size: 21px;
}

.contact-info1 a {
    color: #007bff;
    text-decoration: none;
}

.contact-info1 a:hover {
    text-decoration: underline;
}

.form-container {
    background:#fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.input-group input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    height: 100px;
    resize: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 15px 0;
}

.checkbox-group input {
    margin-right: 5px;
    height: 15px;
    width: 15px;
}

.checkbox-group a {
    color: #007bff;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

form button{
    display: flex;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    padding: 0 33.67px;
    justify-content: center;
    align-items: center;
    gap: 17.8px;
    flex-shrink: 0;
    color: #FFF;
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(270deg, #00533A 0%, #058069 100%);
    background-size: 200% 200%;
    transition: background-position 0.8s ease-in-out;
}
form button:hover {
    background: linear-gradient(270deg, #058069 0%, #00533A 100%);
    background-size: 200% 200%;
    background-position: 100% 100%;
}


/*--------------------*/
.app{
    background-image: url("../images/back4.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.app__container{
    max-width: 1061px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 95px;
    align-items: center;
    gap: 20px;
}
.app__text{
    max-width: 515px;
    padding-top: 50px;
}
.app__text h2{
    color: #111;
    font-family: "Bebas Neue",sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 96px;
    letter-spacing: 0.8px;
    margin-bottom: 40px;
}
.app__text p{
    color: #1D1D1D;
    font-size: 15.875px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.8px;
    margin-bottom: 44px;
}
.app__text img{
    width: 168.13px;
    height: 50px;
    flex-shrink: 0;
}
.download-btn{
    background: black;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    padding: 15px 25px;
    border: 1px solid;
    transition: transform 0.3s ease-in-out;
}
.app__text button {
    overflow: hidden;
    display: inline-block;
}
.app__text button {
    transition: transform 0.3s ease-in-out;
}
.app__text button:hover  {
    transform: scale(1.1);
}

/*--------------------*/
.footer {
    background-color: #058069;
    color: white;
    text-align: center;
    padding: 20px 0;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
}
.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}
.contact-info p {
    margin: 5px 0;
    color: #FFF;
    font-size: 15.75px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 133.333% */
    letter-spacing: 0.8px;
}
.footer-nav,
.footer-policy {
    margin: 10px 0;
}
.contact-info{
    margin-bottom: 40px;
}
.footer-nav a,
.footer-policy a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 131.25% */
    letter-spacing: 0.8px;
}
.footer-nav a:hover,
.footer-policy a:hover {
    text-decoration: underline;
}
.footer-bottom p {
    margin: 10px 0 5px;
}
.container img{
    width: 160px;
    margin-bottom: 40px;
}
.footer__bottom{
    padding: 21px 20px 0 20px;
    width: 100%;
    border-top: 1px solid #dfdfdf;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom p{
    color: #FFF;
    font-size: 15.875px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 132.283% */
    letter-spacing: 0.8px;
}



@media(max-width: 789px){
    .app__image{
        display: none;
    }
    .app__container{
        padding-top: 160px;
        padding-bottom: 40px;
        display: flex;
        justify-content: center;
    }
    .app__text{
        text-align: center;
    }
    .app__text h2{
        margin-bottom: 0;
        font-size: 4rem;
        line-height: 58px;
    }
    .play__text-number a{
        font-size: 140px;
    }
}

@media (max-width: 900px) {
    .burger {
        display: flex;
        justify-content: end;
        /*width: 100%;*/
        z-index: 1000;
    }
    .header__container{
        display: flex;
        justify-content: space-between;
        padding: 30px;
        align-items: center;
    }
    .header__nav{
        position: fixed;
        top: 0;
        right: 0;
        background: rgb(0 39 13 / 95%);
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        transform: translateY(-100%);
        box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.5);
    }
    .header__nav a{
        margin: 10px 0;
        font-size: 30px;
        font-weight: 500;
        line-height: 30px;
    }
    .header__nav.active{
        transform: translateY(0);
    }
    .header__logo1{
        display: block;
        font-size: 32px;
        color: white;
        font-weight: 600;
    }
    .header__nav img{
        display: none;
    }
    .no-scroll {
        overflow: hidden;
        height: 100vh;
    }
    .adaptive__logo{
        display: block;
    }
    .header__preview h2{
        font-size: 95px;
    }
    .header__preview h3{
        font-size: 42px;
    }
}
@media(max-width: 600px){
    .header__preview h2 {
        font-size: 55px;
    }
}
