:root {
    --accent: #729c0b;
    --accent: #db5a5a;
    --yellow: #f4cd76;
    --light: #f5f5f5;
    --light-yellow: #fff4dc;
}

body {
    background-color: #FBFBFB;
    margin: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.44;
    font-style: normal;
    color: #222;
    min-width: 360px;
    overflow-x: hidden;
    /* letter-spacing: 1px; */
    position: relative;
    min-height: 100vh;
}

main {
    overflow: hidden;
    min-height: calc(100vh - 400px);
    background: var(--light);
    padding-top: 40px;
}

.home main {
    padding-top: 0;
}

.container {
    margin: auto;
    max-width: 1290px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
}

main .container {
    overflow: hidden;
}

.d-flex {
    display: flex;
}

.t-center {
    text-align: center;
}


h1,
h2,
h5 {
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 125%;
}

h1 {
    margin-top: 0;
}

.home h1 {
    font-weight: 600;
    line-height: 130%;
    font-size: 24px;
}

.home h2,
h1.page-title {
    text-transform: uppercase;
    margin: 0 0 25px;
    font-size: 40px;
}

h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin: 0 0 25px;
}


h3 {
    font-size: 24px;
    line-height: 125%;
    font-weight: 600;
    margin: 0 0 25px;
    /* text-transform: uppercase; */
}

h4 {
    font-size: 22px;
    line-height: 130%;
    font-weight: 600;
    margin: 0 0 20px;
}

h5 {
    font-size: 20px;
    margin: 0 0 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-transform: uppercase;
    gap: 6px;
    height: 44px;
    padding-inline: 20px;
    white-space: nowrap;
    font-weight: 700;

    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.main-btn {
    background-color: var(--accent);
    color: #fff;
}

.main-btn:hover {
    background-color: var(--yellow);
    color: #222;
}

.white-btn {
    background-color: #fff;
    color: var(--accent);
    border-color: var(--accent);
}

.white-btn:hover {
    background-color: var(--light);
    color: var(--accent);
}

a {
    transition: all 0.3s ease-in-out;
}


/******/
/* body {
    padding-top: 95px;
} */

#header {
    width: 100%;
    background-color: #fff;
}

.nav-row {
    padding-block: 5px;
    align-items: center;
    column-gap: 70px;
    transition: padding 0.3s;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding .custom-logo-link {
    width: 250px;
    display: block;
}

.site-branding .custom-logo-link img {
    display: block;
}

/********/

.burger-container {
    display: none;
}

.main-navigation {
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.menu-main-container {
    width: 100%;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding-left: 0;
    justify-content: space-between;
    column-gap: 15px;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul .menu-item-has-children {
    padding-right: 11px;
}

.main-navigation ul.menu>li>a {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    display: block;
    padding: 7px 0 3px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid transparent;
}

.main-navigation ul.menu>li.current-menu-item>a {
    border-bottom: 2px solid var(--accent);
}

.main-navigation ul.menu>li>a:hover {
    color: var(--accent);
}

.main-navigation ul .menu-item-has-children::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 5.5px 0 5.5px;
    border-color: #222 transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    right: -7px;
    top: 14px;
    transition: all 0.3s ease-in-out;
}

.main-navigation ul .menu-item-has-children:hover {
    color: var(--accent);
}

.main-navigation ul .menu-item-has-children:hover::before {
    border-color: var(--accent) transparent transparent transparent;
}

.main-navigation ul .sub-menu {
    flex-direction: column;
    padding: 10px 0;
    min-width: 250px;
    background: #FFF;
    box-shadow: 3px 0 2px 0px rgba(0, 0, 0, 0.20);
    position: absolute;
    top: 100%;
    left: -24px;
    z-index: -2;
    transition: top 0.4s ease-in-out;
    opacity: 0;
    border-radius: 5px;
}

.main-navigation ul li:hover .sub-menu {
    z-index: 9999;
    opacity: 1;
    /* top: 100%; */
}

.main-navigation ul .sub-menu a {
    padding: 8px 20px;
    color: #222;
    display: block;
    font-weight: 600;
    line-height: 1.1;
}

.main-navigation ul .sub-menu a:hover {
    color: #222;
    background-color: var(--light-yellow);
}

.vk-link svg {
    fill: #000;
    transition: all 0.3s;
}

.vk-link:hover svg {
    fill: var(--accent);
}

/*********/

.main-banner {
    overflow: hidden;
    position: relative;
    background-position: center;
    background-size: cover;
    height: 600px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

/* .main-banner__inner {
    background-color: #fff;
    padding-block: 30px;
    width: 100%;
}

.main-banner__inner p {
    font-size: 40px;
    margin: 0;
} */

/* .main-banner::before {
    content: '';
    background-color: #00000028;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} */



.home-about {
    padding-block: 60px;
}

.home-about p {
    font-size: 18px;
}

/*********/

.title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.title-row h2 {
    margin-bottom: 0;
    line-height: 1.2;
}

.title-row h2 span {
    color: var(--accent);
}

.news-arrs {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    font-size: 22px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

/* .bright-event {
    padding-bottom: 30px;
} */





/*****/
.home-news {
    padding-block: 80px;
    background-color: #fff;
}

.section-title {
    text-align: center;
}


.articles-row {
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
}


.articles-item {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    width: calc(33.33% - 16px);
    background-color: var(--light-yellow);
    padding: 8px 8px 50px;
    position: relative;
    border-radius: 5px;
}

.articles-item:hover {
    background-color: var(--light);
    box-shadow: 0 1px 14px #d3d3d3;
}

.articles-item h3 {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-inline: 10px;
    transition: color .3s ease-in-out;
}

.articles-item:hover h3 {
    color: var(--accent);
}

.thumb-post {
    border-radius: 3px;
    overflow: hidden;
    display: block;
}

.thumb-post img {
    display: block;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

/* .articles-item:hover img {
    transform: scale(1.05);
} */

.articles-item .entry-meta {
    position: absolute;
    bottom: 12px;
    left: 18px;
    width: calc(100% - 36px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.articles-item .more-arrows {
    display: block;
    /* padding: 5px 0 0 25px; */
}

.articles-item p {
    margin-bottom: 0;
    margin-inline: 10px;
}

.articles-date {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 14px;
}

.more-link {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    margin-left: 24px;
}

.more-link:hover {
    color: var(--accent);
}


.more-arrows svg,
.more-link svg path,
.more-arrows svg path {
    transition: all 0.3s ease-in-out;
}

.more-link:hover svg path {
    fill: var(--accent);
}

.articles-item:hover .more-arrows svg path {
    fill: #222;
}

.articles-item:hover .more-arrows svg {
    transform: scale(1.3);
}


/*******/
.required {
    padding-block: 80px;
}

.required-widgets-wrapper {
    justify-content: space-between;
}

.required-widgets-wrapper>div:first-child {
    width: 30%;
    min-width: 300px;
}

.required-widgets-wrapper>div:last-child {
    width: 66%;
}

.widgets-links {
    column-count: 3;
    column-gap: 20px;
}

.widgets-links a {
    display: block;
    margin-bottom: 20px;
}

.widgets-links a img {
    display: block;
    transition: all 0.3s ease-in-out;
}

.widgets-links a:hover img {
    opacity: 0.7;
}


/*******/

ul.social {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

ul.social a {
    display: block;
}

ul.social a svg {
    transition: all 0.3s ease-in-out;
    fill: var(--accent);
}

ul.social a:hover svg {
    fill: var(--second);
}


/********/

.poster {
    padding-block: 40px;
}

.poster .section-title {
    text-align: right;
}

.poster-item {
    border-radius: 50px;
    overflow: hidden;
}

.poster-item img {
    display: block;
}




/******/


/* 
.official-elements {
    padding-top: 40px;
}

.official-review {
    border-radius: 40px;
    border: 2px solid var(--accent);
    padding: 40px 52px;
    background-color: #fff;
    align-items: center;
    column-gap: 60px;
}

.official-review p {
    margin-bottom: 0;
    font-size: 20px;
}

.official-review img {
    flex-shrink: 0;
}

.official-links {
    padding: 40px 52px 0;
    column-gap: 60px;
    justify-content: center;
}

.official-links a:hover {
    opacity: 0.9;
} */


footer#footer {
    padding-block: 60px 20px;
    background-color: var(--accent);
}

footer#footer .d-flex {
    justify-content: space-between;
}

.footer-col {
    width: 30%;
}


.footer-col:nth-child(2) {
    margin-top: 107px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col:nth-child(3) {
    margin-top: 107px;
    width: 250px;
    font-size: 14px;
}

/* .footer-col .textwidget {
    color: #fff;
} */

.footer-col .textwidget a {
    color: #fff;

}

.footer-col p {
    margin-bottom: 8px;
    color: #fff;
}

.footer-col .textwidget a:hover {
    color: var(--light);
    text-decoration: underline solid;
}




.footer-menu {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    max-width: 250px;
}

.footer-menu a {
    color: #fff;
}

.footer-menu a:hover {
    color: var(--light);
}



/****/

.site-info {
    font-size: 12px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.site-info a {
    color: rgb(255 255 255 / 80%);
}

.site-info span {
    color: rgb(255 255 255 / 80%);

}

/*************/


.page-header,
.archive-header {
    color: #222;
    margin-bottom: 30px;
    position: relative;
}

.archive-description {
    max-width: 90%;
}

h1.page-title {
    font-size: 40px;
}

h1.article-title {
    font-size: 34px;
    margin-bottom: 20px;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 15px;
}

.breadcrumbs,
.breadcrumbs a {
    color: grey;
}

.breadcrumbs a:hover {
    color: #222;
}

.breadcrumbs .current-item {
    color: #222;
}

.posts-pagination {
    padding: 20px 0 50px;
}

.pagination {
    display: flex;
    gap: 24px;
    position: relative;
}

.pagination .page-numbers {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.pagination a.page-numbers:hover {
    color: #222;
    background: var(--light-yellow);
}

.pagination .page-numbers.current {
    background: #fff;
    color: var(--accent);
}



.archive-body {
    margin-bottom: 35px;
}

.page-content {
    padding-top: 20px;
}

/************** single ****************/

.single-body {
    justify-content: space-between;
    margin-top: 40px;
    align-items: flex-start;
}

.single-body article {
    border-radius: 5px;
    background: #FFF;
    width: calc(100% - 366px);
    padding: 32px;
    position: relative;
    margin-bottom: 100px;
}


.single-body aside {
    width: 320px;
    border-radius: 5px;
    background-color: #fff;
    padding: 32px 24px;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: grey;
    font-size: 15px;
}


.single-body .entry-header {
    margin-bottom: 20px;
}

.date-view {
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
}

.entry-content figure {
    text-align: center;
    width: 100% !important;
    border-radius: 3px;
}

.entry-content figure img {
    width: 100%;
    border-radius: 3px;
}

.entry-content figcaption {
    font-size: 16px;
    margin: 5px 0 0;
}

.entry-content p>img.aligncenter,
.entry-content p>img.alignnone {
    border-radius: 3px;
    width: 100%;
}
.entry-content img {
    border-radius: 3px;
}
.entry-content a>img {
border-radius: 3px;
    border: none;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

.entry-content a:hover>img {
    opacity: 0.9;
}

.entry-content a {
    color: #000;
}

.entry-content a:hover {
    color: var(--accent);
}

.entry-content h2 {
    font-size: 24px;
    text-transform: none;
    margin: 25px 0;
}

.entry-content h3 {
    font-weight: 600;
    margin: 25px 0;
}

.entry-content h4 {
    font-weight: 600;

    margin: 20px 0;
}

.entry-content h5 {
    font-size: 18px;
    margin: 15px 0;
}

.entry-content h6 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 15px 0;
}


.entry-content ul {
    list-style: disc;
    margin: 20px 0;
    padding-left: 20px;
}

.entry-content ol li:not(:last-child),
.entry-content ul li:not(:last-child) {
    margin-bottom: 7px;
}

.entry-content ol {
    padding-left: 25px;
    margin: 20px 0;
}

.entry-content blockquote {
    position: relative;
    margin: 20px 0;
    padding: 5px 20px 0 40px;
    border-left: 4px solid var(--yellow);
}




.entry-footer {
    padding-top: 32px;
}

.tags-line {
    display: flex;
    gap: 9px;
    margin-bottom: 10px;
}

.tags-line a {
    border-radius: 30px;
    background: var(--light-yellow);
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 10px;
}

.tags-line a:hover {
    background: var(--yellow);
}

.entry-footer .tags-line {
    flex-wrap: wrap;
    /* width: 50%; */
}

.related-posts {
    padding-block: 60px 40px;
    background-color: #fff;
}

.related-posts h3 {
    color: #222;
    /* text-transform: uppercase; */
    /* font-size: 34px; */
}

.entry-content p {
    font-size: 16px;
    line-height: 1.55;
}



.widget-area h4,
.widget-area h5 {
    margin: 0 0 10px;
    color: #444;
}

.widget-area a {
    color: #444;
}

.widget-area a:hover {
    color: #000;
}

.widget-area .widget {
    margin-bottom: 40px;
}

.search-form {
    display: flex;
}

.search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.search-submit:hover {
    background-color: var(--light-yellow);
}

.search-form label {
    width: calc(100% - 40px);
}

.search-field {
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid var(--yellow);
    border-right: none;
    border-radius: 5px 0 0 5px;
}


/* team */

.team-page {
    /* border-radius: 5px;
    background: #FFF;
    padding: 32px; */
    margin-bottom: 100px;
}

.team-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.team-item {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    width: calc(25% - 18px);
    background-color: #fff;
    padding: 8px 8px;
    position: relative;
    border-radius: 5px;
    text-align: center;
}

.team-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;

}

/* .team-item strong {
font-size: 18px;
} */


.responsive-table {
    overflow-x: auto;
}

.responsive-table table {
    border-collapse: collapse;
    min-width: 500px;
}

/* .vacancies-table */

.responsive-table table th,
.responsive-table table td {
    border: 1px solid #666;
    text-align: left;
    padding: 10px 10px;
}

.vacancies-table td:last-child {
    width: 25%;
}

/******/

.search-more {
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.search-more p {
    margin-bottom: 0;
}


.page-template-about .required,
.search-no-results .required,
.search-results .required {
    background-color: var(--light-yellow);
}

.error-404 {
    border-radius: 30px;
    background: #FFF;
    width: 100%;
    padding: 80px 40px;
    position: relative;
    margin-bottom: 50px;
    background: url(../img/404.jpg) no-repeat right center #fff;
    background-size: 45% auto;

}

.error-404 .page-content {
    max-width: 50%;
}

.error-404 h1 {
    color: #222;
}

.error-404 p {
    font-size: 24px;
}

.error-404 p a {
    text-decoration: underline dotted;
}



.no-results .page-content {
    min-height: 300px;
}

.to-top {
    position: fixed;
    bottom: 15px;
    right: 30px;
    display: none;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 1px 1px var(--accent);
    font-size: 34px;
    align-items: center;
    justify-content: center;
}

.to-top:hover {
    transform: translateY(-5px);
}

.to-top.show {
    display: flex;
}

.comments {
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 50px;
}

.comments h3 {
    font-size: 20px;
    margin: 0 0 20px;
}


.share {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.share svg {
    fill: var(--accent);
    width: 33px;
    height: 27px;
}

.share a:hover svg {
    fill: var(--second);
}

.documents-page .page-content a {
    font-size: 18px;
    display: block;
    padding-left: 30px;
    background: url(../img/doc.svg) no-repeat 0 0;
    line-height: 1.2;
}

.documents-page .page-content a:hover {
    text-decoration: underline dotted;
}

/* contact page */

.map {
    /* width: 500px;
    flex-shrink: 0; */
    border: 2px solid var(--accent);
    overflow: hidden;
}

.map iframe {
    border: none;
}

.contact-info {
    margin-bottom: 50px;
    column-gap: 50px;
    align-items: flex-start;
}

.contact-info .entry-content {
    width: calc(100% - 550px);
}

.contact-info .entry-content a {
    text-decoration: underline;
}

.contact-info p {
    font-size: 18px;
}

.contact-form {
    width: 500px;
    flex-shrink: 0;
    position: relative;
    padding: 30px 25px;
    border-radius: 5px;
    background-color: var(--yellow);
}


/* .contact-form h4 {
    color: #fff;
} */

.contact-form .wpcf7 {
    margin-top: 30px;
    max-width: 100%;
}

.wpcf7-form-control-wrap {
    margin-right: 0;
    margin-bottom: 8px;
}

.wpcf7 form .wpcf7-response-output {
    color: #fff;
}

.wpcf7-not-valid-tip {
    font-size: .8em;
}

.wpcf7 form textarea,
.wpcf7 form input:not([type="submit"]) {
    border-radius: 5px;
    border: none;
    background: #fff;
    padding: 15px 30px;
    color: #222;
}

.wpcf7 form textarea {
    resize: none;
    height: 100px;
}

.wpcf7 form textarea:focus,
.wpcf7 form input:focus {
    background-color: var(--light);
}

.wpcf7 form label {
    /* color: #fff; */
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.wpcf7 form input[type="submit"] {
    border-radius: 30px;
    background: #fff;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.54px;
    text-transform: uppercase;
    border: none;
    width: 100%;
    padding: 15px 30px;
    height: 54px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.wpcf7 form input[type="submit"]:hover {
    background: var(--accent);
    color: #fff;
}

.wpcf7 small {
    font-size: 14px;
    margin: 15px;
    color: rgba(255, 255, 255, 0.82);
    display: block;
    text-align: left;

}

.wpcf7 small a {
    color: #fff;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: 5px;
}



/** about ****/
.about-content {
    border-radius: 5px;
    background-color: #FFF;
    padding: 32px;
    margin-bottom: 60px;
}

.afisha {
    background-color: #FFF;
    padding-block: 60px;
}

.about-row {
    gap: 4%;
}

.about-row:first-child {
    margin-bottom: 40px;
}

.about-row>div {
    width: 48%;
    flex-shrink: 0;
}

.slideshow-container {
    position: relative;
    aspect-ratio: 580 / 373;
}

.mySlides {
    position: absolute;
    /* opacity: 0; */
    transition: opacity .3s;
    width: 100%;
}

.mySlides img {
    width: 100%;
    display: block;
    aspect-ratio: 580 / 373;
    object-fit: cover;
}

.slideshow-container .prev,
.slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 6px 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
    background: rgb(255 255 255 / 45%);
}

.slideshow-container .prev {
    left: 5px;
}

.slideshow-container .next {
    right: 5px;
}

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
    color: var(--accent);
}

.article-about a {
    text-decoration: underline dotted;
}

.article-about a:hover {
    color: var(--accent);
}

.handicap-icon {
    top: 75px;
    width: 40px;
    height: 40px;
}



#myImg {
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.9;
}


.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}


.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
}


.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

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

@media only screen and (max-width: 1024px) {
    .modal-content {
        width: 95%;
    }
}


.embed-responsive  {
    position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}


.cookie-popup:not(.show) {
    display: none;
    z-index: -1;

}


.cookie-popup {
    position: fixed;
    bottom: 15px;
    border-radius: 3px;
    padding: 25px 35px;
    left: 30px;
    background-color: #fff;
    max-width: 1000px;
    z-index: 1111;
    box-shadow: 0 -2px 14px #FFC107;
}

.cookie-popup .d-flex {
    align-items: center;
    column-gap: 50px;
}

.cookie-popup p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #000;
}
.cookie-popup .btn {
    cursor: pointer;
}

.cookie-popup .btn:hover {
    opacity: 0.8;
}