@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
:root {
    --bs-blue: #363777 !important;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-gray: #70757c;
}

@media (max-width:765px){
    .sm_hide{
        display: none !important;
    }
    section{
        padding-top: 30px;
        overflow: hidden;
    }
}
@media (min-width:765px){
    .lg_hide{
        display: none !important;
    }
    section{
        padding-top: 100px;
        overflow: hidden;
    }
}
a{
    text-decoration: none !important;
    font-family: "DM Sans", sans-serif;
    text-transform: capitalize;
}
p{
    line-height: 28px;
    font-family: "DM Sans", sans-serif;
    color: var(--bs-gray);
}
h1,h2,h3,h4,h5,h6{
    text-transform: capitalize;
    font-family: "Vollkorn", serif;
    font-weight: 700 !important;
}
img{
    width: 100%;
}
/* ===========================navbar================================ */

.navbar-toggler{
  border: none !important;
}
.nav-item{
  position: relative;
}


.navbar.scrolled{
  position: fixed;
  transition: 1s;
  width: 100%;
  top: 0;
  left: 0;
  background: white;
  z-index: 1000;
  box-shadow: 0 4px 5px rgba(60, 72, 82, .25);
}
.navbar{
    background-color: white;

}
/* .header{
    background-image: url(../img/banner/b1.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    border-radius: 0 0 120px 0;
    background-position: center;
    background-attachment: fixed;
} */
.nav_logo{
    width: 150px;
}
.navbar-brand{
    margin-left: 35px;
}
.nav-link{
    font-weight: 600 !important;
    color: var(--bs-blue)  !important;
    display: flex !important;
    align-items: center;
}
.nav-link .lordIcon{
  color: var(--bs-blue);
  width: 20px;
  margin-right: 5px;

}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }
    .nav-item::before{
      content: "";
        position: absolute;
        bottom: 10px;
        left: 50%;
        width: 0%;
        height: 2px;
        background: #363777;
        transition: .6s;
      
    }
    .nav-item:hover::before{
      left: 0%;
      width: 100%;
    }
}
.nav-item{
    margin: 0 10px;
}
/* ---------------social media----------------- */

  @media (min-width:992px){
    .Social-media{
      display: flex;
      justify-content: center;
    }
  }
  @media (max-width:992px){
    .Social-media{
      display: flex;
      justify-content: flex-start;
    }
  }
  .Social-media a{
    display: flex;
    background: #fff;
    height: 45px;
    width: 45px;
    margin: 0 15px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 6px 6px 10px -1px rgba(0,124,196,0.15),
                -6px -6px 10px -1px rgba(255,255,255,0.7);
    border: 1px solid rgba(0, 124, 196, 0);
    transition: transform 0.5s
  }
  .Social-media a i{
    /* font-size: 50px; */
    color:var(--bs-blue);
    transition: transform 0.5s;
  }
  .Social-media a:hover{
    box-shadow:inset 4px 4px 6px -2px rgba(0,0,0,0.2),
                inset -4px -4px 6px -1px rgba(255,255,255,0.7),
                      -0.5px -0.5px 0px -1px rgba(255,255,255,1),
                      0.5px 0.5px 0px rgba(0,0,0,0.15),
                      0px 12px 10px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 124, 196, 0.1);
    transform: translateY(2px);
  }
  .Social-media a:hover i{
    transform: scale(0.90);
  }
  .Social-media a:hover .fa-facebook{
    color: #3b5998;
  }
  .Social-media a:hover .fa-twitter{
    color: #00acee;
  }
  .Social-media a:hover .fa-whatsapp{
    color: #4fce5d;
  }
  .Social-media a:hover .fa-instagram{
    color: #f14843;
  }
  .Social-media a:hover .fa-youtube{
    color: #f00;
  }
/* -----------------social media---------------- */
/* ===========================navbar================================ */

/* ===================carousel========================== */
.slides {
    height: 86vh;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    /* border: 4px solid #fff; */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
  }
  
  .slide {
    position: absolute;
    height: 100%;
    opacity: 0;
    inset: 0;
    animation: slide-show 12s infinite;
   
  }
  /* .slide-1,.slide-2,.slide-3{
    position: relative;
  } */
  @media (max-width:765px){
    .slide-1_overlay{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
        text-align: center;
        padding: 20px;
        flex-direction: column;
      }
      .slides {
        border-radius: unset;
      }
  }
  @media (min-width:765px){
    .slide-1_overlay{
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 3;
        text-align: center;
        padding: 95px;
        flex-direction: column;
      }
  }
  
  .slide-1_overlay .contact{
    margin-top: 20px;
    background: #e9272f;
    padding: 5px 10px;
    border-radius: 8px;
  }
  .slide-1_overlay .contact a{
    color: white;
  }
  .slide-1_overlay h2{
    color: white;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 86%);
    padding: 20px;
  }
  
  .slide-2 {
    animation-delay: 4s;
  }
  
  .slide-3 {
    animation-delay: 8s;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  @keyframes slide-show {
    0% {
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    20%,
    30% {
      opacity: 1;
      scale: 1.03;
    }
    50% {
      opacity: 0;
    }
  }
/* ==================carousel=========================== */

/* =================home about========================= */
/* .section_1 .container{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
} */
.section_1 small{
    font-size: .875em;
    text-transform: uppercase !important;
    color: var(--bs-blue);
}
.section_1 p{
  line-height: 2;
}
.section_1 h1{
  margin-top: 0;
  margin-bottom: .5rem;
  line-height: 1.2;
  color: #e92026;
}
.section_1 h1 span{
    color: var(--bs-blue);
}
/* .section_1 a{
    background-color: var(--bs-blue);
     width: 240px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
} */


/* --------------btn------------------------ */
.section_1 :active, .section_1 :hover,.section_1 :focus {
  outline: 0!important;
  outline-offset: 0;
}
.section_1 ::before,
.section_1 ::after {
  position: absolute;
  content: "";
}



 
  @media (max-width:765px){
    .section_1 .btn span{
      position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: capitalize;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 4px;
    transition: 0.3s;
    }
    .section_1 .btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 0px 15px;
    min-width: 150px;
}
.section_1 .btn-holder {
  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 10px auto 35px;
}
  }
  @media (min-width:765px){
   .section_1  .btn span {         
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: capitalize;
    top: 0; left: 0;
    width: 100%;
    padding: 8px 20px;
    transition: 0.3s;
    color: var(--bs-blue);
  }
  .section_1 .btn {
  position: relative;
  display: inline-block;
  width: auto; height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 25px 15px;
  min-width: 150px;
}
.section_1 .btn-holder {
  display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 1000px;
    margin: 10px auto 35px;
}
  }




 

/*--- btn-3 ---*/
.btn-3 {
  padding: 5px;
}
.btn-3 span a{
  color: rgb(54 55 119);
    
}
.btn-3::before,
.btn-3::after {
  background: transparent;
  z-index: 2;
}

/* 11. hover-border-1 */
.btn.hover-border-1::before,
.btn.hover-border-1::after {
  width: 10%; height: 25%;
  transition: 0.35s;
}
.btn.hover-border-1::before {
  top: 0;
    left: 0;
    border-left: 1px solid rgb(235 31 37);
    border-top: 1px solid rgb(235 31 37);
}
.btn.hover-border-1::after {
  bottom: 0;
   right: 0;
  border-right: 1px solid rgb(235 31 37);
  border-bottom: 1px solid rgb(235 31 37);
}
.btn.hover-border-1:hover::before,
.btn.hover-border-1:hover::after {
  width: 99%;
  height: 98%;
}

/* --------------------------btn---------------------------- */
/* =================home about========================= */

/* ======================footer======================== */

.footer {
  background: linear-gradient(105deg, #363776, #093c94);
  padding-top: 46px;
 
}
/*END FOOTER SOCIAL DESIGN*/

@media only screen and (max-width:768px) { 
.single_footer{margin-bottom:30px;}
}
.single_footer h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 25px;
}
.single_footer h4::after {
  content: "";
  display: block;
  height: 2px;
  width: 50px;
  background: #fff;
  margin-top: 20px;
}
.single_footer p{color:#fff;}
.single_footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single_footer ul li a {
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 36px;
  font-size: 15px;
  text-transform: capitalize;
}
.single_footer ul li a:hover {
  color: rgb(207 204 204);
}


.single_footer_address ul li{color:#fff;}
.single_footer_address ul li span {
  font-weight: 400;
  color: #fff;
  line-height: 28px;
}
.contact_social ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
  display: block;
  position: relative;
  margin-top: 15px;
  width: 100%;
}
.subscribe__input {
background-color: #fff;
border: medium none;
border-radius: 5px;
color: #333;
display: block;
font-size: 15px;
font-weight: 500;
height: 60px;
letter-spacing: 0.4px;
margin: 0;
padding: 0 150px 0 20px;
text-align: center;
text-transform: capitalize;
width: 100%;
}
@media only screen and (max-width:768px) { 
.subscribe__input{padding: 0 50px 0 20px;}
}

.subscribe__btn {
background-color: transparent;
border-radius: 0 25px 25px 0;
color: #01c7e9;
cursor: pointer;
display: block;
font-size: 20px;
height: 60px;
position: absolute;
right: 0;
top: 0;
width: 60px;
}
.subscribe__btn i{transition: all 0.3s ease 0s;}
@media only screen and (max-width:768px) { 
.subscribe__btn{right:0px;}
}

.subscribe__btn:hover i{
  color:#ff3666;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.social_profile .card{
  width: 80px;
        height: 80px;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-radius: 0;
        margin: 2px;
}


.social_profile {margin-top:40px;}
.social_profile ul{
list-style: outside none none;
margin: 0;
padding: 0;
}
.social_profile ul li{float:left;}
.social_profile ul li a {
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  margin: 0px 5px;
  font-size: 18px;
  color: #f8f9fa;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  box-shadow: 2px 2px 5px rgb(19 19 20 / 60%);
  
}
@media only screen and (max-width:768px) { 
.social_profile ul li a{margin-right:10px;margin-bottom:10px;}
}
@media only screen and (max-width:480px) { 
.social_profile ul li a{
  width:40px;
  height:40px;
  line-height:40px;
}
}
/* .social_profile ul li a:hover{
background:var(--bs-blue);
border: 1px solid var(--bs-blue);
color:#fff;
border:0px;
} */
/*END SOCIAL PROFILE CSS*/
.copyright {
  margin-top: 70px;
  padding-top: 40px;
  color:#fff;
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255,0.4);
  text-align: center;
}
.copyright a{
  color:white;
  transition: all 0.2s ease 0s;
}
.copyright a:hover{
 text-decoration: underline !important;
}
/* =========================footer=================== */

/* ===========================about====================== */
.banner{
  position: relative;
}
.banner_overlay{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
   
    align-items: center;
   
  }
@media (min-width:765px){
  .banner_overlay{
    padding-left: 50px;
    justify-content: flex-start;
  }
  .banner h1{
    font-size: 5rem;
  }
}
@media (max-width:765px){
  .banner_overlay{
    justify-content: center;
    
  }
  .banner{
    height: 300px;
  }
  .banner img{
    object-fit: cover;
    height: 100%;
    object-position: top;
  }
 
}
.banner h1{
  color: white;
}

/* ---------------about section------------------------ */
.section_all {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.section-title {
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.section-subtitle {
  letter-spacing: 0.4px;
  line-height: 28px;
  max-width: 550px;
}

.section-title-border {
  background-color: #000;
  height: 1 3px;
  width: 44px;
}

.section-title-border-white {
  background-color: #fff;
  height: 2px;
  width: 100px;
}
.text_custom {
  color: var(--bs-blue);
}
.about_icon h2{
  color: var(--bs-blue);
}

.about_icon i {
  font-size: 22px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  display: inline-block;
  background: #fff;
  border-radius: 35px;
  color: var(--bs-blue);
  box-shadow: 0 8px 20px -2px rgba(158, 152, 153, 0.5);
}

.about_header_main .about_heading {
  max-width: 450px;
  font-size: 24px;
}

.about_icon span {
  position: relative;
  top: -10px;
}

.about_content_box_all {
  padding: 28px;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
}
.section_all h3,.section_all h4,.section_all h5{
  color: var(--bs-blue);
}
/* ---------------about section------------------------ */

/* ===========================about====================== */

/* =========================courses==================== */
.section_2 .card{
  border: none;
}
.section_2 .card_head{
  border-radius: 10px;
  overflow: hidden;
}
.section_2 .card h2{
  color: var(--bs-blue);
}
.section_2 .col-md-6{
  margin-bottom: 20px;
}
/* ====================courses========================== */

/* =========================contact================== */
.contct_no{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.cnt_head{
  display: flex;
}
.right_conatct_social_icon{
  background: #363777;
}
.contact_us{
 background-color: #f1f1f1;
 padding: 120px 0px;
}
@media (max-width:992px){
  .contact_inner{
    background-color: transparent;
    position: relative;
    box-shadow: unset;
    border-radius: 25px;
   }
   .contact_info_sec {
    position: relative;
    background-color: #2d2d2d;
    /* right: 1px;
    top: 18%; */
    height: 340px;
    width: 340px;
    padding: 40px;
    border-radius: 25px 0 0 25px;
   }
   .cnt_social{
    display: none;
   }
}
@media (min-width:992px){
  .contact_inner{
    background-color: #fff;
    position: relative;
    box-shadow: 20px 22px 44px #cccc;
    border-radius: 25px;
   }
   .contact_info_sec {
    position: absolute;
    background-color: var(--bs-blue);
    right: 1px;
    top: 18%;
    height: 340px;
    width: 340px;
    padding: 35px;
    border-radius: 25px 0 0 25px;
   }
   .contact_field{
    padding: 60px 340px 90px 100px;
   }
}


.right_conatct_social_icon{
 height: 100%;
}

.contact_field h3{
color: var(--bs-blue);
 font-size: 40px;
 letter-spacing: 1px;
 font-weight: 600;
 margin-bottom: 10px
}
.contact_field p{
 color: #000;
 font-size: 13px;
 font-weight: 400;
 letter-spacing: 1px;
 margin-bottom: 35px;
}
.contact_field .form-control{
 border-radius: 0px;
 border: none;
 border-bottom: 1px solid #ccc;
}
.contact_field .form-control:focus{
 box-shadow: none;
 outline: none;
 border-bottom: 2px solid #1325e8;
}
.contact_field .form-control::placeholder{
 font-size: 13px;
 letter-spacing: 1px;
}


.contact_info_sec h4{
 letter-spacing: 1px;
 padding-bottom: 15px;
 color: white;
}

.info_single{
 margin: 30px 0px;
}
.info_single i{
 margin-right: 15px;
 color: white;
}
.info_single span{
 font-size: 14px;
 letter-spacing: 1px;
 color: white;
}

button.contact_form_submit {
  background: linear-gradient(to top right, #363778 -5%, #eb1f26 100%);
    border: none;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    margin: 25px 0;
    border-radius: 35px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 2px;
}
.socil_item_inner li{
 list-style: none;
}
.socil_item_inner li a{
 color: #fff;
 margin: 0px 15px;
 font-size: 14px;
}
.socil_item_inner{
 padding-bottom: 10px;
}

.map_sec{
 padding: 50px 0px;
}
.map_inner h4, .map_inner p{
 color: var(--bs-blue);
 text-align: center
}
.map_inner p{
 font-size: 13px;
}
.map_bind{
margin-top: 50px;
 border-radius: 30px;
 overflow: hidden;
}
/* =========================contact================== */

/* =====================home courses====================== */

.course_card{
  height: 300px;
  position: relative;
}
.course_card img{
  object-fit: cover;
    height: 100%;
    border-radius: 25px 0px 25px 0px;
}
.cr_overlay{
  position: absolute;
  top: 66%;
  /* opacity: 0; */
  left: 0;
  height: 100%;
  width: 100%;
  background: #02020200;
  border-style: solid;
  border-width: 0px 5px 0px 5px;
  border-color: #ab9f9f00;
  border-radius: 25px 0px 25px 0px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 1s;
}
.cr_overlay h2{
  color: white !important;
}
.cr_overlay p{
  display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
    color: white;
}


.course_card:hover .cr_overlay{
  opacity: 1;
  top: 0%;
 background: #0202028f;
    border-style: solid;
    border-width: 0px 5px 0px 5px;
    border-color: #ab9f9f;
    border-radius: 25px 0px 25px 0px;
}

.section_3 h2{
  color: var(--bs-blue);
  margin-bottom: 20px;
  text-align: center;
}
.section_3 h2 span{
  color: #e72125;
}


.section_3 :active, .section_3 :hover,.section_3 :focus {
  outline: 0!important;
  outline-offset: 0;
}
.section_3 ::before,
.section_3 ::after {
  position: absolute;
  content: "";
}



 
  @media (max-width:765px){
    .section_3 .btn span{
      position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: capitalize;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 4px;
    transition: 0.3s;
    }
    .section_3 .btn {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin: 0px 0px 15px;
    min-width: 150px;
}
.section_3 .btn-holder {
  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 10px auto 35px;
}
  }
  @media (min-width:765px){
   .section_3  .btn span {         
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: capitalize;
    top: 0; left: 0;
    width: 100%;
    padding: 8px 20px;
    transition: 0.3s;
    color: var(--bs-blue);
  }
  .section_3 .btn {
  position: relative;
  display: inline-block;
  width: auto; height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px 25px 15px;
  min-width: 150px;
}
.section_3 .btn-holder {
  display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 50px auto 35px;
}
  }
  .section_3 .col-md-4{
    margin-bottom: 20px;
    overflow: hidden;
  }
/* ===================home corses======================== */

/* =====================quick contact======================== */


.quik_call{
  bottom: 30%;
  background: #750c89;
}
.quik_whtp{
  bottom: 20%;
  background: #25D366;
}
.quik_call a,.quik_whtp a{
  color: white;
  font-size: 20px;
}
@media (max-width:992px){
  .quik_call,.quik_whtp{
    position: fixed;
    right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgb(19 19 20 / 60%);
  }
  .quik_call{
    bottom: 125px;
    background: #750c89;
  }
  .quik_whtp{
    bottom: 80px;
   
  }
}
@media (min-width:992px){
  .quik_call,.quik_whtp{
    position: fixed;
    right: 20px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px rgb(19 19 20 / 60%);
  }
}

/* =====================quick contact======================== */

/* ======================popup================================ */
#courseList {
  display: none; /* Set initial display to block */
}
.popup_img img{
  object-fit: cover;
}
.wrapper{
  position: relative;
  background: var(--bs-blue);
  border-radius: 15px;
    overflow: hidden;
}
.close-btn{
  top: 10px;
        right: 15px;
        position: absolute;
        width: 50px !important;
        height: 50px;
        border: 0;
        padding: 0;
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: black;
        transition: .5s;

}
.close-btn:hover{
  color:#beb3b3 ;
}
.contact-section{
  padding: 50px 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    display: none;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(3px);
    overflow: hidden;
}
.contact-section.show{
  display: block;
}
.contact-wrap{
  background: var(--bs-blue);
}
.contactForm .form-control {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  padding: 0;
}
#contactForm .form-control {
  font-size: 16px;
  color: #beb3a6;

}
.form-group {
  margin-bottom: 1rem;
}
.form-control {
  height: 52px;
  background: transparent;
 
  font-size: 14px;
  border-radius: 0px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-wrap h3{
  color: white;
}
.form-control:focus, .form-control:active {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.form-control::placeholder {
  /* Change the color of the placeholder text */
  color: #beb3b3 !important; /* You can replace #999 with any color code you prefer */
}
.submt_btn {
  background: #eb2027 !important;
  color: white !important;
}
@media screen and (max-width: 765px) {
  .col-md-6.d-flex.align-items-stretch.hide-on-sm {
      display: none !important;
  }
}
.contact-section .container{
  height: 100%;
  display: flex;
  align-items: center;
}

option{
  color: black;
  padding: 0 10px;
}
/* ======================popup================================ */

/* ======================section corse================= */
.section_course .card{
  height: 100%;
    background: #f7f6f2;
    border: 0;
    border-radius: 20px;
  
    padding: 22px;

}