﻿body {
  font-family: "Lato", sans-serif;
  color: #717171;
  /* overflow-x: hidden; */
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}
.dress-gutter {
  --bs-gutter-x: 1.5rem;
}

p {
  font-size: 16px;
  line-height: 26px;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  vertical-align: top;
}
a:hover {
  text-decoration: none;
}

span {
  display: inline-block;
}

i {
  display: inline-block;
}

input,
textarea,
button {
  background: transparent;
  border: 0;
  padding: 0;
  transition: 0.3s;
}
input:focus,
textarea:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

input::placeholder {
  transition: 0.4s;
  opacity: 1;
  color: #53545b;
}

::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #23cc88;
}

::selection {
  color: #fff;
  background: #23cc88;
}

input:focus::placeholder {
  opacity: 0;
}

textarea::placeholder {
  transition: 0.4s;
  opacity: 1;
  color: #53545b;
}

textarea:focus::placeholder {
  opacity: 0;
}

#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15%;
  transform: translate(-50%, -50%);
}

.object {
  width: 20px;
  height: 20px;
  background-color: #23cc88;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  margin-right: 20px;
  margin-bottom: 20px;
  position: absolute;
}

.loading-content {
  text-align: center;
}

.loading-stroke {
  position: relative;
  width: 100%;
  background: #23cc88;
  height: 3px;
}

.loading-stroke::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  animation: kidba-loading 5s linear infinite;
  animation-timing-function: cubic-bezier(0.75, 0.04, 0, 0.86);
}

.loading-logo-icon {
  position: absolute;
  top: -60px;
  left: 0;
  width: 60px;
  height: 60px;
  animation: kidba-loading 5s linear infinite;
  animation-timing-function: cubic-bezier(0.75, 0.04, 0, 0.86);
}

.loading-logo-icon-2 {
  width: 60px;
  height: 60px;
  transform-origin: center;
  animation: kidba-loading-shake 5s linear infinite;
}

.loading-logo-text {
  padding-bottom: 10px;
}

@keyframes kidba-loading-shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-75deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-75deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes kidba-loading {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes kidba-loading {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
#object_one {
  -webkit-animation: object 2s linear infinite;
  animation: object 2s linear infinite;
}

#object_two {
  -webkit-animation: object 2s linear infinite -0.4s;
  animation: object 2s linear infinite -0.4s;
}

#object_three {
  -webkit-animation: object 2s linear infinite -0.8s;
  animation: object 2s linear infinite -0.8s;
}

#object_four {
  -webkit-animation: object 2s linear infinite -1.2s;
  animation: object 2s linear infinite -1.2s;
}

#object_five {
  -webkit-animation: object 2s linear infinite -1.6s;
  animation: object 2s linear infinite -1.6s;
}

@-webkit-keyframes object {
  0% {
    left: 100px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  90% {
    width: 40px;
    height: 15px;
  }
  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
@keyframes object {
  0% {
    left: 100px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  90% {
    width: 40px;
    height: 15px;
  }
  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-head {
  font-size: 42px;
}
.welcome-head {
  font-size: 20px;
}

.g-4 {
  --bs-gutter-y: 30px;
}

.g-0 {
  --bs-gutter-x: 0;
}

.w_100 img {
  width: 100%;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-17 {
  padding-bottom: 17px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-22 {
  padding-bottom: 22px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-27 {
  padding-bottom: 27px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.p-50p {
  padding-top: 50%;
  padding-bottom: 50%;
}

.pb-100p {
  padding-bottom: 100%;
}

.p-5 {
  padding: 5px 0;
}

.p-10 {
  padding: 10px 0;
}

.p-15 {
  padding: 15px 0;
}

.p-20 {
  padding: 20px 0;
}

.p-25 {
  padding: 25px 0;
}

.p-30 {
  padding: 30px 0;
}

.p-35 {
  padding: 35px 0;
}

.p-40 {
  padding: 40px 0;
}

.p-45 {
  padding: 45px 0;
}

.p-50 {
  padding: 50px 0;
}

.p-55 {
  padding: 55px 0;
}

.p-60 {
  padding: 60px 0;
}

.p-65 {
  padding: 65px 0;
}

.p-70 {
  padding: 70px 0;
}

.p-75 {
  padding: 75px 0;
}

.p-80 {
  padding: 80px 0;
}

.p-85 {
  padding: 85px 0;
}

.p-90 {
  padding: 90px 0;
}

.p-95 {
  padding: 95px 0;
}

.p-100 {
  padding: 100px 0;
}

.p-105 {
  padding: 105px 0;
}

.p-110 {
  padding: 110px 0;
}

.p-115 {
  padding: 115px 0;
}

.p-120 {
  padding: 120px 0;
}

.p-125 {
  padding: 125px 0;
}

.p-130 {
  padding: 130px 0;
}

.p-135 {
  padding: 135px 0;
}

.p-140 {
  padding: 140px 0;
}

.p-145 {
  padding: 145px 0;
}

.p-150 {
  padding: 150px 0;
}

.p-180 {
  padding: 180px 0;
}

.p-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-20 {
  padding-left: 20px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.px-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.px-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.mt-1 {
  margin-top: 1px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-7 {
  margin-top: 7px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt--1 {
  margin-top: -1px;
}

.mt--2 {
  margin-top: -2px;
}

.mt--3 {
  margin-top: -3px;
}

.mt--4 {
  margin-top: -4px;
}

.mt--5 {
  margin-top: -5px;
}

.mt--6 {
  margin-top: -6px;
}

.mt--7 {
  margin-top: -7px;
}

.mt--8 {
  margin-top: -8px;
}

.mt--9 {
  margin-top: -9px;
}

.mt--10 {
  margin-top: -10px;
}

.mt--14 {
  margin-top: -14px;
}

.mt--16 {
  margin-top: -16px;
}

.mt--17 {
  margin-top: -17px;
}

.mt--23 {
  margin-top: -23px;
}

.facility-icon-minus-top {
  margin-top: -70px;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-11 {
  margin-bottom: 11px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-13 {
  margin-bottom: 13px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-17 {
  margin-bottom: 17px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-19 {
  margin-bottom: 19px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-21 {
  margin-bottom: 21px;
}

.mb-22 {
  margin-bottom: 22px;
}

.mb-23 {
  margin-bottom: 23px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-26 {
  margin-bottom: 26px;
}

.mb-27 {
  margin-bottom: 27px;
}

.mb-29 {
  margin-bottom: 29px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-41 {
  margin-bottom: 41px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-47 {
  margin-bottom: 47px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-62 {
  margin-bottom: 62px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb--1 {
  margin-bottom: -1px;
}

.mb--2 {
  margin-bottom: -2px;
}

.mb--3 {
  margin-bottom: -3px;
}

.mb--4 {
  margin-bottom: -4px;
}

.mb--5 {
  margin-bottom: -5px;
}

.mb--7 {
  margin-bottom: -7px;
}

.mb--8 {
  margin-bottom: -8px;
}

.mb--9 {
  margin-bottom: -9px;
}

.mb--10 {
  margin-bottom: -10px;
}

.mb--11 {
  margin-bottom: -11px;
}

.mb--14 {
  margin-bottom: -14px;
}

.mb--18 {
  margin-bottom: -18px;
}

.mb--60 {
  margin-bottom: -60px;
}

.m-5 {
  margin: 5px 0;
}

.m-10 {
  margin: 10px 0;
}

.m-15 {
  margin: 15px 0;
}

.m-20 {
  margin: 20px 0;
}

.m-25 {
  margin: 25px 0;
}

.m-30 {
  margin: 30px 0;
}

.m-35 {
  margin: 35px 0;
}

.m-40 {
  margin: 40px 0;
}

.m-45 {
  margin: 45px 0;
}

.m-50 {
  margin: 50px 0;
}

.m-55 {
  margin: 55px 0;
}

.m-60 {
  margin: 60px 0;
}

.m-65 {
  margin: 65px 0;
}

.m-70 {
  margin: 70px 0;
}

.m-75 {
  margin: 75px 0;
}

.m-80 {
  margin: 80px 0;
}

.m-85 {
  margin: 85px 0;
}

.m-90 {
  margin: 90px 0;
}

.m-95 {
  margin: 95px 0;
}

.m-100 {
  margin: 100px 0;
}

.m-105 {
  margin: 105px 0;
}

.m-110 {
  margin: 110px 0;
}

.m-115 {
  margin: 115px 0;
}

.m-120 {
  margin: 120px 0;
}

.m-125 {
  margin: 125px 0;
}

.m-130 {
  margin: 130px 0;
}

.m-135 {
  margin: 135px 0;
}

.m-140 {
  margin: 140px 0;
}

.m-145 {
  margin: 145px 0;
}

.m-150 {
  margin: 150px 0;
}

.mx--10 {
  margin-left: -10px;
  margin-right: -10px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mx-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.h-0 {
  height: 0;
}

.fb {
  background: #3b5999;
  color: #fff;
}

.ggl {
  background: #dd4b39;
  color: #fff;
}

.tw {
  background: #55acee;
  color: #fff;
}

.pin {
  background: #bd081c;
  color: #fff;
}

.ld {
  background: #007bb6;
  color: #fff;
}

.skp {
  background: #009ee5;
  color: #fff;
}

.rss {
  background: #fd9f13;
  color: #fff;
}

.drb {
  background: #ea4c89;
  color: #fff;
}

.color-fb {
  color: #3b5999;
}
.color-fb:hover,
.color-fb:focus {
  color: #3b5999;
}

.color-ggl {
  color: #dd4b39;
}
.color-ggl:hover,
.color-ggl:focus {
  color: #dd4b39;
}

.color-tw {
  color: #55acee;
}
.color-tw:hover,
.color-tw:focus {
  color: #55acee;
}

.color-pin {
  color: #bd081c;
}
.color-pin:hover,
.color-pin:focus {
  color: #bd081c;
}

.color-ld {
  color: #007bb6;
}
.color-ld:hover,
.color-ld:focus {
  color: #007bb6;
}

.color-skp {
  color: #009ee5;
}
.color-skp:hover,
.color-skp:focus {
  color: #009ee5;
}

.color-rss {
  color: #fd9f13;
}
.color-rss:hover,
.color-rss:focus {
  color: #fd9f13;
}

.color-drb {
  color: #ea4c89;
}
.color-drb:hover,
.color-drb:focus {
  color: #ea4c89;
}

.color-ig {
  color: #394b8d;
}
.color-ig:hover,
.color-ig:focus {
  color: #394b8d;
}

.color-vmo {
  color: #394b8d;
}
.color-vmo:hover,
.color-vmo:focus {
  color: #394b8d;
}

.color-be {
  color: #2d9ad2;
}
.color-be:hover,
.color-be:focus {
  color: #2d9ad2;
}

.fb-color {
  color: #3b5999;
}
.fb-color:hover,
.fb-color:focus {
  color: #3b5999;
}

.ggl-color {
  color: #dd4b39;
}
.ggl-color:hover,
.ggl-color:focus {
  color: #dd4b39;
}

.tw-color {
  color: #55acee;
}
.tw-color:hover,
.tw-color:focus {
  color: #55acee;
}

.pin-color {
  color: #bd081c;
}
.pin-color:hover,
.pin-color:focus {
  color: #bd081c;
}

.ld-color {
  color: #007bb6;
}
.ld-color:hover,
.ld-color:focus {
  color: #007bb6;
}

.skp-color {
  color: #009ee5;
}
.skp-color:hover,
.skp-color:focus {
  color: #009ee5;
}

.rss-color {
  color: #fd9f13;
}
.rss-color:hover,
.rss-color:focus {
  color: #fd9f13;
}

.isotope-gap {
  margin: 12px;
}

.isotope-n-gap {
  margin: -12px;
}

.navbar-nav .nav-item.pr-20 {
  padding-right: 20px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-30 {
  gap: 30px;
}

.gap-55 {
  gap: 55px;
}

.gap-70 {
  gap: 70px;
}

.r-gap-10 {
  row-gap: 10px;
}

.r-gap-20 {
  row-gap: 20px;
}

.r-gap-24 {
  row-gap: 24px;
}

.r-gap-30 {
  row-gap: 30px;
}

.r-gap-70 {
  row-gap: 70px;
}

.c-gap-10 {
  column-gap: 10px;
}

.c-gap-20 {
  column-gap: 20px;
}

.c-gap-24 {
  column-gap: 24px;
}

.c-gap-30 {
  column-gap: 30px;
}

.c-gap-70 {
  column-gap: 70px;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.bottom-0 {
  bottom: 0;
}

.right-0 {
  right: 0;
}

.top-50 {
  top: 50%;
}

.left-50 {
  left: 50%;
}

.bottom-50 {
  bottom: 50%;
}

.right-50 {
  right: 50%;
}

.top-100 {
  top: 100%;
}

.left-100 {
  left: 100%;
}

.bottom-100 {
  bottom: 100%;
}

.right-100 {
  right: 100%;
}

.ff-heading {
  font-family: "Fredoka One", cursive;
}

.ff-body {
  font-family: "Roboto", sans-serif;
}

.ff-special {
  font-family: "Open Sans", sans-serif;
}

.def-btn {
  height: 60px;
  line-height: 60px;
  /* background: linear-gradient(145deg, #8ecf35, #23cc88); */
  /* box-shadow: 0px 5px 10px 0px rgba(35, 204, 136, 0.5); */
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  padding: 0 35px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-align: center;
  display: inline-block;
  border-radius: 10px;
  background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
}
.def-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(-145deg, #8ecf35, #23cc88); */
  background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  opacity: 0;
  transition: all 0.3s ease-in;
  z-index: -1;
}
.def-btn.def-btn-sm {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
}
.def-btn.btn-2 {
  background: linear-gradient(145deg, #ff4f58, #ffb400);
  box-shadow: 0px 5px 10px 0px rgba(255, 114, 58, 0.5);
}
.def-btn.btn-2:after {
  background: linear-gradient(-145deg, #e25242, #830505);
}
.def-btn.btn-3 {
  background: linear-gradient(145deg, #01cbad, #47a1f2);
  box-shadow: 0px 5px 10px 0px rgba(1, 203, 173, 0.5);
}
/* .def-btn.btn-3:after {
    background: linear-gradient(145deg, #04a56d, #046d48);
} */
.def-btn.btn-4 {
  background: linear-gradient(145deg, #e85aca, #fc4e65);
  box-shadow: 0px 5px 10px 0px rgba(232, 90, 202, 0.5);
}
.def-btn.btn-4:after {
  background: linear-gradient(-145deg, #e85aca, #fc4e65);
}
.def-btn:hover {
  color: #fff;
}
.def-btn:hover:after {
  opacity: 1;
}

.section-title {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 600;
  color: #00394f;
}

.paragraph-minus-margin {
  margin-bottom: -8px;
}

.bg-danger {
  background-color: #ff4f58 !important;
}

.bg-gradient-1 {
  background: linear-gradient(145deg, #8ecf35, #23cc88);
}

.bg-gradient-2 {
  background: linear-gradient(145deg, #01cbad, #47a1f2);
}

.bg-gradient-3 {
  background: linear-gradient(145deg, #ff4f58, #ffb400);
}

.bg-gradient-4 {
  background: linear-gradient(145deg, #e85aca, #fc4e65);
}

.color-1 {
  color: #23cc88;
}

.color-2 {
  color: #f95072;
}

.color-3 {
  color: #ff4f58;
}

.color-4 {
  color: #ffc000;
}

.color-5 {
  color: #e84b3a;
}

.color-6 {
  color: #ff723a;
}

.color-7 {
  color: #92278f;
}

.color-8 {
  color: #47a1f2;
}

.color-9 {
  color: #00394f;
}

.shadow-1 {
  box-shadow: 0px 10px 20px 0px rgba(35, 204, 136, 0.5);
}

.shadow-2 {
  box-shadow: 0px 10px 20px 0px rgba(71, 161, 242, 0.5);
}

.shadow-3 {
  box-shadow: 0px 10px 20px 0px rgba(255, 114, 58, 0.5);
}

.shadow-4 {
  box-shadow: 0px 10px 20px 0px rgba(232, 90, 202, 0.5);
}

.filter-shadow-1 {
  filter: drop-shadow(0px 10px 10px rgba(35, 204, 136, 0.5));
}

.filter-shadow-2 {
  filter: drop-shadow(0px 10px 10px rgba(1, 203, 173, 0.5));
}

.filter-shadow-3 {
  filter: drop-shadow(0px 10px 10px rgba(255, 114, 58, 0.5));
}

.filter-shadow-4 {
  filter: drop-shadow(0px 10px 10px rgba(232, 90, 202, 0.5));
}

.fz-16 {
  font-size: 16px;
}

.fz-18 {
  font-size: 18px;
}

.lh-0 {
  line-height: 100% !important;
}

.lh-2 {
  line-height: 2 !important;
}

.lh-24 {
  line-height: 24px;
}

.lh-26 {
  line-height: 26px;
}

.lh-28 {
  line-height: 28px;
}

.lh-30 {
  line-height: 30px;
}

.fw-500 {
  font-weight: 500 !important;
}

.tt-uppercase {
  text-transform: uppercase;
}

.divider {
  width: 80px;
  height: 4px;
}

.gap-4 {
  gap: 24px;
}

.gap-25 {
  row-gap: 25px;
}

.gap-30 {
  row-gap: 30px;
}

.border-light-alpha {
  border-color: #804bff !important;
}

.btn-box {
  text-align: center;
  margin: auto;
}

.btn-box-2 {
  display: flex;
  gap: 10px;
}

.pr-70 {
  padding-right: 70px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ml-30 {
  margin-left: 30px;
}

/*  Default CSS  */
.pt-200 {
  padding-top: 200px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pb-180 {
  padding-bottom: 180px;
}
.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-190 {
  padding-bottom: 190px;
}

/*
************
*************************
02. Header
******************************************************* 
*************************************************************** */
.header-container {
  width: 100%;
  max-width: 1480px;
}

.bottom-header {
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.1);
}

.navbar-nav ul.dropdown-menu li:not(:last-child) {
  margin-bottom: 5px;
}

.top-header {
  /* background-image: linear-gradient(11deg, #8ecf35, #23cc88); */
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  /* background: linear-gradient(135deg, #0D47A1, #1976D2, #42A5F5); */
  /* background: linear-gradient(135deg, #0B1C2D, #123B64, #1E5EA8); */
}

.header-txt {
  font-size: 16px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.header-txt:first-child {
  border-left: 0;
}

.header-right-txt {
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.header-right-txt:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.header-right-txt:hover,
.header-right-txt:focus {
  color: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  /* color: #23cc88; */
  background: #fff;
}

.nav-item:hover .nav-link:after,
.nav-item:focus-within .nav-link:after {
  width: 100%;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.nav-link {
  font-size: 14px;
  height: 20px;
  line-height: 21px;
  font-weight: 700;
  color: #00394f;
  text-transform: uppercase;
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #23cc88;
  transition: all 0.3s ease-in;
}
.nav-link:hover,
.nav-link:focus {
  color: #00394f;
}
.nav-link:hover:after,
.nav-link:focus:after {
  width: 100%;
}

.dropdown-menu {
  display: block;
  border-radius: 0;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  border: 0;
  top: 120%;
  background-color: #fff;
  border-top: 4px solid #c62828;
  box-shadow: 0 13px 29px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.dropdown-menu[data-bs-popper] {
  left: inherit;
  margin-top: inherit;
}

.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: #717171;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: #23cc88;
  color: #fff;
}

.nav-cart-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(-145deg, #ff4f58, #ffb400);
  border-radius: 50%;
  position: relative;
}

.item_count {
  position: absolute;
  right: -10px;
  top: -10px;
  min-width: 30px;
  height: 30px;
  background-color: #32cc7c;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 13px;
  color: #fff;
}

.navbar-nav li.nav-item {
  padding: 13px 0;
}

.navbar-nav li a {
  /* text-transform: uppercase; */
  font-size: 15px;
  color: #00394f;
  padding: 10px 0;
  font-weight: 600;
  transition: 0.4s;
  transform-origin: left;
  display: inline-block;
}
.navbar-nav li a:hover {
  color: #c62828;
}
.navbar-nav li ul li a {
  padding: 5px 0;
}
/* .navbar-nav li ul li a:hover {
  letter-spacing: 1px;
} */
.navbar-nav li:is(.dropdown) > a::after {
  content: "\eab2";
  font-family: "IcoFont";
}
.navbar-nav > li:hover > a {
  color: #c62828;
}

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

/*
************
*************************
03. Banner
******************************************************* 
*************************************************************** */
.breadcrumb-txt span.dvdr {
  display: inline-block;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumb-txt a {
  font-weight: 700;
}
.breadcrumb-txt a:hover {
  color: #c62828;
}

.banner {
  background: url(../new-img/WhatsApp\ Image\ 2026-02-11\ at\ 5.12.12\ PM.jpeg) bottom center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #18182061;
  z-index: -1;
}

.breadcrumb-banner {
  background: url(../new-img/bannar2.jpeg) bottom center no-repeat;
  background-size: cover;
  padding: 120px 0;
      height: 510px;
}

.banner-subtitle {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
}

.banner-subtitle-2 {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
}

.banner-title {
  font-size: 56px;
  line-height: 1.2;
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
}

.banner-title-2 {
  font-size: 96px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  color: #fff;
}

.breadcrumb-title {
  font-size: 72px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.breadcrumb-txt {
  font-size: 20px;
  color: #fff;
}

.banner-paragraph {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}

.banner-paragraph-2 {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}

.mr-25 {
  margin-right: 25px;
}

.rounded-pill-space {
  margin-top: 10px;
  margin-bottom: 17px;
}

@keyframes hero-border {
  0% {
    -webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    -moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
  }
  100% {
    -webkit-border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
    -moz-border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
    border-radius: 30% 70% 28% 72%/53% 69% 31% 47%;
  }
}
.feature-img-2 img {
  /*-webkit-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;*/
  /*-moz-border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;*/
  /*border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;*/
  /*-webkit-animation: hero-border 5s linear infinite alternate;*/
  /*-moz-animation: hero-border 5s linear infinite alternate;*/
  /*-o-animation: hero-border 5s linear infinite alternate;*/
  /*animation: hero-border 5s linear infinite alternate;*/
  border: 6px solid #C62828;
  
  /* border: linear-gradient(135deg, #8B0000, #C62828, #FF4C4C); */

  box-shadow: 0 0 20px #C62828;
}

.box.kitba-box-2 {
  grid-gap: 14px;
}

.kitba-slide-height {
  height: 950px;
  display: flex;
  align-items: center;
  background-size: cover;
}
.bg_cover {
  background-size: cover;
}
.feature-part-icon {
  width: 100px;
  height: 100px;
}

.feature-icon {
  width: 100px;
  height: 100px;
}

.feature-txt {
  width: calc(100% - 120px);
}
.feature .feature-sub-title {
  font-size: 19px;
  line-height: 24px;
}
.feature .corner-btn-area {
  margin-top: 20px;
}
.feature .corner-btn-area .crn-btn {
  padding: 12px 23px;
  border-radius: 5px;
  background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  color: #fff;
}
.feature .corner-btn-area .crn-btn:hover {
  /* background: #C62828; */

  border: 1px solid #c62828;
  background: transparent;
  color: #c62828;
}
.feature .feature-box {
  margin-bottom: 30px;
}

.feature-sub-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #e08c0a;
}
.about-sec {
  /* background:linear-gradient(15deg, #29904f, #215840); */
  /* background: linear-gradient(15deg, #29904f 20%, #215840 80%); */
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  position: relative;
  z-index: 1;
}
.about-sec::after {
  position: absolute;
  content: "";
  bottom: -39px;
  left: 0;
  width: 100%;
  height: 130px;
  background: url(../images/shape/19.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
.about-sec::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/shape/121.png) no-repeat;
  background-size: cover;
  z-index: -1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7475%)
    hue-rotate(2deg) brightness(111%) contrast(105%);
  opacity: 0.3;
}

.feature-sub-title-2 {
  font-size: 42px;
  line-height: 100%;
}
.about-sec .feature-title {
  color: #fff;
}
.about-sec .feature-txt-area p {
  color: #fff;
}
.about-sec .feature-txt h3,
.about-sec .feature-txt p {
  color: #fff;
}
.about-sec .feature-txt h3 a:hover {
  color: #fff;
}
.about-sec .about-content p {
  letter-spacing: 0.7px;
  font-size: 16px;
}
.about-sec .know-area {
  margin-top: 32px;
}
.about-sec .know-btn {
  border: 2px solid #fff;
  padding: 18px 40px;
  color: #000;
  background: #ffff;
  border-radius: 5px;
}
.about-sec .know-btn:hover {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 10px #fff inset;
}

.video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 48px;
  display: inline-block;
}
.video-btn.video-btn-2 {
  font-size: 36px;
}

.feature-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: #00394f;
}

.r-gap-40 {
  row-gap: 40px;
}

.has-gradient-service > *:nth-child(1) a:hover {
  color: #38cd78;
}

.has-gradient-service > *:nth-child(2) a:hover {
  color: #35ace0;
}

.has-gradient-service > *:nth-child(3) a:hover {
  color: #ff5454;
}

.has-gradient-service > *:nth-child(4) a:hover {
  color: #e85ac9;
}

.feature-sub-title.prnt-clr:hover a {
  color: #35ace0;
}

.feature-sub-title.msc-clr:hover a {
  color: #ff5454;
}

.feature-sub-title.lrn-clr:hover a {
  color: #38cd78;
}

.feature-icon img,
.feature-part-icon img {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}

.feature-card:hover .feature-icon img,
.feature-box:hover .feature-part-icon img {
  transform: translate3d(0, -5px, 0);
}

/*
************
*************************
05. About
******************************************************* 
*************************************************************** */
.about {
  background: url(../images/red-paper.png) center center no-repeat;
  background-size: cover;
  color: #fff;
  padding: 130px 0;
}

.about-2 {
  background: url(../images/about-bg-2.jpg);
  background-size: cover;
  color: #fff;
}
.about-img {
  height: 700px;
  width: 100%;
}
.about-img img {
  height: 100%;
  width: 100%;
}

.about-title {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 600;
}

.feature-img.p-relative::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: "";
  opacity: 0.25;
}
.feature-img {
  height: 400px;
  width: 100%;
}
.feature-img img {
  object-fit: cover;
  height: 100%;
}

.feature-img.p-relative a.video-btn {
  z-index: 9;
}
.feature-img.p-relative a.video-btn i {
  transition: all 0.3s;
}
.feature-img.p-relative a.video-btn:hover i {
  color: #ff5a4c;
}

p.app-download-txt {
  font-size: 20px;
}

.bg-top-center {
  background-position: top center;
}

.cta {
  background: url(../images/cta-bg.png) center center no-repeat;
  background-size: cover;
}

.cta-title {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

/*
************
*************************
07. Class
******************************************************* 
*************************************************************** */
.class-card {
  box-shadow: 0px 0px 10px 0px rgba(113, 113, 113, 0.1);
}

.class-title {
  font-size: 24px;
  font-weight: 700;
}
.class-title a {
  color: #00394f;
}
.class-title:hover a {
  color: #23cc88;
}

.vertical-border {
  width: 1px;
  background: rgba(113, 113, 113, 0.2);
}

.class-card:hover .part-img img {
  transform: scale(1.1);
}

.class-card .part-img {
  overflow: hidden;
  position: relative;
}

.class-card .part-img img {
  transition: all 0.3s;
}

@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.counter-box:hover img {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.class-card.class-card-2 {
  display: flex;
  align-items: center;
}

.class-card.class-card-2 .part-img {
  flex: 0 0 45%;
  max-width: 45%;
}
.class-card.class-card-2 .popular-class-txt {
  padding: 0 30px;
}

.list-wrapper .class-card.class-card-2 .popular-class-txt {
  padding: 0 40px;
}

.class-card.class-card-2 .part-img {
  height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.list-wrapper .class-card.class-card-2 .part-img {
  height: 330px;
}

.gallery-image.gallery-image-2 .img {
  height: 350px;
  width: 100%;
}
.gallery-image.gallery-image-2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.class-catname {
  display: inline-block;
  color: #fff;
  margin-bottom: 25px;
  font-size: 16px;
  color: #23cc88;
  border: 1px solid #23cc88;
  padding: 3px 10px;
}

.class-catname:hover {
  background-color: #23cc88;
  color: #fff;
}

.class-catname.bg-theme {
  background-color: #23cc88;
  color: #fff;
}
.class-catname.bg-theme:hover {
  color: #23cc88;
  border: 1px solid #23cc88;
  background-color: transparent;
}

.class-filter-btn {
  font-size: 16px;
  color: #00394f;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.class-filter-btn:not(:last-child) {
  margin-right: 30px;
}

.class-filter-btn.active {
  color: #23cc88;
}

.class-filter-btn:hover {
  color: #23cc88;
}

.part-txt.part-text-list {
  padding: 40px 70px 40px 40px;
}

.grey-bg-2 {
  background-color: #f6f6f6;
}

.course__tab-inner {
  padding: 20px 25px;
}

.course__view h4 {
  color: #00394f;
  font-size: 16px;
  margin-bottom: 0;
}

.course__tab-btn li button {
  color: #00394f;
  font-size: 16px;
  margin-right: 5px;
  padding: 5px 10px;
  background-color: #d7d7d7;
}

.course__tab-btn li button#list-tab {
  margin-right: 15px;
}

.course__tab-btn li button.active {
  background-color: #00394f;
  color: #fff;
}

.course__sort-inner .nice-select {
  border: 0;
  color: #00394f;
  padding-right: 33px;
}

.course__sort-inner .nice-select .list {
  left: auto;
  right: 0;
}

.course__sort-inner .nice-select::after {
  width: 7px;
  height: 7px;
  border-width: 1px;
  border-color: #00394f;
  right: 20px;
}

.basic-pagination ul li {
  display: inline-block;
}

.basic-pagination ul li:not(:last-child) {
  margin-right: 20px;
}

.basic-pagination ul li.prev a,
.basic-pagination ul li.next a {
  width: inherit;
  height: inherit;
  line-height: inherit;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
}

.basic-pagination ul li a {
  position: relative;
  overflow: hidden;
  background: transparent;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid #f6f6f6;
  color: #00394f;
}

.basic-pagination ul li.active a {
  color: #ffffff;
  background: #23cc88;
  border-color: #23cc88;
}

.basic-pagination ul li.active a {
  color: #ffffff;
}

.link-btn {
  position: relative;
  font-size: 16px;
  color: #00394f;
  font-weight: 500;
  display: inline-block;
}

.basic-pagination ul li.prev a:hover,
.basic-pagination ul li.next a:hover {
  color: #23cc88;
  background: inherit;
}

.basic-pagination ul li a:hover {
  background: #23cc88;
  color: #ffffff;
  border-color: #23cc88;
}

.course__video-thumb {
  position: relative;
  z-index: 1;
}

.course__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.course__video-price h5 {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 0;
  color: #1a1a1a;
}

.course__video-price h5 span {
  font-size: 20px;
  font-weight: 600;
}

.course__video-discount span {
  display: inline-block;
  font-size: 14px;
  height: 24px;
  line-height: 24px;
  padding: 0 12px;
  color: #f95072;
  background: rgba(255, 70, 144, 0.08);
  font-weight: 600;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.course__video-info h5 {
  margin-bottom: 0;
  font-weight: 400;
  color: #717171;
  font-size: 15px;
  line-height: 1;
}

.course__video-info h5 span {
  font-weight: 500;
  color: #1a1a1a;
  padding-right: 5px;
}

.course__payment h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.e-btn-7 {
  height: 50px;
  line-height: 50px;
}

.course__video-price h5.old-price {
  text-decoration: line-through;
  color: #717171;
  font-weight: 500;
  font-size: 16px;
  padding-left: 10px;
}

.course__video-icon {
  margin-right: 10px;
}
.course__video-icon i {
  color: #23cc88;
}

.course__video-content ul li:not(:last-child) {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eef0f6;
}

/*
************
*************************
08. App Download
******************************************************* 
*************************************************************** */
.app-download-2 {
  background: url(../images/app-download-bg.jpg) center center no-repeat;
  background-size: cover;
}

.app-download-title {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}

/*
************
*************************
09. Counter
******************************************************* 
*************************************************************** */
.counter {
  /* background: url(../images/paper1.png) center center no-repeat; */
  background-size: cover;
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
}

.counter-inner {
  background: url(../images/counter-bg-2.jpg) center center no-repeat;
  background-size: cover;
}

.counter-box-2 {
  border-radius: 50%;
}

.counter-part-txt {
  color: #fff;
}

.counter-txt {
  font-size: 52px;
  font-weight: 600;
  line-height: 100%;
}

.counter-sub-txt {
  font-size: 22px;
}

.counter-box-2:hover .counter-icon {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/*
************
*************************
10. Staff
******************************************************* 
*************************************************************** */
.staff-name {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.staff-name a {
  color: #00394f;
}
.staff-name:hover a {
  color: #23cc88;
}

.staff-social-btn {
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: url(../images/vector-bg-1.png) center center no-repeat;
  background-size: 50px;
  color: #fff;
  position: relative;
  display: inline-block;
}
.staff-social-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  box-shadow: 0px 25px 20px 0px rgba(35, 204, 136, 0.25);
}
.staff-social-btn.bg-1 {
  background: url(../images/vector-bg-2.png) center center no-repeat;
  background-size: 50px;
}
.staff-social-btn.bg-1:before {
  box-shadow: 0px 25px 20px 0px rgba(255, 114, 58, 0.25);
}
.staff-social-btn.bg-2 {
  background: url(../images/vector-bg-3.png) center center no-repeat;
  background-size: 50px;
}
.staff-social-btn.bg-2:before {
  box-shadow: 0px 25px 20px 0px rgba(71, 161, 242, 0.25);
}
.staff-social-btn.bg-3 {
  background: url(../images/vector-bg-4.png) center center no-repeat;
  background-size: 50px;
}
.staff-social-btn.bg-3:before {
  box-shadow: 0px 25px 20px 0px rgba(232, 90, 202, 0.25);
}
.staff-social-btn:hover {
  color: #fff;
}

.staff-card-img {
  position: relative;
  z-index: 1;
}
.staff-card-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #00394f;
  opacity: 0.5;
  z-index: 1;
  transition: 0.4s;
}
.staff-card-img img {
  transition: 0.4s;
}
.staff-card-img:hover img {
  filter: contrast(0.5);
}
.staff-card-img:hover:before {
  opacity: 0;
}

.staff-card-img > a {
  display: block;
}

.w_100 img {
  width: 100%;
}

.pl-70 {
  padding-left: 70px;
}

/*
************
*************************
11. Facility
******************************************************* 
*************************************************************** */
.facility {
  background: url(../images/facility-bg.jpg) center center no-repeat;
  background-size: cover;
}

.facility-card.facility-card-one {
  background: url(../images/facility-img-1.jpg) center center no-repeat;
  background-size: cover;
  background-position: top center;
}
.facility-card.facility-card-two {
  background: url(../images/facility-img-2.jpg) center center no-repeat;
  background-size: cover;
  background-position: top center;
}
.facility-card.facility-card-two .facility-icon {
  background: linear-gradient(-145deg, #ff4f58, #ffb400);
  box-shadow: 0px 25px 20px 0px rgba(255, 114, 58, 0.3);
}
.facility-card.facility-card-three {
  background: url(../images/facility-img-3.jpg) center center no-repeat;
  background-size: cover;
  background-position: top center;
}
.facility-card.facility-card-three .facility-icon {
  background: linear-gradient(-145deg, #e85aca, #fc4e65);
  box-shadow: 0px 25px 20px 0px rgba(232, 90, 202, 0.3);
}

.facility-img-area {
  min-height: 190px;
}

.facility-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  box-shadow: 0px 25px 20px 0px rgba(35, 204, 136, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.facility-title a {
  color: #00394f;
}
.facility-title:hover a {
  color: #23cc88;
}

.facility-card:hover .facility-icon img {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.single-client img {
  width: 100%;
}

/*
************
*************************
12. Gallery
******************************************************* 
*************************************************************** */
.gallery-container {
  max-width: 1920px;
}

.controls {
  /* border-bottom: 1px solid rgba(113, 113, 113, 0.2); */
}

.gallery-filter-btn {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  position: relative;
}
.gallery-filter-btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
  width: 15px;
  height: 15px;
  background: #fff;
  border-top: 1px solid rgba(113, 113, 113, 0.2);
  border-right: 1px solid rgba(113, 113, 113, 0.2);
  opacity: 0;
  transition: 0.3s;
}
.gallery-filter-btn.active:after {
  opacity: 1;
}

.gallery-image:hover .gallery-txt,
.gallery-image:focus-within .gallery-txt {
  opacity: 1;
}

.gallery-txt {
  top: 20px;
  left: 20px;
  bottom: 20px;
  right: 20px;
  /* background: #298e4e; */
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease-in;
  background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
}

.gallery-popup {
  text-align: center;
  width: 58px;
  height: 58px;
  line-height: 50px;
  background: #fff;
  border: 4px solid #c62828;
  border-radius: 50%;
}
.gallery-popup:hover {
  border-color: #c62828;
}

.gallery-filter-btn {
  color: #8b0000;
}
.gallery-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.gallery-title:hover a {
  color: #fff;
}

.gallery-sub-title {
  font-size: 16px;
  line-height: 100%;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-figure:after {
  display: none;
}

/*
************
*************************
13. Testimonial
******************************************************* 
*************************************************************** */
.testimonial {
  background: url(../images/testimonial-bg.jpg) center center no-repeat;
  background-size: cover;
}

.feedback-title {
  font-size: 39px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}

.feedback-txt {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  color: #fff;
}

.client-name {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 100%;
  padding-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.slick-dots {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.slick-dots > * {
  width: 10px;
  height: 10px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.2;
  transition: 0.3s;
}
.slick-dots > *.slick-active {
  opacity: 1;
  background: linear-gradient(145deg, #8ecf35, #23cc88);
}
.slick-dots > * button {
  font-size: 0;
}

/*
************
*************************
14. Blog
******************************************************* 
*************************************************************** */
.blog-card {
  box-shadow: 0px 0px 10px 0px rgba(113, 113, 113, 0.15);
}

.blog-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.blog-title a {
  color: #00394f;
}
.blog-title:hover a {
  color: #23cc88;
}

.blog-bottom-part {
  border-top: 1px solid rgba(113, 113, 113, 0.15);
}

.blog-single-stat {
  line-height: 100%;
}

.part-img.w_100 a {
  display: block;
}

.single-blog-info > span {
  display: inline-block;
  margin-right: 25px;
}
.single-blog-info > span:last-child {
  margin-right: 0;
}

/*
************
*************************
15. Partner
******************************************************* 
*************************************************************** */
.partner-slider {
  overflow: hidden;
}
.partner-slider .slick-list {
  margin-left: -10px;
  margin-right: -10px;
}

.kb-staff-card-social-share-1-1 {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 30px;
  text-align: center;
  z-index: 2;
}

.staff-card-img {
  position: relative;
}

.kb-staff-card-social-share-1-1 a:not(:last-child) {
  margin-right: 3px;
}

.kb-staff-card-social-share-1-1 a:not(:first-child) {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.staff-card-img:hover .kb-staff-card-social-share-1-1 a {
  opacity: 1;
  visibility: visible;
}

.kb-staff-card-social-share-1-1 a:nth-child(2) {
  transition-delay: 0.1s;
}
.kb-staff-card-social-share-1-1 a:nth-child(3) {
  transition-delay: 0.2s;
}
.kb-staff-card-social-share-1-1 a:nth-child(4) {
  transition-delay: 0.3s;
}

.mb-5-px {
  margin-bottom: 5px;
}

.footer-card .footer-card-txt {
  line-height: 30px;
}

.class-fee {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  padding: 5px 10px;
  background-color: #ff4f58;
  color: #fff;
  margin: 20px;
  z-index: 2;
}

.kb-class-tooltip-1 {
  position: absolute;
  left: 27px;
  top: 20px;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background: #23cc88;
  line-height: 1;
  padding: 9px 13px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.kb-class-tooltip-1::after {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 20px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%, 100% 0);
  content: "";
  background-color: #23cc88;
}

.part-img:hover .kb-class-tooltip-1 {
  opacity: 1;
  visibility: visible;
  left: 113px;
}

.class-info .box.text-center {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}

.class-info .box span.single-info {
  margin-bottom: 0;
  line-height: 1;
  margin-top: 0px;
}

/*
************
*************************
16. Contact
******************************************************* 
*************************************************************** */
.contact {
  background: url(../images/contact-bg.png) top center no-repeat;
  background-size: cover;
}

.contact-info-sub-txt {
  min-width: 80px;
}

.contact-social {
  font-size: 18px;
}
.contact-social:hover {
  color: #23cc88;
}

.def-form {
  width: 100%;
  height: 60px;
  background: #fff;
}
.def-form:focus {
  border-color: #23cc88;
}

.def-textarea {
  width: 100%;
  height: 190px;
  background: #fff;
  vertical-align: top;
}
.def-textarea:focus {
  border-color: #23cc88;
}

.class-card-2 .box.kitba-box-2.text-center {
  flex-wrap: wrap;
}

.ui-datepicker-header {
  background: linear-gradient(145deg, #8ecf35, #23cc88);
}

.ui-datepicker-title {
  color: #fff;
}

.ui-widget-header .ui-icon {
  position: relative;
  z-index: 1;
}
.ui-widget-header .ui-icon:after {
  position: absolute;
  left: -3px;
  top: -6.5px;
  font-size: 18px;
  content: "\eac9";
  font-family: "IcoFont";
  display: inline-block;
  color: #23cc88;
  width: 15px;
  height: 15px;
  z-index: 999;
  text-indent: 0;
}
.ui-widget-header .ui-datepicker-next .ui-icon {
  position: relative;
  z-index: 1;
}
.ui-widget-header .ui-datepicker-next .ui-icon:after {
  position: absolute;
  right: -3px;
  top: -5.5px;
  font-size: 18px;
  content: "\eaca";
  font-family: "IcoFont";
  display: inline-block;
  color: #23cc88;
  width: 15px;
  height: 15px;
  z-index: 999;
  text-indent: 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #fff;
  border-radius: 50%;
}
.ui-datepicker .ui-datepicker-prev.ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next.ui-datepicker-prev-hover {
  top: 50%;
  left: 2px;
  background: #fff;
}
.ui-datepicker .ui-datepicker-prev.ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-next.ui-datepicker-next-hover {
  top: 50%;
  right: 2px;
  background: #fff;
}

.ui-state-default {
  border: 0 !important;
}

.ui-state-highlight {
  background: linear-gradient(145deg, #8ecf35, #23cc88) !important;
  color: #fff !important;
}

.ui-datepicker td {
  padding: 0;
  border: 1px solid rgba(113, 113, 113, 0.1);
}
.ui-datepicker td a {
  text-align: center;
}

.contact-info.kitba-contact {
  background: #00394f;
  padding: 50px 40px;
  display: block;
}
.contact-info.kitba-contact span.contact-info-sub-txt {
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.contact-info.kitba-contact .contact-info-txt {
  color: #fff;
  line-height: 1.7;
}

.contact-info a:hover {
  color: #23cc88;
}

/*
************
*************************
17. Footer
******************************************************* 
*************************************************************** */
.footer {
  /* background: linear-gradient(15deg, #29904f 10%, #215840 80%); */
  position: relative;
  z-index: 1;
  padding-top: 50px;
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
}
.footer::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/shape/footer1.png) repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.1;
}
.footer::before {
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 200px;
  content: "";
  background: url(../images/shape/wavy.png) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 1;
}

.footer-2 {
  background: url(../images/footer-bg-2.jpg) center center no-repeat;
  background-size: cover;
}
.footer-btm {
  background: #163e82;
  padding: 10px 0;
}
.footer-btm .copyright-area {
  padding-top: 10px;
  text-align: center;
  font-family: "Poppins", "sans-serif";
  letter-spacing: 0.4px;
}
.map-area {
  height: 260px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.footer-info {
  background: #5c2cce;
}

.footer-info-2 {
  background: #5c2ccf;
}

.footer-single-info.border-l {
  border-left: 1px solid #804bff;
}

.footer-info-icon-wrap {
  height: 50px;
  width: auto;
}

.footer-info-icon {
  height: 100%;
  width: auto;
}

.footer-info-title {
  font-size: 16px;
  line-height: 100%;
}

.footer-info-txt {
  font-size: 19px;
  line-height: 100%;
  font-weight: 700;
}

.footer-card-title {
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.footer-card-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 1px;
  background: linear-gradient(to left, transparent, #fbfafc);
}

.footer-follow-dialogue {
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  color: #fff;
}

.footer-socials {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.footer-social {
  font-size: 22px;
  line-height: 100%;
  color: #edf5f8;
  width: 50px;
  height: 50px;
  background: #000;
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
}
.footer-social-facebook {
  background: #5977b8;
  box-shadow: 0px 4px 0px 0px #4c67a1;
}
.footer-social-twitter {
  background: #00acee;
  box-shadow: 0px 4px 0px 0px #02668e;
}

.footer-social-linkedin {
  background: #0a66c2;
  box-shadow: 0px 4px 0px 0px #05509a;
}

.footer-social:hover {
  color: #fff;
  transform: translateY(-10px);
}

.footer-link {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}
.footer-link:hover {
  color: #f0e203;
}

.footer-input {
  width: 100%;
  height: 60px;
  background: #6231d6;
  border: 1px solid #804bff;
  color: #fff;
}
.footer-input::placeholder {
  color: #edf5f8;
}

.footer-blog-img {
  width: 90px;
  height: 90px;
}
.footer-blog-img img {
  height: 100%;
  object-fit: cover;
}

.footer-blog-txt {
  width: calc(100% - 120px);
  color: #fff;
}
.footer-blog-txt p a {
  font-size: 20px;
  color: #fff;
}
.footer-blog-txt p a:hover {
  color: #23cc88;
}

.bottom-footer {
  background: #fff;
}

.bottom-footer-social {
  color: #717171;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
}

.footer-links ul li {
  margin-bottom: 10px;
  transition: all 0.3s;
}

.footer-links ul li:hover {
  padding-left: 5px;
}

.branding-theme {
  color: #23cc88;
}

.footer-single-info.px-30 {
  padding-right: 0;
}

/*
************
*************************
18. Class Details
******************************************************* 
*************************************************************** */
.class-details-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #00394f;
}

.class-details-info {
  border-bottom: 1px solid rgba(113, 113, 113, 0.2);
}

.class-details-video {
  background-size: cover;
}

.class-comment-title {
  font-size: 24px;
  font-weight: 700;
  color: #00394f;
  line-height: 1.3;
}

.class-comment {
  display: flex;
  border: 1px solid #e9e9e9;
  padding: 40px;
}

.class-comment-img {
  width: 70px;
  height: 70px;
}
.class-comment-img img {
  border-radius: 50%;
}

.class-comment-txt {
  width: calc(100% - 100px);
}

.class-comment-username {
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  color: #00394f;
}

.class-comment-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.class-comment-actions a:hover {
  color: #23cc88;
}

.product-details-bottom-part .contact-form label {
  color: #00394f;
  font-weight: 500;
}

.class-comment-single-action {
  color: #717171;
  margin-bottom: -3px;
}

.comment-textarea {
  height: 200px;
}

.sidebar-box {
  border: 1px solid #e9e9e9;
}

.sidebar-title {
  font-size: 24px;
  font-weight: 700;
  color: #00394f;
}

.sidebar-search-box {
  display: flex;
  border: 1px solid #e9e9e9;
  transition: 0.3s;
}
.sidebar-search-box:focus-within {
  border-color: #23cc88;
}

.sidebar-search-input {
  width: 100%;
  height: 60px;
  font-size: 16px;
}

.sidebar-search-btn {
  font-size: 18px;
}
.sidebar-search-btn i {
  color: #23cc88;
}

.sidebar-class-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 36px;
  color: #717171;
  position: relative;
}
.sidebar-class-category:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-55%);
  width: 15px;
  height: 15px;
  background: #f3f3f4;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  transition: 0.3s;
}
.sidebar-class-category:hover:after {
  background: #e9e9e9;
}

.class-thumb {
  width: 60px;
}
.class-thumb:hover img {
  filter: grayscale(50%);
}

.class-thumb img {
  height: 100%;
  object-fit: cover;
}

.sidebar-class-txt {
  width: calc(100% - 80px);
}

.sidebar-class-title {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #00394f;
  transition: 0.3s;
}
.sidebar-class-title:hover {
  color: #23cc88;
}

.sidebar-sub-txt {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #717171;
}

.sidebar-box .checkbox-lists li {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar-box .checkbox-lists li:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar-box .checkbox-lists input[type="checkbox"] {
  display: none !important;
}

.sidebar-box .checkbox-lists label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}

.widget .site-checkbox-lists input[type="checkbox"]:checked + label {
  color: #000;
  text-shadow: 0px 0px 0px;
}

.sidebar-box .checkbox-lists label span,
.termscheck label span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15px;
  flex: 0 0 15px;
  max-width: 15px;
  width: 100%;
  height: 15px;
  border: 1px solid #e9e9e9;
  background-color: #f3f3f4;
  margin-right: 15px;
  top: -1px;
  border-radius: 2px;
}

.sidebar-box .checkbox-lists label span::before,
.termscheck label span::before {
  position: relative;
  font-family: "IcoFont";
  font-size: 0.5rem;
  content: "\eed6";
  line-height: 1;
  left: 0.5px;
  opacity: 0;
  font-weight: 900;
  font-size: 10px;
}

.sidebar-box .checkbox-lists input[type="checkbox"]:checked + label span,
.termscheck input[type="checkbox"]:checked + label span {
  background-color: #23cc88;
}

.sidebar-box
  .checkbox-lists
  input[type="checkbox"]:checked
  + label
  span::before,
.termscheck input[type="checkbox"]:checked + label span::before {
  color: #fff;
  opacity: 1;
}

.sidebar-box .checkbox-lists ul.children {
  display: none;
}

.sidebar-box .checkbox-lists .children {
  padding-left: 0;
  margin-left: 1.75rem;
}

.sidebar-box .checkbox-lists .children {
  width: 100%;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

span.subDropdown.plus:before {
  content: "\f067";
  position: absolute;
  color: #717171;
  top: 2px;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  font-size: 14px;
  margin-right: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  margin-left: 5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
}

.sidebar-box .checkbox-lists input[type="checkbox"]:checked + label span,
.termscheck input[type="checkbox"]:checked + label span {
  background-color: #23cc88;
  border-color: transparent;
}

.subDropdown.plus {
  width: 16px;
  height: 23px;
  display: inline-block;
}

.def-sidebar ul li:not(:last-child) a.product_cat {
  margin-bottom: 10px;
}

.termscheck input {
  display: none;
}

.termscheck label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.class-details-teacher-name {
  font-size: 18px;
  color: #00394f;
}

.about-class {
  font-size: 18px;
  font-weight: 400;
}

/*
************
*************************
19. Staff Details
******************************************************* 
*************************************************************** */
.staff-details-title {
  font-size: 24px;
  font-weight: 700;
  color: #00394f;
}

.staff-position {
  font-size: 16px;
  line-height: 100%;
}

.staff-details-txt {
  line-height: 29px;
}

.staff-details-img img {
  max-height: 700px;
  object-fit: cover;
  object-position: top center;
}

/*
************
*************************
20. Shop Page
******************************************************* 
*************************************************************** */
.shop-control-btn {
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  color: transparent;
  background: #717171;
  background-clip: text;
}
.shop-control-btn.active {
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  background-clip: text;
}

.shop-control-form {
  max-width: 85px;
  height: 30px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  font-size: 14px;
  color: #717171;
  padding: 0 5px;
  outline: none;
}
.shop-control-form:focus {
  border-color: #23cc88;
}

.def-pagination {
  gap: 10px;
}

.pagination-btn {
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  font-size: 16px;
  color: #717171;
  transition: 0.3s;
}
.pagination-btn:hover {
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  color: #fff;
}
.pagination-btn.active {
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  color: #fff;
}

.shop-card:hover .shop-card-overlay {
  top: 0;
  opacity: 1;
}

.shop-card-img {
  position: relative;
  overflow: hidden;
}

.shop-card-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 57, 79, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in;
  opacity: 0;
}

.shop-card-buy-now-btn {
  text-align: center;
  width: 65px;
  height: 65px;
  line-height: 60px;
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  border-radius: 5px;
}

.shop-card-txt {
  text-align: center;
}

.shop-card-title {
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  color: #00394f;
}
.shop-card-title:hover {
  color: #23cc88;
}

.shop-card-rating {
  display: flex;
  justify-content: center;
}

.shop-card-star {
  font-size: 18px;
  line-height: 100%;
  color: #e9e9e9;
}
.shop-card-star.filled {
  color: #ffc000;
}

.shop-card-price {
  font-size: 16px;
  line-height: 100%;
  font-weight: 700;
  color: #717171;
}

.shop-card-discount {
  font-weight: 400;
  text-decoration: line-through;
}

.shop-details-share a i {
  font-size: 18px;
}

.shop-details-lg-img.slick-slide {
  border: 1px solid #e9e9e9;
  padding: 70px;
}

.pl-50 {
  padding-left: 50px;
}

/*
************
*************************
21. Shop Details
******************************************************* 
*************************************************************** */
.shop-slick-prev {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  color: #798795;
  font-size: 20px;
  z-index: 5;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.shop-slick-prev:hover,
.shop-slick-prev:focus {
  color: #fff;
}

.shop-slick-next {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  color: #798795;
  font-size: 20px;
  z-index: 5;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.shop-slick-next:hover,
.shop-slick-next:focus {
  color: #fff;
}

.shop-details-sm-img {
  border: 1px solid transparent;
  cursor: pointer;
}

.shop-details-sm-images .slick-slide {
  border-color: #e9e9e9;
  border-right: 0;
}
.shop-details-sm-images:hover .shop-slick-prev {
  left: -20px;
  opacity: 1;
  visibility: visible;
}
.shop-details-sm-images:hover .shop-slick-next {
  right: -20px;
  opacity: 1;
  visibility: visible;
}

.slick-arrow i {
  font-weight: 700;
}

.shop-details-product-title {
  font-size: 52px;
  line-height: 1.3;
  font-weight: 700;
  color: #00394f;
}

.shop-details-price {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  color: #00394f;
  margin-bottom: 0;
}

.shop-details-discount {
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
  color: #717171;
}

.product-details-bottom-part {
  border: 1px solid #e9e9e9;
}

.product-details-btn {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00394f;
  background: #e9e9e9;
  padding: 0 30px;
  margin-bottom: 10px;
}
.product-details-btn.active {
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  color: #fff;
}
.product-details-btn:hover {
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  color: #fff;
}

.product-information-list {
  font-size: 16px;
  line-height: 30px;
  color: #00394f;
  border-bottom: 1px solid #e9e9e9;
}
.product-information-list:last-child {
  border-bottom: 0;
}

.product-information-list-subject {
  min-width: 120px;
}

#inputStar {
  width: max-content;
  font-size: 14px;
  line-height: 100%;
}

.shop-details-sm-images .slick-list {
  padding-right: 1px !important;
}

.product-information-list {
  padding: 10px 0;
}
.product-information-list:last-child {
  padding-bottom: 0;
}
.product-information-list:first-child {
  padding-top: 0;
}

.nav.product-details-nav li:not(:last-child) {
  margin-right: 10px;
}

.shop-details-cart-buttons {
  gap: 30px;
}
.shop-details-cart-buttons .quantity {
  width: 170px;
}
.shop-details-cart-buttons .quantity-input {
  height: 60px;
  line-height: 60px;
  font-weight: 600;
  color: #00394f;
  font-size: 18px;
}
.shop-details-cart-buttons .quantity-nav {
  height: 100%;
  padding: 0 15px;
}
.shop-details-cart-buttons .quantity-btn {
  height: 60px;
  line-height: 60px;
  font-size: 14px;
}

.shop-details-category p strong {
  text-transform: uppercase;
  color: #00394f;
  margin-right: 5px;
}
.shop-details-category p a {
  display: inline-block;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  background-color: #e9e9e9;
  padding: 0 10px;
  color: #00394f;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 10px;
}
.shop-details-category p a:hover {
  background-color: #23cc88;
  color: #fff;
}
.shop-details-category > p {
  margin-bottom: 5px;
}

.product-description-title {
  font-size: 20px;
}

.availability {
  font-size: 24px;
}

.shop-details-sm-images .slick-list {
  border-right: 1px solid #e9e9e9;
}

/*
************
*************************
22. Checkout
******************************************************* 
*************************************************************** */
.panel {
  border: 1px solid #e9e9e9;
}

.panel-heading {
  height: 70px;
  border-bottom: 1px solid #e9e9e9;
}

.panel-heading-txt {
  font-size: 24px;
  line-height: 70px;
  font-weight: 700;
  color: #00394f;
}

.checkout-label {
  font-weight: 500;
  color: #00394f;
}

.checkout-form {
  height: 60px;
  width: 100%;
  background-color: transparent;
  color: #717171;
  font-size: 16px;
  padding: 0 25px;
  border: 1px solid #e9e9e9;
  border-radius: 0px;
}
.checkout-form:invalid {
  color: rgba(113, 113, 113, 0.75);
}
.checkout-form:invalid option {
  color: #717171;
}
.checkout-form:focus {
  background: transparent;
  border-color: #23cc88;
}

.panel-body .form-group .nice-select {
  line-height: 60px;
  margin-bottom: 20px;
  padding-right: 40px;
}

.panel-body .form-group .nice-select::after {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  height: 8px;
  right: 25px;
  width: 8px;
}
.panel-body .form-group .nice-select .option {
  line-height: 60px;
  min-height: 60px;
  outline: none;
  padding-left: 25px;
  padding-right: 25px;
}
.panel-body .form-group .nice-select .list {
  border-radius: 0;
  width: 100%;
}

.billing-details-title {
  border-bottom: 1px solid #e9e9e9;
}

.billing-details {
  border-bottom: 1px solid #e9e9e9;
}

.billing-details-list {
  min-width: 80px;
}

.kitba-checkout-form-main-space {
  padding: 40px;
}

/*
************
*************************
23. Cart
******************************************************* 
*************************************************************** */
.cart-table {
  border-color: #e9e9e9;
}
.cart-table thead tr {
  border-top: 0;
}
.cart-table tr > *:first-child {
  border-left: 0;
}
.cart-table tr > *:last-child {
  border-right: 0;
}
.cart-table th {
  text-align: center;
  padding: 20px 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00394f;
  border-top: 0;
}
.cart-table td {
  vertical-align: middle;
  text-align: center;
  padding: 30px;
  font-size: 16px;
  color: #717171;
  white-space: nowrap;
}

.cart-txt {
  text-align: left;
  height: 100%;
}
.cart-txt > * {
  white-space: pre-wrap;
}

.cart-product-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #00394f;
}
.cart-product-title:hover {
  color: #23cc88;
}

.cart-action-btn {
  padding: 5px 0;
  font-size: 14px;
  line-height: 100%;
  color: #00394f;
}
.cart-action-btn:hover,
.cart-action-btn:focus {
  color: #23cc88;
}

.quantity {
  position: relative;
  width: 90px;
}

.quantity-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  border: 1px solid #e9e9e9;
  border-radius: 0px;
}

.quantity-btn {
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  padding: 0 15px;
  color: #717171;
  cursor: pointer;
}

.quantity-input {
  text-align: center;
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0;
  color: #00394f;
  appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.cart-table-bottom {
  border-top: 0;
}

.cart-label {
  font-size: 16px;
  line-height: 100%;
  color: #00394f;
  font-weight: 500;
}

.panel-heading .panel-heading-txt {
  padding: 0 30px;
}

.panel .panel-body {
  padding: 30px;
}

.text-grandtotal .f-right {
  float: right;
  color: #717171;
}
.text-grandtotal h4 {
  font-size: 20px;
}

.panel-heading-txt-check {
  font-size: 24px;
  line-height: 70px;
  font-weight: 700;
  color: #00394f;
}

/*
************
*************************
24. Blog Page
******************************************************* 
*************************************************************** */
.single-blog {
  border: 1px solid #e9e9e9;
}
.single-blog:hover .blog-slider-btn {
  left: 40px;
  opacity: 1;
  visibility: visible;
}
.single-blog:hover .blog-slider-btn.btn-next {
  right: 40px;
  left: auto;
}

.blog-page-blog-title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  color: #00394f;
}
.blog-page-blog-title:hover,
.blog-page-blog-title:focus {
  color: #23cc88;
}

.blog-slider-btn {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  color: #fff;
  background: #23cc88;
  border-radius: 50%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.blog-slider-btn.btn-next {
  left: auto;
  right: 20px;
}
.blog-slider-btn:hover {
  color: #23cc88;
  background-color: #fff;
}

.blog-page-video {
  width: 100%;
  height: auto;
}

.blog-img-txt {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.blog-details-video {
  background: url(../images/blog-img-5.jpg) center center no-repeat;
  background-size: cover;
  text-align: center;
}

.blog-video-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  background: #fff;
  color: red;
  font-size: 26px;
  position: relative;
  z-index: 2;
  display: inline-block;
  border-radius: 50%;
}
.blog-video-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  animation: 1s video 1.5s linear infinite;
  z-index: -1;
}
.blog-video-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  animation: 1s video linear infinite;
  z-index: -1;
}
.blog-video-btn:hover {
  color: red;
}

@keyframes video {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.popular-post-title {
  color: #00394f;
}

.blog-sidebar-box {
  border-radius: 0;
  border: 1px solid #e9e9e9;
  margin-top: 40%;
}

.blog-sidebar-title-box {
  border-bottom: 1px solid #e9e9e9;
  height: 70px;
}

.blog-sidebar-title {
  font-size: 24px;
  line-height: 70px;
  font-weight: 700;
  color: #00394f;
}

.blog-search-form {
  background: #fafafa;
  border-radius: 5px;
  overflow: hidden;
}

.blog-search {
  width: 100%;
  height: 50px;
  font-size: 16px;
}

.blog-sidebar-link {
  font-size: 16px;
  line-height: 100%;
  color: #717171;
}
.blog-sidebar-link:hover {
  color: #23cc88;
}

.popular-post:hover .popular-post-title {
  color: #23cc88;
}

.popular-post-txt {
  color: #717171;
}

.popular-post-date {
  font-size: 15px;
}

.popular-post-title {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  transition: 0.3s;
}
.faci-box-area {
  width: 100%x;
  min-height: 90px;
  background: linear-gradient(15deg, #025031, #16c511);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}
.faci-box-area i {
  color: #fff;
  font-size: 30px;
}
.fa-person-walking {
  font-size: 36px !important;
}

/* .popular-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.ig-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.ig-posts a {
  flex: 0 0 calc(33% - 0px);
  max-width: calc(33% - 10px);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-btn {
  height: 47px;
  line-height: 47px;
  font-size: 15px;
  color: #fff;
  border: 1px solid #046d48;
  background: linear-gradient(145deg, #04a56d, #046d48);
  border-radius: 0px;
  position: relative;
  z-index: 2;
  padding: 0 25px;
  border-radius: 10px;
  transition: all 0.5s;
}
.tag-btn:hover {
  background: transparent;
  border: 1px solid #046d48;
  border-radius: 8px;
  color: #046d48;
}

.blog-details-bottom {
  border-top: 1px solid #e9e9e9;
}

.blog-tag-btn {
  height: 40px;
  line-height: 38px;
  font-size: 16px;
  color: #00394f;
  padding: 0 15px;
  border: 1px solid #e9e9e9;
  position: relative;
  z-index: 2;
}
.blog-tag-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
.blog-tag-btn:hover {
  color: #fff;
}
.blog-tag-btn:hover:after {
  opacity: 1;
}

.blog-social-btn {
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border-radius: 2px;
}
.blog-social-btn:hover {
  color: #fff;
  box-shadow: 0px 5px 20px 0px rgba(113, 113, 113, 0.3);
}

.blog-admin {
  box-shadow: 0px 0px 5px 0px rgba(113, 113, 113, 0.1);
  border: 1px solid #e9e9e9;
}

.admin-name {
  font-size: 20px;
  line-height: 100%;
  font-weight: 700;
  color: #00394f;
  display: block;
}

.admin-social {
  font-size: 16px;
  line-height: 100%;
  display: flex;
  gap: 25px;
}

.blog-comment-panel {
  box-shadow: 0px 0px 5px 0px rgba(113, 113, 113, 0.1);
  border: 1px solid #e9e9e9;
}

.blog-panel-title {
  height: 70px;
  border-bottom: 1px solid #e9e9e9;
}
.blog-panel-title h3 {
  font-size: 24px;
  line-height: 70px;
  font-weight: 700;
  color: #00394f;
}

.blog-single-comment {
  border-bottom: 1px solid #e9e9e9;
}
.blog-single-comment:last-child {
  border-bottom: 0;
}

.blog-comment-avatar {
  width: 80px;
  height: 80px;
}

.blog-comment-txt {
  width: calc(100% - 100px);
}

.blog-comment-name {
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  color: #00394f;
}

.blog-comment-date {
  display: block;
  font-size: 16px;
  line-height: 100%;
}

.blog-comment-reply {
  line-height: 100%;
  font-weight: 700;
  color: #00394f;
  margin-bottom: 15px;
}
.blog-comment-reply i {
  display: inline-block;
  margin-right: 5px;
}
.blog-comment-reply:hover {
  color: #23cc88;
}

.blog-comment-textarea {
  height: 130px;
}

.blog-card .part-img {
  overflow: hidden;
  position: relative;
}

.blog-card .part-img img {
  transition: all 0.3s;
}

.blog-card:hover .part-img img {
  transform: scale(1.1);
}

span.lv-part-blog-calendar-date {
  position: absolute;
  left: 20px;
  font-size: 16px;
  top: 20px;
  background: #5ccd5c;
  color: #fff;
  line-height: 1;
  padding: 10px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

span.lv-part-blog-calendar-date i {
  margin-right: 6px;
}

h4.footer-info-txt a:hover {
  color: #23cc88;
}

.blog-image a {
  display: block;
}

.single-blog-info span > a:hover {
  color: #23cc88;
}

.video-image {
  position: relative;
  z-index: 1;
}
.video-image .blog-video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.video-image .blog-video-btn i {
  transition: 0.3s;
}
.video-image .blog-video-btn:hover i {
  color: #23cc88;
}

.ig-posts a:hover img {
  filter: contrast(0.7);
}

.single-blog-txt {
  padding: 50px 40px;
}

.blog-page-blog-single-title {
  font-size: 42px;
  font-weight: 700;
  color: #00394f;
}

.blog-quote-txt-p {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 400;
}

.blog-quote-txt span.d-block {
  font-size: 20px;
}

.blog-quote-wrapper {
  padding: 40px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.blog-nav-title {
  transition: 0.3s;
}
.blog-nav-title:hover {
  color: #23cc88;
}

.blog-admin {
  padding: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.admin-name:hover {
  color: #23cc88;
}

.blog-details-bottom.d-flex {
  padding-top: 40px;
  padding-bottom: 20px;
}

.blog-quote-txt {
  position: relative;
  padding-left: 85px;
}

.blog-quote-txt .blog-quote-i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 60px;
  color: #fff;
  line-height: 1;
}

/*
************
*************************
25. Contact Page
******************************************************* 
*************************************************************** */
.contact-page-title {
  font-size: 36px;
  font-weight: 700;
  color: #00394f;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-col-6 {
  width: calc(50% - 10px);
}

.contact-col {
  width: 100%;
}

.contact-textarea {
  height: 195px;
}

.contact-info-txt {
  font-size: 16px;
  color: #717171;
  border-bottom: 1px solid #205468;
  padding-bottom: 15px;
}
.contact-info-txt:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  width: 25px;
}

.map {
  width: 100%;
  height: 520px;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.contact-form input {
  height: 60px;
  width: 100%;
  background-color: transparent;
  color: #0e1133;
  font-size: 16px;
  padding: 0 25px;
  border: 1px solid #e9e9e9;
}
.contact-form input:focus {
  border-color: #23cc88;
}
.contact-form textarea {
  height: 200px;
  width: 100%;
  background-color: transparent;
  color: #0e1133;
  font-size: 16px;
  padding: 25px;
  border: 1px solid #e9e9e9;
}
.contact-form textarea:focus {
  border-color: #23cc88;
}
.contact-form textarea::placeholder {
  font-size: 16px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-60 {
  margin-left: 60px;
}

.pt-190 {
  padding-top: 190px;
}

.contact-titletext {
  font-size: 39px;
  color: #00394f;
  line-height: 1.2;
  font-weight: 700;
}

.contact-subtext {
  font-size: 18px;
}

.contact-info-wrapper ul li {
  display: flex;
  align-items: center;
  color: #00394f;
  font-size: 20px;
}
.contact-info-wrapper ul li i {
  width: 65px;
  height: 65px;
  background-color: #f6f7f8;
  text-align: center;
  line-height: 65px;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 25px;
  color: #23cc88;
  transition: 0.4s;
}
.contact-info-wrapper ul li a {
  transition: 0.3s;
}
.contact-info-wrapper ul li a:hover {
  color: #23cc88;
}
.contact-info-wrapper ul li:hover i {
  background-color: #23cc88;
  color: #fff;
}
.contact-info-wrapper ul li:not(:last-child) {
  margin-bottom: 25px;
  border-bottom: 1px solid #e7e9ee;
  padding-bottom: 25px;
}

.contact-info-content-text {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: #53545b;
}

/*
************
*************************
26. Shop
******************************************************* 
*************************************************************** */
.filter-widget-title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}

.filter-widget-title:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  right: 0;
  top: 0;
  font-weight: 300;
  color: #00394f;
  transition: 0.3s;
  transform: rotate(180deg);
}

.child-content-hidden .filter-widget-title::before {
  transform: rotate(0deg);
}

.filter-widget-search input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e9e9e9;
  padding: 0 10px;
  padding-right: 30px;
  outline: none;
}

.filter-widget-search button {
  position: absolute;
  right: 10px;
  top: 12px;
}

.filter-widget-search {
  position: relative;
}

.filter-widget .category-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-widget .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-widget .category-sizes {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-widget .category-ratings {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-widget .category-brands {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

input.check-box {
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  top: 5px;
  font-size: 15px;
  margin-right: 8px;
  background: #fbfbfb;
}

input.check-box[type="checkbox"]:checked {
  border: none;
  background-color: #00394f;
  color: #fff;
}

input.check-box[type="checkbox"]:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  line-height: 16px;
  top: 0;
  left: 2px;
  font-size: 14px;
}

input.radio-box[type="radio"] {
  border: 1px solid #e9e9e9;
  border-radius: 9px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  top: 5px;
  font-size: 15px;
  margin-right: 8px;
}

input.radio-box[type="radio"]:checked::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background: #00394f;
  border-radius: 50%;
}

.category-tags a {
  padding: 0 5px;
  flex-grow: 1;
  max-width: 110px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.category-tags a:hover {
  color: #00394f;
}

.sidebar-widget-wrapper {
  position: sticky;
  top: 90px;
}

.product-filters {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 10px;
  background: #fff;
}

.filter-widget {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-hidden {
  display: none;
}

.radio-star i.fas {
  color: #00394f;
}

.shop-main-wrapper-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sorting-type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sorting-list {
  border: 1px solid #e9e9e9;
  padding: 0 15px;
  min-width: 130px;
}

.sorting-type span {
  color: #00394f;
}

.sorting-list span {
  color: #53545b;
}

.sorting-list:after {
  right: 15px;
}

.sort-type-filter {
  display: flex;
  align-items: center;
}

.action-item-filter {
  margin-left: 20px;
}

.shop-main-wrapper .products-wrapper > div {
  width: calc((100% - 90px) / 4);
}

.product-details-nav .nav-tabs {
  display: flex;
  gap: 20px;
}

.product-details-nav .nav-tabs > li {
  width: calc((100% - 60px) / 4);
}

.product-details-nav .nav-tabs > li img {
  width: 100%;
}

.product-details-tab .tab-content .tab-pane img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.product-details-tab .tab-content {
  margin-bottom: 20px;
}

.product-quantity-cart {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-details-tab-wrapper .nav-tabs .nav-link:not(.active) {
  opacity: 0.8;
}

.product-side-info .product-name {
  font-size: 40px;
}

.product-side-info .product-price {
  font-size: 20px;
  color: #00394f;
  font-weight: 600;
}

.product-side-info .border-btn {
  height: 60px;
  line-height: 58px;
}

.product__details__tag a {
  padding: 0 10px;
  background: #777;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  border-radius: 3px;
}

.product__details__tag a:hover {
  background: #23cc88;
  color: #fff;
}

.available-sizes {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.product-details-tab .tab-content .tab-pane {
  width: 100%;
  padding-top: 110%;
  position: relative;
}

.product-details-nav .nav-item {
  position: relative;
  border: 0;
  font-size: 16px;
  margin-right: 0px;
  font-weight: 600;
  color: #53545b;
}

.product-details-nav .nav-item.active {
  color: #00394f;
  font-weight: 600;
}

.product-details-nav .nav-item::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: #00394f;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
}

.product-details-nav .nav-item.active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #00394f;
  bottom: 0;
  left: 0;
  right: 0;
}

.product_info-faq-area .nav-tabs {
  border-bottom: 1px solid #777;
}

.course-review-item {
  display: flex;
  align-items: normal;
}

.course-review-list {
  margin-left: 20px;
}

.course-review-list span {
  color: #00394f;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
}

.course-start-icon i {
  color: #23cc88;
  font-size: 13px;
}

.course-start-icon {
  margin-bottom: 10px;
}

.comment-title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.comment-title p {
  color: #454545;
}

.comment-rating span {
  font-size: 15px;
  color: #454545;
  margin-right: 5px;
}

.comment-rating ul li {
  display: inline-block;
}

.comment-rating ul li a {
  font-size: 14px;
  color: #23cc88;
}

.comment-rating ul {
  display: inline-block;
}

.comment-agree input {
  margin: 0;
  appearance: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid #e9e9e9;
  border-radius: 2px;
  outline: none;
}

.comment-agree label {
  margin-left: 5px;
  font-size: 15px;
  color: #454545;
}

.comment-agree input::placeholder {
  color: #53545b;
  font-size: 14px;
  opacity: 1;
}

.comment-input input {
  height: 60px;
  width: 100%;
  background: #f8f8f9;
  border: none;
  padding: 15px 20px;
  border-radius: 4px;
  outline: 0;
}

.comment-input input::placeholder {
  color: #53545b;
  font-size: 14px;
  opacity: 1;
}

.comment-textarea {
  height: 170px;
  width: 100%;
  background: #f8f8f9;
  border: none;
  padding: 15px 20px;
  border-radius: 4px;
  resize: none;
  outline: 0;
}

.comment-textarea::placeholder {
  color: #53545b;
  font-size: 14px;
  opacity: 1;
}

.product-available-sizes span {
  border: 1px solid #e9e9e9;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  border-radius: 3px;
}

.cart-area .table-content table {
  background: #ffffff;
  border-color: #edeef2;
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

.cart-area .table-content .product-quantity {
  float: none;
}

.cart-area .table-content table td.product-name {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.cart-area .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #edeef2;
}

.cart-area .table-content table td.product-name a:hover {
  color: #00394f;
}

.cart-area .table-content table td {
  border-top: medium none;
  padding: 20px 10px;
  vertical-align: middle;
  font-size: 16px;
}

.cart-area .table-content table th,
.cart-area .table-content table td {
  border-bottom: 1px solid #edeef2;
  border-right: 1px solid #edeef2;
}

.cart-area .table td,
.cart-area .table th {
  border-top: 1px solid #edeef2;
}

.cart-area .table-content table td.product-subtotal {
  font-size: 16px;
}

.cart-area .table-content table td .cart-plus-minus {
  float: none;
  margin: 0 auto;
}

.cart-area .coupon-all {
  margin-top: 50px;
}

.cart-area .coupon {
  float: left;
  gap: 15px;
  flex-wrap: wrap;
}
.cart-area #coupon_code {
  height: 50px;
  border: 1px solid #edeef2;
  padding: 0 15px;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.cart-area #coupon_code:focus {
  border-color: #00394f;
}

.cart-area .coupon2 {
  float: right;
}

.cart-area .cart-page-total {
  padding-top: 50px;
}

.cart-area .cart-page-total > h2 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-area .cart-page-total > ul {
  border: 1px solid #edeef2;
}

.cart-area .cart-page-total > ul > li {
  list-style: none;
  font-size: 15px;
  color: #575757;
  padding: 14px 30px;
  border-bottom: 1px solid #edeef2;
  font-weight: 400;
}

.cart-area .cart-page-total ul > li > span {
  float: right;
}

.cart-area .cart-page-total li:last-child {
  border-bottom: 0;
}

.cart-area td.product-thumbnail img {
  width: 125px;
}

.cart-area .product-quantity-form {
  margin: auto;
  width: 122px;
  height: 58px;
  border: 1px solid #e9e9e9;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.cart-area .product-quantity-form:hover {
  border-color: #00394f;
}

.cart-area .cart-plus,
.cart-area .cart-minus {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  background: transparent;
  border: none;
  outline: none;
}

.cart-area .cart-plus:hover,
.cart-area .cart-minus:hover {
  cursor: pointer;
  color: #00394f;
  background: transparent;
}

.cart-area .cart-plus {
  left: auto;
  right: 0;
}

.cart-area .cart-input {
  height: 58px;
  width: 32px;
  text-align: center;
  font-size: 14px;
  border: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 -3px;
  padding-bottom: 4px;
  background: transparent;
}

.cart-area .cart-input:focus {
  outline: none;
}

.cart-area .coupon .fill-btn {
  height: 50px;
  line-height: 48px;
}

.cart-area .coupon2 .fill-btn {
  height: 50px;
  line-height: 48px;
}

.product-quantity a {
  white-space: nowrap;
}

.coupon-accordion h3 {
  background-color: #f6f6f6;
  border-top: 3px solid #00394f;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 25px;
  padding: 1em 2em 1em 3.5em;
  position: relative;
  width: auto;
}

.coupon-accordion h3::before {
  content: "\f07b";
  left: 15px;
  top: 13px;
  position: absolute;
  color: #575757;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
}

.coupon-accordion span {
  color: #575757;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.coupon-accordion span:hover,
p.lost-password a:hover {
  color: #00394f;
}

.coupon-content {
  border: 1px solid #e9e9e9;
  display: none;
  margin-bottom: 20px;
  padding: 30px;
}

.coupon-info p.coupon-text {
  margin-bottom: 15px;
}

.coupon-info p {
  margin-bottom: 0;
}

.coupon-info p.form-row-first label,
.coupon-info p.form-row-last label {
  display: block;
  color: #00394f;
}

.coupon-info p.form-row-first label span.required,
.coupon-info p.form-row-last label span.required {
  color: #00394f;
  font-weight: 700;
}

.coupon-info p.form-row-first input,
.coupon-info p.form-row-last input {
  border: 1px solid #e9e9e9;
  height: 60px;
  line-height: 60px;
  margin: 0 0 14px;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.coupon-info p.form-row-first input:focus,
.coupon-info p.form-row-last input:focus {
  border-color: #00394f;
}

.coupon-info p.form-row input[type="submit"]:hover,
p.checkout-coupon input[type="submit"]:hover {
  background: #3e976c none repeat scroll 0 0;
}

.coupon-info p.form-row input[type="checkbox"] {
  position: relative;
  top: 2px;
}

.form-row > label {
  margin-top: 15px;
  margin-left: 15px;
  color: #575757;
}

.buttons-cart input,
.coupon input[type="submit"],
.buttons-cart a,
.coupon-info p.form-row input[type="submit"] {
  background: #252525 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  display: inline-block;
  float: left;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

p.lost-password {
  margin-top: 15px;
}

p.lost-password a {
  color: #6f6f6f;
}

p.checkout-coupon input[type="text"] {
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  width: 100%;
  border: 1px solid #e9e9e9;
  margin-bottom: 15px;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

p.checkout-coupon input[type="text"]:focus {
  border-color: #e9e9e9;
}

.coupon-checkout-content {
  display: none;
}

.checkbox-form .ship-different-title {
  border-bottom: 1px solid #e9e9e9;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.country-select {
  margin-bottom: 30px;
  position: relative;
}

.country-select select {
  width: 100%;
  background-color: transparent;
  border: 1px solid #e9e9e9;
  padding: 0 10px;
  height: 50px;
}

.country-select label,
.checkout-form-list label {
  color: #00394f;
  display: block;
  margin: 0 0 5px;
}

.country-select label span.required,
.checkout-form-list label span.required {
  color: #00394f;
}

.country-select .nice-select {
  border: 1px solid #e9e9e9;
  height: 60px;
  line-height: 60px;
  padding-left: 20px;
  width: 100%;
  color: #575757;
  margin-bottom: 20px;
}

.country-select .nice-select .list {
  width: 100%;
}

.checkout-form-list {
  margin-bottom: 30px;
}

.checkout-form-list label {
  color: #00394f;
}

.checkout-form-list input[type="text"],
.checkout-form-list input[type="password"],
.checkout-form-list input[type="email"] {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  height: 60px;
  line-height: 60px;
  padding: 0 0 0 20px;
  width: 100%;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.checkout-form-list input[type="text"]:focus,
.checkout-form-list input[type="password"]:focus,
.checkout-form-list input[type="email"]:focus {
  border-color: #e9e9e9;
}

.checkout-form-list input[type="text"]::-moz-placeholder,
.checkout-form-list input[type="password"]::-moz-placeholder,
.checkout-form-list input[type="email"]::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

.checkout-form-list input[type="text"]::placeholder,
.checkout-form-list input[type="password"]::placeholder,
.checkout-form-list input[type="email"]::placeholder {
  color: #575757;
  opacity: 1;
}

.checkout-form-list input[type="checkbox"] {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.create-acc label {
  color: #575757;
  display: inline-block;
}

.create-account {
  display: none;
}

.ship-different-title label {
  display: inline-block;
  margin-right: 10px;
}

.order-notes textarea {
  border: 1px solid #e9e9e9;
  height: 90px;
  padding: 15px;
  width: 100%;
  resize: none;
  padding-left: 20px;
  outline: none;
}

.order-notes textarea::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

.order-notes textarea::placeholder {
  color: #575757;
  opacity: 1;
}

#ship-box-info {
  display: none;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-default > .panel-heading {
  border-radius: 0;
}

.your-order {
  border: 2px solid #e9e9e9;
}

.your-order h3 {
  border-bottom: 1px solid #e9e9e9;
  font-size: 24px;
  margin: 0 0 20px;
  width: 100%;
  color: #00394f;
  font-weight: 700;
  line-height: 70px;
  padding: 0 40px;
}

.your-order-table {
  padding: 0 40px;
}
.your-order-table table {
  background: none;
  border: 0;
  width: 100%;
}

.payment-method {
  padding: 0 40px;
}

.your-order-table table th,
.your-order-table table td {
  border-bottom: 1px solid #e9e9e9;
  border-right: medium none;
  color: #575757;
  font-size: 16px;
  padding: 15px 0;
  text-align: left;
}
.your-order-table table th {
  border-top: medium none;
  color: #00394f;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.panel-body > p {
  color: #222;
}

.your-order-table table .shipping ul li input {
  position: relative;
}

.your-order-table table .shipping ul li label {
  color: #575757;
}

.your-order-table table .shipping th {
  vertical-align: top;
}

.your-order-table table .order-total th {
  border-bottom: 0;
}

.your-order-table table .order-total td {
  border-bottom: medium none;
}

.your-order-table table tr.order-total td span {
  color: #00394f;
  font-size: 18px;
  font-weight: 500;
}

.payment-method {
  margin-top: 20px;
}

.payment-method .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.payment-method .accordion-item {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #e9e9e9;
}

.payment-method .accordion-button {
  font-size: 18px;
  font-weight: 400;
  color: #00394f;
  padding: 23px 0;
  border: none;
}

.payment-method .accordion-button:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.payment-method .accordion-button::after {
  position: absolute;
  content: "\eac8";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "IcoFont";
  font-size: 16px;
  font-weight: 600;
  margin-left: 0;
  background-image: none;
}

.payment-method .accordion-button:not(.collapsed) {
  color: #00394f;
  background-color: #fff;
  box-shadow: none;
}

.payment-method .accordion-button:not(.collapsed)::after {
  content: "\eacb";
}

.payment-method .accordion-body {
  padding: 8px 0;
  padding-bottom: 40px;
}

.payment-method .accordion-collapse {
  border: none;
}

.panel-title > a {
  display: block;
}

.order-button-payment input {
  background: #232323 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 40px;
  margin: 0px 0 0;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.order-button-payment input:hover {
  background: #3e976c none repeat scroll 0 0;
}

.payment-method .btn-link {
  user-select: none;
  -moz-user-select: none;
  background: no-repeat;
  border: medium none;
  border-radius: 0;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 3px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.payment-method .card {
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 0;
  margin-bottom: 10px;
}

.payment-method .accordion .card:first-of-type {
  border: 1px solid #e9e9e9;
}

.card-header:first-child {
  border-radius: 0;
}

.payment-method .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e9e9e9;
}

.order-button-payment button {
  width: 100%;
}

.product-details-img {
  margin-right: 50px;
}

.product-details-img img {
  width: 100%;
}

.product-side-info .product-name {
  font-size: 38px;
}

.product-side-info .product-price {
  font-size: 22px;
  font-weight: 600;
  color: #23cc88;
}

.product-side-info p {
  margin-top: 30px;
  margin-bottom: 40px;
}

.product-quantity-cart {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product-quantity-cart .cart-minus {
  height: 55px;
  width: 55px;
  border: none;
}

.product-quantity-form .cart-plus {
  height: 55px;
  width: 55px;
  border: none;
}

.product-quantity-cart .cart-input {
  height: 55px;
  width: 55px;
  border: none;
  text-align: center;
}

.product-quantity-cart .product-quantity-form {
  border: 1px solid #e9e9e9;
  border-radius: 4px;
}

/*range slider css start*/
#slider-range {
  position: relative;
  margin-bottom: 25px;
}

.ui-widget.ui-widget-content {
  border: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: #fff;
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.004);
}

.ui-slider-horizontal {
  height: 6px;
}

.ui-widget-content {
  background: #f0f0f0;
}

.ui-widget-header {
  background: #222;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -5px;
}

.ui-slider .ui-slider-handle {
  height: 15px;
  width: 15px;
}

.ui-slider .ui-slider-handle:before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background: #222;
  left: 4.5px;
  top: 4.5px;
  border-radius: 50%;
}

.slider-range p {
  line-height: 1;
  margin-top: 25px;
  margin-bottom: 0;
}

.slider-range p label {
  font-size: 14px;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 7px;
}

.slider-range input {
  font-size: 14px;
  font-weight: 400;
  color: #6b6b6b;
  border: none;
  outline: none;
  background: none;
  margin-left: 10px;
  width: 100px;
}

.slider-active-2 .slider-pagination > * {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.slider-active-2 .slider-pagination > *:hover {
  background-color: #222;
}

.slider-active-2 .slider-pagination > *:hover i {
  color: #fff;
}

.ui-widget.ui-widget-content {
  border: none;
}

.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  background: #23cc88;
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.004);
}

.ui-slider-horizontal {
  height: 6px;
}

.ui-widget-content {
  background: #f0f0f0;
}

.ui-widget-header {
  background: #23cc88;
}

.amount-btn {
  color: #23cc88;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -5px;
}

.ui-slider .ui-slider-handle {
  height: 15px;
  width: 15px;
  -webkit-transition: all 0s linear 0s;
  -moz-transition: all 0s linear 0s;
  -ms-transition: all 0s linear 0s;
  -o-transition: all 0s linear 0s;
  transition: all 0s linear 0s;
}

.ui-slider .ui-slider-handle:before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background: #23cc88;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.sidebar-action {
  background: #fff;
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  width: 390px;
  padding: 30px 30px;
  transition: 0.6s;
  overflow-y: scroll;
}

.close-sidebar {
  background: #23cc88;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  color: #fff;
  position: absolute;
  right: 30px;
  top: 30px;
}

.sidebar-cart {
  right: -100%;
}

.sidebar-cart.cart-open {
  right: 0;
}

.sidebar-wishlist {
  right: -100%;
}

.sidebar-wishlist.wishlist-open {
  right: 0;
}

.sidebar-filter {
  right: -100%;
}

.sidebar-filter.filter-open {
  right: 0;
}

.sidebar-filter .product-filters {
  padding: 0px;
}

.sidebar-filter .filter-widget-title {
  font-size: 18px;
}

.sidebar-action-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.sidebar-list-item {
  display: flex;
  gap: 20px;
}

.sidebar-action-btn {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sidebar-action-btn a {
  width: 100%;
  flex-wrap: wrap;
  white-space: nowrap;
}

.sidebar-action-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-pricing span {
  font-size: 15px;
  font-weight: 500;
  color: #00394f;
  line-height: 1;
}

.sidebar-list-item {
  display: flex;
  gap: 20px;
  border-top: 1px solid #e9e9e9;
  padding-top: 20px;
  position: relative;
  padding-right: 20px;
}

.sidebar-list-item .product-image {
  min-width: 100px;
  height: 100px;
}

.sidebar-list-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-list-item .product-desc {
  padding: 0px 0 0px;
}

.sidebar-list-item .remove-item {
  position: absolute;
  right: 0;
  top: 20px;
  color: #00394f;
}

.product-price-total {
  padding-top: 20px;
  border-top: 1px solid #e9e9e9;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.product-price-total span {
  color: #00394f;
  font-weight: 500;
}

.sidebar-action-btn a {
  flex-grow: 1;
  height: 60px;
  line-height: 58px;
}

.m-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mx-30 {
  margin-left: 30px;
  margin-right: 30px;
}

/*
************
*************************
27. Sign
******************************************************* 
*************************************************************** */
.signup-wrapper {
  box-shadow: 0 5px 29px rgba(0, 0, 0, 0.1);
}

.signup-wrapper-header {
  padding: 60px 40px;
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  color: #fff;
}

.signup-wrapper-body {
  padding: 40px;
  padding-bottom: 50px;
}

.signup-body-subtitle {
  text-transform: uppercase;
  font-size: 14px;
}

.signup-body-title {
  font-size: 36px;
  color: #00394f;
  font-weight: 700;
  line-height: 1.2;
}

.signtext a {
  color: #23cc88;
  display: inline-block;
}
.signtext a:hover {
  color: #00394f;
}

.sign-single-input label {
  font-size: 18px;
  color: #00394f;
  margin-bottom: 10px;
}

.signup-title {
  font-size: 52px;
  text-transform: uppercase;
}

.sign-input {
  position: relative;
  z-index: 1;
}
.sign-input input {
  width: 100%;
  height: 60px;
  border: 1px solid #e9e9e9;
  padding: 0 55px;
  padding-right: 25px;
}
.sign-input input:focus {
  border-color: #23cc88;
}
.sign-input i {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #23cc88;
}

.gbutton {
  border: 1px solid #e9e9e9;
  height: 60px;
  line-height: 60px;
  color: #23cc88;
  transition: all 0.3s;
  height: 60px;
  display: inline-block;
  padding: 0 25px;
  position: relative;
  z-index: 1;
  min-width: 290px;
  text-align: start;
  text-transform: uppercase;
}
.gbutton i {
  font-size: 30px;
  display: inline-block;
  transform: translateY(3px);
  margin-right: 35px;
  color: #fff;
}
.gbutton:hover {
  color: #fff;
}
.gbutton:hover:before {
  width: 100%;
  border-radius: 0;
}
.gbutton:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 100%;
  z-index: -1;
  background: linear-gradient(145deg, #8ecf35, #23cc88);
  content: "";
  border-radius: 0 30px 30px 0;
  transition: all 0.3s;
}

.sign-buttons .def-btn {
  padding: 0 60px;
}

/*
************
*************************
28. Error
******************************************************* 
*************************************************************** */
.error-title {
  font-size: 52px;
  color: #00394f;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.dark_mode nav.right_menu_togle {
  background: #f7f7f7;
}

.cinkes-dark-light-view-box {
  position: fixed;
  left: 25px;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  width: 36px;
  height: 70px;
  border-radius: 18px;
  z-index: 999;
  background-color: #111;
  cursor: pointer;
}
.cinkes-dark-light-view-box.has-clicked {
  background: #23cc88;
}
.cinkes-dark-light-view-box .cinkes-dark-light-view-toogle-dot {
  position: absolute;
  width: 36px;
  height: 36px;
  transition: all 0.3s;
  background: #fff;
  border-radius: 50%;
  left: 0;
  top: 0;
}
.cinkes-dark-light-view-box .cinkes-dark-light-view-toogle-dot.pos-bottom {
  top: 34px;
}
.cinkes-dark-light-view-box::before {
  position: absolute;
  left: 50%;
  top: 5px;
  font-family: "Font awesome 5 pro";
  content: "\f186";
  color: #fff;
  transform: translateX(-50%);
}
.cinkes-dark-light-view-box::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  font-family: "Font awesome 5 pro";
  content: "\f185";
  color: #fff;
  transform: translateX(-50%);
}

/* Dark Mode CSS */
.dark_mode .feature {
  background-color: #f7f7f7;
}
.dark_mode .class {
  background-color: #f7f7f7;
}
.dark_mode .class-card {
  background-color: #fff;
}
.dark_mode .our-staff {
  background-color: #f7f7f7;
}
.dark_mode .app-download {
  background-color: #f7f7f7;
}
.dark_mode .gallery {
  background-color: #f7f7f7;
}
.dark_mode .latest-news {
  background-color: #f7f7f7;
}
.dark_mode .blog-card {
  background-color: #fff;
}
.dark_mode .partner {
  background-color: #f7f7f7;
}
.dark_mode .feature {
  background-color: #f7f7f7;
}
.dark_mode .grey-bg-2 {
  background-color: #fff;
}
.dark_mode .counter-2 {
  background-color: #f7f7f7;
}
.dark_mode .contact {
  background-color: #f7f7f7;
}
.dark_mode .blog {
  background-color: #f7f7f7;
}
.dark_mode .single-blog {
  background-color: #fff;
}
.dark_mode .blog-sidebar-box {
  background-color: #fff;
}
.dark_mode .blog-admin {
  background-color: #fff;
}
.dark_mode .blog-comment-panel {
  background-color: #fff;
}
.dark_mode .cart {
  background-color: #f7f7f7;
}
.dark_mode .table-responsive {
  background-color: #fff;
}
.dark_mode .cart-table-bottom {
  background-color: #fff;
}
.dark_mode .panel {
  background-color: #fff;
}
.dark_mode .checkout {
  background-color: #f7f7f7;
}
.dark_mode .your-order {
  background-color: #fff;
}
.dark_mode .sidebar-box {
  background-color: #fff;
}
.dark_mode .class-comment {
  background-color: #fff;
}
.dark_mode .contact-form input {
  background-color: #fff;
}
.dark_mode .contact-form textarea {
  background-color: #fff;
}
.dark_mode .course__sort-inner .nice-select {
  background-color: #f7f7f7;
}
.dark_mode .contact-3 {
  background-color: #f7f7f7;
}
.dark_mode .contact-info-wrapper ul li i {
  background-color: #fff;
}
.dark_mode .contact-info-wrapper ul li:hover i {
  color: #23cc88;
}
.dark_mode .contact-info-wrapper ul li i:hover {
  background-color: #23cc88;
}
.dark_mode .neterror {
  background-color: #f7f7f7;
}
.dark_mode .error {
  background-color: #f7f7f7;
}
.dark_mode .shop {
  background-color: #f7f7f7;
}
.dark_mode .releted-product {
  background-color: #f7f7f7;
}
.dark_mode .shop-card-overlay {
  background: rgba(255, 255, 255, 0.7);
}
.dark_mode .shop-details-lg-img {
  background-color: #fff;
}
.dark_mode .product-details-bottom-part {
  background-color: #fff;
}
.dark_mode .shop-details-sm-images .slick-slide {
  background-color: #fff;
}
.dark_mode .shop-details-cart-buttons .quantity {
  background-color: #fff;
}
.dark_mode .signup-area {
  background-color: #f7f7f7;
}
.dark_mode .signup-area .signup-wrapper {
  background-color: #fff;
}

/*
************
*************************
29. Ajax
******************************************************* 
*************************************************************** */
.hidden {
  visibility: hidden;
  height: 0px;
  visibility: hidden;
  opacity: 0;
}

.simple-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.simple-pagination li {
  display: inline-block;
}
.simple-pagination li:not(:last-child) {
  margin-right: 10px;
}

.simple-pagination li a,
.simple-pagination li span {
  background: transparent;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  padding: 0;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid #f6f6f6;
  color: #00394f;
}
.simple-pagination li a:hover,
.simple-pagination li span:hover {
  color: #fff;
  border-color: transparent;
}
.simple-pagination li a:focus,
.simple-pagination li a:focus-within,
.simple-pagination li span:focus,
.simple-pagination li span:focus-within {
  box-shadow: none;
}

.simple-pagination li a {
  transform: translateY(-8px);
}

.simple-pagination .current {
  color: #fff;
  background-color: #23cc88;
  border-color: #23cc88;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
  background: #23cc88;
  opacity: 0.3;
}

.pagination-container ul li a {
  box-shadow: 0;
}

.pagination-container ul li a:hover {
  background: #23cc88;
}

/* item style start */
.banner {
  z-index: 1;
}

.banner .item-box {
  width: 100%;
  height: 100px;
  padding: 40px 20px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  position: relative;
  top: 140px;
  height: 120px;
  /* border: 4px solid #fff; */
  overflow: hidden;
}
.banner .item-box.item1 {
  /* background: linear-gradient(15deg, #e95ac6, #f8517b); */
   background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  /* background: linear-gradient(135deg,
  #7a0000,
  #b71c1c,
  #e53935

); */
/* background: linear-gradient(145deg, #04a56d, #046d48); */


}

.banner .item-box.item3 {
  /* background: linear-gradient(15deg, #0cc4b8, #42a4ed); */
   background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
   /* background: linear-gradient(135deg,
  #0b3d0b,
  #1b5e20,
  #43a047

); */

}
.banner .item-box.item4 {
  /* background: linear-gradient(15deg, #ffad06, #ff5c4c); */
   background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
   /* background: linear-gradient(135deg,
  #001f4d,
  #0d47a1,
  #42a5f5
 
); */


}
.banner .item-box.item2 {
  /* background: linear-gradient(15deg, #8acf39, #45cd6e); */
   background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
   /* background: linear-gradient(135deg,
  #7a2e00,
  #e65100,
  #fb8c00
  
); */

}

.banner .icon-item {
  position: absolute;
  top: 46px;
  left: 40px;
  transform: translateX(-50%);
}
.banner .item-box .icon-item i {
  font-size: 55px;
  color: #fff;
  opacity: 0.3;
}
.banner .item-box h3 {
  color: #fff;
}
.banner .item-box h3 a:hover {
  color: #fff;
}
/* item style end */

.facility-sec {
  padding: 130px 0 30px 0;
  position: relative;
  z-index: 1;
}
.facility-sec::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/shape/121.png) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.2;
}

.facility-sec .faci-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* background: linear-gradient(15deg, #7ecf43, #50cd65); */
  text-align: center;
  line-height: 100px;
  margin-right: 20px;
  transition: 0.5s;
  /* background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c); */
      background: linear-gradient(145deg, #04a56d, #046d48);
}
.facility-sec .faci-box i {
  color: #fff;
  font-size: 39px;
  padding-top: 30px;
  transition: 0.5s;
}
.facility-sec .feature-box:hover .faci-box {
  transform: translateY(-20px);
}

.facility-sec .feature-box {
  margin-bottom: 40px;
}
.facility-sec .feature-sub-title {
  font-weight: 500;
}
.who-sec {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.who-sec::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/shape/1.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.2;
}

.principal-img {
  overflow: hidden;
  padding: 6px;
  /* background: linear-gradient(35deg, #0ee28a, #a3e7cb); */
  background: linear-gradient(135deg, #8B0000, #C62828, #FF4C4C);

  border-radius: 10px;
  overflow: hidden;
}
.principal-img img {
  width: 100%;
}
.who-btn-area {
  margin-top: 42px;
}
.principal-content p {
  padding-top: 10px;
}
.who-btn {
  padding: 20px 40px;

    background: linear-gradient(135deg, #8B0000, #C62828, #FF4C4C);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px #c7c7c7;
  transition: 0.5s;
}
.who-btn:hover {
  color: #C62828;
  background: #fff;
    border: 2px solid  #C62828;
}
.feature-box7 {
  width: 100%;
  padding: 80px 40px 37px 40px;
  transition: all 0.3s ease-out 0s;
  /* background-color: #fff; */
  /* background: url(../images/notice1.png) no-repeat; */
  background-size: cover;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
}

.feature-box7::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  content: "";
  background: url(../images/pin1.png) no-repeat;
  z-index: -1;
}
.feature-box7::before {
  position: absolute;
  top: 0;
  right: 16px;
  width: 50px;
  height: 50px;
  content: "";
  background: url(../images/pin1.png) no-repeat;
  z-index: -1;
}

.feature-box7 marquee p a {
  color: #fff;
}

/* .since-count .odometer-formatting-mark{
  display: none;
}
.since-count .odometer-digit-inner,
.success-coun .odometer-digit-inner{
  text-align: end !important;
} */

/* admission sec style start */
.admission-sec {
  /* background: linear-gradient(15deg, #29904f 20%, #215840 80%); */
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
}
.admission-sec::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/shape/20.png) no-repeat;
  background-size: contain;
  z-index: -1;
}
.admission-sec .section-title {
  color: #fff;
  font-size: 40px;
}
.admission-sec .heading-sub-txt {
  color: #fff;
}
.admission-sec .admit-img {
  border: 2px solid #fff;
  overflow: hidden;
  border-radius: 40px 0 40px 0;
}
.admission-sec .btn-box-admission .admission-btn {
  padding: 20px 30px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  border: 2px solid #fff;
}
.admission-sec .btn-box-admission .admission-btn:hover {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 10px #fff inset;
}

.dropdown-menu li a {
  font-size: 13px;
}
/* admission sec style end */

.aboutus-sec {
  padding: 60px 0;
}
.about-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border: 4px dashed #67ce54;
  position: relative;
}
.about-img::after {
  position: absolute;
  content: "ST. PAUL'S ";
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  transform: translateY(0px);
  transition: 0.5s;
}
.about-img::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: dashed;
  border-width: 800px 0 0 800px;
      background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  transition: 0.5s;
  opacity: 0.5;
}
.about-img:hover:after {
  transform: translateY(-420px);
}
.about-img:hover:before {
  border-width: 10px 0 0 10px;
}
.aboutus-sec h2 {
  color: #163e82;
}
.aboutus-sec p {
  line-height: 29px;
  letter-spacing: 0.6px;
  color: #8a8a8a;
}
.aboutus-sec .search-head {
  color: #0aa756;
}
.aboutus-sec .post-head {
  color: #0aa756;
}
.ig-posts a img {
  border-radius: 8px;
}
.ig-posts a {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 8px;
}
.ig-posts a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, #208b04, #056908);
  opacity: 0.5;
  transform: translateY(-200px) translateX(200px);
  border-radius: 8px;
  transition: 0.5s;
  /* z-index: -1; */
}
.ig-posts a:hover:after {
  transform: translateY(0px) translateX(0px);
}
.gallery-icon {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.gallery-icon i {
  color: #fff;
  font-size: 30px;
  opacity: 0;
  transition: 0.5s;
}
.ig-posts a:hover .gallery-icon i {
  opacity: 1;
  transition-delay: 0.2s;
}

/* Aims & objective style start */
.aims-object {
  padding: 60px 0;
}
.aims-object .aims-card .aims-icon i {
  color: #000;
  font-size: 30px;
  border: 2px solid #ed5e4c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 50px;
  color: #ed5e4c;
  transition: 0.5s;
}
.aims-object .aims-card .aims-icon {
  text-align: center;
  margin-top: 20px;
}
.aims-object .card {
  padding: 20px;
  margin-top: 40px;
  position: relative;
  border: none;
  border-radius: 20px;
  height: 330px;
}
.aims-object .aims-card {
  position: relative;
}
.aims-object .aims-card::after {
  position: absolute;
  top: -25px;
  content: "";
  left: 150px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent #cd3b29 transparent;
  transition: 0.5s;
}

.aims-object .aims-card::before {
  position: absolute;
  top: 150px;
  content: "";
  left: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent #cd3b29 transparent;
  transition: 0.5s;
}
.aims-object .card .top-style {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 200px;
  height: 200px;
  clip-path: polygon(100% 0, 0 0, 0 100%);
      background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  border-top-left-radius: 60px;
  transition: 0.5s;
}
.aims-object .aims-card:hover .aims-icon i {
  transform: rotateZ(360deg);
}

.aims-object .aims-card:hover .top-style {
  transform: translateY(-20px);
}
.aims-object .aims-card:hover:after {
  transform: translateY(-20px);
}
.aims-object .aims-card:hover:before {
  transform: translateY(-20px);
}
/* objectives */
.aims-object .obj-card .obj-icon i {
  color: #00aa9e;
  font-size: 30px;
  border: 2px solid #00aa9e;
  width: 60px;
  height: 60px;
  line-height: 57px;
  border-radius: 50%;
  transition: 0.5s;
}
.aims-object .obj-card .obj-icon {
  text-align: center;
  margin-top: 20px;
}
.aims-object .obj-card:hover .obj-icon i {
  transform: rotate(360deg);
}

.aims-object .obj-card {
  position: relative;
  transition: 0.5s;
}
.aims-object .obj-card::after {
  position: absolute;
  top: -25px;
  content: "";
  left: 150px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent #008178 transparent;
  transition: 0.5s;
}

.aims-object .obj-card::before {
  position: absolute;
  top: 150px;
  content: "";
  left: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent #008178 transparent;
  transition: 0.5s;
}
.aims-object .card .top-style-obj {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 200px;
  height: 200px;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  border-top-left-radius: 60px;
  transition: 0.5s;
}

.aims-object .obj-card:hover .top-style-obj {
  transform: translateY(-20px);
}
.aims-object .obj-card:hover:after {
  transform: translateY(-20px);
}
.aims-object .obj-card:hover:before {
  transform: translateY(-20px);
}

.aims-object .obj-head {
  color: #008178;
  margin-top: 20px;
  font-size: 33px;
}
.aims-object .aims-head {
  color: #ed5e4c;
  margin-top: 20px;
  font-size: 33px;
}
.aims-object .aims-content p {
  color: #b4b4b4;
  font-weight: 500;
  letter-spacing: 0.4px;
  font-size: 17px;
}
.ao-text {
  padding-top: 20px;
}

/* Aims & Objective style end */

/* pricipal style start */
/* .image-area-pricipal-outer{
 background: url(../images/principal.png) no-repeat 0 0;
 width: 100%;
 height: 100%;
 background-size: cover;
 position: relative;
 
}
.image-area-pricipal{   
  width: 83%;
  height: 400px;
  transform: rotate(-5deg);
  position: relative;
  top: 14%;
  left: 11%;
  overflow: hidden;
}

.image-area-pricipal img{  
  width: 100%;
  height: 100%; 
  object-fit: cover;
} */

.image-area-pricipal-outer {
  width: 400px;
  height: 348px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  z-index: 1;
  padding: 14px;
}
.image-area-pricipal-outer::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 10px;
  width: 400px;
  height: 338px;
  content: "";
  background: url(../images/torn.png) no-repeat 0 0;
  background-size: cover;
  z-index: -1;
}
.image-area-pricipal {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -3px;
  left: -2px;
}
.image-area-pricipal img {
  overflow: hidden;
  height: 100%;
  object-fit: cover;
  padding: 50px;
  transform: rotate(-5deg);
  width: 100%;
}
.vice-name {
  position: absolute;
  transform: rotate(-5deg);
  bottom: 51px;
  left: 22px;
     background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  width: 87%;
  padding-top: 5px;
  height: 60px;
  z-index: 1;
  border-radius: 20px 35px 35px 0;
}
.vice-name::after {
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-width: 0 13px 11px 0;
  border-color: transparent #000 transparent transparent;
  z-index: -1;
}

/* .image-area-pricipal img{  
   width: 100%;
   height: 100%; 
   object-fit: cover;
 } */
.principal-name {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 80px;
  padding: 10px 0;
  transform: translateX(-50%);
  background: linear-gradient(to top, #05855b, #46ceb7);
  border-radius: 0 0 18px 18px;
}
.principal-name h4 {
  text-align: center;
}

/* principal style end */

/* Dress code style start */
.dress-sec {
  padding: 60px 0;
}
.dress-sec .card {
  padding: 20px;
  border-radius: 9px;
  border: none;
  box-shadow: 0 0 10px #999;
  position: relative;
  height: 240px;
  margin-top: 20px;
  margin-bottom: 60px;
  /* background:linear-gradient(15deg, #046e44, #00e57b); */
  background: #fff;
  transition: 0.5s;
 
}
.dress-sec .card:hover {
  transform: translateY(-20px);
}
.dress-sec .card:hover .dress-icon i {
  transform: rotate(360deg);
}
.dress-sec .dress-box {
  border: 2px solid #cc4c11;
  padding: 30px 20px;
  border-radius: 9px;
  height: 100%;
  background: #f4f4f4;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 23%) !important;
}
.dress-sec .dress-box h6,
.dress-sec .dress-box p {
  text-align: center;
}
.dress-sec .dress-box h6 {
  font-size: 15px;
  font-weight: 600;
}
.dress-sec .dress-box p {
  font-size: 14px;
}
.dress-sec .dress-icon {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  /* background:linear-gradient(15deg, #046e44, #00e57b); */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.dress-sec .dress-icon i {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  /* color: #1dab69; */
  transition: 0.5s;
}
.dress-sec .card.pant-card .dress-box {
  border: 2px solid #d72812;
}
.dress-sec .card.shirt-card .dress-box {
  border: 2px solid #06aba0;
}

.dress-sec .card.pant-card .dress-name,
.dress-sec .card.pant-card .dress-icon {
  background: linear-gradient(15deg, #ed8f83, #d72812);
}
.dress-sec .card.shirt-card .dress-name,
.dress-sec .card.shirt-card .dress-icon {
  background: linear-gradient(15deg, #06aba0, #15d8cb);
}
.dress-sec .card.shirt-card .dress-icon i {
  color: #06aba0;
}
.dress-sec .card.pant-card .dress-icon i {
  color: #d72812;
}
.dress-sec .dress-name {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dress-sec .dress-name::after {
  position: absolute;
  top: 0;
  left: -10px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #252525 transparent;
}
.dress-sec .dress-name::before {
  position: absolute;
  top: 0;
  right: -10px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent #252525;
}
.dress-sec .dress-name h4 {
  color: #fff;
  font-size: 18px;
}
.dress-sec .dress-name h5 {
  color: #fff;
  font-size: 16px;
}
.boys-head {
  color: #07c7a5;
}

/* Dress code style end */

/* subject style start */
.subject-sec {
  padding: 60px 0;
}
.subject-sec .card {
  padding: 20px;
  border: none;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 23%) !important;
  position: relative;
  top: 40px;
  margin-bottom: 100px;
  margin-top: 30px;
  transition: 0.5s;
}
.subject-sec .card.eng-card {
  position: relative;
  border-radius: 20px;
}
.subject-sec .card.eng-card::after {
  position: absolute;
  bottom: -20px;
  left: -20px;
  content: "";
  width: 200px;
  height: 150px;
      background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: -1;
  border-radius: 0 0 0 20px;
}

.subject-sec .card.eng-card::before {
  position: absolute;
  bottom: -20px;
  right: -20px;
  content: "";
  width: 200px;
  height: 150px;
      background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: -1;
  border-radius: 0 0 20px 0;
}
.subject-sec .card.modern-card {
  position: relative;
  border-radius: 20px;
}
.subject-sec .card.modern-card::after {
  position: absolute;
  top: -20px;
  left: -20px;
  content: "";
  width: 200px;
  height: 150px;
    background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: -1;
  border-radius: 20px 0 0 0;
}

.subject-sec .card.modern-card::before {
  position: absolute;
  top: -20px;
  right: -20px;
  content: "";
  width: 200px;
  height: 150px;
    background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: -1;
  border-radius: 0 20px 0 0;
}
.subject-sec .card.eng-card .subject-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
     background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  border-radius: 50%;
  line-height: 80px;
  padding-top: 10px;
}

.subject-sec .card.modern-card .subject-icon {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  border-radius: 50%;
  line-height: 80px;
  padding-top: 10px;
}
.subject-sec .card.modern-card .subject-icon i {
        color: #05b276;

}

.subject-sec .card:hover {
  top: 20px;
}
.subject-sec .card:hover .subject-icon i {
  transform: rotate(360deg);
}

.subject-sec .card .subject-icon i {
  display: flex;
  justify-content: center;
  align-items: center;
      color: #05b276;
  margin: auto;
  font-size: 25px;
  line-height: 60px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
}
.subject-sec .card .sub-content {
  padding-top: 50px;
  padding-bottom: 20px;
  text-align: center;
}

.subject-sec .card .sub-content h4 {
  font-size: 18px;
}
.subject-sec .card .sub-content small {
  font-size: 12px;
  font-weight: 600;
}
.subject-sec .card.edu-card {
  position: relative;
  border-radius: 20px;
}
.subject-sec .card.edu-card::after {
  position: absolute;
  bottom: -20px;
  left: -20px;
  content: "";
  width: 200px;
  height: 150px;
    background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: -1;
  border-radius: 0 0 0 20px;
}

.subject-sec .card.edu-card::before {
  position: absolute;
  bottom: -20px;
  right: -20px;
  content: "";
  width: 200px;
  height: 150px;
  background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: -1;
  border-radius: 0 0 20px 0;
}
.subject-sec .card.edu-card .subject-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  border-radius: 50%;
  line-height: 80px;
  padding-top: 10px;
}
.subject-sec .card.edu-card .subject-icon i {
         color: #05b276;
}

.subject-sec .card.physics-card {
  position: relative;
  border-radius: 20px;
}
.subject-sec .card.physics-card::after {
  position: absolute;
  bottom: -20px;
  left: -20px;
  content: "";
  width: 200px;
  height: 150px;
 background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: -1;
  border-radius: 20px 0 0 0;
}

.subject-sec .card.physics-card::before {
  position: absolute;
  bottom: -20px;
  right: -20px;
  content: "";
  width: 200px;
  height: 150px;
    background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: -1;
  border-radius: 0 20px 0 0;
}
.subject-sec .card.physics-card .subject-icon {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
   background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  border-radius: 50%;
  line-height: 80px;
  padding-top: 10px;
}
.subject-sec .card.physics-card .subject-icon i {
      color: #05b276;
}
.subject-sec .note-box {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: 2px solid #00aa9e;
  padding: 24px 10px;
  margin-top: 30px;
  position: relative;
  top: 30px;
}
.subject-sec .note-box .notes-icon {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00aa9e;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subject-sec .note-box .notes-icon i {
  color: #fff;
  font-size: 26px;
}
.subject-sec .note-box .notes-content {
  padding-top: 20px;
}
.note-box h6 {
  text-align: center;
}
.note-box p {
  font-size: 14px;
  font-family: "poppins", "sans-serif";
  text-align: center;
}

/* subject style end */

/* award style start */

.award-sec {
  padding: 60px 0;
}

.award-content {
  padding-top: 40px;
}
.rose-award {
  width: 100%;
  height: auto;
    background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 23%);
  padding: 30px;
  height: 280px;
  border-radius: 10px;
  position: relative;
}
.rose-award h4,
.rose-award p {
  text-align: center;
  color: #fff;
}
.rose-award h4 {
  padding-top: 12px;
}
.rose-round {
  width: 100%;
  height: 100%;
}
.rose-award .divider {
  border-bottom: 2px solid #fff;
  margin: auto;
}
.award-head {
  width: 300px;
  height: 50px;
  background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  position: absolute;
  left: -20px;
  border-radius: 15px 15px 15px 0;
}
.award-head::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent #6c550d transparent transparent;
}
.rose-award p {
  padding-top: 60px;
}
/* award style end */

/* procedure style start */

.procedure-sec {
  padding: 60px 0;
}
.pro-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
     background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  position: relative;
  padding: 20px;
  margin-bottom: 80px;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 23%);
  transition: 0.5s;
  /* z-index: 1; */
}
.pro-circle:hover {
  transform: translateX(10px) translateY(-10px);
  z-index: 1;
}

.procedure-content {
  margin-bottom: 40px;
}
.pro-circle .pro-content {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px 30px 20px;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 23%);
}
.side-style {
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 70px;
      background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 23%);
  z-index: 2;
}
.pro-circle::after {
  position: absolute;
  top: -54px;
  left: 25px;
  content: "";
  width: 60px;
  height: 70px;
  background: #2f6804;
  clip-path: polygon(100% 52%, 75% 100%, 100% 100%);
  z-index: -1;
  transition: 0.5s;
}
/* .pro-circle:hover:after,
.pro-circle:hover:before{
  transform: translateY(-20px);
} */
.pro-circle::before {
  position: absolute;
  top: -54px;
  right: 25px;
  content: "";
  width: 60px;
  height: 70px;
  background: #2f6804;
  clip-path: polygon(0 50%, 0 100%, 29% 100%);
  z-index: -1;
  transition: 0.5s;
}
.highlight {
  position: absolute;
  bottom: -55px;
  left: 0;
  width: 220px;
  height: 50px;
     background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  border-radius: 10px;
  color: #fff;
}
.highlight p {
  line-height: 50px;
  font-weight: 600;
}

.side-style i {
  padding-top: 20px;
  color: #fff;
  font-size: 28px;
}

/* procedure style end */

/* contact us style start */
.contact-sec {
  padding: 50px 0;
}
.contact-sec .card {
  position: relative;
     background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  border: none;
  border-radius: 10px;
  width: 90%;
  padding: 15px;
  margin: auto;
  margin-top: 100px;
  transition: 0.5s;
}

    .col-lg-4 {
      /* box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.2); */
      border-radius: 25px;

    }


.icon-fill-1 i {
  background: #abe478;
}
.icon-fill-2 i {
  background: #90b0f1;
}
.icon-fill-3 i {
  background: #fb8acb;
}

.timing-1 {
  background: linear-gradient(15deg, #81cf40, #54cd62);
}
.timing-2 {
  background: linear-gradient(15deg, #16a7ff, #0e7cb8);
}
.timing-3 {
  background: linear-gradient(15deg, #f55289, #ec58b7);
}
/* .contact-sec .card:hover::after{
  transform: translateY(-10px);
  transition: 0.5s;
} */
.contact-sec .card:hover {
  margin-top: 84px;
  transition: 0.5s;
}
.contact-sec .card:hover .icon-fill i {
  transform: rotate(360deg);
}

.contact-sec .card h4 {
  text-align: center;
  color: #fff;
}
.contact-sec .card .icon-fill {
  position: absolute;
  top: -102px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: #ebebeb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  margin-bottom: 20px;
  transition: 0.5s;
}
.contact-sec .card .icon-fill i {
  font-size: 40px;
  width: 120px;
  height: 120px;
  color: #fff;
  background: linear-gradient(135deg, #8b0000, #c62828, #ff4c4c);
  border-radius: 50%;
  text-align: center;
  line-height: 120px;
  transition: 0.5s;
}
.contact-sec .timing-content {
  padding-top: 10px;
  width: 80%;
  margin: auto;
  text-align: center;
}
.contact-form-sec {
  padding: 60px 0;
  background: #f9f9f9;
}
.contact-form-sec .form-area {
  padding: 20px 20px 70px 20px;
  border: 1px dashed #7cc0b9;
  margin-top: 60px;
  border-radius: 10px;
  position: relative;
  background: #fff;
}
.form-btn {
  position: relative;
  top: 38px;
}

.contact-form-sec .form-control:focus {
  color: #18b186 !important;
  background-color: none !important;
  border-color: #18b186 !important;
  outline: 0;
  box-shadow: none !important;
}
.contact-form-sec input {
  margin-top: 10px;
  height: 44px;
  border-radius: 7px;
}
.contact-form-sec label {
  padding-top: 20px;
}
.contact-form-sec .form-head {
  width: 50%;
  height: 90px;
   background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 40px;
  border-radius: 0 0 15px 15px;
  padding: 0 10px;
}
.contact-form-sec .form-head::after {
  position: absolute;
  top: 0;
  left: -19px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #044c48 transparent;
}
.contact-form-sec .form-head::before {
  position: absolute;
  top: 0;
  right: -19px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #044c48;
}
.contact-form-sec .form-head {
  padding-top: 10px;
}
.contact-form-sec .form-head h3 {
  color: #fff;
  font-size: 24px;
  padding-top: 10px;
}
.contact-form-sec .input-area {
  margin-top: 40px;
}
.contact-form-sec .map-area {
  width: 100%;
  height: 90%;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 60px;
}

/* contact us style end */

/* Admission style start */

.admit-sec {
  padding: 70px 0;
}
.photo-area {
  width: 100%;
  height: 200px;
  border: 1px solid #000;
  background: #fff;
  box-shadow: 0 0.5rem 1.5rem rgb(0 0 0/17%);
  padding: 10px;
  text-align: center;
}
.photo-area p {
  padding-top: 40px;
}
.fill-box {
  width: 200px;
  height: 60px;
  border: 1px solid #e2e2e2;
  margin-bottom: 10px;
}

.photo-area p {
  text-align: center;
}
.main-form {
  padding: 30px 0;
}
.form-check input {
  height: none !important;
}
.main-form input {
  border: 1px solid #30aa61;
}
.main-form input.form-control {
  height: 45px;
}
.form-check-input:checked {
  background-color: #30aa61 !important;
  border-color: #30aa61 !important;
}
.main-form label {
  padding-bottom: 10px;
  padding-top: 20px;
}
.form-check-label {
  padding: 0 !important;
}
.main-form select {
  appearance: auto !important;
  height: 45px;
  border: 1px solid #30aa61;
}
.main-form textarea {
  border: 1px solid #30aa61;
}
.elective-area .form-check-input {
  position: absolute;
  right: 0;
  top: 0;
}
.compulsory-list {
  padding-left: 16px;
}
.compulsory-list li {
  padding-bottom: 20px;
}
.submit-area {
  margin-top: 30px;
  text-align: center;
}
.divider-line {
  width: 100%;
  height: 4px;
  border-bottom: 1px solid #dddddd;
}
.submit-btn {
  padding: 16px 50px;
  background: #006f43;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
}
.submit-btn:hover {
  color: #006f43;
  background: transparent;
  border: 1px solid #006f43;
  box-shadow: 0 0 10px #006f43 inset;
}
input[type="file"] {
  height: 38px !important;
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgb(33 162 85 / 34%) !important;
}
.form-control:focus {
  color: #212529;
  background-color: transparent !important;
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgb(33 162 85 / 34%) !important;
}

/* admission style end */

/* teacher style start */
.tech-sec {
  padding: 60px 0;
}
.teacher-box {
  padding: 10px;
      width: fit-content;
  height: auto;
  background: #fff;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
}
.teacher-box .float-box {
  position: absolute;
  top: -20px;
  left: -7px;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg,#ff4c4c, #8b0000, #c62828 );
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 17px 17px 17px;
  border-radius: 20px 20px 20px 0;
}
.teacher-box .float-box::after {
  position: absolute;
  top: 50px;
  content: "";
  left: 0px;
  width: 20px;
  height: 30px;
  background: #000;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.teacher-box .float-box::before {
  position: absolute;
  top: 50px;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #ff911e transparent transparent transparent;
}
.detail-box {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, #0a1f44, #163e82, #2b6fd6);

  text-align: center;
  padding: 15px;
  border-radius: 20px 0 20px 20px;
}
.detail-box p {
  color: #fff;
  font-weight: 600;
  margin: 0;
  font-size: 14px;
  /* padding: 0; */
}
.detail-box::after {
  position: absolute;
  top: -20px;
  right: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #333;
}
.teacher-box .float-box h6 {
  color: #fff;
  font-weight: 500;
  text-align: center;
  font-size: 17px;
  line-height: 30px;
}
/* teacher style wnd */
/* fee structure style start */
.fee-sec {
  padding: 60px 0;
}
.fee-sec table {
  border: 1px solid #999;
}
.fee-sec table tr td {
  border-right: 1px solid #999;
  padding: 20px;
}

/* fee structure style end */
