/* fonts */

@font-face {
    font-family: 'Alkes';
    src: url(fonts/Alkes-Regular.woff) format('woff'), url(fonts/alkes-regular-webfont.woff2) format('woff2'), url(fonts/Alkes-Regular.ttf) format('truetype'), url(fonts/Alkes-Regular.otf) format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alkes-black';
    src: url(fonts/Alkes-Black.woff) format('woff'), url(fonts/Alkes-Black.ttf) format('truetype'), url(fonts/Alkes-Black.otf) format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alkes-Bold';
    src: url(fonts/alkes-bold.woff) format('woff'), url(fonts/Alkes-Bold.ttf) format('ttf'), url(fonts/Alkes-Bold.otf) format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* reset */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alkes', sans-serif;
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #091a38;
}

p {
    color: #8d8d96;
}

.txt-wrap p {
    margin-bottom: 20px;
}

.max-w-container.w-1271 {
    width: 90%;
    margin: 0 auto;
}

@media (min-width: 1441px) {
    .max-w-container.w-1271 {
        width: 1271px;
    }
}

.max-w-container.w-1600 {
    width: 90%;
    margin-right: 10%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .max-w-container.w-1600 {
        margin: 0 auto;
        flex-direction: column;
    }
}

@media (min-width: 1921px) {
    .max-w-container.w-1600 {
        width: 1600px;
    }
}

.main-title {
    line-height: 1;
    margin-bottom: 30px;
}

@media (min-width: 1025px) {
    .main-title {
        font-size: 56px;
    }
}

h3 {
    margin-bottom: 15px;
}

.italic {
    font-style: italic;
}

@media (min-width: 1025px) {
    .main-title {
        font-size: 43px;
    }
}

@media (min-width: 1441px) {
    .main-title {
        font-size: 53px;
    }
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 30px;
    }
}

header {
    background-color: #39aea9;
    padding: 15px 0;
}

header .max-w-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    header .max-w-container .logo-wrap {
        order: 2;
    }
    header .max-w-container .hamburger {
        order: 1;
    }
    header .max-w-container .mobile-lang-switcher {
        order: 3;
        display: block;
    }
}

header .logo-wrap {
    line-height: 1;
    z-index: 4;
    width: 100px;
    height: 50px;
}

header .logo-wrap .custom-logo {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    header .nav-wrap {
        display: none;
    }
}

header .nav-wrap.active {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-left: 5%;
    z-index: 3;
    background-color: #39aea9;
}

header .nav-wrap.active ul {
    flex-direction: column;
    padding-top: 150px;
}

header .nav-wrap.active ul li a {
    margin-left: 0;
    margin-bottom: 20px;
    display: inline-block;
}

header .nav-wrap ul {
    display: flex;
}

header #menu-item-3169 a {
    background-color: #ffffff;
    padding: 5px;
    border: 1px solid #091a38;
    border-radius: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    header #menu-item-3169 a {
        display: none;
    }
}

header #menu-item-3169 a:hover {
    background-color: #091a38;
    color: #ffffff;
    border-color: #ffffff;
    transition: all 0.5s ease;
}

header #menu-item-3169 a:after {
    width: 0%;
}

header .nav-wrap ul li a {
    margin-left: 50px;
    padding-bottom: 5px;
    position: relative;
}

header .nav-wrap ul li a:after {
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #091a38;
    transition: width 0.3s ease;
}

header .nav-wrap ul li a:hover:after {
    width: 100%;
    transition: width 0.3s ease;
}

header .nav-wrap ul li.lang-btn a {
    background-color: #ffffff;
    padding: 5px;
    border: 1px solid #091a38;
    border-radius: 5px;
    transition: all 0.3s ease;
}

header .nav-wrap ul li.lang-btn a:hover {
    background-color: #091a38;
    color: #ffffff;
    border-color: #ffffff;
    transition: all 0.5s ease;
}

header .nav-wrap ul li.lang-btn a:hover:after {
    width: 0%;
}

header .mobile-lang-switcher {
    display: none;
    background-color: #ffffff;
    color: #39aea9;
    padding: 7px;
    border: 1px solid #091a38;
    border-radius: 5px;
    z-index: 4;
}

header .hamburger {
    display: flex;
    flex-direction: column;
    z-index: 4;
}

@media (min-width: 1025px) {
    header .hamburger {
        display: none;
    }
}

header .hamburger span {
    width: 35px;
    height: 4px;
    border-radius: 2px;
    margin-top: 7px;
    background-color: #091a38;
    display: inline-block;
}

header .hamburger.close-btn span:nth-child(1),
header .hamburger.close-btn span:nth-child(3) {
    display: none;
}

.hero .hero-img-wrap {
    flex: 1;
    position: relative;
}

.hero .hero-img-wrap img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .hero-img-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #091a382e; */
    z-index: 3;
}

.hero .hero-img-wrap .play-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    transition: transform 0.3s ease-in-out;
    z-index: 4;
}

.hero .hero-img-wrap .play-icon:hover {
    cursor: pointer;
    transform: scale(.9);
    transition: transform 0.3s ease-in-out;
}

@media (min-width: 1025px) {
    .play-icon svg {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 1024px) {
    .play-icon svg {
        width: 60px;
        height: 60px;
    }
}

.hero .hero-img-wrap img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-right: 20px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hero .hero-img-wrap {
        margin: 20px 0;
    }
    .hero .hero-img-wrap img {
        margin-right: 0;
    }
    .hero {
        align-items: center!important;
    }
}

@media (min-width: 1025px) {
    .hero {
        display: flex;
        align-items: center;
        margin-top: 40px!important;
    }
    .hero .hero-img-wrap {
        margin-right: 30px;
    }
    .hero .hero-img-wrap img {
        margin-right: 40px;
        /* width: 500px; */
    }
}

@media (min-width: 1441px) {
    .hero .hero-img-wrap img {
        width: 100%;
    }
}

.hero .hero-content {
    flex: 1;
    /* margin-top: 30px; */
}

@media (min-width: 1441px) {
    /* .hero .hero-content {
        margin-top: 100px;
    } */
}

.hero .hero-content .hero-socials {
    text-align: right;
}

.hero .hero-content .hero-socials img {
    margin-left: 15px;
}

@media (max-width: 1024px) {
    .hero .hero-content .hero-socials {
        text-align: center;
        padding-top: 30px;
    }
}

.home-contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}

@media (max-width: 1024px) {
    .home-contacts {
        flex-direction: column;
    }
}

.home-contacts .contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #f5f5f5;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .home-contacts .contact-item {
        margin: 10px 0;
    }
}

@media (min-width: 1441px) {
    .home-contacts .contact-item {
        width: 360px;
    }
}

.home-contacts .contact-item .text-wrap {
    margin-left: 30px;
}

.home-contacts .contact-item .text-wrap h3 {
    font-size: 32px;
    line-height: 1;
}

.home-contacts .contact-item .text-wrap a {
    position: relative;
}

.home-contacts .contact-item .text-wrap a:after {
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: #091a38;
    transition: width 0.3s ease;
}

.home-contacts .contact-item .text-wrap a:hover:after {
    width: 100%;
    transition: width 0.3s ease;
}

.home-contacts .contact-item .icon-wrap:hover {
    cursor: pointer;
}

.home-contacts .contact-item .icon-wrap svg {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.home-contacts .contact-item .icon-wrap svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.home-contacts .contact-item .icon-wrap svg:hover {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.home-contacts .contact-item .icon-wrap svg:hover path {
    fill: #091a38;
    transition: fill 0.3s ease;
}

.content-wrap {
    background-color: #e1f3f2;
    padding-bottom: 40px;
    margin-top: 40px;
}

@media (min-width: 1025px) {
    .content-wrap {
        padding: 40px 0;
        margin-top: 50px;
    }
}

.content-wrap h2 {
    line-height: 1;
    font-size: 30px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .content-wrap h2 {
        padding-top: 30px;
    }
}

@media (min-width: 1025px) {
    .content-wrap h2 {
        font-size: 56px;
        margin-bottom: 40px;
        margin-top: 50px;
    }
}

@media (min-width: 1025px) {
    .content-wrap .collapse-wrap {
        margin-left: 35px;
        margin-top: 30px;
    }
}

@media (max-width: 1024px) {
    .content-wrap .collapse-wrap {
        margin-top: 30px;
    }
}

.content-wrap .collapse-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-wrap .collapse-head:hover {
    cursor: pointer;
}

.content-wrap .collapse-head h4 {
    position: relative;
}

.content-wrap .collapse-head h4::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    left: -30px;
    top: 4px;
    background-color: #091a38;
}

@media (max-width: 719px) {
    .content-wrap .collapse-head h4::before {
        left: -20px;
    }
}

@media (max-width: 719px) {
    .content-wrap .collapse-head h4 {
        margin-left: 20px;
    }
}

.content-wrap .collapse-head span {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-top: 1px solid #091a38;
    border-right: 1px solid #091a38;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
}

.content-wrap .collapse-head span:hover {
    cursor: pointer;
}

.content-wrap .collapse-head.active-collapse-head span {
    transform: rotate(-45deg);
    position: relative;
    top: 5px;
    transition: transform 0.3s ease;
}

.content-wrap .collapse-body {
    margin-top: 30px;
    display: none;
}

.content-wrap .collapse-body.active-collapse {
    display: block;
}

.content-wrap .collapse-body .collapse-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.content-wrap .collapse-body .collapse-item a:first-child {
    display: inline-block;
    width: 100%;
    height: 14px;
}

.content-wrap .collapse-body .collapse-item a:first-child:after {
    content: "Покажи";
    text-transform: uppercase;
    font-size: 14px;
    color: #39aea9;
    position: relative;
    background-color: transparent;
}

.content-wrap .collapse-body .show-more:after {
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: -5px;
    left: 0;
    background-color: #39aea9;
    transition: width 0.3s ease;
}

.content-wrap .collapse-body .show-more:hover:after {
    width: 100%;
    transition: width 0.3s ease;
}

#button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e1f3f2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button:hover {
    cursor: pointer;
    background-color: #091a38;
}

#button:hover svg path {
    fill: #ffffff;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

#button::after {
    content: '';
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #ffffff;
}

#button:active {
    background-color: #555;
}

.footer {
    background-color: #f5f5f5;
    padding-bottom: 20px;
}

.footer ul {
    display: flex;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #091a38;
}

.footer-contacts div {
    text-align: center;
    width: 33.3%;
}

@media (min-width: 1025px) {
    .footer-contacts {
        padding: 40px 0;
    }
}

@media (max-width: 500px) {
    .footer-contacts {
        align-items: center;
    }
    .footer-contacts div {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .footer-contacts {
        flex-direction: column;
        padding: 25px 0;
    }
    .footer-contacts div {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .footer-contacts div {
        margin-bottom: 30px;
    }
}

.footer-contacts div:hover p {
    color: #39aea9;
    transition: color 0.3s ease;
}

.footer-contacts div:hover svg {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.footer-contacts div:hover svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.footer-contacts div:hover svg:hover {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.footer-contacts div:hover svg:hover path {
    fill: #39aea9;
    transition: fill 0.3s ease;
}

.footer-contacts div p {
    color: #091a38;
    transition: color 0.3s ease;
}

.footer-menu nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu nav a {
    position: relative;
    margin-top: 15px;
    display: inline-block;
}

#footer-menu li {
    margin-right: 10px!important;
    display: inline-block!important;
}

.footer-menu nav a:after {
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #091a38;
    transition: width 0.3s ease;
}

.footer-menu nav a:hover:after {
    width: 100%;
    transition: width 0.3s ease;
}

@media (min-width: 1025px) {
    .footer-menu {
        padding: 40px 0 100px 0;
    }
}

@media (max-width: 719px) {
    .footer-menu {
        padding: 25px 0 50px 0;
    }
    .footer-menu nav {
        flex-direction: column;
        align-items: center;
    }
    .footer-menu nav a {
        display: block;
        margin: 10px 0;
    }
}

.footer-menu a {
    margin: 0 20px;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

@media (min-width: 1025px) {
    .footer-socials {
        margin-bottom: 50px;
    }
}

.footer-socials div {
    margin: 0 10px;
}

.footer-colophon {
    text-align: center;
    margin-bottom: 20px;
}

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

.develoepr a {
    display: inline-block;
}

.developer img.acceler8 {
    max-width: 160px;
    margin-left: 20px;
    position: relative;
    top: 8px;
}

.menu-colophon-menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#colophon-menu li {
    margin-right: 10px;
    display: inline-block;
}

@media (max-width: 400px) {
    #colophon-menu li {
        margin-right: 0px;
        display: block;
    }
    .menu-colophon-menu-container ul {
        flex-direction: column;
    }
}

.blog-holder {
    padding: 40px 0;
}

.blog-holder h1 {
    margin-bottom: 30px;
}

@media (min-width: 1025px) {
    .blog-holder {
        padding: 60px 0 100px 0;
    }
}

.blog-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (min-width: 1025px) {
    .blog-wrap .article-item {
        width: 48%;
        margin-bottom: 40px;
        margin-right: 25px;
    }
}

@media (min-width: 1441px) {
    .blog-wrap .article-item {
        width: 31%;
        margin-bottom: 40px;
        margin-right: 25px;
    }
}

@media (min-width: 1921px) {
    .blog-wrap .article-item {
        width: 31%;
        margin-bottom: 40px;
        margin-right: 25px;
    }
}

@media (max-width: 1024px) {
    .blog-wrap .article-item {
        width: 48%;
        margin-bottom: 30px;
        margin-right: 10px;
    }
}

@media (max-width: 719px) {
    .blog-wrap .article-item {
        width: 100%;
        margin-bottom: 25px;
    }
}

.blog-wrap .article-item p {
    margin-top: 15px;
}

.blog-wrap .article-item h2 .article-link {
    color: #091a38;
    transition: color .3s ease;
    line-height: 1.2;
}

.blog-wrap .article-item h2 .article-link:hover {
    text-decoration: none!important;
    color: #39aea9;
    transition: color .3s ease;
}

.blog-wrap .article-item h2 .article-link:hover:after {
    width: 0%;
}

.blog-wrap .article-item a {
    position: relative;
    margin-top: 15px;
    display: inline-block;
}

.blog-wrap .article-item a:after {
    content: '';
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #091a38;
    transition: width 0.3s ease;
}

.blog-wrap .article-item a:hover:after {
    width: 100%;
    transition: width 0.3s ease;
}

.single-article .main-title {
    margin-bottom: 10px;
}

.single-article .article-meta {
    margin-bottom: 20px;
}

@media (min-width: 1025px) {
    .single-article .article-meta {
        margin-bottom: 30px;
    }
}

.single-article .article-meta span {
    color: #8d8d96;
}

.single-article p {
    margin-bottom: 20px;
}

@media (min-width: 1025px) {
    .single-article p {
        margin-bottom: 30px;
    }
}

.single-article ul {
    list-style-type: circle;
    margin-left: 10px;
}

.single-article ul li {
    color: #8d8d96;
}

.pagination {
    text-align: center;
}

.pagination .page-numbers {
    color: #091a38;
    font-size: 20px;
    margin: 0 10px;
}

.pagination .page-numbers.current {
    color: #39aea9;
    font-size: 25px;
}

.pagination .next,
.prev {
    display: none;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 719px) {
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-footer .article-share {
        width: 100%;
        margin-top: 30px;
    }
}

.article-footer .article-share {
    display: flex;
    align-items: center;
    padding: 6px 0;
    border-top: 1px solid #39aea9;
    border-bottom: 1px solid #39aea9;
}

.article-footer .article-share p {
    margin: 0 20px 0 20px;
    color: #091a38;
}

.article-footer .article-share svg {
    margin: 5px 20px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.article-footer .article-share svg path {
    fill: #091a38;
    transition: fill 0.3s ease;
}

.article-footer .article-share svg:hover {
    cursor: pointer;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.article-footer .article-share svg:hover path {
    fill: #39aea9;
    transition: fill 0.3s ease;
}

.videos-holder {
    padding: 40px 0;
}

.videos-holder h1 {
    margin-bottom: 30px;
}

@media (min-width: 1025px) {
    .videos-holder {
        padding: 60px 0 100px 0;
    }
}

.single-video {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .single-video {
        flex-direction: column;
        margin: 20px 0;
    }
}

@media (min-width: 1025px) {
    .single-video {
        margin: 45px 0;
    }
}

@media (max-width: 1024px) {
    .single-video .video {
        width: 100%;
    }
}

@media (min-width: 1025px) {
    .single-video .video {
        width: 40%;
    }
}

.single-video .video-description {
    position: relative;
}

@media (min-width: 1025px) {
    .single-video .video-description {
        margin-left: 30px;
        width: 55%;
    }
}

@media (min-width: 1441px) {
    .single-video .video-description {
        margin-left: 50px;
    }
}

.single-video .video-description h2 a {
    color: #091a38;
    transition: color 0.3s ease;
}

.single-video .video-description h2 a:hover {
    color: #39aea9;
    transition: color 0.3s ease;
}

.single-video .video-description .video-excerpt {
    margin-top: 20px;
}

.single-video .video-description .video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #39aea9;
    border-bottom: 1px solid #39aea9;
    padding: 6px 0;
}

@media (max-width: 1024px) {
    .single-video .video-description .video-footer {
        margin-top: 30px;
    }
}

@media (min-width: 1025px) {
    .single-video .video-description .video-footer {
        position: absolute;
        width: 100%;
        bottom: 0;
    }
}

.single-video .video-description .video-footer .video-share {
    display: flex;
    padding: 5px 0;
}

.single-video .video-description .video-footer .video-share svg {
    margin-left: 20px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.single-video .video-description .video-footer .video-share svg path {
    fill: #091a38;
    transition: fill 0.3s ease;
}

.single-video .video-description .video-footer .video-share svg:hover {
    cursor: pointer;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.single-video .video-description .video-footer .video-share svg:hover path {
    fill: #39aea9;
    transition: fill 0.3s ease;
}

.single-video-description {
    border-bottom: 1px solid #8d8d96;
    color: #8d8d96;
}

.single-video-description .author {
    color: #091a38;
}

@media (min-width: 1025px) {
    .single-video-description {
        padding: 40px 0;
    }
}

@media (max-width: 1024px) {
    .single-video-description {
        padding: 25px 0;
    }
}

.back-btn {
    display: flex;
    align-items: center;
    position: relative;
}

@media (min-width: 1025px) {
    .back-btn {
        margin-top: 40px;
    }
}

@media (max-width: 1024px) {
    .back-btn {
        margin-top: 25px;
    }
}

.back-btn a {
    font-size: 20px;
    margin-left: 70px;
}

.back-btn svg {
    position: absolute;
    left: 0;
    transition: left 0.3s ease;
}

.back-btn:hover svg {
    left: 20px;
    transition: left 0.3s ease;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 1025px) {
    .related-videos {
        margin-top: 40px;
    }
}

@media (max-width: 1024px) {
    .related-videos {
        margin-top: 30px;
    }
}

.related-videos h2 {
    margin-bottom: 30px;
}

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

@media (min-width: 1025px) {
    .related-header {
        margin-bottom: 22px;
    }
}

.slider-navigation-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.slider-navigation-wrapper .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin-left: 10px;
}

.slider-navigation-wrapper .slider-nav:hover {
    cursor: pointer;
    background-color: #E1F3F2;
    transition: background-color 0.3s ease;
}

.single-related-video h3 {
    margin-bottom: 0;
    margin-top: 25px;
}

@media (min-width: 1025px) {
    .single-related-video h3 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .single-related-video h3 {
        font-size: 18px;
    }
}

.consultation-wrapper {
    padding: 40px 0;
}

.consultation-wrapper h1 {
    margin-bottom: 30px;
}

@media (min-width: 1025px) {
    .consultation-wrapper {
        padding: 60px 0 100px 0;
    }
}

.consultation-items .single-consultation-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.consultation-items .single-consultation-item .check-image {
    margin-right: 15px;
}

.services-holder {
    padding: 40px 0;
}

@media (min-width: 1025px) {
    .services-holder {
        padding: 60px 0 100px 0;
    }
}

.services {
    display: flex;
    justify-content: center;
}

@media (min-width: 1025px) {
    .services {
        margin-top: 70px;
    }
}

@media (max-width: 1024px) {
    .services {
        margin-top: 40px;
    }
}

@media (max-width: 719px) {
    .services {
        flex-direction: column;
    }
}

.single-service {
    text-align: center;
    padding: 30px 50px;
}

.single-service.service-one {
    background-color: #E1F3F2;
}

@media (max-width: 1024px) {
    .single-service.service-one {
        margin-bottom: 40px;
    }
}

.single-service.service-two {
    background-color: #EDF3FC;
}

@media (min-width: 1025px) {
    .single-service {
        width: 400px;
        margin: 0 50px;
    }
}

@media (max-width: 1024px) {
    .single-service {
        width: unset;
        margin: 0 auto;
        padding: 30px;
    }
}

.single-service h3 {
    margin-bottom: 25px;
    margin-top: 15px;
    font-size: 20px;
}

@media (min-width: 1025px) {
    .single-service h3 {
        margin-bottom: 40px;
    }
}

.single-service .service-form {
    margin-bottom: 30px;
}

@media (min-width: 1025px) {
    .single-service .service-form {
        margin-bottom: 50px;
    }
}

.single-service .price {
    color: #091a38;
    font-size: 40px;
    margin: 30px 0 50px 0;
}

@media (min-width: 1025px) {
    .single-service .price {
        margin: 40px 0 70px 0;
    }
}

.single-service .service-cta {
    background-color: #39aea9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    color: #091a38;
    transition: background-color 0.3s, color 0.3s ease;
}

.single-service .service-cta a {
    color: #091a38;
    transition: color 0.3s ease;
}

.single-service .service-cta img {
    margin-right: 15px;
}

.single-service .service-cta:hover {
    background-color: #091a38;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s ease;
}

.single-service .service-cta:hover a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.single-consultation p {
    margin-bottom: 30px;
}

.single-consultation .single-consultation-footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.single-consultation .single-consultation-footer .service-cta {
    width: 30%;
    background-color: #39aea9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    color: #091a38;
    transition: background-color 0.3s, color 0.3s ease;
}

@media (max-width: 719px) {
    .single-consultation .single-consultation-footer .service-cta {
        width: 100%;
    }
}

.single-consultation .single-consultation-footer .service-cta a {
    color: #091a38;
    transition: color 0.3s ease;
}

.single-consultation .single-consultation-footer .service-cta img {
    margin-right: 15px;
}

.single-consultation .single-consultation-footer .service-cta:hover {
    background-color: #091a38;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s ease;
}

.single-consultation .single-consultation-footer .service-cta:hover a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.bookstore-wrapper {
    padding: 40px 0;
}

.bookstore-wrapper h1 {
    margin-bottom: 30px;
}

@media (min-width: 1025px) {
    .bookstore-wrapper {
        padding: 60px 0 100px 0;
    }
}

.books-row {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 719px) {
    .books-row {
        flex-direction: column;
    }
}

.single-book {
    width: 49%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

@media (max-width: 719px) {
    .single-book {
        flex-direction: column;
        width: 100%;
    }
}

.single-book .book-cover {
    width: 30%;
}

.single-book .book-cover img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

@media (max-width: 719px) {
    .single-book .book-cover {
        width: 60%;
        margin: 0 auto;
    }
}

.single-book .book-description {
    width: 65%;
}

@media (max-width: 719px) {
    .single-book .book-description {
        width: 100%;
    }
}

.single-book .book-description button {
    border: none;
    background-color: #39aea9;
    color: #091a38;
    font-family: Alkes, sans-serif;
    padding: 20px;
    width: 60%;
    font-size: 20px;
    border-radius: 5px;
}

.single-book .book-description button:hover {
    cursor: pointer;
}

.single-book .book-excerpt {
    margin: 30px 0;
}

.single-book .quick-look {
    color: #39aea9;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.single-book .quick-look:hover {
    cursor: pointer;
}

.single-book .more {
    display: none;
}


/* Single book page */

.book-wrap {
    display: flex;
    flex-wrap: wrap;
}

.book-wrap .book-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (max-width: 700px) {
    .book-wrap {
        flex-direction: column;
    }
    .book-wrap .book-image {
        text-align: center;
        width: 100%;
    }
}

@media (min-width: 500px) {
    .book-wrap .book-image {
        margin-right: 30px;
        width: 30%;
    }
    .book-wrap .book-content {
        width: 59%;
    }
}

.book-wrap .book-cta {
    margin-top: 20px;
}

.book-wrap .book-cta a {
    background-color: #39aea9;
    color: #091a38;
    padding: 10px 15px;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
}

.isbn-link {
    background-color: #39aea9;
    color: #091a38;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
}

.book-name a {
    color: #091a38;
    transition: color .3s ease;
    line-height: 1.2;
}

.book-name a:hover {
    text-decoration: none!important;
    color: #39aea9;
    transition: color .3s ease;
}


/* Lightbox image container reorder */


/* #lightbox {
    display: flex!important;
    flex-direction: column!important;
}

#lightbox .lb-outerContainer {
    order: 2!important;
}

#lightbox .lb-dataContainer {
    order: 1!important;
} */


/* Work experience section */

.single-experience {
    border-bottom: 1px solid #c7c7cb;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.single-experience h4 {
    margin-bottom: 6px;
}

@media (min-width: 1024px) {
    .single-experience {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}


/* popup video */

#popupContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#popupContent {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 80%;
    max-height: 600px;
    padding: 20px;
    overflow: hidden;
}

#closeBtn {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 80px;
    cursor: pointer;
    color: #39aea9;
    transition: transform .3s ease-in-out;
}

#closeBtn:hover {
    transform: scale(0.9);
    transition: transform .3s ease-in-out;
}

@media (max-width: 600px) {
    #popupContent {
        height: 30%;
    }
    #closeBtn {
        top: 0px;
        right: 20px;
    }
}

#youtubeIframe {
    width: 100%;
    height: calc(100% - 40px);
    /* Adjust height considering close button */
}

.hidden {
    display: none!important;
}