@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
.html,
body {
    font-family: "Inter";
    /*max-width: 1920px;*/
    max-height: 100%;
    overflow-x: hidden;

}
/*@media (max-width: 768px) {*/
/*    html, body {*/
/*        width: 100%;*/


/*    }*/
/*}*/

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #32CF71;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
    font-family: "Inter", sans-serif;
}

.link {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
}

.link:hover {
    color: #32CF71;
}

.link:focus {
    color: white; /* Устанавливает белый цвет текста после клика */
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #32CF71;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #00843e;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    background: black;
}

#header.header-transparent {
    background: none;
}

#header.header-scrolled {
    background: black;
    height: 60px;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 4px 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 30px;
}

#main {
    margin-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: left;
}

.navbar li {
    position: relative;
    margin-left: 50px;

}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #32CF71;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(17, 38, 48, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #32CF71;
    color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #1e4356;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #32CF71;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}

/*--------------------------------------------------------------
# intro Section
--------------------------------------------------------------*/
#intro {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: url("/static/index/img/monitor3.png") center top no-repeat;
    background-size: 100%;
}

#intro::before {
    content: "";
    position: relative;


}

#intro h2 {
    position: relative;
    color: #fff;
    margin-bottom: 15px;
    font-size: 3vw;
    font-weight: 700;
}

#intro p {
    color: #fff;
    font-size: 14px;
}

#intro .btn-get-started {
    font-family: "Intro";
    font-weight: 300;
    font-size: 19px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #32CF71;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 1px solid #32CF71;
    text-decoration: none;
}

#intro .btn-get-started:hover {
    background: #32CF71;
    color: #fff;
    text-decoration: none;
}

/*@media (max-width: 575px) {*/
/*    #intro h2 {*/
/*        font-size: 30px;*/
/*    }*/
/*}*/

#intro .intro-line {
    /*линия */
    width: 171px;
    height: 0;
    border: 1px solid rgb(57, 174, 104);
    margin-top: 10px;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #f3f8fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #68A4C4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services-title {
    /* Мы предлягаем попробовать и оценить нашу систему */

    font-size: 36px;
    font-weight: 900;
    line-height: 56px;
    text-align: left;
    margin-bottom: 30px;


}

.services .mycard {
    padding: 30px;
    margin: 0 0 40px 0;
    background: #fff;
    box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
    transition: all 0.3s ease-in-out;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 21px;
}

.services .mycard::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10%;
    width: 80%;
    height: 10px;
    background: #32CF71;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.services .title {
    font-weight: 700;
    margin-top: 15px;
    font-size: 18px;
}

.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    line-height: 1.2;
}

.services .icon-box-green .icon {
    background: #eafde7;
}

.services .icon-box-green .icon i {
    color: #41cf2e;
}

.services .icon-box-green:hover {
    border-color: #41cf2e;
}

.register-buttons {
    /* Блок кнопок регистрации */
    width: 100%;
    height: 100px;
    align-items: center; /* Выравнивает элементы по вертикали по центру */

}

.btn-register {
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #32CF71;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #32CF71;
    text-decoration: none;
    background: none;
}

.btn-register:hover {
    background: #32CF71;
    color: #fff;
    text-decoration: none;
}

.btn-register .link-register {
    text-decoration: none;
    color: black
}

.btn-register .link-register:hover {
    color: white;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding-top: 40px;
    height: 418px;
}

#footer .footer-up {
    height: 100%;
    width: 100%;
    margin: 0;
    background-image: url(/static/index/img/background-down_all.png);
    background-repeat: no-repeat;
    background-size: 100%;


}

#footer .footer-girl {

    position: relative;
    width: 341px;
    height: 499px;

    background-position: bottom;
    bottom: 122px;
    background: url(/static/index/img/girl.png);
    background-repeat: no-repeat;

}

#footer .text1 {
    /* ПРЯМО СЕЙЧАС */

    left: 754px;
    top: -500px;
    margin-top: 71px;
    font-weight: 900;
    font-size: 36px;
    line-height: 56px;
    color: #FFFFFF;
}

#footer .text2 {
    /* Заходите на наш Rutube-канал */

    top: -500px;
    font-family: "inter";
    font-weight: 900;
    font-size: 36px;
    line-height: 56px;
    color: #32CF71;
}

#footer .text3 {
    /* И ознакомьтесь с видео-инструкциями */

    left: 754px;
    top: -480px;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    color: #FFFFFF;
}

#footer .rutube-block {

    width: 392px;
    height: 80px;
    left: 754px;
    top: -450px;
    background: #FFFFFF;
    border-radius: 18px;
}

#footer .text-rutube {
    position: relative;
    width: 287.64px;
    height: 50px;
    left: 23px;
    top: 10px;
    bottom: 19px;
    background: url(/static/index/img/rutube.png);
}

#footer .play-button {
    /* play-button */
    position: relative;
    width: 46px;
    height: 46px;
    left: 330px;
    top: -32px;
    right: 15px;
    bottom: 19px;
    background: url(/static/index/img/play-button.png);
}

#footer .footer-down {
    height: 125px;
    width: 100%;
    background-color: black;
}

#footer .footer-logo {
    /* logo */
    position: relative;
    width: 200px;
    height: 41px;
    left: 190px;
    right: 1509px;
    top: 12px;
    bottom: 93px;
    background-image: url(/static/index/img/logo_h41.svg);
    background-repeat: no-repeat;

}

#footer .footer-black-text1 {
    /* 2025 © ООО «РПК Аврора» */
    position: relative;
    width: 220px;
    height: 17px;
    left: 190px;
    right: 1488px;
    top: 30px;
    bottom: 73px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}

#footer .footer-box {
    height: 0;

}

#footer .footer-box-contact {
    /* Блок контактов */
    position: relative;
    width: 550px;
    height: 48px;
    left: 420px;
    top: -46px;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
    color: #FFFFFF;
    text-align: center;

}

#footer .footer-box-social {
    /* Блок контактов */
    position: relative;
    width: 300px;
    height: 48px;
    left: 600px;
    top: 10px;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
    color: #FFFFFF;

}

#footer .footer-social-img img {
    display: inline-block;
    height: 20px; /* Устанавливает высоту изображений в 20px */
    width: 20px; /* Устанавливает ширину изображений в 20px */
    vertical-align: left; /* Выравнивает изображения по низу */
    margin-right: 10px; /* Добавляет отступ справа для отступа между изображениями */
}

.about-title {
    /* О нас */
    position: relative;
    font-size: 46px;
    font-weight: 900;
    line-height: 56px;
    text-align: center;
    margin-top: 50px;


}

.section-about .about-text {

    position: relative;
    height: 100%;
    width: 100%;

}

.about-title-small {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    text-align: center;

}

.text-indent {
    line-height: 1.5; /* Устанавливает междустрочный интервал в 1.5 раза больше размера шрифта */
}

.text-li {
    line-height: 1.6em;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.text-li::before {
    content: ''; /* Добавляет пустой контент */
    position: absolute; /* Добавляет абсолютное позиционирование */
    left: 0; /* Позиционирует кружок слева */
    top: 50%; /* Позиционирует кружок по центру */
    transform: translateY(-50%); /* Выравнивает кружок по вертикали */
    width: 10px; /* Устанавливает ширину кружка в 10px */
    height: 10px; /* Устанавливает высоту кружка в 10px */
    background: #32CF71; /* Устанавливает зеленый цвет */
    border-radius: 50%; /* Обводит кружок кругом */
}

.errorlist {
    color: white;
    background: #de5a5a;
}

.text-green {
    color: #5ade70;
}

.logo-img-sm {
    height: 30px;
}

#login-all .robot-block {
    margin-top: 20px;
}

#login-all label {
    margin-top: 20px;
}
#login-check {
    width: 140px;
    text-align: center;
    margin-bottom: 20px;
}
#login-check .login-check-text {
    position: relative;
    margin-bottom: 10px;
    align-items: center;
}

#login-check .form-check-input {
    vertical-align: bottom;
}

.counter {
    position: relative;
    width: 50%;
    margin-left: 45%;
}



