@charset "UTF-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");


@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@100;300;400;500&display=swap');


@font-face {
    font-family: 'TTLoveliesScript';
    src: url(/css/TTLoveliesScript.ttf);
}

html, body {
    overflow-x: hidden;
  }

body {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    background-color: #000000;
    color: #FFFFFF;
    position: relative;
}


/* Заголовки усіх розділів */
.section-title {
    font-size: 2.25rem;
    /* text-shadow: 0px 0px 15px rgba(126, 31, 134, 0.9); */
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #7E1F86;
    text-decoration-thickness: 5px;
    text-underline-offset: 0.8rem;
    padding-bottom: 5vh;
    
}

.section-title::before {
    font-size: 36px;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #7E1F86;
    text-decoration-thickness: 5px;
    text-underline-offset: 0.8rem;
    padding-bottom: 5vh;
    
}



section {
    padding-block: 2rem;
}

/* Стилі списку з іконками */
.features-list li {
    position: relative;
    font-weight: 400;
    line-height: 130%;
    padding-left: 20px;
    padding-right: 20px;
}

.features-list li:before {
    content: "";
    background-image: url(../assets/icons/purple_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 15px;
    height: 15px;
    position: absolute;
    left: -2%;
    top: 9px;
}

ol, ul {
    list-style: none;
}

/*============ Будь-які кнопки на сайті==================*/
.header-button button, .button-container button   {
    font-size: 20px;
    color: #ffffff;
    padding: 9px 25px;
    background-color: #7E1F86;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.1s ease 0s;
}

.header-button button a, .button-container button a, header-scrolled a  {
    color: #FFFFFF !important;
    text-decoration: none;
}

.header-button button:hover , .button-container button:hover  {
    font-size: 20px;
    color: #ffffff;
    padding: 9px 25px;
    background-color: #016FB9;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s;
    padding: 10px;
    /* width: 100vw; ======================================================*/
} 

#header ul {
    color: #35b88f;
}


#header .logo {
    font-size: 12px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* margin-right: auto; */
}


#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 60px;
}

/* Колір підсвітки менб коли сторінка проскролена */
#header.header-scrolled, #header.header-inner-pages {
    background: #FFFFFF;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/* Колір тексту коли сторінка проскролена */
#header.header-scrolled a {
    color: #000000;
}

#header.header-scrolled .logo a, #header.header-inner-pages .logo a {
    color: #493c3e;
}


.not-show {
    display: none;
}



@media (max-width: 992px) {
    #header .logo {
        font-size: 18px;
    }
}




/* Navigation menu */

.navbar-nav li a {
    display: block;
    position: relative;
    color: #ffffff;
    transition: 0.3s;
    font-size: 1rem; /* Було 24 */
    padding: 0 4px;
    letter-spacing: 0.4px;
}




/* @media (max-width: 1080px) {

    #header {
        display: flex;
        flex-direction: row;
        align-items: center !important;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
    }

    .logo-div {
        order: 1;
    }

    .navbar-div {
        order: 3;
    }

    .header-button {
        order: 2;
    }

 

    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.7);
        height: 15%;
        width: 100%;
        position: fixed;
        overflow: hidden;
        inset: 80px 0 0 0;
        transition: 0.2s;

    }


    

    .navbar-collapse li a:hover {
        border-bottom: none !important;
        
    }
    
    .navbar-collapse a:hover {
        border-bottom: none;
        
    }    
} */


/* Navigation menu */


.navbar-nav {
    justify-content: space-between;
}




/* Підсвітка пунктів меню коли сторінка НЕ просролена */
.navbar-nav li a:hover {
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #7E1F86;
    text-decoration-thickness: 4px;
    text-underline-offset: 0.3rem;
    color: red;
}

/* Підсвітка пунктів меню коли сторінка просролена */
#header.header-scrolled li a:hover {
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #7E1F86;
    text-decoration-thickness: 4px;
    text-underline-offset: 0.3rem;
    color: red;
}

/* ================= Гамбургер меню =============================== */

.navbar {
    padding: 0;
}

.hamburger__menu {
    display: flex;
    align-items: center;
    height: 45px;
    --button-color: #7E1F86;
    background: transparent;
    border: 3px solid var(--button-color); 
    border-radius: 3px;
}

.hamburger__menu .line {
    transition: 0.3s;
    transform-origin: center;
}

 .hamburger.open .top {
    y:10;
    rotate: 45deg;
}

.hamburger.open .middle {  
   rotate: -90deg;
   opacity: 0;
}

 .hamburger.open .bottom {
    y:10;
    rotate: -45deg;
}

/* ============================================================== */

.nav-link:focus, .nav-link:hover {
    color: #ffffff;
}


@media (min-width: 576px) {
    .hamburger__menu {
        display: none;
    }
}


@media (max-width: 576px) {

    #header {
        display: flex;
        flex-direction: row;
        align-items: center !important;
        width: 100%;
        justify-content: space-between;
    }


    #header .logo img {
        max-width: 22vw;
    }



    .header-button {
        display: flex;
        justify-content: center;
    }

    .header-button button   {
        font-size: 1rem;
        color: #ffffff;
        padding: 10% 25%;
        background-color: #7E1F86;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.1s ease 0s;
    }
    
    .header-button button a, header-scrolled a  {
        color: #FFFFFF !important;
        text-decoration: none;
    }
    
    .header-button button:hover {
        font-size: 1rem;
        color: #ffffff;
        padding: 10% 25%;
        background-color: #016FB9;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.2s ease 0s;
    }

    .navbar-nav li a {
        display: block;
        position: relative;
        color: #000000;
        transition: 0.3s;
        font-size: 1.3rem; /* Було 24 */
        padding: 0.4%;
        letter-spacing: 0.4px;
    }

    /* Підсвітка пунктів меню коли сторінка НЕ просролена */
    .navbar-nav li a:hover {
        text-align: center;
        text-decoration: underline;
        text-decoration-color: #7E1F86;
        text-decoration-thickness: 2px;
        text-underline-offset: 0.25rem;
        color: red;
    }

/* Підсвітка пунктів меню коли сторінка просролена */
    #header.header-scrolled li a:hover {
        text-align: center;
        text-decoration: underline;
        text-decoration-color: #7E1F86;
        text-decoration-thickness: 2px;
        text-underline-offset: 0.25rem;
        color: red;
    }

    .logo-div {
        order: 1;
    }

    .navbar-div {
        order: 3;
    }

    .header-button {
        order: 2;
    }


    .navbar-collapse {
        background-color: rgba(255, 255, 255, 1);
        height: fit-content;
        width: 100%;
        position: fixed;
        overflow: hidden;
        inset: 70px 0 0 0;
        transition: 0.2s;
        text-align: center;

    }

}



/*================================ Головний баннер ====================*/
.main-banner  {
    background-image: url("../assets/bgs/waves.jpg");
    /* opacity: 0.9; */
    background-repeat: no-repeat;
    background-size: cover;
    
}
/*   0d4749   */

.hero-banner {
    justify-content: center;
}


.legendary {
    margin-top: 5%;
    text-align: right;
    align-items: center;
}

.div-leg {
    padding: 0;
}

/* Текст на баннере */

.banner-orat {
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
}

.banner-training {
    color: #ffffff;
    text-align: center;
    padding-top: 3vh;
    font-size: 2rem;
}

.banner-drive {
    font-family: 'TTLoveliesScript';
    font-size: 10rem;
    color: #016fb9;
    text-align: center;
}

.banner-img {
    margin-right: auto;
    margin-left: auto;
}

.banner-img img {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    justify-self: center;
}

#drive-descr {
    color: white;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    text-align: center;
}




@media (max-width: 1080px) {
    .banner-drive {
        font-size: 4rem;
    }

    .legendary {
        margin-top: 10%;
    }
}

@media (max-width: 768px) {

    .legendary {
    text-align: center;
    }

}

@media (max-width: 576px) {
    .banner-drive {
    font-size: 4rem;
    }

}


.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
 
}

/* ========================================================================== */

/* =================Про Спікер ===============*/



.about-title {
    text-align: left;
}

.about-text ul {
    padding: 0;
    margin-bottom: 10px;
    margin-block-start: 0.2rem;
    margin-block-end: 0;
}


.about-text span {
    color: #016FB9;
    font-weight: 500;
}


@media (max-width: 768px) {

    .about-text {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}

/* ===================Чому сайме драйв ======================*/

.why-drive-title {
    color: #fff;
}



.why-drive img{
   margin: auto;
}

/* section {
    padding-block: 2rem;
} */

#why-drive {
    position: relative;
    isolation: isolate;
    padding-top: 4rem;
}

#why-drive::before {
    content: '';
    background-image: url(..//assets/bgs/triangles2.png);
    background-size: cover;
    position: absolute;
    z-index: -1;
    inset: 0;
    transform: skewY(-5deg);


}


.why-drive-row {
     margin: 3% 0 3% 0;
}

.why-drive-text {
    display: flex;
    text-align: left;
    align-items: center;
    margin: auto;
    color: #fff;
}


@media (max-width: 768px) {
    
    .img-2nd {
        order: 1 !important; 
    }

    .txt-2nd {
        order: 2!important;
    }
}

@media (max-width: 576px) {
    
    .img-2nd {
        order: 1 !important; 
    }

    .txt-2nd {
        order: 2!important;
    }
}

/* ============== Чому до нас звертаються ========= */
.why-we-title {
    text-align: right;
}

.why-we-text {
    text-align: left;
}

.why-we-img {
    margin: auto;
}

.why-we-text li {
    margin: 2%;
}

.why-we-footer {
    text-align: center;
    margin: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ================================================= */



#reg_button_1 {
    align-self: center;
}


.rhetoric-card {
    /* border: solid  #6f42c1; */
    border-radius: 30px;
    box-shadow: rgba(111, 66, 193, 0.5) 0px 54px 55px, rgba(111, 66, 193, 0.5) 0px -12px 30px, rgba(111, 66, 193, 0.5) 0px 4px 6px, rgba(111, 66, 193, 0.5) 0px 12px 13px, rgba(111, 66, 193, 0.5) 0px -3px 5px;
}

.rhetoric-card .card-img-top{
    border-radius: 25px;
    /* width: 100%;
    height: 16vw;
    object-fit: cover;     */
}


p.card-text {
    text-align: center;
}



/* Why we Чому до нас звертаються */
/* #why-we {
    background-image: url(/assets/backgrounds/violet-lines-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
} */

 
/* -----------------------Чому до нас звертаються ---------------------*/



/* ------------------------------------------------------------------- */



.box.style1 {
    background: #fff;
}


.box {
    position: relative;
}

.container {
    margin-left: auto;
    margin-right: auto;
}

.image why-we {
    display: block;
    width: 10%;
}


/* ---------------------Де потрібні ор вміння ----------------------------*/

#where {
    margin: 20px;
}

#where img {
    height: 50px;
    width: 50px;
    margin: auto;
    display: block;
}

/* -----------------Що отримують учасники тренінгу--------------- */


#what-get {
    color: #fff;
    position: relative;
    isolation: isolate;
    padding: 4rem 0 4rem 0;
}



#what-get::before {
    content: '';
    background-image: url(/assets/bgs/triangles1.png);
    background-size: cover;
    position: absolute;
    z-index: -1;
    inset: 0;
    transform: skewY(3deg);
}

.what-get-list {
    text-align: left;
}

.what-get-list li {
    margin: 2%;
}


/* ============================================================== */

/*=================== Що + Як говорити =======================*/

@media (max-width: 768px) {
    
    .what-card, .how-card {
        margin-top: 5%;
        margin-bottom: 5%;
    }
}




.card-title {
    font-size: 36px;
    text-align: center;
    margin-top: 10px;
}


.what-how-card li {
    margin-bottom: 5px;
    text-align: left;
    padding-left: 10px;
}


#what-how .card {
    margin-top: 10px;
    border: none;
    box-shadow: #7E1F86 10px 10px 20px;
}



/* ================================================================= */


/* Зображення з цифрами */
#numbers {
    text-align: center;
    background-image: url(/assets/bgs/glowing-ball-1404.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px;
    color: #fff;
}


@media (max-width: 1000px) {

    #numbers {
        background-position-x: 30% !important;
        background-position-y: 30% !important;
    }

    
}



@media (max-width: 425px) {

    #numbers {
        background-position-x: 35% !important;
        background-position-y: 35% !important;
    }

    
}




#numbers span {
    font-size: 40px;
}


#numbers p {
    font-size: 25px;
}




.members-numbers, .members-text{
    text-wrap: avoid;
    display: inline;
    padding: .25em 0;
    box-shadow: .5em 0 0 #FFC107, -.5em 0 0 #FFC107;
    font-size: 30px;
}

.members-text {
    font-size: 15px;
}

.members {
    font-size: 30px;
}



/* ================= FAQ =========================== */


.accordion-button::after {
    background-image: url(/assets/icons/purple_arrow_down.svg);
}


.accordion-button:not(.collapsed)::after {
    background-image: url(/assets/icons/purple_arrow_down.svg);
    
}



.accordion {
    --bs-accordion-btn-bg:#FFF; /* Колір вкладки яка НЕ-РОЗГОРНУТА */
    /*--bs-accordion-active-bg: #ffcd39;  Колір вкладки яка РОЗГОРНУТА */
    --bs-accordion-active-bg: #FFF;
    --bs-accordion-active-color: #7E1F86; /* Колір тексту коли РОЗГОРНУТА */
    --bs-accordion-btn-color: #000000; /* Колір тексту коли НЕ-РОЗГОРНУТА */
    --bs-accordion-btn-focus-box-shadow: #44A;
    --bs-accordion-border-color: #7E1F86;
    --bs-accordion-border-width: 2px;
    --bs-accordion-inner-border-width: 20px;
    /* --bs-accordion-border-radius: 30px; */
    /* --bs-accordion-inner-border-radius: 30px; */
     box-shadow: #7E1F86 10px 10px 25px;
    
}


.accordion-button:not(.collapsed) {
    
    font-size: 24px;
}


.accordion-button {
    font-size: 24px;
    font-weight: 500;

}


/* ================================================== */



/* ===================  Розклад  ===================== */

#schedule {
    background-image: url("../assets/bgs/7.png");
    opacity: 0.9;
    background-repeat: no-repeat;
    background-size: revert;
    background-size: cover;
    color: #ffffff;
 
}

#schedule section {
    padding-block: 10px;
}

#schedule .row{
    margin-top: 2%;
    margin-bottom: 2%;
}

@media (max-width: 768px) {
    
    #schedule .row{
        margin-top: 7%;
        margin-bottom: 7%;
    }

    #schedule li{
        margin-top: 2%;
        margin-bottom: 2%;
    }
}

#schedule ul {
    padding: 0px;
    margin: 0px;
}

/* =================================================== */


.coaches-text {
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}



#loz {
    margin: 20px;
}

#bar {
    margin: 20px;
}

.coaches-subtitle {
    color: #016fb9;
}

#coaches h2 {
    font-size: 36px;
    color: #7E1F86;
}

@media (max-width: 1000px) {

    .irina-txt {
        order: 2;
    }

    .irina-photo {
        order: 1;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/


.form-row {
    display: flex;
    flex-wrap: wrap;

}

.form-group {
    padding-right: 8vw;
    padding-left: 8vw;
    margin-left: auto;
    margin-right: auto;
}

.form-control {
   box-shadow: none;
}

.main-form {
    margin-top: 2rem;

}

/* .form-email {

} */

  
  .contact .info {
    width: 100%;
    background: #fff;
  }
  
  .contact .info i {
    font-size: 20px;
    color: #e43c5c;
    float: left;
    width: 44px;
    height: 44px;
    background: #fdeff2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #493c3e;
  }
  
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #816a6e;
  }
  
  .contact .info .email, .contact .info .phone {
    margin-top: 40px;
  }
  
  .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: green;
    color: #fff;
  }
  
  .contact .php-email-form {
    width: 100%;
  
  }
  
  .contact .putName {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #7E1F86;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  
  .contact .putPhone {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #7E1F86;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }

  .contact .putMail {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #7E1F86;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  
  

  .contact .php-email-form .form-group {
    padding-bottom: 1rem;
  }
  
  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    align-items: center;
    color: #fff;
    background: #016fb9;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #22aed1;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input, .contact .php-email-form textarea {
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #7E1F86;
    border-radius: .25rem;
    box-shadow: #7E1F86 6px 6px 10px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        
  }
 


/* Колір рамки при фокусуванні */
    .contact .php-email-form input:focus,  .contact .php-email-form textarea:focus {
        border: #016FB9 2px solid;
        outline: none;

    }
    
    .contact .input.putName, .contact .input.putPhone {
        border-color: red;
    }
  
    .contact .php-email-form input {
        height: 44px;
    }
    
    .contact .php-email-form textarea {
        padding: 10px 12px;
    }
    
    .contacts-button {
        text-align: center;
    }

    .contact .php-email-form button[type="submit"] {
        background: #7E1F86;
        border: 0;
        padding: 10px 28px;
        color: #fff;
        transition: 0.4s;
        border-radius: 50px;
    }
    
    .contact .php-email-form button[type="submit"]:hover {
        background: #016FB9;
    }
    
    


    /*============================= Карусель ==========================*/
    
#reviews {
    padding-bottom: 6rem;
}
    

.carousel__people h2,h3 {
    color: #016FB9;
    font-size: 18px;
}

    
.carousel {
        
    position: relative;
    height: 70vh;
    width: 80%;
    margin: 0 auto;
        
}
    
.carousel__slide {
    display: flex;
    position: absolute;
    align-items: center;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel__track-container {
    border-radius: 30px;
    box-shadow: rgba(111, 66, 193, 0.5) 0px 54px 55px, rgba(111, 66, 193, 0.5) 0px -12px 30px, rgba(111, 66, 193, 0.5) 0px 4px 6px, rgba(111, 66, 193, 0.5) 0px 12px 13px, rgba(111, 66, 193, 0.5) 0px -3px 5px;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.carousel__track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;
}
    
.current-slide {
    
    margin-left: auto;
    margin-right: auto;

 
}


.carousel__image {
    display: flex;
    width: 250px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}



.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    cursor: pointer;
}


.carousel__button img {
    width: 2em;
    
}

.carousel__button--left {
    left: -8vw;
}

.carousel__button--right {
    right: -8vw;
}

.carousel__nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.carousel__text {
    display: flex;
    justify-content: center;
    align-items: center;
    
}


.carousel__people {
    align-self: center;
    align-items: center;
    justify-content: center;
}

.carousel__name, .carousel__company, .carousel__position {
    text-align: center;
    padding: 0.3em;
}

.carousel__people h1, .carousel__people h2, .carousel__people h3{
    text-align: center;
    
}

.carousel__name {
    color: #7E1F86;
    font-size: 32px;
}

.carousel__position {
    color: #016FB9;
}

.carousel__indicator {
    border: 0;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.9);
    margin: 0 12px;
    cursor:pointer;
}

.carousel__indicator.current-slide {
    background: rgba(126, 31, 134, 0.8);
}


.is-hidden {
    display: none;
}





@media (max-width: 1440px) {
    .carousel {
        height: 80vh;
        }

}

@media (max-width: 1080px) {
    .carousel {
        height: 800px;
        width: 82%;
        }

}
@media (max-width: 1024px) {
    .carousel {
        height: 110vh;
        width: 82%;
        }

}

@media (max-width: 992px) {
    
    .carousel {
        height: 135vh;
        width: 75%;
        }

}


@media (max-width: 768px) {
    
    .carousel {
        height: 135vh;
    }

    .carousel__track {
        width: 103%;
        margin: 0 auto;   
    }



}

@media (max-width: 576px) {
    
    .carousel {
        height: 100vh;
        width: 78%;
    }

    .carousel__slide {
        top: auto;
        bottom: auto;
    }

    .carousel__people {
        margin: 4% 0 10% 0;
    }


    .carousel__card-text {
        font-size: 0.5em;
        padding: 0 5% 0 0;
    }


}


/* ================== Legal Section =================== */

.legal {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    margin-top: 20px;
    gap: 20px;
}


/* ====================     Foooter   =================== */

#footer {
    background-color: rgba(87, 0, 248, 0.952);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    color: #ffffff;

                
    }

    .footer-div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #footer a {
        text-decoration: none;
        color: #ffffff;
    }

    .footer-socials a:hover {
        border: solid 3px #016FB9;
        color: #016FB9;
    }

    .footer-legal a:hover {
        border-bottom: solid 3px #016FB9;
        color: #016FB9;
    }

    .footer-contacts a:hover {
        border-bottom: solid 3px #016FB9;
        color: #016FB9;
    }

    #footer img:hover {
        border: solid 3px #016FB9;

    } 
    
    .footer-icon img:hover {
        border: none;
    }

    .footer-icon {
        display: flex;
        justify-content: center;
    }

    .footer-icon img {
        max-width: 140px;
    }

    .footer-contacts {
        font-size: 20px;
        text-align: center;
        align-self: center;
        

    }
    .footer-contacts span {
        font-size: smaller;


    }

    .footer-socials {
        display: flex;
        justify-content: space-evenly;

    }


    .footer-socials img {
        height: 80px;
        width: 80px;
        
    }

    .footer-legal {

        text-align: left;
    }
    
    @media (max-width: 990px) {

        .footer-legal {
            text-align: center;
        }
    }
    
    
    

    
    
    
    
    
    