:root {
    /* ---------------------------------- color --------------------------------- */
    --grifel: #626d71;
    --light: #cdcdc0;
    --late: #ddbc95;
    --cofe: #b38867;
    --white: white;
    --white2: #EBEBEB;
    --black: black;
    --dark: #535353;



    /* -------------------------------- tipografy ------------------------------- */
    --primary-ff: "Montserrat", sans-serif;

    /* ----------------------------------font-size-------------------------- */

}

/* Scrooling */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    background-color: var(--white);
    font-family: var(--primary-ff) !important;
    font-size: 10px;
    overflow: auto !important;

}

a {
    text-decoration: none !important;

}

a:hover {
    text-decoration: none !important;
}

/* a:focus {
    color: var(--white) !important;
 } */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* обнуляем дефолтные маркеры у всех маркированных списков */
/* form */
button,
input,
select,
textarea {
    margin: 0;
}

img {
    width: 100%;
}

strong {
    color: var(--blue);
}

.container {
    min-width: 100% !important;
}

.row {
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.margin_top100 {
    margin-top: 100px !important;
}


.btn_up img {
    width: 80%;
}


/* HEADER */

.header_container {
    background-color: rgba(255, 255, 255, 0.76);
    width: 100%;
    z-index: 3;
    position: fixed;
    top: 0;
    transition: background-color 0.3s ease;
    /* Добавлено для плавного перехода цвета фона */
}

.header_container.transparent {
    background-color: transparent;
}

.header_container.black {
    background-color: rgba(0, 0, 0, 0.76);
}

.wrapper_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper_logo a {
    width: 20%;

}

.wrapper_logo p {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}



/* 
 
 .header_container {
    min-width: 100% !important;
 
    z-index: 3;
    background-color: transparent;
    position: absolute;
 
 } */

.logoimg {
    width: 100%;
    transition: all 0.2s;
}

.row_header {
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;

}

.number {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.2s;
}

.number_header {
    color: var(--dark);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.2s;
}

.number:hover {
    color: var(--late);
}

.phone_icon {
    color: var(--white);
    font-size: 25px;
    transition: all 0.2s;
}

.phone_icon:hover {
    color: var(--late);
}





.social_header:hover {
    color: var(--white) !important;
}

.nav {
    justify-content: center;

}

.nav-link {
    color: var(--dark);
    font-size: 17px;
    font-weight: 600;
    padding: 2px 15px;
}

.nav-link:hover {
    color: var(--black);
}

.contactus {
    background-color: var(--dark);
    color: var(--white) !important;
    border-radius: 5px;
    transition: all 0.2s;

}

.contactus:hover {
    background-color: var(--light);
    color: var(--dark) !important;
    border-radius: 5px;
}

.botom_border {
    transition: all 0.2s !important;
    border-bottom: 1px solid var(--white) !important;
}

.botom_border:hover {
    border-bottom: 1px solid var(--light) !important;
}


.header_menu {
    font-size: 17px;
}

.contact_block {
    font-size: 20px;
    font-weight: 600;
}

.contact_block ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_block ul li {
    margin-left: 10px;
}

/* MOBILE */
.mobile_icon {
    display: none !important;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.mobile_icon a {
    font-size: 17px;
    color: var(--dark);
    font-weight: 500;
    display: block;
}

.social_header {
    font-size: 25px !important;
}

.burger_icon {
    font-size: 25px !important;
    color: var(--yelow);
    font-weight: 700;
    display: none;
    margin-bottom: 10px;
}



.menu_mob_left {
    visibility: visible;
    background-color: #ffffffd3;

}

.offcanvas-header img {
    width: 100%;
}

.list_mobile_menu {
    font-size: 20px;
    color: var(--dark);
    font-weight: 500;
    border-top: 1px solid var(--yelow);

}

/* INTRO */
.intro_container {
    min-height: 100vh;
    background-image: url(./img/intro.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.intro_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.253) 0%);
}


.intro_row {
    justify-content: flex-start;
    width: 100%;
    z-index: 1;
}

.intro_box {

    text-align: left;
    border-radius: 5px;
    height: fit-content;
    padding: 20px;

}

.intro_title {
    font-size: 50px;
    font-weight: 700;
    /* text-transform: uppercase; */
    line-height: 50px;
    color: var(--white);
}

.intro_undertitle {
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    color: var(--white);
    line-height: 40px;
}

.intro_undertitle span {
    font-weight: 900;
    color: var(--late);
}

.more_btn_wrapper {
    margin: 0 auto;
    font-size: 20px;
    margin-top: 50px;
    width: 100%;
    padding: 5px 10px 5px 10px;
    color: white;
    display: flex;
    justify-content: flex-start;

}


.cta {
    border: 2px solid var(--late);
    background-color: var(--late);
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 20px;
    transition: all 0.2s;
}

.cta:hover {
    border: 2px solid var(--late);
    background-color: transparent;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 20px;
}

.cta span {
    padding-bottom: 7px;
    letter-spacing: 4px;
    font-size: 14px;
    padding-right: 15px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}

.cta svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
    fill: var(--white);
}

.cta:hover svg {
    transform: translateX(0);
    fill: var(--late) !important;
}

.cta:active svg {
    transform: scale(0.9);
}

/* .hover-underline-animation {
    position: relative;
    color: black;
    padding-bottom: 20px;
} */

/* .hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--late);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
} */

.cta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ABOUT */
.about_container {
    min-height: fit-content;
    background-image: url(./img/about.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 50px;
}

.about_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.692) 0%);
}

.per_row {
    padding-top: 100px;
    justify-content: center;
    padding-bottom: 50px;
    color: var(--black);
    flex-direction: column;
    align-items: center;
}

.princ_row {
    padding-top: 0px;
    justify-content: center;
    padding-bottom: 100px;
}

.per_box {
    display: flex;
    text-align: center;
    margin-top: 40px;
    justify-content: space-between;
}

.per_box img {
    position: relative;
    width: 60px;
    height: 60px;

}

.btn_mobile_menu {
    display: none;
}

.per_box_title {
    font-size: 20px;
    margin-top: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
    width: 80%;
}

.per_box_undertitle {
    margin-top: 10px;
    font-size: 17px;
    text-align: justify;
}

.mini_title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
    position: relative;
    text-transform: uppercase;
}

.mini_title span {
    font-weight: 700;
    color: var(--cofe);
}


.road_box {
    text-align: center;
    min-height: 170px;
    padding: 0 !important;
    margin-top: 50px !important;
}

.road_row_box {
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.road_row {
    justify-content: center;
}


.road_img {
    width: 60px;
}

.road_text {
    font-size: 17px;
    margin-top: 10px;
}

.right_i {
    font-size: 60px;
    color: var(--cofe) !important;
    position: relative;
}

.i_mobile_yes {
    display: none;
}

/* WHY ME */

.why_container {
    min-height: 100vh;
    background-image: url(./img/why.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

.why_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.692) 0%);
}

.why_row {
    justify-content: center;
    color: var(--black);
}

.rounded {
    counter-reset: li;
    list-style: none;
    font-size: 17px;
    padding: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}

.rounded a {
    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    margin: .5em 0;
    background: #ddbd95ad;
    color: var(--grifel);
    text-decoration: none;
    border-radius: .3em;
    transition: .3s ease-out;
    cursor: pointer;
}

.rounded a:hover {
    background: transparent;
}

.rounded a:hover:before {
    transform: rotate(360deg);
}

.rounded a:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: var(--light);
    height: 2.5em;
    width: 2.5em;
    line-height: 2em;
    border: .3em solid white;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}

/* CERTIFICATE */
.cer_container {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--white2);
}

.cer_row {
    justify-content: center;
}

/* COURSE */

.course_container {
    min-height: fit-content;
    background-image: url(./img/course.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

.course_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.692) 0%);
}

.push li video {
    width: 250px;
}

.course_row {
    justify-content: center;
    position: relative;
}

.main_accordion .single_accordion {
    margin-bottom: 3px;
}

button.accordion {
    background: url(https://bootstraptema.ru/snippets/element/2016/abmd/accordion.png) no-repeat scroll right -114px var(--dark);
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.5s;
    transition: all 0.5s ease-in-out;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px 10px 0px 0px;
}

.mobile {
    display: none !important;
}

button.accordion.active {
    background: url(https://bootstraptema.ru/snippets/element/2016/abmd/accordion.png) no-repeat scroll right 10px var(--late);
    ;
}

div.panel {
    padding: 0.5rem;
    background-color: #fefefe;
    display: none;
    transition: all 0.6s;
    border: 1px solid #ddd;
    font-size: 17px;
    border-radius: 0px 0px 10px 10px;

}

div.panel p {
    margin-bottom: 0;
}

div.panel.show {
    display: block !important;
    margin-bottom: 0;
}


/* список */

.push {
    list-style: none;

}

.push li {
    position: relative;
    padding: 20px 0 20px 40px;
    color: var(--cofe);
    font-variant: small-caps;
    font-weight: bold;
    cursor: pointer;
}

.push li:before {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--dark);
    content: "";
    left: 0;
    transition: .3s ease-in-out;
    top: 27px;
}

.push li:after {
    position: absolute;
    border-left: 1px dotted var(--grifel);
    width: 1px;
    bottom: -12px;
    content: "";
    left: 3px;
    top: 48px;
}

.push li:hover:before {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, .2)
}

.push li:last-child:after {
    content: none;
}


/* AUTHOR */
.author_container {
    min-height: 90vh;
    background-image: url(./img/author.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

.author_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.692) 0%);
}

.author_row {
    justify-content: center;
    position: relative;
}

.author_row h1 {
    text-align: center;
    color: var(--cofe);
    font-weight: 600;
}

.author_box {
    margin-top: 50px;
}

.author_box iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0px 0px 40px 10px var(--grifel);
}

.author_text {
    margin-top: 20px;
    font-size: 17px;
    font-style: italic;
}

/* GALLERY */

.gallery_container {
    min-height: 90vh;
    background-image: url(./img/gallery.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

.gallery_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.692) 0%);
}

.gallery_row {
    justify-content: center;
    position: relative;
    padding-top: 30px;
}

.span_gal {
    color: var(--dark) !important;
    font-size: 13px !important;
    font-style: italic;
    font-weight: 400 !important;
    line-height: 13px !important;
    display: block;
    text-transform: lowercase !important;
}

.photo {
    width: 100%;
    max-height: 150px;
    overflow: hidden;

}

.photo2 {
    width: 100%;
    max-height: 300px;
    overflow: hidden;

}



.photo img {
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.photo2 img {
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.owl-next span {
    font-size: 50px;
    font-weight: 600;
    color: var(--gold);
}

.owl-prev span {
    font-weight: 600;
    font-size: 50px;
    color: var(--gold);
}


.owl-nav {
    margin: 0 auto;
    width: 100px;
    display: flex;
    justify-content: space-between;

}

.modal_fed_btn {
    font-size: 20px;
    color: var(--gold);
    cursor: pointer;
    font-weight: 500;
    margin: 20px;
    color: var(--white);
}

.close {
    font-size: 30px;
    cursor: pointer;
    color: var(--gold);
}

.modal-content2 {
    background-color: var(--white);
    width: 400px !important;
    margin: 0 auto;

}

.modal-content {
    background-color: var(--white);

    width: 100%;
    margin: 0 auto;
}

.gallery_body {
    background-color: var(--dark);

}

.modal-image {
    width: 100%;
}

.gallery_box iframe {
    height: 300px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 5px var(--grifel);
}

/* PRICE */

.price_container {
    min-height: 90vh;
    background-image: url(./img/price2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

.price_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.295) 0%);
}

.price_row {
    justify-content: center;
    position: relative;
    padding-top: 30px;
}


.plan {
    border-radius: 16px;
    box-shadow: 0 30px 30px -25px rgba(0, 38, 255, 0.205);
    padding: 10px;
    background-color: #fff;
    color: #697e91;
/* height: 400px; */
}



.plan strong {
    font-weight: 600;
    color: var(--cofe);
}

.plan .inner {
    align-items: center;
    padding: 20px;
    padding-top: 40px;
    background-color: #ecf0ff;
    border-radius: 12px;
    position: relative;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.inner ul {
    list-style-type: disc;
    font-size: 20px;
    margin-left: 10px;
}

.plan .pricing {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #bed6fb;
    border-radius: 99em 0 0 99em;
    display: flex;
    align-items: center;
    padding: 0.625em 0.75em;
    font-size: 1.25rem;
    font-weight: 600;
    color: #425475;
}

.plan .pricing small {
    color: #707a91;
    font-size: 0.75em;
    margin-left: 0.25em;
}

.plan .title {
    font-weight: 600;
    font-size: 30px;
    color: var(--cofe);
    margin-top: 20px;
    text-align: center;
}

.plan .title+* {
    margin-top: 0.75rem;
}

.plan .info+* {
    margin-top: 1rem;
}

.plan .features {
    display: flex;
    flex-direction: column;
}

.plan .features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 20px;
}

.plan .features li+* {
    margin-top: 0.75rem;

}

.plan .features .icon {
    background-color: #1FCAC5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.plan .info {
    font-size: 18px;
    text-align: center;
}

.info strong {
    font-size: 30px;

}

.plan .features .icon svg {
    width: 14px;
    height: 14px;
}

.plan .features+* {
    margin-top: 1.25rem;
}

.plan .action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.plan .button {
    background-color: var(--late);
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
    border: 0;
    outline: 0;
    width: 100%;
    padding: 0.625em 0.75em;
    text-decoration: none;
    transition: all 0.2s;
}

.plan .button:hover,
.plan .button:focus {
    background-color: var(--cofe);
}


.countdown {
    color: var(--dark);
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.count_box_wrapper {
    font-size: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    padding: 10px;
    border-radius: 5px;
}

.count_box {
    font-size: 40px;
    font-weight: 700;
}

.under_timer {
    font-size: 25px;
    color: var(--primary-color);

}


/* FAQ */


.faq_container {
    background-image: url(./img/price.jpg);
}

/* CONTACT */
.footer_container {
    min-height: 90vh;
    /* background-image: url(./img/price2.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

/* .price_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.692) 0%);
} */

.footer_row {
    justify-content: center;
    position: relative;
    padding-top: 30px;
}

.footer_row p {
    text-align: left;
    font-size: 20px;
}

.mail {
    color: var(--dark);
}

.mail:hover {
    color: var(--dark);
}

.footer_text {
    font-style: italic;
    margin-top: 20px;
}

.copyright {
    font-size: 15px;
    color: var(--dark);
    text-align: center;
    margin-top: 50px;
 }

 .copyright a {
    color: var(--dark);
 }

 .block_more_info p {
    font-size: 20px;
 }




 .push li img {
    width: 250px;
}















/* MODAL */
.modal-dialog {
    max-width: 700px;

}

.modal-bg {

    color: var(--dark);
    position: relative;
    display: flex;
    flex-direction: row;

}

.modal-header::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.37) 0%);
}

.modal-header {
    border-bottom: none;
    text-align: center;
    width: 40%;
    position: relative;
    background-image: url(./img/intro.jpg);
    background-size: cover;
    background-position-x: -150px;
    display: flex;
    flex-direction: column;
}

.modal-body {
    position: relative;
}

.btn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 15px;
}

.thnks {
    min-height: 400px;
}

.modal-header img {
    width: 100px;
    margin: 0 auto;
}

.modal-title img {
    margin: 0 auto;
}

.label_input {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.label_input label {
    font-size: 20px;
}

.label_input input {
    width: 80%;
    border: 1px solid var(--grifel);
    outline: none;
    padding-left: 5px;
    border-radius: 2px;
    font-size: 20px;
    color: var(--grifel);
    margin: 0 auto;
    margin-top: 10px;
}


.textarea {
    width: 80%;
    border: 1px solid var(--grifel);
    outline: none;
    padding-left: 5px;
    border-radius: 2px;
    font-size: 20px;
    color: var(--dark);
    margin: 0 auto;
    margin-top: 10px;
}

.form_title {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    color: var(--grifel);
    line-height: 40px;
}

.form_under_title {
    font-size: 20px;
    margin-top: 10px;
}

.form_under_title span {
    color: var(--gold);
}

.mobile_social {
    display: flex;
}

.first_form_btn {
    width: 50%;
    border: none;
    outline: none;
    border-radius: 2px;
    font-size: 20px;
    color: var(--grifel);
    font-weight: 500;
    background-color: var(--late);
}

.modal_my {
    background-color: var(--white);
    color: var(--dark);
    height: 300px;
}

.modalthnks {
    display: none;
}

iframe {
    width: 100%;
    height: 400px;
}

.contact_row {
    margin-top: 100px !important;
}

.adress {
    font-size: 20px;
}



/* BTN */
.btn_up {
    /* background-color: rgba(0, 0, 0, 0.541) !important; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 20px;
    bottom: 80px;
    position: fixed;
    cursor: pointer;
    text-align: center;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    /* box-shadow: 0px 0px 15px #00000027; */
    padding: 15px 10px;
    border-radius: 5em;
}

.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px 0px;
    background-color: #fff;
    box-shadow: 0px 0px 4px #00000027;
    transition: 0.3s;
}

.social-button:hover {
    background-color: #f2f2f2;
    box-shadow: 0px 0px 6px 3px #00000027;
}

.social-buttons svg {
    transition: 0.3s;
    height: 20px;
}

.facebook {
    background-color: #7360F2;
}

.facebook svg {
    fill: #f2f2f2;
}

.facebook:hover svg {
    fill: #7360F2;
}


.linkedin {
    background-color: #2AABEE;
}

.linkedin svg {
    fill: #f2f2f2;
}

.linkedin:hover svg {
    fill: #2AABEE;
}

.instagram {
    background-color: #25d366;
}

.instagram svg {
    fill: #f2f2f2;
}

.instagram:hover svg {
    fill: #25d366;
}



/* МEDIA */

/* !TABLET */
@media (min-width: 569px) and (max-width:1024px) {}

/* !MOBILE */
@media (min-width: 0px) and (max-width:568px) {

    /* HEADER */
    .header_menu {
        display: none;
    }

    .logoimg {
        margin-bottom: 10px;
    }

    .row_header {
        padding-bottom: 0px;
        align-items: center;
    }

    .contact_block {
        display: none;
    }

    .mobile_icon {
        display: block !important;
        display: flex !important;
        justify-content: space-between;

        flex-direction: row;
    }

    .phone_icon {
        font-size: 25px;
    }

    .burger_icon {

        display: block;
    }

    .margin_top {
        margin-top: 30px;
    }

    .wrapper_logo {
        margin-bottom: 0px;
        text-align: center;
        align-items: center;
   

    }

    .wrapper_logo a {
    width: 20%;

}

    .wrapper_logo p {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

    /* INTRO */

    .intro_container {
        justify-content: center;
    }

    .intro_box {

        text-align: center;
        border-radius: 5px;
        height: 400px;
        padding: 10px;
        padding-top: 20px;

    }

    .mini_title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
        color: var(--black);
        position: relative;
    }



    .intro_title {
        font-size: 28px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 35px;
    }

    .intro_undertitle {
        font-size: 20px;
        font-weight: 500;
        margin-top: 30px;
        line-height: 30px;
        width: 100%;
    }


    .more_btn_wrapper {
        margin: 0 auto;
        font-size: 20px;
        margin-top: 50px;
        width: 100%;
        padding: 5px 10px 5px 10px;
        color: white;
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;

    }

    .order,
    .more {
        width: 100%;
        padding: 10px;
        font-weight: 700;
        cursor: pointer;
        margin-bottom: 10px;
    }

    .modal-bg {

        color: var(--dark);
        position: relative;
        display: flex;
        flex-direction: column;

    }

    .modal-header {
        width: 100%;
        background-position-x: 0px;
        background-position-y: 180px;
    }

    /* ABOUT */
    .about_container {
        min-height: fit-content;
        background-image: url(./img/about.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        padding-bottom: 50px;
        background-position-x: -3000px;
    }

    .right_i {
        font-size: 40px;
        color: var(--yelow);
        transform: rotate(90deg);
    }

    .i_mobile_yes {
        display: block;
        margin-top: 30px;
    }

    .road_row_box {
        height: fit-content;
        margin-top: 30px;
    }

    .road_box {
        text-align: center;
        min-height: fit-content;
        padding: 0 !important;
        margin-top: 30px !important;
    }

    .road_img {
        width: 50px;
    }

    .per_box img {
        position: relative;
        width: 65px;

    }

    /* CERTIFICATE */
    .cer_container {
        min-height: fit-content;
    }

    /* AUTHOR*/
    .author_box iframe {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        box-shadow: 0px 0px 40px 10px var(--grifel);
    }

    .author_container {
        min-height: fit-content;
        background-image: url(./img/author.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-position-x: -100px;
        background-size: cover;
        position: relative;
        padding-bottom: 100px;
        padding-top: 100px;
    }

    /* GALLERY */
    .gallery_box {
        margin-bottom: 20px;
    }

    .gallery_box iframe {
        height: 200px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px 5px var(--grifel);
    }

    /* PRICE */
    .price_box {
        padding: 0px;
        margin-top: 20px;
    }

    .plan {
        padding: 0px;
    }

    .countdown {
        color: var(--text-color);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        margin-bottom: 20px;
    }

    .count_box_wrapper {
        margin-bottom: 5px;
        width: fit-content;
    }

    .count_box {
        font-size: 25px;
        font-weight: 700;
    }

    .coutn_under_title {
        font-size: 20px;
    }

    .under_timer {
        font-size: 20px !important;
        color: var(--primary-color);

    }

    .cta {
        padding: 0px 0px;
    }

    .cta span {
        padding-bottom: 7px;
        letter-spacing: 4px;
        font-size: 12px;
        padding-right: 15px;
        text-transform: uppercase;
        color: var(--white);
    }

    .push li img {
        width: 100%;
    }

    .push li  {
    padding: 20px 0px 5px 20px;
    }

    .mobile {
        display: block !important;
    }


    button.accordion {
        background: url(https://bootstraptema.ru/snippets/element/2016/abmd/accordion.png) no-repeat scroll right -114px var(--dark);
        color: #fff;
        cursor: pointer;
        padding: 18px;
        padding-right: 40px;
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        transition: 0.5s;
        transition: all 0.5s ease-in-out;
        font-size: 20px;
        font-weight: 600;
        border-radius: 10px 10px 0px 0px;
    }

    .plan .inner {
        align-items: center;
        padding: 20px;
        padding-top: 40px;
        background-color: #ecf0ff;
        border-radius: 12px;
        position: relative;
        height: fit-content;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    

    .per_box_title {
        font-size: 20px;
        margin-top: 15px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: left;
        width: 80%;
        margin-left: 20px;
    }

    .btn_mobile_menu {
        display: block;
    }
}


































/* THNKS */
.thnks_container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-image: url(./img/intro.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-width: 100%;
}

.thnks_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.39) 0%);

}

.thnks_row {
    width: 100%;
    z-index: 2;
    position: relative;
    color: var(--white);
}

.thnks_box {
    text-align: center;
}

.thnks_box img {
    width: 20%;
}

.thnks_title {
    font-size: 40px;
    font-weight: 700;
}

.thnks_under_title {
    font-size: 25px;
    font-weight: 400;
    margin-top: 20px;
}