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

html {scroll-behavior: smooth;}
body {
    font-family: Oswald, sans-serif;
    font-style: normal;
    background-color: #fafafa
}
p{font-size:1.1rem;
}
.container {
    width: 1190px;
    margin-left: auto;
    margin-right: auto
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #5c5c5c;
    color: #fff;
    padding: 15px 20px;
    font-size: 12px;
    z-index: 999;
    display: none;
    animation: .5s ease-out forwards slideUp
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: right
}

.cookie-content a {
    color: #98ebb3
}

.cookie-content p {
    margin: 0 15px 0 0;
}
@media (max-width: 800px) {
	.cookie-content p {
    margin: 0 15px 0 0;
	font-size: .7rem;
}
}

.btn-accept {
    background-color: #01c8cb;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 4px
}
header
 {
    background: #fff;
    box-shadow: 0 0 5px #0000000d;
	position: fixed;
    top: 0;
    width: 100%;
	z-index:9;
}
.popup-fullscreen-content header
 {
	position: relative;
	box-shadow: none;
}
.popup-fullscreen-content .hero-after
 {
    margin: auto;
    text-align: center;
    max-width: 1190px;
}
.top {
    width: 1190px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}
.logo
 {
    display: flex;
}
.logo img {
    height: 55px;
}
.top-nav {
    display: flex;
    justify-content: end;
    align-items: center;
}
.top-coll {
    font-size: 1rem;
    color: #333;
    padding-left: 3rem;
	font-weight:300;
	display: flex;
    align-items: center;
}
.top-coll span
 {
    padding-left: 8px;
    line-height: 1.3;
}
.top-coll i {
    font-size: 1.2rem;
    color: #5a7ca3;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #f5f5f5;
}
section.hero {
    height: 100vh;
}
.hero{
	background:url(../img/hero.webp) no-repeat;
	background-size:cover;
}
.hero:before{
	position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background: #ffffffad;
}
.hero-content
 {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
	position:relative;
}
.hero-cols
 {
    display: flex;
	margin-top: 50px;
    background: #ffffff73;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 3px #0000000d;
}
.hero-col_left {
    width: 50%;
	padding-right: 2rem;
}
.hero-col_right
 {
    width: 50%;
	padding-left: 2rem;
}
.hero-img img
 {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.hero-menu
 {
    display: flex;
}
.hero-icon
 {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1.1rem;
    color: #074b98;
	transition: all .3s ease;
}
.hero-icon:hover
 {
    transform: translateY(-5px);
    filter: brightness(0.5);
}
.hero-icon i
 {
    display: block;
    width: 100%;
    font-size: 2rem;
    color: #8b9eb3;
	padding-bottom: 12px;
}
button {

    background: #074b98;
    padding: .7rem 2rem;
    border-radius: 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    display: block;
    cursor: pointer;
    box-shadow: 0 3px 6px #00000026;
    letter-spacing: .01rem;
    transition: all .3s ease;
	font-weight: 400;
}
button:hover{
	border: 2px solid #0b7318;
    background: #079819;
	transform: translateY(-5px);
}
.btn {
    background: #f69300;
    color: #fff;
    transition: all .3s;
    box-shadow: 0 2px 0 0;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.btn:hover {
    transition: all .3s
}

@keyframes css16_moving {
    30% {
        left: 100%;
        transform: skewX(-45deg) translateX(50%)
    }

    100% {
        left: 100%;
        transform: skewX(-45deg) translateX(50%)
    }
}

.btn:before {
    content: '';
    background-color: rgba(255, 255, 255, .4);
    background: linear-gradient(90deg, rgba(255, 255, 255, .15) 0%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, .15) 100%);
    background-origin: content-box;
    height: 100%;
    width: 50px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: skewX(-45deg) translateX(-150%);
    animation: css16_moving 4s ease-in-out infinite;
    z-index: 100
}
.top-coll a
 {
    color: #074b98;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
	transition: all .3s ease;
}
.top-coll a:hover{
	color:#000;
	text-decoration:underline
}
h1
 {
    font-size: 2rem;
    line-height: 1.5;
	//color: #074b98;
}
h2 {
    font-size: 1.8rem;
    line-height: 1.4;
	color: #074b98;
}
h3 {
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #222;
}
.hero-header p
 {
    margin: 1rem 0;
    font-size: 1.2rem;
}
.hero-text
 {
    padding: 2rem 0;
    text-align: center;
}
.hero-text i,
.screen2-img i
 {
    display: block;
    color: #4e4e4e;
    font-style: normal;
    font-size: .9rem;
    padding: 1rem 0;
}
.screen{
	padding: 4rem 0;
	display:flex;
	flex-direction:column;
	justify-content: center;
}
.screen2-main
 {
    display: flex;
	position:relative;
}

.screen2-text {
    width: 65%;
    padding: 3rem 3rem 0 0;
}
.screen2-img {
    width: 45%;
    text-align: center;
    position: absolute;
    right: 0;
}
.screen2-img img
 {
    height: auto;
    width: 100%;
    object-fit: cover;
	border-radius:45%;
}
.screen2-text p {
    color: #333;
    font-size: 1.3rem;
    padding-top: 1rem;
}
.screen2-text ul {
    padding: 1rem 0;
}
.screen2-text ul li {
    list-style: none;
    color: #444;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
}
.screen2-text ul li i {color: #3dcd70;}
.btn-box
 {
     margin-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn-box i
 {
    font-style: normal;
    display: block;
    padding-top: 1rem;
    font-size: .9rem;
    color: #797979;
    text-align: center;
}
.aligncenter{text-align:center}
.str{
	color:#444;
	font-size:1.3rem;
	margin:1rem 0 0
}
.banner
 {
    background: linear-gradient(352deg, #00519b, #0d99e7);
    border-radius: 20px;
	position:relative;
}
.banner::before{
	position:absolute;
	content:"";
	bottom:0;
	left:3rem;
	width:25%;
	height:98%;
	background: url(../img/bn-min.webp) no-repeat;
	background-size:contain;
}
.banner-out {
    padding: 3rem;
    width: 75%;
	margin-left:25%;
}
.banner-text__title
 {
    font-size: 1.7rem;
    color: #fff;
    font-weight: 500;
}
.banner-text__content ul
 {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    gap: 10px;
    padding: 2rem 0;
}
.banner-text__content li {
    margin: 0 0 0 20px;
    list-style: square;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
}
.banner-text__content p
 {
    margin-bottom: 1rem;
    color: #9ccae1;
}
.banner-text__end .btn {
    border: 0;
    outline: none;
    box-shadow: none;
}
@media (max-width: 1750px) {
	.hero-header
 {
    padding-top: 2rem;
}
h1 {
    font-size: 1.7rem;
}
h2 {
    font-size: 1.6rem;
}
.hero-header p
 {
    font-size: 1rem;
 }
.hero-cols {
	margin-top: 140px;
    align-items: center;
justify-content: space-between;
}
.hero-col_right {
    width: 40%;
}
.hero-text {
    padding: 1rem 0 0;
}
}
@media (max-width: 1440px) {
	section.hero {
    min-height: 100vh;
    height: 100%;
	position:relative;
}
.hero-content
 {
    min-height: 100vh;
    height: 100%;
 }
}
/* Оверлей (темный фон) */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        /* Сам попап */
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            width: 90%;
            max-width: 400px;
        }

        /* Заголовок */
        .popup h2 {
            margin-top: 0;
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

        /* Поля формы */
        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #555;
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box;
        }

        .form-group input:focus {
            outline: none;
            border-color: #007bff;
        }

        /* Кнопки */
        .popup-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .popup-buttons button {
            flex: 1;
            cursor: pointer;
        }

        .submit-btn {
            background: #28a745;
            color: white;
        }

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

        .close-btn {
            background: #dc3545;
            color: white;
        }

        .close-btn:hover {
            background: #c82333;
        }

        /* Крестик закрытия */
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 30px;
            cursor: pointer;
            color: #999;
            line-height: 1;
        }

        .popup-close:hover {
            color: #333;
        }
.popup-policy-link {
            margin: 15px 0;
            font-size: 13px;
            color: #666;
            text-align: center;
        }

        .popup-policy-link a {
            color: #007bff;
            text-decoration: none;
            cursor: pointer;
        }

        .popup-policy-link a:hover {
            text-decoration: underline;
        }		
#policyBlock {
            display: none;
			margin: auto;
            margin-top: 50px;
            padding: 30px;
            background: #fff;
            border-radius: 8px;
            max-width: 800px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        #policyBlock h3 {
            color: #333;
            margin-top: 0;
            margin-bottom: 20px;
        }

        #policyBlock p {
            line-height: 1.7;
            color: #555;
            margin-bottom: 15px;
        }

        #policyBlock strong {
            color: #222;
        }		
.carousel-section {
            position: relative;
            padding: 20px 0;

        }

        .carousel-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .carousel-container {
            width: 100%;
            position: relative;
            height: 380px;
            cursor: grab;
            user-select: none;
            -webkit-user-drag: none;
        }

        .carousel-container.dragging {
            cursor: grabbing;
        }

        .slides-track {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            transform: translate(-50%, -50%);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .slide {
            border-radius: 20px;
            overflow: hidden;
            
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            flex-shrink: 0;
            user-select: none;
            -webkit-user-drag: none;
        }

        .slide.side {
            width: 320px;
            height: 260px;
            opacity: 0.6;
            z-index: 5;
        }

        .slide.side.prev {
            left: 0;
        }

        .slide.side.next {
            right: 0;
        }

        .slide.center {
            width: 400px;
            height: 320px;
            opacity: 1;
            z-index: 10;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
        }

        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
            color: white;
            padding: 25px 20px 20px;
            font-size: 20px;
            font-weight: 600;
            text-align: center;
        }

        .carousel-btn {
            background: transparent;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            z-index: 15;
            font-size: 20px;
            color: #074b98;
			padding:0;
			box-shadow: none;
        }

        .carousel-btn:hover {
            background:#074b98;
			border:0;
			transform:none;
			color:#fff;
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .indicators {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }
		.indicator:hover{transform:none}

        .indicator.active {
            width: 36px;
            border-radius: 7px;
            background: #ffd700;
        }

        .cta-section {
            text-align: center;
            margin-top: 40px;
        }

        .cta-btn {
            background: #ffd700;
            color: #2c3e50;
            border: none;
            padding: 20px 50px;
            font-size: 20px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
            background: #ffdf00;
        }

        /* Планшетный режим */
        @media (max-width: 1024px) {
            .carousel-container {
                height: 340px;
            }

            .slide.side {
                width: 280px;
                height: 230px;
            }

            .slide.center {
                width: 360px;
                height: 290px;
            }
        }

        /* Мобильная версия */
        @media (max-width: 768px) {
            .carousel-container {
                height: 300px;
            }

            .slide {
                width: 85%;
                max-width: 320px;
                height: 280px;
            }

            .slide.side {
                display: none;
            }

            .slide.center {
                width: 85%;
                max-width: 320px;
                height: 280px;
            }

            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .slide-caption {
                font-size: 18px;
                padding: 20px 15px 15px;
            }

            .carousel-wrapper {
                gap: 10px;
            }

            .header h1 {
                line-height: 1.2;
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                height: 250px;
            }

            .slide {
                height: 230px;
            }

            .slide.center {
                height: 230px;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
footer {
    padding: 2rem 0;
    border-top: 5px solid #074b98;
    background: #f5f5f5;
}
.page-footer
 {
    display: flex;
    align-items: center;
}
.footer-logo
 {
    width: 18%;
}
.footer-logo img
 {
    width: 82%;
}
.footer-main {
    width: 85%;
    display: flex;
}
.footer-col {
    color: #111;
    width: 50%;
    padding: 0 2rem 0 0;
}
.footer-col span {
    display: block;
    font-weight: 300;
    font-size: .9rem;
    padding: 2px 0;
}
.footer-col a
 {
    color: #0070bf;
}
.footer-col a:hover{color:red}
.popup-fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-fullscreen {
    display: none;
    position: fixed;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background: #ffffff;
    border-radius: 12px;
    z-index: 2001;
    overflow: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.popup-fullscreen-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    cursor: pointer;
    color: #074b98;
    line-height: 1;
    z-index: 2002;
    transition: all 0.3s ease;
    font-weight: 300;
}

.popup-fullscreen-close:hover {
    color: #f69300;
    transform: rotate(90deg);
}

.popup-fullscreen-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .popup-fullscreen {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .popup-fullscreen-close {
        top: 10px;
        right: 20px;
        font-size: 32px;
    }
}

/* Предотвращение прокрутки страницы под попапом */
body.popup-open {
    overflow: hidden;
}
@media (max-width: 1023px) {
	.top
 {
    width: 100%;
    flex-direction: column;
	padding:1rem;
}
header
 {
    box-shadow: 0 0 5px #0000000d;
    position: relative;
 }
 .top-coll a
 {
    font-size: 1.2rem;
 }
.top-nav {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
.top-coll:first-child
 {
    display: none;
}
.top-coll:nth-child(2) {
    position: absolute;
    top: 1.2rem;
}
.top-coll i
 {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
 }
.top-coll:last-child
 {
    width: 100%;
    padding: 20px 0 0;
    display: block;
}
.top-coll button{
	width:100%;
	text-align:center;
}
.container
 {
    width: 90%;
 }
 
section.hero,
.hero-content
 {
    height: 100%;
	position: relative;
 }
 .hero-cols
 {
    display: block;
    margin-top: 20px;
 }
 .hero-col_left {
    width: 100%;
    padding-right: 0;
}
h1 {
    font-size: 25px;
    line-height: 1.5;
}
h2 {
    font-size: 22px;
    line-height: 1.4;
}
h3 {
    font-size: 19px;
}
.hero-header p {
    margin: 1rem 0;
    font-size: 1rem;
}
.hero-text {
    padding: 0;
}
.hero-col_right {
    width: 100%;
    padding-left: 0;
}
.hero-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-icon {
    text-align: center;
    width: 46%;
    background: #ffffff30;
    border-radius: 10px;
    margin: 2%;
}
.screen2-main {
    flex-direction: column;
    display: flex;
    position: relative;
}
.screen2-text {
    width: 100%;
    padding: 0;
}
.screen2-text p {
    color: #333;
    font-size: 16px;
}
.screen2-text ul li {
    font-size: 16px;
}
.screen2-img {
    width: 100%;
    text-align: center;
    position: relative;
}
.screen {
    padding: 2rem 0 0;
}
.banner {
    background: url(../img/banner.jpg) no-repeat left top;
	background-size: cover;
}
.banner-out {
    padding: 2rem;
    width: 100%;
	margin:0;
}
.banner-text__title {
    font-size: 25px;
}
.banner-text__content ul {
    display: block;
}
.banner-text__content li {
    margin: 25px 0 25px 20px;
}
footer {
    margin-top: 2rem;
}
.page-footer {
    display: block;
}
.footer-logo {
    display: none;
}
.footer-main {
    width: 100%;
    display: block;
}
.footer-col {
    color: #111;
    width: 100%;
    padding: 0 0 25px;
}
.popup-fullscreen-content header,.popup-fullscreen-content .hero-after{display:none}
.banner::before{display:none;}

}