* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Almarai', sans-serif;
}

*::-moz-selection {
  background-color: #09A991;
  color: #fff;
}

*::selection {
  background-color: #09A991;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #09A991;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #0587B8;
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 2rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus,
form .custom-select:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #09A991 !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #0587B8, #09A991);
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}

@keyframes wave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar .menu-wrapper {
  position: relative;
  z-index: 5;
}

.navbar .menu-wrapper .menu-butn {
  background-color: transparent;
  border: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .menu-wrapper .menu-butn .icon {
  margin: 0 10px;
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar .menu-wrapper .menu-butn .icon::after, .navbar .menu-wrapper .menu-butn .icon::before {
  content: '';
  height: 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#09A991), to(#0587B8));
  background-image: linear-gradient(to right, #09A991, #0587B8);
  display: block;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  margin: 5px 0;
  position: absolute;
  top: 0;
}

.navbar .menu-wrapper .menu-butn .icon::before {
  width: 20px;
}

.navbar .menu-wrapper .menu-butn .icon::after {
  width: 30px;
  top: 10px;
}

.navbar .menu-wrapper .menu-butn .icon.active::before {
  width: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
}

.navbar .menu-wrapper .menu-butn .icon.active::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 7px;
}

.navbar .menu-wrapper .menu-butn .word {
  position: relative;
  z-index: 1;
  margin: 0 5px;
}

.navbar .menu-wrapper .menu-butn .word::after {
  content: '';
  width: 20px;
  height: 20px;
  background-color: rgba(9, 169, 145, 0.2);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 2px;
  right: -8px;
}

.navbar .menu-wrapper .menu-outer {
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  z-index: 9;
  padding: 20px 15px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navbar .menu-wrapper .menu-outer.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.navbar .menu-wrapper .menu-outer .menu-title {
  position: relative;
  text-align: center;
  color: #09A991;
}

.navbar .menu-wrapper .menu-outer .menu-title span {
  padding: 0 10px;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: block;
  z-index: 1;
  position: relative;
}

.navbar .menu-wrapper .menu-outer .menu-title::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  top: 12px;
  display: block;
}

.navbar .menu-wrapper .menu-outer .links .pg-link {
  display: block;
  margin: 12px 0;
  color: #888;
  font-size: 15px;
}

.navbar .menu-wrapper .menu-outer .links .pg-link::before {
  content: '\f104';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin: 0 10px;
}

.navbar .menu-wrapper .menu-outer .links .pg-link.active {
  color: #0587B8;
  font-weight: bold;
}

.navbar .menu-wrapper .menu-outer .links .pg-link.active::before {
  color: #09A991;
}

.navbar .menu-wrapper .menu-outer .social-media .social-link img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 5px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-filter: invert(43%) sepia(3%) saturate(163%) hue-rotate(29deg) brightness(88%) contrast(81%);
          filter: invert(43%) sepia(3%) saturate(163%) hue-rotate(29deg) brightness(88%) contrast(81%);
}

.navbar .menu-wrapper .menu-outer .social-media .social-link img:hover {
  color: #0587B8;
  -webkit-filter: invert(36%) sepia(46%) saturate(5053%) hue-rotate(174deg) brightness(93%) contrast(96%);
          filter: invert(36%) sepia(46%) saturate(5053%) hue-rotate(174deg) brightness(93%) contrast(96%);
}

.navbar .imgs-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar .imgs-box img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 15px;
}

.navbar .imgs-box .logo {
  width: 145px;
}

.navbar .imgs-box .vision-logo,
.navbar .imgs-box .ministry-logo {
  width: 100px;
}

.navbar .nav-links {
  text-align: end;
  width: 100%;
}

.navbar .nav-links .link {
  margin: 0 10px;
}

.navbar .nav-links .link .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.navbar .nav-links .link .icon:hover {
  color: #0587B8;
  -webkit-filter: invert(36%) sepia(46%) saturate(5053%) hue-rotate(174deg) brightness(93%) contrast(96%);
          filter: invert(36%) sepia(46%) saturate(5053%) hue-rotate(174deg) brightness(93%) contrast(96%);
}

.navbar .nav-links .link.lang-link {
  padding: .6rem 1rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #666;
}

.navbar .nav-links .link.lang-link .lang-icon {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 5px;
}

.navbar .nav-links .link.lang-link:hover {
  background-color: #0587B8;
  color: #fff;
}

footer {
  position: relative;
  padding: 70px 0 0 0;
  background-color: #0788B5;
}

footer .content {
  margin-bottom: 25px;
}

footer .content .title {
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}

footer .content .links a {
  display: block;
  margin: 12px 0;
  font-size: 14px;
  color: #eee;
}

footer .content .links a:hover {
  color: #fff;
  font-weight: bold;
}

footer .content .logo {
  width: 170px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

footer .content .p {
  color: #eee;
  font-size: 12px;
}

footer .content .social-links a {
  display: block;
  margin: 12px 0;
  font-size: 15px;
  color: #eee;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .content .social-links a .icon {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #fff;
  margin: 0 10px;
  display: inline-block;
  border-radius: 5px;
}

footer .content .social-links a .icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .copyright {
  padding: 20px 0;
  background-color: #0A7499;
}

footer .copyright .social-icons a {
  color: #eee;
  margin: 0 5px;
  font-size: 18px;
}

footer .copyright .social-icons a:hover {
  color: #66e1ce;
}

footer .copyright .copright_p {
  text-align: end;
  color: #fff;
}

/**********************************************
    Start Public Classes
**********************************************/
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.dir-l {
  direction: ltr;
}

.blue {
  color: #0587B8;
}

.green {
  color: #09A991;
}

.main-butn {
  position: relative;
  overflow: hidden;
  font-weight: bold;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: .7rem 3.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 25px;
  display: block;
  text-align: center;
  background-color: #0587B8;
  color: #fff;
}

.main-butn span {
  position: relative;
  z-index: 2;
}

.main-butn::before {
  content: '';
  width: 0%;
  height: 100%;
  display: block;
  background: #09A991;
  position: absolute;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  -webkit-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
          box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

.main-butn::after {
  content: '';
  width: 0%;
  height: 100%;
  display: block;
  background: #71e2ba;
  position: absolute;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
}

.main-butn:hover {
  color: #fff;
}

.main-butn:hover::before {
  opacity: 1;
  width: 116%;
}

.main-butn:hover::after {
  opacity: 1;
  width: 120%;
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-heading .main-butn {
  background-color: #09A991;
  padding: .7rem 2.5rem;
  border-radius: 8px;
}

.sec-heading .main-butn::before {
  background: #0587B8;
}

.sec-heading .main-butn2 {
  border: 1px solid #09A991;
  background-color: transparent;
  color: #09A991;
}

.sec-heading .main-butn2:hover {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  top: unset;
  bottom: 0;
  width: 50px;
  height: 50px;
  background-image: none;
  background-color: #fff;
  color: #666;
  border-radius: 8px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
  content: '\f060';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 50px;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: #09A991;
  color: #fff;
}

.swiper-container .swiper-button-prev::after {
  content: '\f061';
}

.page-heading {
  padding: 50px 0;
  background: linear-gradient(-135deg, #c7e9f5, #98e1d7);
}

.page-heading .title {
  text-align: center;
  color: #333;
  font-weight: bold;
}

.page-heading .breadcrumb {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.page-heading .breadcrumb a {
  color: #666;
}

.page-heading .breadcrumb .breadcrumb-item.active {
  color: #101010;
}

.page-heading .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '';
  background: url(../images/icon.png);
  background-size: contain;
  width: 38px;
  height: 18px;
  margin: 0 0 0 10px;
  background-repeat: no-repeat;
  position: relative;
  top: 5px;
}

.filter_white {
  -webkit-filter: invert(180%) sepia(0%) saturate(0%) hue-rotate(347deg) brightness(175%) contrast(158%);
          filter: invert(180%) sepia(0%) saturate(0%) hue-rotate(347deg) brightness(175%) contrast(158%);
}

/**********************************************
    Start Edit Home Page 
**********************************************/
header {
  position: relative;
  padding: 50px 0;
}

header .header-img {
  width: 100%;
  height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
}

header .text-box {
  padding: 0 4vw;
}

header .text-box .title {
  font-weight: 700;
  font-size: calc(35px + 1vw);
  color: #161313;
}

header .text-box .title b {
  font-weight: 700;
}

header .text-box .subtitle {
  color: #161313;
  font-weight: bold;
}

header::before {
  content: '';
  width: 30%;
  height: 57%;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 45px 45px 0 0;
  background-color: rgba(79, 170, 205, 0.2);
}

.levels-sec {
  padding: 70px 0;
  background-color: rgba(0, 176, 146, 0.2);
}

.levels-sec .nav .nav-link {
  padding: .7rem 1.5rem;
}

.levels-sec .nav .nav-link.active {
  background-color: #0788B5;
}

.levels-sec .level_card {
  padding: 3rem 1.25rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
}

.levels-sec .level_card .content {
  position: relative;
  z-index: 1;
}

.levels-sec .level_card .content .level_num {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  display: block;
  margin: 0 auto 15px auto;
  color: #fff;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.levels-sec .level_card .content .level_title {
  margin-bottom: 0;
  font-weight: bold;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.levels-sec .level_card::after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  display: block;
  top: 48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.levels-sec .level_card:hover::after {
  top: 0;
  width: 100%;
  height: 100%;
}

.levels-sec .level_card:hover .level_title {
  color: #fff;
}

.levels-sec .level_card.color1 {
  background-color: #DDF7FF;
}

.levels-sec .level_card.color1 .level_num, .levels-sec .level_card.color1::after {
  background-color: #4FAACD;
}

.levels-sec .level_card.color1:hover .level_num {
  color: #333;
  background-color: #DDF7FF;
}

.levels-sec .level_card.color2 {
  background-color: rgba(9, 169, 145, 0.3);
}

.levels-sec .level_card.color2 .level_num, .levels-sec .level_card.color2::after {
  background-color: #09A991;
}

.levels-sec .level_card.color2:hover .level_num {
  color: #333;
  background-color: #55dfca;
}

.levels-sec .level_card.color3 {
  background-color: rgba(102, 155, 51, 0.3);
}

.levels-sec .level_card.color3 .level_num, .levels-sec .level_card.color3::after {
  background-color: #669B33;
}

.levels-sec .level_card.color3:hover .level_num {
  color: #333;
  background-color: #a7d67a;
}

.levels-sec .level_card.color4 {
  background-color: rgba(93, 93, 93, 0.3);
}

.levels-sec .level_card.color4 .level_num, .levels-sec .level_card.color4::after {
  background-color: #5D5D5D;
}

.levels-sec .level_card.color4:hover .level_num {
  color: #fff;
  background-color: #808080;
}

.levels-sec .level_card.color5 {
  background-color: rgba(59, 227, 143, 0.3);
}

.levels-sec .level_card.color5 .level_num, .levels-sec .level_card.color5::after {
  background-color: #3BE38F;
}

.levels-sec .level_card.color5:hover .level_num {
  color: #333;
  background-color: #8af0bd;
}

.levels-sec .level_card.color6 {
  background-color: rgba(79, 170, 205, 0.3);
}

.levels-sec .level_card.color6 .level_num, .levels-sec .level_card.color6::after {
  background-color: #4FAACD;
}

.levels-sec .level_card.color6:hover .level_num {
  color: #333;
  background-color: #9bd3e9;
}

.members-sec {
  position: relative;
  padding: 70px 0;
}

.members-sec .member_card {
  padding: 1.5rem;
  position: relative;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.members-sec .member_card::before {
  content: '';
  width: 100%;
  height: 67%;
  border: 1px solid #ddd;
  z-index: -1;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.members-sec .member_card .img-box {
  height: 350px;
  position: relative;
}

.members-sec .member_card .img-box .member_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  position: relative;
  z-index: 1;
}

.members-sec .member_card .img-box::before {
  content: '';
  width: 100%;
  height: 68%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.members-sec .member_card .card-body {
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.members-sec .member_card .card-body .name {
  font-weight: bold;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.members-sec .member_card .card-body .level_num {
  margin-bottom: 0;
}

.members-sec .member_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.members-sec .member_card:hover .name {
  color: #09A991;
}

.members-sec .member_card.color1 .img-box::before {
  background-color: #09A991;
}

.members-sec .member_card.color2 .img-box::before {
  background-color: #669B33;
}

.members-sec .member_card.color3 .img-box::before {
  background-color: #0587B8;
}

.members-sec .member_card.color4 .img-box::before {
  background-color: #0AA08A;
}

.members-sec .member_card.color5 .img-box::before {
  background-color: #5D5D5D;
}

.members-sec .member_card.color6 .img-box::before {
  background-color: #3BE38F;
}

.offers-sec {
  position: relative;
  padding: 70px 0;
  background-color: rgba(7, 136, 181, 0.2);
}

.offers-sec .offer_card {
  padding: 20px 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 25px 0 #ccc;
          box-shadow: 0 0 25px 0 #ccc;
  position: relative;
  width: 90%;
  height: 270px;
  z-index: 9;
}

.offers-sec .offer_card .main-img {
  width: 170px;
  height: 225px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.offers-sec .offer_card::after {
  content: '';
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
  right: 0;
  animation: wave 25s linear infinite alternate-reverse;
  background: url("../images/wave.svg");
  background-position: bottom;
  background-size: cover !important;
  background-repeat: repeat-x;
  opacity: .15;
}

.offers-sec .offer_card .disc_wrapper {
  padding: 15px 48px;
  border-radius: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: -10%;
  bottom: 40px;
  text-align: center;
  z-index: 2;
}

.offers-sec .offer_card .disc_wrapper .title {
  color: #eee;
  font-size: .8rem;
  margin-bottom: .5rem;
}

.offers-sec .offer_card .disc_wrapper .percent {
  color: #fff;
}

.offers-sec .offer_card:hover .main-img {
  -webkit-animation: tada 2s both;
          animation: tada 2s both;
}

.offers-sec .offer_card.color1 .categ {
  color: #0587B8;
}

.offers-sec .offer_card.color1::after {
  -webkit-filter: invert(37%) sepia(19%) saturate(4142%) hue-rotate(165deg) brightness(101%) contrast(96%);
          filter: invert(37%) sepia(19%) saturate(4142%) hue-rotate(165deg) brightness(101%) contrast(96%);
}

.offers-sec .offer_card.color1 .disc_wrapper {
  background-color: #0587B8;
}

.offers-sec .offer_card.color2 .categ {
  color: #0B9D88;
}

.offers-sec .offer_card.color2::after {
  -webkit-filter: invert(47%) sepia(11%) saturate(4679%) hue-rotate(130deg) brightness(94%) contrast(91%);
          filter: invert(47%) sepia(11%) saturate(4679%) hue-rotate(130deg) brightness(94%) contrast(91%);
}

.offers-sec .offer_card.color2 .disc_wrapper {
  background-color: #0B9D88;
}

.offers-sec .offer_card.color3 .categ {
  color: #669B33;
}

.offers-sec .offer_card.color3::after {
  -webkit-filter: invert(49%) sepia(75%) saturate(411%) hue-rotate(48deg) brightness(96%) contrast(81%);
          filter: invert(49%) sepia(75%) saturate(411%) hue-rotate(48deg) brightness(96%) contrast(81%);
}

.offers-sec .offer_card.color3 .disc_wrapper {
  background-color: #669B33;
}

.offers-sec .pattern1 {
  position: absolute;
  left: 10%;
  top: 25%;
  width: 9%;
  -o-object-fit: contain;
     object-fit: contain;
}

.offers-sec .pattern2 {
  position: absolute;
  bottom: 8%;
  right: 32%;
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
}

.categories-sec {
  padding: 70px 0;
  position: relative;
}

.categories-sec .categ_card {
  padding: 50px 25px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 25px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.categories-sec .categ_card .icon {
  position: relative;
  margin-bottom: 15px;
}

.categories-sec .categ_card .icon::before {
  content: '';
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: block;
  position: absolute;
  right: -10px;
  top: -10px;
}

.categories-sec .categ_card .icon .img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 1;
}

.categories-sec .categ_card .title {
  font-weight: bold;
  color: #101010;
}

.categories-sec .categ_card .p {
  font-size: 12px;
}

.categories-sec .categ_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 25px 0 #ccc;
          box-shadow: 0 15px 25px 0 #ccc;
}

.categories-sec .categ_card:hover .img {
  -webkit-animation: tada 1.5s both;
          animation: tada 1.5s both;
}

.categories-sec .categ_card.color1 {
  background-color: #CEF6D6;
}

.categories-sec .categ_card.color1 .icon::before {
  background-color: #aff3bc;
}

.categories-sec .categ_card.color2 {
  background-color: #BBF0FF;
}

.categories-sec .categ_card.color2 .icon::before {
  background-color: #a1e7fa;
}

.categories-sec .categ_card.color3 {
  background-color: #E5F5E9;
}

.categories-sec .categ_card.color3 .icon::before {
  background-color: #d4f5dd;
}

.categories-sec .categ_card.color4 {
  background-color: #D9F2F7;
}

.categories-sec .categ_card.color4 .icon::before {
  background-color: #bcebf5;
}

.courses-sec {
  padding: 70px 0;
  position: relative;
  background-color: rgba(102, 155, 51, 0.1);
}

.courses-sec .course_card {
  padding: 15px;
  margin-bottom: 25px;
  background-color: #fff;
}

.courses-sec .course_card .img-box {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.courses-sec .course_card .img-box .categ_badge {
  padding: .6rem 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

.courses-sec .course_card .img-box .categ_badge .icon {
  background-color: #fff;
  width: 40px;
  height: 25px;
  text-align: center;
  border-radius: 5px;
}

.courses-sec .course_card .img-box .categ_badge .icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.courses-sec .course_card .img-box .categ_badge .categ_name {
  margin: 0 10px;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
}

.courses-sec .course_card .img-box .categ_badge.color1 {
  background-color: #09A991;
}

.courses-sec .course_card .img-box .categ_badge.color2 {
  background-color: #0788B5;
}

.courses-sec .course_card .img-box .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.courses-sec .course_card .card-body .card-t {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.courses-sec .course_card .card-body .card-t .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: -3px 5px 0 5px;
}

.courses-sec .course_card .card-body .prof-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.courses-sec .course_card .card-body .prof-info .profile_img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

.courses-sec .course_card .card-body .prof-info .profile_name {
  color: #666;
  font-weight: bold;
  margin: 0 10px;
}

.courses-sec .course_card .card-body .price-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.courses-sec .course_card .card-body .price-wrapper .price {
  color: #0B9D88;
}

.courses-sec .course_card .card-body .price-wrapper .last_price {
  margin: 0 10px;
  color: #ccc;
  text-decoration: line-through;
}

.courses-sec .course_card:hover .main-img {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}

.courses-sec .course_card:hover .title {
  color: #0A7499;
}

.courses-sec .pattern1 {
  position: absolute;
  left: 10%;
  top: 25%;
  width: 9%;
  -o-object-fit: contain;
     object-fit: contain;
}

.courses-sec .pattern2 {
  position: absolute;
  bottom: 8%;
  right: 32%;
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
}

.feedback-sec {
  position: relative;
  padding: 70px 0;
}

.feedback-sec .feedback_card {
  border: 1px solid #ddd;
  padding: 35px 30px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.feedback-sec .feedback_card .card-t {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.feedback-sec .feedback_card .card-t .profile-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feedback-sec .feedback_card .card-t .profile-info .profile-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feedback-sec .feedback_card .card-t .profile-info .content {
  margin: 0 10px;
}

.feedback-sec .feedback_card .card-t .profile-info .content .profile_name {
  color: #666;
  font-weight: bold;
}

.feedback-sec .feedback_card .card-t .rate i {
  color: #999;
}

.feedback-sec .feedback_card .card-t .rate i.active {
  color: #F68C20;
}

.feedback-sec .feedback_card:hover {
  border: 1px solid #09A991;
}

.feedback-sec .swiper-button-next,
.feedback-sec .swiper-button-prev {
  background-color: #f6f6f6;
}

.partners-sec {
  position: relative;
  padding: 70px 0;
  background-color: #f8f8f8;
}

.partners-sec .partner-logo {
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: .7;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.partners-sec .partner-logo:hover {
  opacity: 1;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about-sec {
  position: relative;
  padding: 70px 0;
}

.about-sec .text-box .title {
  font-weight: bold;
}

.about-sec .text-box .title b {
  font-weight: bold;
}

.about-sec .text-box .p {
  font-size: 14px;
}

.about-sec .image-content {
  width: 100%;
  height: 400px;
  padding: 15px;
}

.about-sec .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.about-sec .image-content .play-btn {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.about-sec .image-content .play-btn:before, .about-sec .image-content .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0587B8;
}

.about-sec .image-content .play-btn:hover:before {
  background-color: #09A991;
}

.about-sec .image-content .play-btn:before {
  z-index: 1;
}

.about-sec .image-content .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

.about-sec .image-content .play-btn i {
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-sec .about_card .box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 100%;
  margin-bottom: 35px;
}

.about-sec .about_card .box-item .flip-box {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.about-sec .about_card .box-item .flip-box-front,
.about-sec .about_card .box-item .flip-box-back {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.about-sec .about_card .box-item .flip-box-front {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.about-sec .about_card .box-item .flip-box:hover .flip-box-front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.about-sec .about_card .box-item .flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.about-sec .about_card .box-item .flip-box:hover .flip-box-back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.about-sec .about_card .box-item .flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 35px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
          transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}

.about-sec .about_card .text-box .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 15px;
  display: block;
  margin: auto;
}

.about-sec .about_card .text-box .icon img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(75deg) brightness(108%) contrast(105%);
          filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(75deg) brightness(108%) contrast(105%);
}

.about-sec .about_card .text-box .content {
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
  -webkit-transition: all 0.1s cubic-bezier(0.5, 0.12, 0.46, 0.88) 0.2s;
  transition: all 0.1s cubic-bezier(0.5, 0.12, 0.46, 0.88) 0.2s;
}

.about-sec .about_card .text-box .content .title {
  font-weight: bold;
  color: #333;
  font-size: 1.3rem;
  margin-top: 1.2rem;
}

.about-sec .about_card .text-box .content .p {
  margin-bottom: 0;
  color: #555;
  font-size: 13px;
  line-height: 2rem;
}

.about-sec .about_card .back_inner::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
}

.about-sec .about_card .back_inner .content {
  position: relative;
  z-index: 2;
}

.about-sec .about_card .back_inner .content .title {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
}

.about-sec .about_card .back_inner .content .p {
  color: #ddd;
  font-size: 12px;
}

.about-sec .about_card .back_inner .content .more-butn {
  text-align: center;
  display: block;
  color: #09A991;
  font-weight: bold;
}

.about-sec .about_card .back_inner .content .more-butn:hover {
  color: #0A7499;
}

.about-sec .about_card .color1 {
  background-color: #cff7f0;
}

.about-sec .about_card .color1 .icon {
  background-color: #09A991;
}

.about-sec .about_card .color2 {
  background-color: #d2edf7;
}

.about-sec .about_card .color2 .icon {
  background-color: #0788B5;
}

.about-sec .about_card .color3 {
  background-color: #ecf7d2;
}

.about-sec .about_card .color3 .icon {
  background-color: #ccdaaa;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact-sec {
  padding: 70px 0;
  position: relative;
  background-color: rgba(102, 155, 51, 0.1);
}

.contact-sec .contact-wrapper {
  padding: 4vw 2vw;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.contact-sec .contact-wrapper .heading-sec {
  padding-right: 15px;
}

.contact-sec .contact-wrapper .p {
  font-size: 12px;
}

.contact-sec .contact-wrapper .num-item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact-sec .contact-wrapper .num-item .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: #09A991;
  display: inline-block;
}

.contact-sec .contact-wrapper .num-item .icon img {
  width: 21px;
  height: 21px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .contact-wrapper .num-item .num {
  font-weight: bold;
  color: #000;
  padding: 0 10px;
  margin-bottom: 0;
  line-height: 55px;
}

.contact-sec .wrapper-sm {
  padding: 2vw 2vw;
  margin-bottom: 15px;
}

.contact-sec .wrapper-sm .data-item {
  margin-bottom: 15px;
}

.contact-sec .wrapper-sm .data-item .num {
  color: #666;
}

.contact-sec .text-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
}

.contact-sec .text-wrapper .inner {
  position: absolute;
  bottom: 0;
  background-color: #0A7499;
  padding: 3vw 0;
}

.contact-sec .text-wrapper .inner .title-text {
  color: #fff;
  font-weight: bold;
}

.contact-sec .text-wrapper .items-wrapper {
  z-index: 1;
  padding: 25px 0;
}

.contact-sec .text-wrapper .items-wrapper .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px;
  margin-bottom: 20px;
}

.contact-sec .text-wrapper .items-wrapper .item .icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.contact-sec .text-wrapper .items-wrapper .item .text-content {
  padding: 0 10px;
}

.contact-sec .text-wrapper .items-wrapper .item .text-content .label {
  font-size: 12px;
  margin-bottom: .5rem;
  color: #ccc;
}

.contact-sec .text-wrapper .items-wrapper .item .text-content .data {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
}

/*form-container*/
.form-container .form-control {
  font-size: 12px;
}

.form-container select, .form-container input {
  height: 65px;
}

.form-container .main-butn {
  border-radius: 15px;
  border: none;
}

/**********************************************
    Start Edit courses Page 
**********************************************/
.courses-pg .form-container .title_search {
  color: #666;
  font-weight: bold;
}

.courses-pg .form-container .form-group {
  position: relative;
}

.courses-pg .form-container .form-group .submit-icon {
  position: absolute;
  width: 55px;
  height: 55px;
  left: 2.5px;
  top: 2.5px;
  background-color: #09A991;
  color: #fff;
  border: none;
  border-radius: 5px;
}

.courses-pg .form-container .form-group .submit-icon:hover {
  background-color: #0A7499;
}

.courses-pg .form-container .search-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.courses-pg .form-container select,
.courses-pg .form-container input {
  height: 60px;
}

.courses-pg .form-container .title {
  font-weight: bold;
  color: #09A991;
}

/**********************************************
    Start Edit single course Page 
**********************************************/
.single-course {
  position: relative;
  padding: 70px 0;
  background-color: rgba(102, 155, 51, 0.1);
}

.single-course .trainer-card {
  position: relative;
  padding: 45px 30px 10px 30px;
  background-color: #fff;
  border-radius: 15px;
}

.single-course .trainer-card .card-t {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.single-course .trainer-card .card-t .trainer-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-course .trainer-card .card-t .content {
  margin: 0 15px;
}

.single-course .trainer-card .ul .li {
  font-size: 12px;
  line-height: 1.8rem;
  padding-right: 25px;
  position: relative;
  margin-bottom: .5rem;
}

.single-course .trainer-card .ul .li::before {
  content: '\f192';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #98ddd3;
  margin: 0 5px;
  position: absolute;
  right: 0;
}

.single-course .det_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-course .det_wrapper .card_data {
  padding: 35px 40px;
  border-radius: 15px;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px;
  width: 190px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.single-course .det_wrapper .card_data:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-course .det_wrapper .card_data .data {
  color: #0A7499;
  font-size: 23px;
  margin-bottom: .7rem;
  font-weight: bold;
}

.single-course .det_wrapper .card_data .data small {
  margin: 0 2px;
  font-size: 60%;
}

.single-course .det_wrapper .card_data .label {
  margin-bottom: 0;
  color: #09A991;
  font-weight: bold;
}

.single-course .course-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px 20px;
}

.single-course .course-content .panel {
  border: 1px solid #f1f1f1;
  position: relative;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.single-course .course-content .panel .panel-heading {
  padding: 22px 20px;
  border-bottom: 1px solid #eee;
}

.single-course .course-content .panel .panel-heading h4 {
  margin-bottom: 0;
}

.single-course .course-content .panel .panel-heading h4 a {
  font-weight: bold;
  width: 100%;
  display: block;
  font-size: .9rem;
  color: #777;
}

.single-course .course-content .panel .panel-heading i {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  position: absolute;
  left: 10px;
  top: 25px;
  color: #666;
  font-size: 18px;
}

.single-course .course-content .panel .card-body .data_row {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.single-course .course-content .panel .card-body .data_row:nth-last-of-type() {
  border-bottom: 1px solid transparent;
}

.single-course .course-content .panel .card-body .data_row .data {
  font-size: 13px;
  margin-bottom: .5rem;
}

.single-course .course-content .panel .card-body .data_row .data i {
  margin: 0 10px;
  color: #0A7499;
}

.single-course .course-content .active .panel-heading i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #09A991;
}

.single-course .course-content .active .panel-heading h4 a {
  color: #09A991;
}

.single-course .faq-content .panel {
  margin-bottom: 10px;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 0px 0px 15px 0px #eee;
          box-shadow: 0px 0px 15px 0px #eee;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.single-course .faq-content .panel .panel-heading {
  padding: 25px 20px;
  border-bottom: 1px solid #eee;
}

.single-course .faq-content .panel .panel-heading::before {
  content: '\f055';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  display: block;
  position: absolute;
  left: 12px;
  top: 15px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  color: #ccc;
  font-size: 20px;
}

.single-course .faq-content .panel .panel-heading h4 {
  margin-bottom: 0;
}

.single-course .faq-content .panel .panel-heading h4 a {
  width: 100%;
  display: block;
  font-size: .9rem;
  font-weight: bold;
  color: #888;
}

.single-course .faq-content .panel .p {
  font-size: 14px;
  line-height: 2rem;
  margin-bottom: 0;
}

.single-course .faq-content .active .panel-heading::before {
  color: #0A7499;
  content: '\f056';
}

.single-course .faq-content .active .panel-heading h4 a {
  color: #0A7499;
}
/*# sourceMappingURL=style.css.map */