/*@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;500;600;700;800;900&display=swap');*/

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #484848 #323232;
}

body {
    font-family: 'Gothic A1', sans-serif;
    background-image: radial-gradient(circle, #0b0b0c, #131311, #191717, #1d1a19, #1f1e1e, #232225, #302e2f, #3e3e3e, #0b0b0c, #131311, #191717, #1d1a19, #1f1e1e, #232225, #302e2f);
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: #323232;
}

::-webkit-scrollbar-thumb {
    background-color: #484848;
    border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #faff1f;
}

.section-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem 0 1rem;
}

.white {
    color: #fff;
}

.green {
    color:#00ff00;
}

.yellow {
    color: #faff1f;
}

.tab {
    margin-left: 1rem;
}

/* Header */
.container, .container-inner {
    margin: 0 auto;
    width: 100%;
}


/* NAV START*/
.header-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 1rem;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.header-toggler {
    width: 100px;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02rem;
    text-transform: capitalize;
    z-index: 11;
    border: none;
    background-color: transparent;
    overflow: hidden;
}

.header-toggler-text {
    position: relative;
    display: block;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.header-toggler-text:hover {
    color: #00ff00;
}

.header-toggler.active .header-toggler-text {
    transform: translateY(-100%);
}

.header-toggler-text::after {
    content: attr(data-text);
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.header-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background-color: #272727;
    z-index: 10;
    display: flex;
    overflow-y: auto;
    transition: all 0.6s ease;
    visibility: hidden;
    opacity: 0;
}

.header-star1 {
    position: absolute;
    top: 30%;
    right: 20%;
    z-index: -1;
}

.header-star2 {
    position: absolute;
    top: 60%;
    right: 40%;
    z-index: -1;
}

.header-star3 {
    position: absolute;
    top: 6%;
    right: 75%;
    z-index: -1;
}

.header-star4 {
    position: absolute;
    top: 89%;
    right: 85%;
    z-index: -1;
}

.header-star5 {
    position: absolute;
    top: 8%;
    right: 31%;
    z-index: -1;
}

.header-star6 {
    position: absolute;
    top: 76%;
    right: 11%;
    z-index: -1;
}

.header-star7 {
    position: absolute;
    top: 92%;
    right: 31%;
    z-index: -1;
}

.header-nav.open {
    visibility: visible;
    opacity: 1;
}

.nav-bg-pattern {
    height: 100vh;
    width: 100vw;
    background-position: 0% 0%;
    background-size: 10vmin 10vmin;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.header-list {
    margin: auto;
    padding: 60px 32px;
    max-width: 1440px;
    width: 100%;
}

.header-link {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    font-size: 3rem;
    text-transform: capitalize;
    letter-spacing: 0.03rem;
    word-spacing: 0.6rem;
    font-weight: 600;
    padding: 20px 0;
    position: relative; 
    transition: filter .5s, font-size .5s;
    line-height: 1;
}

.header-nav ul:hover li a {
    filter: blur(4px);
    color: rgb(192, 192, 192);
}

.header-nav ul {
    overflow: hidden;
}

.header-nav ul li:hover a{
    font-size: 3.5rem;
    filter: blur(0);
    color: #00ff00;
}

.header-line {
    transition: transform 1s ease;
    transform: scale(0,1);
    transform-origin: left;
}

.header-nav.open .header-line {
transform: scale(1);
}

.logo {
    width: 55px;
    height: 55px;
}

.line {
    height: 1px;
    background-color: #fff;
    width: 100%;
    display: block;
}
/* NAV END */

.video-bg {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -100;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.effects {
    position: absolute;
    display: flex;
    align-items: center;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
}

.top-right {
    position: absolute;
    top: 0;
    right: 0;
    opacity: .4;
    z-index: -9;
}

.intro {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;

    padding: 8rem 1rem 1rem 1rem;
    margin: 3rem auto 0 auto;

    max-width: 1440px;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subtitle-text {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
}

.svg-text {
    width: 100%;
}

#text-animation {
    fill: none;
    stroke: #00ff00;
    stroke-width: 2.5;
    font-size: 90px;
}

.intro-item-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.review {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-item-container .button {
    width: 450px;
    margin-bottom: 4rem;
    text-decoration: none;
    background: linear-gradient(225deg, #faff1f,#5ef85e);
    color: #000;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    border: 2px solid #00ff0009;
    border-radius: 1rem;
    text-align: center;
    padding: 0.5rem;
}

.button:hover {
    color: #fff;
    background: linear-gradient(225deg, #faff1f,#5ef85e);
    border: 1px solid #00ff0009;
    transform: scale(1.02);
    transition: .3s ease-in-out;
    filter: saturate(300%);
}

.intro-item {
    display: flex;
    justify-content: space-between;
}

.social-link {
    display: flex;
    width: 450px;
    justify-content: space-between;
}

.social-link a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
}

.social-link a:hover {
    color: #00ff00;
    transition: .4s ease-in-out;
    transform: scale(1.2);
}

.circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    position: relative;
    width:160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-logo a {
    display: flex;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle-logo img{
    width: 80px;
    height: 80px;
    background-size: cover;
    border-radius: 50%;
    filter: brightness(1.5) contrast(1.5);
    animation: arrowAnimation 2.5s  infinite;
}

@keyframes arrowAnimation {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.circle-text a {
    text-decoration: none;
    color: #fff;
}

.circle-text a:hover{
    color: #00ff00;
    transition: .3s ease-in-out;
}

.circle-text span {
    position: absolute;
    left: 50%;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    transform-origin: 0 80px;
}

/* SECTION ABOUT */

.about-container {
    position: relative;
    display: grid;
}

.about-description {
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem 0 0 0;
}

.about-description .text-description {
    color: #fff;
    font-size: 1.4rem;
    word-spacing: 0.1rem;
    padding: 1rem 2rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.yellow-star {
    position: absolute;
    top: 14%;
    left: 13%;
    z-index: -1;
}

.yellow-star1 {
    position: absolute;
    top: 27%;
    left: 63%;
    z-index: -1;
}

.yellow-star2 {
    position: absolute;
    top: 60%;
    left: 23%;
    z-index: -1;
}

.yellow-star3 {
    position: absolute;
    top: 80%;
    left: 73%;
    z-index: -1;
}

.yellow-star4 {
    position: absolute;
    top: 35%;
    left: 92%;
    z-index: -1;
}

.yellow-star5 {
    position: absolute;
    top: 53%;
    left: 58%;
    z-index: -1;
}

.yellow-star6 {
    position: absolute;
    top: 78%;
    left: 18%;
    z-index: -1;
}

.yellow-star7 {
    position: absolute;
    top: 29%;
    left: 5%;
    z-index: -1;
}

.yellow-star8 {
    position: absolute;
    top: 22%;
    left: 75%;
    z-index: -1;
}

.green-star {
    position: absolute;
    top: 52%;
    left: 15%;
    z-index: -1;
}

.green-star1 {
    position: absolute;
    top: 23%;
    left: 30%;
    z-index: -1;
}

.green-star2 {
    position: absolute;
    top: 88%;
    left: 12%;
    z-index: -1;
}

.stikers {
    height: 45px;
    width: 45px;
}
.about-description .text-description {
    text-align: start;
    line-height: 2rem;
}

.about-description .text-description span {
    font-size: 1.6rem;
    text-transform: uppercase;
}

.about-description .text-description p a {
    text-decoration: none;
    color: #00ff00;
}

.about-description .text-description p a:hover {
    color: #faff1f;
    transition: 0.5s ease-in-out;
}

.counters {
    width: 100%;
    padding: 2rem 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.counter-wrapper {
    background: linear-gradient(225deg, #fcff48,#5ef85e);
    border: 2px solid #fff;
    border-radius: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 1rem 2rem;
}

.counter-wrapper:hover {
    transform: scale(1.02);
    filter: saturate(300%);
    transition: .3s ease-in-out;
}

.counter-icon {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-icon img {
    width: 64px;
    height: 64px;
}

.counter-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    color: #000;
    letter-spacing: 0.1rem;
}

.counter-info h3.counter {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.advances {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
}

.advances-item {
    background-color: #292929;
    border: 2px solid #fff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;

    display: none;
}

.advances-item:nth-child(1),
.advances-item:nth-child(2) {
    display: flex;
}

.advances-item img {
    width: 64px;
    height: 64px;
}

.advances-item p {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.1rem;
}

#load-more {
    font-size: 1.4rem;
    color: #00ff00;
    border: none;
    background: transparent;
    padding: 0.5rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;

    display: flex;
    justify-content: center;
}

#load-more:hover {
    color: #fff;
    transform: scale(1.02);
}

/* SECTION PRICES */

.prices {
    margin: 5rem auto;
}

.prices-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4.5rem;
    font-weight: 500;
}

.prices-grid {
    width: 100%;
    padding: 1.5rem 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    color: #fff;
}

.prices-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #292929;
    border: 2px solid #fff;
    border-radius: 1rem;
    padding: 1rem 2rem;
    position: relative;
}

.prices-item:hover {
    border: 2px solid #00ff00;
    transform: scale(1.04);
    transition: .3s ease-in-out;
    filter: saturate(300%);
}

.prices-item-img {
    margin-bottom: 1rem;
}

.prices-item-img img {
    width: 90px;
    height: 90px;
}

.prices-item-text {
    display: flex;
    flex-direction: column;
}

.prices-item-text .prices-item-text-title {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prices-item-text .prices-item-text-subtitle {
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
    border: 2px solid #00ff00;
    border-radius: 1rem;
    padding: 1rem 2rem;
}

.prices-item-text .prices-item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #faff1f;
    font-size: 1.5rem;
}

.prices-item-text .prices-item-number .price-number {
    font-size: 2.5rem;
    margin-right: 1rem;
}

@media (hover: none) {
    .prices-item {
        border-color: #00ff00;
    }
}

/* SECTION INFO */

.info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding-top: 2rem;
}

.teachers-info, .prices-info, .gallery-info, .news-info {
    height: 390px;
    border: 2px solid #fff;
    border-radius: 1rem;
}

.teachers-info {
    position: relative;
    background: url(../images/photo/1.jpg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prices-info {
    position: relative;
    background: url(../images/photo/16\(1\).jpg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-info {
    position: relative;
    background: url(../images/photo/34.jpg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-info {
    position: relative;
    background: url(../images/photo/66.jpg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info a {
    text-decoration: none;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 8;
    border: 2.5px solid #fff;
    border-radius: 1rem;
    padding: 0.5rem;
}

.info a:hover {
    color: #00ff00;
    transform: scale(1.04);
    transition: .5s ease-in-out;
    border: 2.5px solid #00ff00;
}

.glass {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(0.3px);
}

.glass:hover {
    transition: .5s ease-in-out;
    backdrop-filter: none;
    background: none;
}


/* SECTION FAQ */

.faq_container {
    padding: 2rem 2rem 0 2rem;
}

.faq-heading {
    color: #fff;
    font-size: 1.6rem;
    word-spacing: 0.1rem;
    padding: 0 0 1.5rem 0;
}

.faq_container .split_content {
    grid-row-gap: 60px;
}

.accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.accordion_item {
    border: 2px solid #fff;
    border-radius: 1rem;
    padding: 1rem;
    margin: 1rem 0 1rem 0;
    background-color: #292929;
    color: #fff;
}

.accordion_header {
    font-size: 20px;
    padding: 10px 10px 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion_content {
    margin-top: 20px;
    overflow: hidden;
    height: 0;
    transition: all .5s ease;
    font-size: 18px;
    border-radius: 1rem;
}

.active_faq {
    padding-bottom: 10px;
}

.question {
    margin-right: 40px;
    font-size: 20px;
}

.accordion_content p {
    padding: 16px;
    word-spacing: 0.1rem;
    line-height: 1.4;
}

.icon {
    font-size: 20px;
}



/* TICKER */

.ticker {
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}

.ticker-wrapper {
    display: flex;
}

.ticker-item {
    color: #fff;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 1.5rem;
    animation: ticker 5s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateZ(0);
    }
    to {
        transform: translate3d(-100%, 0, 0);
    }
}

/* ZHODZINO SECTION */

.zhodzino {
    width: 100%;
    margin-top: 1rem;
    border: 2px solid #fff;
    border-radius: 1rem;
    background: #292929;
    display: grid;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 0;
}

.zhodzino-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0 1rem 0;
    font-size: 6.5rem;
    color: #fff;
}

.zhodzino-text {
    width: 100%;
    display: grid;
    justify-content: center;
}

.zhodzino-text .zhodzino-link-instagram {
    font-size: 5.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #00ff00;
    text-decoration: none;
    margin-bottom: 1rem;
}

.zhodzino-text .zhodzino-link-instagram:hover {
    color: #fff;
}

.zhodzino-map-text {
    text-align: center;
}

.zhodzino-tel {
    margin-top: 2rem;

}

.zhodzino-tel a{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.zhodzino-map-text {
    margin-bottom: 2rem;
}

.zhodzino-map-text span{
    display: flex;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    word-spacing: 0.1rem;
    letter-spacing: 0.15rem;
    color: #fff;
    margin-bottom: 1rem;
}

.zhodzino-map-link {
    width: 100%;
}

.zhodzino-map-link a:nth-child(1) {
    margin-right: 4rem;
}

.zhodzino-map-link a {
    text-decoration: none;
    color: #fff;
    font-size: 2rem;
}

.zhodzino-map-link a:hover {
    color: #00ff00;
}


/* CONTACTS */

.contacts-wrapper {
    padding-top: 2rem;
    display: grid;
    text-align: center;
}

.contacts-link {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 1rem;
    background-color: #292929;
    padding: 2rem;
    background: linear-gradient(225deg, #fcff48,#5ef85e);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 10%;left: 26%;
    z-index: -3;
}

.stars1 {
    position: absolute;
    top: 40%;
    right: 26%;
    z-index: -3;
}

.stars2 {
    position: absolute;
    bottom: 17%;
    left: 4%;
    z-index: -3;
}

.stars3 {
    position: absolute;
    bottom: 69%;
    left: 6%;
    z-index: -3;
}

.stars4 {
    position: absolute;
    bottom: 19%;
    left: 39%;
    z-index: -3;
}

.stars5 {
    position: absolute;
    top: 86%;
    right: 85%;
    z-index: -3;
}

.stars6 {
    position: absolute;
    top: 13%;
    right: 3%;
    z-index: -3;
}

.stars7 {
    position: absolute;
    top: 80%;
    right: 12%;
    z-index: -3;
}

.stars8 {
    position: absolute;
    top: 6%;
    right: 25%;
    z-index: -3;
}

.stars9 {
    position: absolute;
    top: 38%;
    right: 53%;
    z-index: -3;
}

.stars10 {
    position: absolute;
    top: 55%;
    right: 67%;
    z-index: -3;
}

.contacts-link a {
    font-size: 5.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #363636;
}

.contacts-link a:hover {
    color: #fff;
}

.contacts-link .telephone {
    margin-top: 2rem;
}

.contacts-link .telephone a {
    font-size: 1.5rem;
    font-weight: 600;
}

.contacts-link .telephone a:hover {
    color: #fff;
}

.link-youtube_vkontakte {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.link-youtube_vkontakte a {
    margin-right: 3rem;
    margin-left: 3rem;
}

.maps-info {
    display: grid;
    margin-top: 2rem;
}

.maps-info-title {
    color: #363636;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    word-spacing: 0.1rem;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
}

.maps-info .maps-info-links a {
    text-decoration: none;
    color: #363636;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.maps-info a:hover {
    color: #fff;
}

.maps-info a:nth-child(1) {
    margin-right: 4rem;
}

a.inst{
    cursor: url('../images/stikers/instgram.png'), pointer;
}

a.youtube {
    cursor: url('../images/stikers/youtube.png'), pointer;
}

a.vkontakte {
    cursor: url('../images/stikers/vk.png'), pointer;
}

a.gmail {
    cursor: url('../images/stikers/email-marketing.png'), pointer;
}

a.phone {
    cursor: url('../images/stikers/telephone.png'), pointer;
}


/* TEAM SECTION */

.team {
    max-width: 1440px;
    margin: 5rem auto 0 auto;
}

.team-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-bottom: 1.5rem;
    font-size: 4.5rem;
    font-weight: 500;
    text-align: center;
}

.services-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.services-items .item {
    border: 2px solid #fff;
    border-radius: 1rem;
    background: #292929;
}

.item-img img {
    width: 100%;
    height: 620px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom: 2px solid #fff;
}

.item-inner {
    padding: 1rem 1rem;
    align-items: center;
}

.item-inner .read-more-cont {
    display: none;
}

.item-inner h3 {
    color: #fff;
    font-size: 1.7rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    position: relative;
}

.item-inner h3::before {
    content: '';
    height: 1px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.item-inner p {
    color: #fff;
    font-size: 1.15rem;
    margin: 0 0 1rem; 
}

.item-inner-social-link {
    width: 100%;
    display: flex;
}

.item-inner-social-link a {
    color: #fff;
    margin-right: 2rem;
    font-size: 24px;
    transition: all 0.4s ease;
}

.item-inner .services-btn {
    font-size: 1.15rem;
    background-color: transparent;
    border: none;
    color: #00ff00;
    cursor: pointer;
    transition: all 0.4s ease;
}

.popup-box {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.popup-box.open {
    visibility: visible;
    opacity: 1;
}

.popup-box .popup-content {
    background-color: #fff;
    border-radius: 1rem;
    width: 850px;
    padding: 1.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.popup-box .popup-header {
    padding: 15px 40px 15px 15px;
    font-size: 1.5rem;
}

.popup-box .popup-header .popup-close-icon {
    position: absolute;
    height: 30px;
    width: 30px;
    text-align: center;
    background-color: red;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 500;
    line-height: 30px;
    right: 8px;
    top: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.popup-box .popup-header .popup-close-icon:hover {
    color: #000;
}

.popup-box .popup-body {
    padding: 1rem;
    font-size: 1rem;
    max-height: 300px;
    overflow-y: auto;
} 

.popup-box .popup-footer {
    padding: 1rem;
    text-align: right;
}

.read-more-cont-social-link {
    margin-top: 1rem;
}

.read-more-cont-social-link a {
    color: #000;
    margin-right: 2rem;
    font-size: 26px;
    transition: all 0.4s ease;
}

.item-inner-social-link a:hover,
.read-more-cont-social-link a:hover,
.popup-close-btn:hover,
.services-btn:hover {
    color: #00ff00;
    transform: scale(1.07);
}

.popup-box .popup-footer .btn {
    padding: 0.5rem 1rem;
    border: none;
    font-size: 1rem;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.popup-box .popup-footer .btn:focus {
    outline: none;
}

/* GALLERY SECTION */

.gallery {
    max-width: 1440px;
    margin: 5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-bottom: 1.5rem;
    font-size: 4.5rem;
    font-weight: 500;
    text-align: center;
}

.gallery .gallery-images {
    gap: 1rem;
    columns: 3 340px;
}

.gallery-images .gallery-card {
    position: relative;
    list-style: none;
    margin-bottom: 1rem;
    overflow: hidden;
    display: none;
}

.gallery-images .gallery-card:nth-child(1),
.gallery-images .gallery-card:nth-child(2),
.gallery-images .gallery-card:nth-child(3),
.gallery-images .gallery-card:nth-child(4),
.gallery-images .gallery-card:nth-child(5),
.gallery-images .gallery-card:nth-child(6) {
    display: inline-block;
}

.gallery-card .gallery-details {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-details {
    opacity: 1;
}

.gallery-details button {
    border: none;
    background: transparent;
}

.gallery-card .gallery-details i {
    font-size: 1.5rem;
    cursor: pointer;
}

.gallery-images img {
    border-radius: 1rem;
    width: 100%;
}

.gallery-load-more {
    font-size: 1.4rem;
    color: #00ff00;
    border: none;
    background: transparent;
    padding: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-load-more:hover {
    color: #fff;
    transform: scale(1.02);
}

.video-section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.video-container {
    position: relative;
    width: 100%;
    margin: 2rem auto 0 auto;
    padding-top: 56.25%;
    border: 2px solid #fff;
    border-radius: 1rem;
    background: #363636 url(../images/youtube.png) no-repeat center;
    background-size: 13%;
    transition: all 0.4s ease;
    overflow: hidden;
}

.video-container:hover {
    cursor: pointer;
    background-size: 17%;
}

.video-container iframe {
    position: absolute;
    top: 0;left: 0;right: 0;bottom: 0;
    width: 100%;height: 100%;
}

@media (hover: none) {
    .gallery-card .gallery-details {
        opacity: 1;
    }
}


/* NEWS SECTION */

.news {
    max-width: 1440px;
    margin: 5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-bottom: 1.5rem;
    font-size: 4.5rem;
    font-weight: 500;
    text-align: center;
}

.news-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
}

.news-item {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 1rem;
    border: 2px solid #00ff00;
}

.news-item-img img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-right: 2px solid #00ff00;
    object-fit: cover;
}

.news-item-text {
    padding: 1rem 2rem;
}

.news-item-text a{
    color: #00ff00;
    text-decoration: none;
}

.news-item-text a:hover{
    color: #363636;
}

.news-item-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-item-text span {
    font-size: 1.2rem;
    font-weight: 600;
}

.news-item-text p {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
}


/* FOOTER */

.footer {
    max-width: 1440px;
    margin: 2rem auto 1rem auto;
    padding: 0.5rem;
    content-visibility: auto;
    text-align: center;
    line-height: 1.2rem;
}

.footer-info {
    font-size: 10px;
    color: #fff;
}

.credits-section a{
    color: #000;
    text-decoration: none;
    font-size: 9px;
}

.credits-section a:hover {
    color: #fff;
}