/* ------------------------------------

01. google fonts
02. variables
03. overrides variables for - theme dark
04. base
05. box
06. customized bootstrap classes
07. animation keyframes
08. section - padding, title
09. buttons
10. page loader
11. circular img
12. forms
13. video modal
14. pagination
15. breadcrumb
16. tabs
17. bubble animation
18. style switcher
19. header
20. footer
21. banner section
22. fun facts section
23. project section
24. testimonials section
25. bai section
26. course details section
27. contact section

--------------------------------------*/

*
{
    margin: 0;
    padding: 0;
}

/* --------------------
 01. google fonts 
 -------------------- */
 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 @import url(https://fonts.googleapis.com/css?family=Audiowide);
 @import url('https://fonts.googleapis.com/css2?family=Warnes&display=swap');
 @import url('https://fonts.googleapis.com/css?family=Audiowide');
 
/* --------------------
02. variables
-------------------- */
:root {
    --orange: hsl(36, 80%, 50%);
    --white: hsl(0, 0%, 100%);
    --WHITE: hsl(0, 0%, 100%);
    --BLACK: hsl(0, 0%, 0%);
    --black-90: hsl(0, 0%, 10%);
    --black-70: hsl(0, 0%, 30%);
    --black-alpha-40: hsla(0, 0%, 0%, 0.4);
    --yellow-light: hsl(44, 95%, 83%);
    --green-light: hsl(158, 68%, 75%);
    --red-light: hsl(0, 84%, 80%);
    --orange-light: hsl(22, 85%, 80%);
    --select-box-bg-color: hsl(0, 0%, 100%);
    --border-color-1: hsl(0, 0%, 90%);

}

/* --------------------
03. overrides variables for - theme dark
-------------------- */
body.t-dark {
    --body-bg-color: hsl(240, 10%, 19%);
    --black-70: hsl(0, 0%, 87%);
    --black-90: hsl(0, 0%, 100%);
    --shadow: 0 0 10px hsla(0, 0%, 0%, 0.08);
    --white: hsl(240, 8%, 21%);
    --select-box-bg-color: hsl(240, 8%, 21%);
    --border--color-2: hsl(240, 9%, 25%);
    --border-color-1: hsl(240, 80%, 10%);
}

/* --------------------
04. base
-------------------- */
body {
    background-color: #000818;
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 16px; */
    /* font-weight: 300; */
    /* color: var(--black-70); */
    min-height: 100vh;
    overflow-x: hidden;
    /* overflow-y: hidden; */
    -webkit-user-select: none; 
  -ms-user-select: none; 
    user-select: none;
    
    
}

::-webkit-scrollbar {
    width:2px;
    
    
  }
  ::-webkit-scrollbar-track{
    
  }
  ::-webkit-scrollbar-thumb{
    /* background:rgb(147, 163, 181); */
    /* border-radius: 10%; */
    background: -webkit-linear-gradient(rgb(227, 61, 213), rgb(16, 188, 211));
 
  }

a {
    /* color: var(--main-color); */
    text-decoration: none;
}

/* a:hover {
    color: var(--main-color);
} */

img {
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6 {
    /* color: var(--black-90); */
    line-height: 1.3;
}
h3 {
    font-size: 20px;
}

/* ::selection {
    color: var(--WHITE);
    background-color: var(--main-color);
    -webkit-user-select: none; 
  -ms-user-select: none; 
    user-select: none;
} */

.webgl
{
    position: fixed;
    /* position: absolute; */
    top: 0;
    left: 0;
    outline: none;
    /* mix-blend-mode: exclusion; */
  
  
}

.webgl-page
{
    position: fixed;
    /* position: absolute; */
    top: 0;
    left: 0;
    outline: none;
    /* mix-blend-mode: exclusion; */
    /* filter: blur(1px);
    -webkit-filter: blur(1px); */
  
}

.webgl-mobile
{
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
  
} 

.main-wrapper{
      position: relative;
    /* z-index: 1; */
    
}
/* --------------------
05. box
-------------------- */
.box {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    padding: 30px;
}

/* --------------------
06. customized bootstrap classes
-------------------- */
/* .container {
    --bs-gutter-x: 15px;
    max-width: 1140px;
    
} */

.row {
    --bs-gutter-x: 30px;
}

/* --------------------
07. animation keyframes
-------------------- */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bubble{
    0% {
        transform: translateY(0vh);
        opacity: 0;
    }
    5%,95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}
@keyframes loader{
    0%{
        transform: rotate(0deg);
    }
    25%, 50%{
        transform: rotate(180deg);
    }
    75%, 100%{
        transform: rotate(360deg);
    }
}
@keyframes loderIn{
    0%, 25%, 100%{
        height: 0%;
    }
    50%, 75% {
        height: 100%;
    }
}

/* --------------------
08. section - padding, title
-------------------- */
 .section-padding {
    padding: 60px 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title .title {
    font-size: 20px;
    color: var(--main-color);
    text-transform: capitalize;
}

.section-title .sub-title {
    font-size: 35px;
    font-weight: 600;
    color: var(--black-90);
    text-transform: capitalize;
} 
/* --------------------
09. buttons
-------------------- */
.btn-theme {
    background-color: var(--main-color);
    color: var(--WHITE);
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    color: var(--WHITE);
    background-color: var(--button-hover-color);
}

.btn-theme:focus {
    box-shadow: 0 0 8px var(--main-color);
}
/* --------------------
10. page loader
-------------------- */

.page-loader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1001;
    display: flex;
    background-color: var(--BLACK);
}

.page-loader.fade-out{
    opacity: 0;
    transition: all 90s ease;
}

.page-loader div{
    margin: auto;
    height: 32px;
    width: 32px;
    /* border: 4px solid var(--white); */
    position: relative;
    /* animation: loader 2s linear infinite; */
}
/* .page-loader div::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--main-color);
    left: 0;
    top: 0;
    animation: loderIn 2s linear infinite;
} */


/* --------------------
11. circular img
-------------------- */

 .circular-img {
    max-width: 360px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.circular-img-inner {
    text-align: center;
    border-radius: 0 0 180px 180px;
    overflow: hidden;
}

.circular-img-circle {
    height: 360px;
    width: 360px;
    position: absolute;
    /* left: 0;
    bottom: 0; */
    border-radius: 50%;
}

.circular-img img {
    position: relative;
    z-index: 1;
} 
/* --------------------
12. forms
-------------------- */


/* --------------------
13. video modal
-------------------- */


/* --------------------
14. pagination
-------------------- */


/* --------------------
15. breadcrumb
-------------------- */


/* --------------------
16. tabs
-------------------- */


/* --------------------
17. bubble animation
-------------------- */
/* .bubble-animation-item {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    z-index: -1;
}

.bubble-animation-item:nth-child(1){
    border-color: var(--yellow-light);
    top: 120%;
    left: 10%;
    animation: bubble 30s linear infinite;
}
.bubble-animation-item:nth-child(2){
    border-color: var(--green-light);
    top: 60%;
    left: 50%;
    animation: bubble 50s linear infinite;
}
.bubble-animation-item:nth-child(3){
    border-color: var(--red-light);
    top: 90%;
    left: 90%;
    animation: bubble 40s linear infinite;
}
.bubble-animation-item:nth-child(4){
    border-color: var(--red-light);
    top: 80%;
    left: 60%;
    animation: bubble 60s linear infinite;
}
.bubble-animation-item:nth-child(5){
    border-color: var(--green-light);
    top: 30%;
    left: 10%;
    animation: bubble 70s linear infinite;
}
.bubble-animation-item:nth-child(6){
    border-color: var(--red-light);
    top: 20%;
    left: 30%;
    animation: bubble 80s linear infinite;
}
.bubble-animation-item:nth-child(7){
    border-color: var(--yellow-light);
    top: 100%;
    left: 50%;
    animation: bubble 60s linear infinite;
}
.bubble-animation-item:nth-child(8){
    border-color: var(--green-light);
    top: 110%;
    left: 33%;
    animation: bubble 70s linear infinite;
}
.bubble-animation-item:nth-child(9){
    border-color: var(--red-light);
    top: 120%;
    left: 65%;
    animation: bubble 80s linear infinite;
} */

/* --------------------
18. style switcher
-------------------- */
/* .style-switcher {
    width: 250px;
    position: fixed;
    height: 100%;
    background-color: var(--white);
    right: -250px;
    top: 0;
    z-index: 10;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: right 0.3s ease;
}
.style-switcher.open{
    right: 0;
}
.style-switcher-toggler {
    height: 40px;
    width: 40px;
    position: absolute;
    top: 28%;
    left: -40px;
    background-color: var(--main-color);
    color: var(--WHITE);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
}

.style-switcher h3 {
    font-size: 18px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border-color-1);
    padding: 0 0 10px;
}

.style-switcher-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color-1);
}

.theme-colors button {
    height: 30px;
    width: 30px;
    border: none;
    border-radius: 50%;
    vertical-align: middle;
    border-radius: 50%;
    padding: 0;
    position: relative;
}

.theme-colors button::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--WHITE);
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.theme-colors button.active::before {
    opacity: 1;
}

.theme-colors .color-1 {
    background-color: hsl(0, 74%, 61%);
}
.theme-colors .color-2 {
    background-color: hsl(230, 74%, 61%);
}
.theme-colors .color-3 {
    background-color: hsl(36, 74%, 61%);
}
.theme-colors .color-4 {
    background-color: hsl(277, 74%, 61%);
}
.theme-colors .color-5 {
    background-color: hsl(164, 74%, 61%);
} */

/* --------------------
19. header
-------------------- */
.header {
    /* border-bottom: 1px solid var(--border-color-2); */
}

.header-logo a {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
}

.header-logo span {
    color: white;
}

 .header .menu-item {
   display: inline-block;
    margin-left: 40px;
    position: relativ
} 



.header .menu-item > a {
    display: block;
    padding: 24px 0;
    font-weight: 400;
    color: white;
    /* color: rgb(147, 163, 181); */
    text-transform: capitalize; 
    transition: color 0.3s ease;
}

.header .sub-menu-item a:hover,
.header .menu-item:hover > a {
    background: -webkit-linear-gradient(rgb(227, 61, 213), rgb(16, 188, 211));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} 

.header .menu-item > a i{
    font-size: 13px;
    margin-left: 3px;
    pointer-events: none;
    transition: transform 0.3s ease;
}


.header .sub-menu {
    position: absolute;
    top: 100%;
    background-color: var(--white);
    left: 0;
    width: 210px;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
}

@media(min-width: 992px){
    .header .menu-item:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
}

.header .sub-menu-item a {
    display: block;
    padding: 10px 20px;
    color: var(--black-90);
    text-transform: capitalize;
    font-weight: 400;
    transition: color 0.3s ease;
}


.header-backdrop,
.header-close-btn,
.header-hamburger-btn {
    display: none;
}

 .contact{
    position: fixed;
    
    bottom: 2%;
    right: 2%;
}

.social-contact-item{
     /* display: inline-block; */
    padding: 10px;
}

.social-contact-item i {
    color: rgb(147, 163, 181);

} 

.social-icon-phone:hover{
    animation: flicker-phone 1s linear forwards;
}
@keyframes flicker-phone {
    0% {
      color: #333;
    }
    5%, 15%, 25%, 30%, 100% {
      color: rgb(57, 100, 49);
      text-shadow: 0px 0px 25px rgb(57, 100, 49);
    }
    10%, 20% {
      color: #333;
      text-shadow: none;
    }
  }

   .social-icon-whatsapp:hover{
    animation: flicker-whatsapp 1s linear forwards;
}
@keyframes flicker-whatsapp {
    0% {
      color: #333;
    }
    5%, 15%, 25%, 30%, 100% {
      color: rgb(61, 201, 82);
      text-shadow: 0px 0px 25px rgb(61, 201, 82);
    }
    10%, 20% {
      color: #333;
      text-shadow: none;
    }
  }

  .social-icon-facebook:hover{
    animation: flicker-facebook 1s linear forwards;
}
@keyframes flicker-facebook {
    0% {
      color: #333;
    }
    5%, 15%, 25%, 30%, 100% {
      color: rgb(66, 103, 178);
      text-shadow: 0px 0px 25px rgb(66, 103, 178);
    }
    10%, 20% {
      color: #333;
      text-shadow: none;
    }
  }

  .social-icon-twitter:hover{
    animation: flicker-twitte 1s linear forwards;
}
@keyframes flicker-twitte {
    0% {
      color: #333;
    }
    5%, 15%, 25%, 30%, 100% {
      color: rgb(29, 161, 242);
      text-shadow: 0px 0px 25px rgb(29, 161, 242);
    }
    10%, 20% {
      color: #333;
      text-shadow: none;
    }
  }

  .social-icon-instagram:hover{
    animation: flicker-instagram 1s linear forwards;
}
@keyframes flicker-instagram {
    0% {
      color: #333;
    }
    5%, 15%, 25%, 30%, 100% {
      color: rgb(225, 48, 108);
      text-shadow: 0px 0px 25px rgb(225, 48, 108);
    }
    10%, 20% {
      color: #333;
      text-shadow: none;
    }
  }

  .social-icon-youtube:hover{
    animation: flicker-youtube 1s linear forwards;
}
@keyframes flicker-youtube {
    0% {
      color: #333;
    }
    5%, 15%, 25%, 30%, 100% {
      color: rgb(229, 25, 25);
      text-shadow: 0px 0px 25px rgb(229, 25, 25);
    }
    10%, 20% {
      color: #333;
      text-shadow: none;
    }
  }

  .social-icon-linkedin:hover{
    animation: flicker-linkedin 1s linear forwards;
}
@keyframes flicker-linkedin {
    0% {
      color: #333;
    }
    5%, 15%, 25%, 30%, 100% {
      color: rgb(10, 102, 194);
      text-shadow: 0px 0px 25px rgb(10, 102, 194);
    }
    10%, 20% {
      color: #333;
      text-shadow: none;
    }
  } 
  
  .social-contact-item:focus {
      outline: none;
  }



  .about-social-contact li {
    display:inline;
    padding: 30px ;
   
    /* margin: 5px 10px 5px 0; */
  
  }

  .about-social-contact-item a{
    font-weight: 400;
    color: white;
    text-transform: capitalize; 
  }

/* --------------------
20. footer
-------------------- */
/* .social-top {
    padding: 20px 0 20px;
    border-top: 1px solid var(--border-color-2);
 
}

.social-item {
    margin: 0 0 30px;
}

.social-item h3 {
    text-transform: capitalize;
    margin: 0 0 20px;
}
.social-item .footer-logo {
    color: var(--black-70);
    text-transform: uppercase;
}

.social-item .footer-logo span {
    color: var(--main-color);
}

.social-item ul li:not(:last-child){
    margin-bottom: 8px;
}

.social-item ul a{
    text-transform: capitalize;
    color: var(--black-70);
    transition: color 0.3s ease;
    position: relative;
}

.social-item ul a:hover {
    color: var(--main-color);
}

.social-item ul a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

.social-item ul a:hover::before {
    width: 100%;
}

.social-item ul a .social-icon {
    margin-right: 5px;
}

.social-bottom {
    border-top: 1px solid var(--border-color-2);
}

.social-bottom p{
    font-size: 14px;
} */
/* --------------------
21. banner section
-------------------- */
@font-face {
    font-family: Iceberg-Regular;
    src: url(../webfonts/Iceberg-Regular.ttf);
 }
  

.banner-section {
    padding: 40px 0;
    /* min-height: 680px; */
    
    

}

.banner-text h2 {
    font-size: 20px;
    color: var(--main-color);
}

/* .banner-text h1 {
    font-size: 45px;
    font-weight: 700;
    font-family: sans-serif;
    font-size: 4em;
    color: transparent;
    -webkit-text-stroke: 0.04em rgb(255, 255, 255);

} */



.banner-text h1{
    font-size: 45px;
    font-weight: 700;
    font-size: 4.5em; 
    /* color: rgba(255, 255, 255, 0.655); */
    /* color: rgba(53, 40, 201, 0.655); */
    /* font-family: 'Warnes',cursive; */
    /* font-family: Iceberg-Regular; */
    
    background: -webkit-linear-gradient(rgb(227, 61, 213), rgb(16, 188, 211));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* opacity: 0.6; */
}

.banner-text p{
    color: white;
    /* color: rgb(147, 163, 181); */
    /* font-family: Iceberg-Regular; */

}

/* About us */
.about-banner-section {
    /* padding: 50px 50px 50px 50px; */
    padding-top: 50px;
  /* padding-right: 100px;  */
  padding-bottom: 50px;
  /* padding-left: 200px; */
    /* min-height: 680px; */
    /* text-align: justify; */
    

}
.about-banner-padding{
   
}




.about-banner-text h1{
    font-size: 30px;
    font-weight: 700;
    font-size: 2em;
    text-align: center;


    
    background: -webkit-linear-gradient(rgb(227, 61, 213), rgb(16, 188, 211));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 
}

.about-banner-text p{
    color: white;
    text-align: justify;
    padding-top: 50px;
    /* padding-right: 600px; */
}

/* About us */

/* contact us */

.form-container {
    width: 100%;
    /* max-width: 650px; */
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    color: aqua;
    /* background-color: rgb(105, 66, 179); */
    /* display: flex;
    align-items: center;
    justify-content: space-around; */

   
}

.form-inline {  
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  
  .form-inline label {
    margin: 5px 10px 5px 0;
  }
  
  /* .form-inline input, select {

    
    width: 250px;
    vertical-align: middle;
    margin: 5px 10px 5px 0;
    padding: 10px;
    background-color: transparent;
   color: white;
} */

.form-inline input {
    width: 250px;
    vertical-align: middle;
    margin: 5px 10px 5px 0;
    padding: 10px;
    background-color: transparent;
   color: white;
   border: 1px solid rgb(126, 113, 212);
   border-top-style: hidden;
        border-right-style: hidden;
        border-left-style: hidden;
        border-bottom-style: groove;
    
}
  .form-inline  select {
    width: 250px;
    vertical-align: middle;
    margin: 5px 10px 5px 0;
    padding: 10px;
    background-color: transparent;
   color: white;
   cursor:pointer;

    border: 2px solid rgb(126, 113, 212);
    border-top-style: hidden;
        border-right-style: hidden;
        border-left-style: hidden;
        border-bottom-style: groove;
        
  }
  input, select:focus {
    outline:none;
}

.form-inline select option{
    background: #00061a;
   cursor:pointer;
}
  .form-inline button {

   
    padding: 10px 20px;
    background: -webkit-linear-gradient(rgba(227, 61, 213, 0.6), rgba(16, 188, 211, 0.6));
    

    /* background-color: rgba(30, 143, 255, 0.046); */
    /* border: 1px solid #ddd; */
    border: none;

    color: white;
    cursor: pointer;
    

  }
  .form-button{
    margin: 20px;
    margin-left: 400px;

  }
  
  .form-inline button:hover {
    background: -webkit-linear-gradient(rgba(227, 61, 213), rgba(16, 188, 211));

  }


/* contact us */

/* .banner-text:hover h1 {
    animation: flicker 1s linear forwards;
  }
  @keyframes flicker {
    0% {
      color: #333;
    }
    5%, 15%, 25%, 30%, 100% {
      color: #fff;
      text-shadow: 0px 0px 25px cyan;
    }
    10%, 20% {
      color: #333;
      text-shadow: none;
    }
  }

  .banner-text:focus h1{
	outline: none;
} */

/* .banner-section .circular-img-circle {
    background-color: var(--red-light);
} */

/* --------------------
22. fun facts section
-------------------- */

/* .fun-fact-item {
    padding: 15px 0;
}

.fun-fact-item h2 {
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
}
.fun-fact-item p {
    margin: 0;
    text-transform: uppercase;
}

.fun-fact-item .style-1 {
    color: var(--black-70);
}
.fun-fact-item .style-2 {
    color: var(--green-light);
}
.fun-fact-item .style-3 {
    color: var(--red-light);
}
.fun-fact-item .style-4 {
    color: var(--orange-light);
} */
/* --------------------
23. project section
-------------------- */
/* .project-item {
    margin-bottom: 30px;
    position: relative;
}

.project-item .img-box img {
    width: 100%;
    border-radius: 5px;
}

.project-item .link {
    color: var(--black-70);
    display: inline-block;
}

.project-item .title {
    text-transform: capitalize;
    margin: 15px 0;
    transition: color 0.3s ease;
}
.project-item:hover .title {
    color: var(--main-color);
}
.project-item .instructor {
    text-transform: capitalize;
    margin: 0 0 12px;
}
.project-item .instructor img {
    width: 30px;
    border-radius: 50%;
    margin-right: 5px;
}
.project-item .rating {
    font-size: 14px;
}
.project-item .average-rating {
    font-weight: 600;
    color: var(--orange);
}
.project-item .average-stars i {
    color: var(--orange);
}
.project-item .price {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: var(--main-color);
    color: var(--WHITE);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
} */



/* --------------------
24. testimonials section
-------------------- */
/* .testimonials-section .img-box {
    height: 150px;
    width: 150px;
    background-color: var(--red-light);
    margin: 30px auto 50px;
}

.testimonials-section .img-box::before,
.testimonials-section .img-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--red-light);
    animation: spin 15s linear infinite;
}

.testimonials-section .img-box::before {
    height: 180px;
    width: 180px;
    left: -15px;
    top: -15px;
    border-left: 1px solid transparent;
}
.testimonials-section .img-box::after {
    height: 210px;
    width: 210px;
    left: -30px;
    top: -30px;
    border-right: 1px solid transparent;
}

.testimonials-item h3 {
    text-transform: capitalize;
}

.testimonials-item .text-2{
    margin: 0;
    text-transform: capitalize;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    position: relative;
    height: 35px;
    width: 35px;
    background-color: var(--main-color);
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
}

.testimonials-section .decoration-circle-item {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.testimonials-section .decoration-circle-item:nth-child(1) {
    left: 10%;
    top: 20%;
    height: 30px;
    width: 30px;
    background-color: var(--yellow-light);
}
.testimonials-section .decoration-circle-item:nth-child(2) {
    left: 40%;
    top: 40%;
    height: 50px;
    width: 50px;
    background-color: var(--green-light);
}
.testimonials-section .decoration-circle-item:nth-child(3) {
    left: 70%;
    top: 70%;
    height: 30px;
    width: 30px;
    background-color: var(--red-light);
}
.testimonials-section .decoration-circle-item:nth-child(4) {
    left: 10%;
    top: 50%;
    height: 20px;
    width: 20px;
    background-color: var(--red-light);
}

.testimonials-section .decoration-imgs-items {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.testimonials-section .decoration-imgs-items:nth-child(1) {
    height: 60px;
    width: 60px;
    left: 20%;
    top: 30%;
    background-color: var(--yellow-light);
}
.testimonials-section .decoration-imgs-items:nth-child(2) {
    height: 80px;
    width: 80px;
    left: 90%;
    top: 40%;
    background-color: var(--red-light);
}
.testimonials-section .decoration-imgs-items:nth-child(3) {
    height: 40px;
    width: 40px;
    left: 10%;
    top: 60%;
    background-color: var(--green-light);
} */
/* --------------------
25. bai section
-------------------- */
 .bai-section .circular-img-circle {
    background-color: blue;
} 

/*-------------------- 
26. course details section
-------------------- */


/* --------------------
27. contact section
-------------------- */