@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');

body {
    /*padding: 122px 0 272px;*/
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}

a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: 0 !important;
    outline-color: transparent !important;
    outline-width: 0 !important;
    outline-style: none !important;
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
}

/*Общие стили*/
.rc-anchor {
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

.grecaptcha-badge {
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}


.custom_submit_btn {
    padding: 12px 22px;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #ffad32;
    background: #ffad32;
    transition: background .3s ease;
}

.custom_submit_btn[disabled] {
    background: none !important;
    border: 1px solid #ccc;
    cursor: not-allowed;
    color: #666;
}

/**/
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.header-mobile {
    display: none;
}

.mobile-menu {
    display: none;
}

.header-btn:active {
    color: #fff !important;
    background: #e18d0f !important;
    border-color: #e18d0f !important;
}

/* Popup */

.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);

}

.modal-content {
    background-color: #fefefe;
    position: relative;
    margin: 10% auto;
    padding: 40px 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 450px;
    animation-name: modalopen;
    animation-duration: 0.5s;
}

.close {
    position: absolute;
    top: 0;
    right: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.modal-form .form-label span {
    color: #ffad32;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-form-button {
    margin-top: 20px;
    padding: 12px 22px;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #ffad32;
    background: #ffad32;
    transition: background 0.3s ease;
}

.modal-form-button:hover {
    background: #e18d0f;
}

.modal-form-button[disabled] {
    /* background-color: #ccc; */
    background: none !important;
    border: 1px solid #ccc;
    cursor: not-allowed;
    color: #666;
}

.modal-form .form-group input[type="checkbox"] {
    display: none;
}

.modal-form .form-group input[type="checkbox"] + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.modal-form .form-group input[type="checkbox"] + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
}


.modal-form .form-group input[type="checkbox"]:checked + label::before {
    background-color: #ffad32;
    border-color: #ffad32;
}


.modal-form .form-group input[type="checkbox"]:checked + label::after {
    content: '\2713';
    position: absolute;
    left: 3px;
    bottom: 1px;
    color: #fff;
    font-size: 16px;
}

.agreeCheckbox label {
    font-size: 14px;
}

#notification {
    position: fixed;
    top: -100px;
    left: 10px;
    background-color: #ffad32;
    color: white;
    padding: 15px;
    opacity: 0;
    z-index: 1200;
    transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#notification.error {
    background-color: #d9534f;
}

#notification.active {
    top: 10px;
    opacity: 1;
}

/* Анимация открытия модального окна */
@keyframes modalopen {
    from {
        top: -50px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

/*  */
/* Breadcrumbs */

.breadcrumb {
    margin: 30px 0 10px;
}

.breadcrumb-item + .breadcrumb-item:before {
    display: none;
}

.breadcrumb-item a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
}

.breadcrumb-arrow {
    padding-top: 2px;
}

.breadcrumb-arrow i::before {
    color: #ffad32;
    font-size: 14px;
    margin: 0 10px;
}

.breadcrumb-item.active {
    padding-top: 2px;
}

/*  */

/* Page */

.page-title {
    margin-bottom: 40px;
}

/*  */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.top-header {
    background: #000d25;
    padding: 10px 0;

}

.top-header .d-flex {
    justify-content: right;
    width: 100%;
    gap: 30px;
}

.top-header a,
.top-header div {
    text-decoration: none;
    color: #fff;
}

.top-header a,
.top-header div i {
    margin-right: 5px;
}


header {
    background: #00102e;
    padding-bottom: 10px;
}

.header-logo {
    width: 60px;
}

.header-menu {
    gap: 20px;
}

.header-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.8px;
}

.header-menu a:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #ffad32;
    transition: width 0.5s;
}

.header-menu a:hover:after {
    content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    background-color: #ffad32;
    transition: width 0.5s;
}

.header-btn {
    color: #fff;
    background: #ffad32;
    /* background: #ffa41c; */
    /* border-radius: 5px; */
    /* padding: 12px 24px; */
    padding: 8px 16px;
    border-radius: 10px;

    transition: 0.3s ease;
}

.header-btn:hover {
    color: #fff;
    background: #e18d0f;
}

.name {
    color: #ffad32;

    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 550;
    margin: 70px 0 40px;
    text-align: center;

    font-family: 'PT Sans', sans-serif;
}

/*Кнопка ватсап*/
.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 90px;
    transform: translate(-50%, -50%);
    background: #25D366;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #fff;
    text-align: center;
    line-height: 53px;
    font-size: 35px;
    z-index: 998;
}

.whatsapp-button a {
    color: #fff;
}

.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.whatsapp-button:after {
    animation-delay: .5s;
}

/*Баннер куков*/
.cookie-banner {
    position: fixed;
    display: none;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 450px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    padding: 20px;
    color: #333;
}

.cookie-banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cookie-banner h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: start;
}

.cookie-banner p {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: start;
}

.cookie-banner .btn{
    margin-top: 20px;
    padding: 8px 32px;
}
.cookie-banner a {
    color: #f29a17;
    text-decoration: none;
}

.cookie-banner .cookie-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    text-decoration: none;
}

.cookie-banner .cookie-btn:hover {
    background-color: #0056b3;
}

.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    display: none;
    z-index: 10000;
}

.cookie-settings h3 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-settings label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.cookie-settings button {
    width: 100%;
    background-color: #28a745;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-settings button:hover {
    background-color: #218838;
}

.cookie-settings-content {
    display: none;
}
.cookie-banner .btn-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 768px){
    .cookie-banner .btn-wrap{
        flex-direction: column;
    }
}
.btn {
    padding: 8px 16px;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: none;
}

.btn-primary {
    color: #fff;
    background: #ffad32;
    border: 1px solid #FFAD32;
    outline: none;
}

.btn-primary:hover {
    background: #e18d0f;
    border-color: #e18d0f;
}

.btn-primary:focus {
    background: #ffad32;
    border: 1px solid #FFAD32;
    outline: none;
    box-shadow: none;
}

.btn-light {
    color: #333;
    background: #f8f9fa;
    border: 1px solid #ccc;
    outline: none;
}


.btn-light:hover {
    background: #e2e6ea;
    border-color: #b8b8b8;
}


.btn-light:focus {
    background: #f8f9fa;
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media (max-width: 800px) {
    .whatsapp-button {
        bottom: 0;
        right: 0;
    }
}

/* Footer */
footer {
    margin-top: 50px;
    background: #000d25;
}

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

footer li i {
    margin-right: 5px;
}


@media (max-width: 768px) {
    body {
        /*padding: 83px 0 488px;*/
    }

    .header-desctop {
        display: none;
    }

    .header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;

        background: #00102e;
        padding: 10px 20px;
    }

    .header-logo {
        width: 50px;
    }

    .menu-icon {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bar {
        width: 30px;
        height: 2px;
        border-radius: 1px;
        background-color: #fff;
        margin: 3.5px 0;
        transition: 0.4s;
    }

    .menu-icon.open .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-6.5px, 6.5px);
    }

    .menu-icon.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.open .bar:nth-child(3) {
        transform: rotate(45deg) translate(-6.5px, -6.5px);
    }

}
