@charset "utf-8";
/* CSS Document */
header {
  width: 100%;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 500;
}

header.scrolled {
  position: fixed;
  height: auto;
  background: #ffffffe6;
  backdrop-filter: blur(10px);
  box-shadow: 0px 2px 12px 1px rgba(0, 0, 0, 0.1);
}

header.scrolled .main-header {
  box-shadow: none;
  background: none;
}

header .top-header {
  width: 100%;
  min-height: 40px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
}

header .top-header .top-header-inner {
  width: 86%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}

header .top-header .top-header-inner .link-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #ffffff;
}

header .top-header .top-header-inner .link-div a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 13px;
}

header .top-header .top-header-inner .link-div a i {
  font-size: 15px;
  color: var(--secondary-color);
}
header .top-header .top-header-inner .link-div a:hover {
  text-decoration: underline;
}

header .top-header .top-header-inner .social-icon-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
header .top-header .top-header-inner .social-icon-div a {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 13px;
  background: var(--white-color);
  transition: all 0.2s ease-in 0.2s;
}

header .top-header .top-header-inner .social-icon-div a i {
  cursor: pointer;
}
header .top-header .top-header-inner .social-icon-div a:hover {
  color: var(--white-color);
  background: var(--secondary-color);
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////// */

header .main-header {
  width: 100%;
  background: var(--white-color);
  height: 70px;
  box-shadow: 0px 2px 12px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

header .main-header .main-header-inner {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

header .main-header .main-header-inner .link-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

header .main-header .main-header-inner .link-div .logo-back-div {
 display: flex;
 align-items: center;
 gap: 10px;
}

header .main-header .main-header-inner .link-div .logo-back-div .logo-div {
  width: 150px;
  padding: 5px;
  border: rgba(0, 0, 0, 0.2) 1px solid;
  border-radius: 15px;
}
header .main-header .main-header-inner .link-div .logo-back-div .logo-div .div-in {
  background: var(--body-color);
  border-radius: 15px;
  overflow: hidden;
}
header .main-header .main-header-inner .link-div .logo-back-div .logo-div .div-in img {
  width: 100%;
}
header .main-header .main-header-inner .link-div .logo-back-div .country-logo {
  width: 25px;
  height: 25px;
  border-radius: 10px;
  overflow: hidden;
  border: rgba(0, 0, 0, 0.2) 1px solid;
}

header .main-header .main-header-inner .link-div .logo-back-div .country-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .main-header .main-header-inner .link-div nav ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  gap: 22px;
}

header .main-header .main-header-inner .link-div nav ul li {
  list-style: none;
  font-size: 18px;
  min-height: 40px;
  padding: 15px 0px;
  font-family: sub-title-font;
  color: var(--body-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in 0.2s;
}

header .main-header .main-header-inner .link-div nav ul li i{
  color: var(--primary-color);
}

header .main-header .main-header-inner .link-div nav ul li:hover {
  color: var(--primary-color);
}

header .main-header .main-header-inner .link-div nav ul .active {
  color: var(--primary-color);
}

header .main-header .main-header-inner .button-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

header .main-header .main-header-inner .button-div .btn {
  height: 40px;
  padding: 0px 20px;
  color: var(--white-color);
  background: linear-gradient(to right, #000000ef, var(--primary-color));
  border: none;
  font-family: sub-title-font;
  cursor: pointer;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease-in 0.2s;
}
header .main-header .main-header-inner .button-div .btn i {
  font-size: 18px;
  color: var(--secondary-color);
}
header .main-header .main-header-inner .button-div .btn:hover {
  background: linear-gradient(to left, #000000ef, var(--primary-color));
}

header .main-header .main-header-inner .button-div .mobile-btn{
	height:40px;
	min-width:45px;
	font-size: 25px;
	display:none;
  background: linear-gradient(
    to right,
   #000000ef,
    var(--primary-color)
  );
	border: none;
  font-family: sub-title-font;
	border-radius: 5px;
	color: var(--white-color);
	transition:all 0.2s ease-in 0.2s;
	cursor:pointer;
}

header .main-header .main-header-inner .button-div .mobile-btn:hover{
	background-image: linear-gradient(to left, #000000ef, var(--primary-color));
}

/* EXPAND LI STYLE */
#expand-li:before{
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #d8d8d8;
  position: absolute;
  top: 82%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
#expand-li:hover:before{
	opacity:1;
}

#expand-li ul{
	padding:20px 0px;
	min-width:200px;
  top: 110px;
	min-height:100px;
	background:#F2F4F4;
	position:absolute;
	border-radius:7px;
	box-shadow:rgba(0,0,0,.2) 0px 2px 5px 0px;
	display:none;
}
#expand-li:hover ul{
	display:block;
}
#expand-li ul li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	width:calc(100% - 60px);
	min-height:20px !important;
	line-height:20px;
	padding:12px 30px;
	list-style:none;
	border-bottom:#E5E5E5 dashed 1px;
	color:#444;
	font-size:13px;
}
#expand-li ul li:hover{
	background:var(--white-color);
	color: var(--primary-color);
}

header .main-header .main-header-inner .link-div nav ul .mini-li{
	display:none;
}

.inner-expand-li{
	display: none !important;
  position: relative;
  left: 100%;
  width: 280px;
  min-height: auto !important;
  top: 0px !important;
}
header .main-header .main-header-inner .link-div nav ul li li:hover .inner-expand-li{
	display:block !important;
}

/* Header Mobile Query */
@media all and (max-width: 1350px) {
  header .main-header .main-header-inner .link-div nav ul .hide-nav {
    display: none;
  }
  header .main-header .main-header-inner .link-div nav ul .mini-li{
    display:flex;
  }
}

@media all and (max-width: 1200px) {
  header .top-header .top-header-inner {
    width: 96%;
  }
  header .main-header .main-header-inner {
    width: 96%;
  }
}


@media all and (max-width: 1330px) {
  header .top-header .top-header-inner .link-div .hide-link {
    display: none;
  }
}

@media all and (max-width: 990px) {
  header .main-header .main-header-inner .link-div nav,
  header .main-header .main-header-inner .link-div nav ul .li
  {
    display:none;
  }
  header .main-header .main-header-inner .button-div .mobile-btn{
    display:block;
  }
}

@media all and (max-width: 820px) {
  header .top-header .top-header-inner .link-div .hide-time {
    display: none;
  }
}

@media all and (max-width: 460px) {
  header .main-header .main-header-inner .link-div .logo-back-div {
    gap: 5px;
  }
  header .main-header .main-header-inner .link-div .logo-back-div .logo-div {
    width: 90px;
  }
  header .main-header .main-header-inner .button-div .btn {
    padding: 0px 17px;
    font-size: 12px;
  }
  header .main-header .main-header-inner .button-div .btn i{
    font-size: 12px;
  }
}





/* /////////////////////////////////////////////////////////////////////////////////////////////////////////// */


.slide-section .slide-div {
 position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
  flex-direction: column;
	align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
	top: 0px;
	z-index: 100;
}

.slide-section .slide-div .slide-inner-div {
  width: min(92%, 1180px);
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  pointer-events: auto;
}

.slide-section .slide-div .slide-inner-div .slide-card {
  width: min(680px, 100%);
  min-height: 0;
  background: rgba(8, 14, 32, 0.42);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.slide-section .slide-div .slide-inner-div .slide-card h1 {
  font-size: 40px;
  line-height: 45px;
  height: 130px;
  border-left: #00008b 3px solid;
  padding: 0px 30px;
  margin: 0px;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div {
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div p {
  color: var(--sub-body-color);
  text-align: justify;
}
.slide-section .slide-div .slide-inner-div .slide-card .text-div p a {
  color: var(--link-color);
  font-family: sub-title-font;
}
.slide-section .slide-div .slide-inner-div .slide-card .text-div p a:hover {
  text-decoration: underline;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div {
  width: 100%;
  display: flex;
  gap: 10px 7px;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div a {
  min-width: 0;
  display: flex;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn {
  background: linear-gradient(to right, #000000ef, var(--primary-color));
  border: none;
  flex-grow: 1;  
  border-radius: 25px;
  color: var(--white-color);
  font-family: sub-title-font;
  cursor: pointer;
  height: 50px;
  padding: 0px 25px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease-in 0.2s;
}


.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn i{
  font-size: 12px;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn:hover {
  background: linear-gradient(to left, #000000ef, var(--primary-color));
}

.slide-section
  .slide-div
  .slide-inner-div
  .slide-card
  .text-div
  .btn-div
  .btn
  .span {
  color: var(--secondary-color);
}

.slide-section .slide-div .slide-inner-div .play-div {
  width: calc(100% - 590px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-section .slide-div .slide-inner-div .play-div .play-btn {
  width: 100px;
  height: 100px;
  background: radial-gradient(
    rgba(109, 25, 28, 0.8) 60%,
    rgba(255, 255, 255, 1) 62%
  );
  border-radius: 50%;
  position: relative;
  display: flex;
  box-shadow: 0px 0px 25px 3px rgba(215, 53, 58, 0.8);
}

/* triangle */
.slide-section .slide-div .slide-inner-div .play-div .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.slide-section .slide-div .slide-inner-div .play-div .play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.75);
  top: -30%;
  left: -30%;
  background: rgba(198, 16, 0, 0);
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}

.slide-section .slide-div .slide-bottom-div{
  position: absolute;
	bottom: 0px;
  width: 100%;
  background: var(--primary-color);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-section .slide-div .slide-bottom-div .inner-div{
  width: 85%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-section .slide-div .slide-bottom-div .inner-div .exams-back-div{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: -50px;
}

.slide-section .slide-div .slide-bottom-div .inner-div .exams-back-div .each-exam-back-div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease-in 0.2s;
   margin-right: 30px;
}

.slide-section .slide-div .slide-bottom-div .inner-div .exams-back-div .each-exam-back-div:hover{
  transform: scale(1.1);
}

.slide-section .slide-div .slide-bottom-div .inner-div .exams-back-div .each-exam-back-div .each-exam-div{
  padding: 2px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  cursor: pointer;
}

.slide-section .slide-div .slide-bottom-div .inner-div .exams-back-div .each-exam-back-div .each-exam-div .div-in{
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: var(--primary-color) 2px solid;
  overflow: hidden;
}

.slide-section .slide-div .slide-bottom-div .inner-div .exams-back-div .each-exam-back-div .each-exam-div .div-in .img-div{
  width: 100%;
  overflow: hidden;
}

.slide-section .slide-div .slide-bottom-div .inner-div .exams-back-div .each-exam-back-div .each-exam-div .div-in .img-div img{
  width: 100%;
  object-fit: cover;
}


.slide-section .slide-div .slide-bottom-div .inner-div .exams-back-div .each-exam-back-div .text-div h4{
  font-family: body-font;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-color);
}





/* Slide Mobile Query */
@media all and (max-width: 1200px) {
  .slide-section .slide-div .slide-inner-div {
    width: 90%;
  }
}

@media all and (max-width: 820px) {
  .slide-section .slide-div .slide-inner-div .slide-card {
    width: 100%;
  }
}



@media all and (max-width: 600px) {
  .slide-section .slide-div {
   background: rgba(0, 0, 0, 0.6);
  }
  .slide-section .slide-div .slide-inner-div .slide-card {
    background: none;
    backdrop-filter: none;
  }
  .slide-section .slide-div .slide-inner-div .slide-card h1 {
    font-size: 5vw;
    line-height: 7vw;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    text-align: left;
     border-left: 0px;
    color: var(--white-color);
  }
  .slide-section .slide-div .slide-inner-div .slide-card .text-div {
    padding: 0px 20px;
  }
  .slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div {
    flex-direction: column;
  }
  .slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn {
    width: 100%;
    border: var(--white-color) 1px solid;
  }
  .slide-section .slide-div .slide-inner-div .slide-card .text-div p{
    color: #fff;
    font-size: 13px;
  }
}

@media all and (max-width: 400px) {
  .slide-section .slide-div .slide-inner-div .slide-card h1 {
    font-size: 5.5vw;
    line-height: 8vw;
  }

  .slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn {
    font-size: 13px;
  }
}


/* /////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.body-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
}

.body-div .body-div-in {
  width: 85%;
  min-height: 200px;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media all and (max-width: 1200px) {
  .body-div .body-div-in {
    width: 94%;
  }
}

.body-div .body-div-in .inner-body-div-in {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.body-div-inner {
  background: var(--primary-color);
}

.body-div .body-div-in .inner-body-div-in .title-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.body-div .body-div-in .inner-body-div-in .title-div .left-div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.body-div .body-div-in .inner-body-div-in .title-div .left-div .top-title {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 13px;
  font-family: body-font;
  border-radius: 3px;
  color: var(--secondary-color);
  background: rgb(215, 53, 58, 0.1);
  width: fit-content;
}

.body-div .body-div-in .inner-body-div-in .title-div .left-div .top-title h2 {
  font-family: body-font;
  font-size: 14px;
}

.body-div .body-div-in .inner-body-div-in .title-div .left-div h3 {
  font-size: 30px;
  line-height: 40px;
  width: 500px;
  color: var(--body-color);
}

.body-div .body-div-in .inner-body-div-in .title-div .btn-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.body-div .body-div-in .inner-body-div-in .title-div .btn-div .btn {
  border: none;
  height: 45px;
  min-width: 170px;
  border-radius: 50px;
  padding: 0px 20px;
  color: var(--white-color);
  font-size: 15px;
  font-family: sub-title-font;
 background: linear-gradient(to right, #000000ef, var(--primary-color));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.body-div .body-div-in .inner-body-div-in .title-div .btn-div .btn i {
  font-size: 13px;
}

.body-div .body-div-in .inner-body-div-in .title-div .btn-div .btn:hover {
  background: linear-gradient(to left, #000000ef, var(--primary-color));
}

.body-div .body-div-in .inner-body-div-in .title-div .left-div h3 span {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #000000ef
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media all and (max-width: 900px) {
  .body-div .body-div-in .inner-body-div-in .title-div .center-title {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
}

.company-body-div-in {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.body-div .body-div-in .company-body-div-in .left-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 50%;
}

.body-div .body-div-in .company-body-div-in .left-container h2 {
  font-size: 50px;
  font-family: title-font;
  color: var(--white-color);
  line-height: 1.3;
  margin-bottom: 20px;
}

.body-div .body-div-in .company-body-div-in .left-container p {
  font-size: 17px;
  font-family: body-font;
  color: var(--white-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.body-div .body-div-in .company-body-div-in .right-container .image-div {
  width: 80%;
  overflow: hidden;
}

.body-div .body-div-in .company-body-div-in .right-container .image-div img {
  width: 100%;
  object-fit: cover;
}

.body-div .body-div-in .company-body-div-in .left-container .btn-div {
  display: flex;
  align-items: center;
}

@media all and (max-width: 920px) {
   .body-div .body-div-in .company-body-div-in {
    flex-direction: column;
  }
 .body-div .body-div-in .company-body-div-in .left-container {
    width: 100%;
  }
  .body-div .body-div-in .company-body-div-in .right-container .image-div {
    width: 100%;
}
}

@media all and (max-width: 670px) {
  .body-div .body-div-in .company-body-div-in .left-container h2 {
    font-size: 7vw;
    line-height: 9vw;
  }
  .body-div .body-div-in .company-body-div-in .left-container p {
  text-align: justify;
}
}


.body-div .body-div-in .company-body-div-in .btn {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  height: 50px;
  padding: 0px 25px;
  border-radius: 25px;
  color: var(--white-color);
  cursor: pointer;
  font-size: 15px;
  font-family: body-font;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.body-div .body-div-in .company-body-div-in .btn:hover {
  color: var(--white-color);
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media all and (max-width: 740px) {
  .body-div .body-div-in .inner-body-div-in .title-div .left-div h3 {
    width: 100%;
  }
}

@media all and (max-width: 500px) {
  .body-div .body-div-in .inner-body-div-in .title-div {
    flex-direction: column;
    gap: 15px;
  }
  .body-div .body-div-in .inner-body-div-in .title-div .left-div {
    width: 100%;
  }
  .body-div .body-div-in .inner-body-div-in .title-div .btn-div {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.net-bg-br {
  padding-bottom: 90px;
  background: url(../all-images/images/net-bg-br.png) bottom right no-repeat;
  background-size: 40%;
}

.net-bg-bl {
  background: url(../all-images/images/net-bg-bl.png) bottom left no-repeat;
  background-size: 40%;
}

.net-bg-tl {
  background: url(../all-images/images/net-bg-tl.png) top left no-repeat;
  background-size: 40%;
}

.net-bg-tr {
  background: url(../all-images/images/net-bg-tr.png) top right no-repeat;
  background-size: 40%;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.bg-harsh {
  background: rgba(246, 247, 252, 0.7);
}

.body-div .below-height {
  min-height: 100px;
}

.unique-back-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.unique-back-div .unique-div {
  width: 45%;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  gap: 10px;
}

.unique-back-div .unique-div .icon-div {
  width: 60px;
  height: 60px;
  border: var(--primary-color) 1px solid;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.unique-back-div .unique-div .icon-div i {
  color: var(--primary-color);
  font-size: 30px;
}

.unique-back-div .unique-div .text-div {
  display: flex;
  flex-direction: column;
  width: calc(100% - 60px);
  gap: 3px;
}

.unique-back-div .unique-div .text-div h2 {
  font-family: sub-title-font;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 400;
}

.unique-back-div .unique-div .text-div p {
  color: var(--sub-body-color);
  text-align: justify;
}

.unique-back-div .unique-div .secondary {
  border: var(--secondary-color) 1px solid;
  background: none;
}

.unique-back-div .unique-div .secondary i {
  color: var(--secondary-color);
}

.unique-back-div .unique-div .nuetral {
  border: var(--sub-body-color) 1px solid;
}

.unique-back-div .unique-div .nuetral i {
  color: var(--sub-body-color);
}

.unique-back-div .unique-div .btn-div {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.unique-back-div .unique-div .btn-div .btn {
  border: none;
  height: 40px;
  min-width: 100px;
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-family: sub-title-font;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease-in 0.2s;
}

.unique-back-div .unique-div .btn-div .btn i {
  font-size: 13px;
}

.unique-back-div .unique-div .btn-div .btn:hover{
  text-decoration: underline;
}



@media all and (max-width: 640px) {
  .unique-back-div .unique-div {
    width: 100%;
  }
  .unique-back-div .unique-div .text-div h2 {
    font-size: 15px;
  }
  .unique-back-div .unique-div .text-div p {
    font-size: 13px;
    text-align: justify;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.our-exam-back-div {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.our-exam-back-div .exam-div {
  position: relative;
  width: 32%;
  border-radius: 10px;
  border: #e6e6e6 1px solid;
  background: var(--white-color);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}

.our-exam-back-div .for-study-abroad {
  width: 32%;
}

.our-exam-back-div .exam-div .image-div {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}

.our-exam-back-div .exam-div .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.our-exam-back-div .exam-div:hover .image-div img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.our-exam-back-div .exam-div .icon-div {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border-radius: 5px;
  border: rgba(247, 160, 37, 0.4) 1px solid;
  right: 10px;
  top: 180px;
  overflow: hidden;
  z-index: 2;
}

.our-exam-back-div .exam-div .icon-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-exam-back-div .exam-div .text-div {
  width: 100%;
  display: flex;
  color: var(--sub-body-color);
  flex-grow: 1;
}

.our-exam-back-div .exam-div .text-div .inner-div {
  padding: 20px 15px;
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}

.our-exam-back-div .exam-div .text-div .inner-div .top-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.our-exam-back-div .exam-div .text-div .inner-div .top-text .count {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 5px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: left;
  color: var(--sub-body-color);
}

.our-exam-back-div .exam-div .text-div .inner-div .top-text .count i {
  color: var(--secondary-color);
}

.our-exam-back-div .exam-div .text-div .inner-div .top-text h3 {
  font-family: sub-title-font;
  font-size: 19px;
  line-height: 20px;
  color: var(--body-color);
}

.our-exam-back-div .exam-div .text-div .inner-div .top-text p {
  text-align: justify;
  color: var(--text-color);
}

.our-exam-back-div .exam-div .text-div .inner-div .bottom-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.our-exam-back-div .exam-div .text-div .inner-div .bottom-div .left-div {
  display: flex;
  flex-direction: column;
}

.our-exam-back-div .exam-div .text-div .inner-div .bottom-div .left-div span {
  color: var(--body-color);
  font-family: body-font;
  font-size: 11px;
}

.our-exam-back-div .exam-div .text-div .inner-div .bottom-div .left-div span i {
  color: var(--primary-color);
}

.our-exam-back-div .exam-div .text-div .inner-div .bottom-div .left-div .price {
  font-family: title-font;
  font-size: 18px;
  color: var(--body-color);
}

.our-exam-back-div .exam-div .text-div .inner-div .bottom-div .btn {
  border: none;
  height: 35px;
  padding: 0px 20px;
  border-radius: 25px;
  color: var(--white-color);
  font-size: 13px;
  font-family: sub-title-font;
  background: linear-gradient(to right, #000000ef, var(--primary-color));
  transition: 0.3s ease-in;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.our-exam-back-div .exam-div .text-div .inner-div .bottom-div .btn:hover {
  background: linear-gradient(to left, #000000ef, var(--primary-color));
}

.bottom-btn-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-btn-div .btn {
  border: none;
  height: 40px;
  min-width: 170px;
  border-radius: 50px;
  padding: 0px 20px;
  color: var(--primary-color);
  font-size: 14px;
  font-family: sub-title-font;
  background: transparent;
  border: #cbcbcb 1px solid;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.bottom-btn-div .btn i {
  font-size: 13px;
}

.bottom-btn-div .btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
}

.pricing-back-div {
  gap: 40px 15px;
  align-items: flex-start;
}
.pg-back-div {
  margin-bottom: 30px;
}

.pricing-back-div .pricing-div {
  width: 48.5%;
  min-width: 270px;
  border-radius: 10px;
}

.pricing-back-div .pricing-div .image-div {
  height: 220px;
}

.pricing-back-div .pricing-div .image-div img {
  border-radius: 10px 10px 0px 0px;
}

.pricing-back-div .pricing-div .icon-div {
  top: 200px;
}

.pricing-back-div .pricing-div .text-div .inner-div .bottom-div {
  border-bottom: #e6e6e6 1px solid;
  padding-bottom: 10px;
}

.pricing-back-div
  .pricing-div
  .text-div
  .inner-div
  .bottom-div
  .left-div
  .new-price {
  font-size: 35px;
}

.pricing-back-div .pricing-div .text-div .inner-div .incentive-back-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-back-div .pricing-div .text-div .inner-div .incentive-back-div .check {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
}

.pricing-back-div
  .pricing-div
  .text-div
  .inner-div
  .incentive-back-div
  .check
  i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 12px;
  font-family: body-font;
}

.pricing-back-div .pricing-div .text-div .inner-div .btn {
  border: none;
  height: 50px;
  width: 100%;
  padding: 0px 20px;
  border-radius: 25px;
  color: var(--white-color);
  font-size: 15px;
  font-family: sub-title-font;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: 0.3s ease-in;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.pricing-back-div .pricing-div .text-div .inner-div .btn:hover {
  opacity: 0.6;
}

.pricing-back-div .pricing-div .text-div .inner-div .btn i {
  font-size: 12px;
}

@media all and (max-width: 1080px) {
  .our-exam-back-div .exam-div {
    flex-grow: 1;
    width: 30%;
  }
}

@media all and (max-width: 830px) {
  .our-exam-back-div .exam-div {
    width: 40%;
  }
}

@media all and (max-width: 550px) {
  .our-exam-back-div .exam-div {
    width: 100%;
  }
  .our-exam-back-div .exam-div .image-div {
    height: 220px;
  }
  .our-exam-back-div .exam-div .icon-div {
    top: 200px;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.about-back-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about-back-div .image-div {
  width: 50%;
  overflow: hidden;
}

.about-back-div .image-div img {
  width: 100%;
  object-fit: cover;
}

.about-back-div .content-div {
   width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--sub-body-color);
}

.about-back-div .about-page-content{
  width: 100%;
}

.about-back-div .content-div h2 {
  font-size: 30px;
  line-height: 40px;
  font-family: title-font;
  color: var(--body-color);
}

.about-back-div .content-div h2 span.text{
   background: linear-gradient(
    90deg,
    var(--primary-color),
    #000000ef
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.about-back-div .content-div p {
  font-size: 16px;
  font-family: body-font;
  color: var(--sub-body-color);
  line-height: 30px;
  text-align: justify;
}

.about-back-div .content-div .check-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-back-div .content-div .check-div .check {
  display: flex;
  gap: 10px;
  align-items: center;
}

.about-back-div .content-div .check-div .check h5 {
  font-size: 15px;
  color: var(--sub-body-color);
  font-family: sub-title-font;
}

.about-back-div .content-div .check-div .check i {
  color: var(--secondary-color);
  font-size: 20px;
}

.about-back-div .content-div .box-div {
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 20px;
  margin-bottom: 20px;
  position: relative;
}

.about-back-div .content-div .box-div p {
  font-size: 16px;
  font-family: body-font;
  color: var(--sub-body-color);
}

.about-back-div .content-div .label-div {
  position: absolute;
  top: -12px;
  left: 20px;
  padding: 6px 15px;
  border-radius: 5px 20px;
  font-size: 14px;
  font-family: sub-title-font;
  line-height: 20px;
  color: var(--white-color);
}

.secondary {
  background: var(--secondary-color);
}

.primary {
  background: var(--primary-color);
}

.vision {
  background: #f2ede8;
}

.mission {
  background: #feeef1;
}

.about-back-div .image-div .values-image {
  overflow: hidden;
}

.about-back-div .image-div .values-image img {
  width: 100%;
  object-fit: cover;
}

.about-back-div .values-content-div {
  width: 70%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-back-div .values-content-div h2 {
  font-size: 30px;
  font-family: title-font;
  color: var(--body-color);
}

.about-back-div .values-content-div p {
  font-size: 15px;
  font-family: body-font;
  color: var(--sub-body-color);
}

.about-back-div .values-list {
  display: flex;
  gap: 40px;
}

.about-back-div .values-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.about-back-div .values-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-family: body-font;
  color: var(--text-color);
}

.about-back-div .values-list li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 12px;
  font-family: body-font;
  margin-right: 12px;
}

.about-back-div .values-content-div .top-title {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 14px;
  font-family: sub-title-font;
  border-radius: 3px;
  color: var(--secondary-color);
  background: rgb(215, 53, 58, 0.1);
  width: fit-content;
}

@media all and (max-width: 920px) {
  .about-back-div {
    flex-direction: column;
  }
  .about-back-div .image-div {
    width: 100%;
  }
  .about-back-div .content-div {
    width: 100%;
  }
}

@media all and (max-width: 420px) {
  .about-back-div .content-div h2 {
    font-size: 8vw;
    line-height: 10vw;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.blog-back-div {
  width: 100%;
  display: flex;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-back-div .blog-div {
  width: 31.5%;
  min-height: 300px;
  background: #f3f3f3;
  border-radius: 8px;
  display: flex;
  cursor: pointer;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.blog-back-div .blog-div:hover {
  box-shadow: 0px 0px 10px 2px #ececec;
}

.blog-back-div .blog-div .blog-inner-div {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-back-div .blog-div .blog-inner-div .image-div {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
}

.blog-back-div .blog-div .blog-inner-div .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.blog-back-div .blog-div .blog-inner-div:hover .image-div img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.blog-back-div .blog-div .blog-inner-div .text-div {
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--body-color);
  text-align: left;
}

.blog-back-div .blog-div .blog-inner-div .text-div h3 {
  font-size: 17px;
  font-family: sub-title-font;
}

.blog-back-div .blog-div .blog-inner-div .text-div .count {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px 5px;
  min-height: 30px;
  font-size: 12px;
  text-align: left;
  color: var(--sub-body-color);
}

.blog-back-div .blog-div .blog-inner-div .text-div .count i {
  color: var(--secondary-color);
}

.blog-back-div .blog-div .blog-inner-div .text-div .btn {
  border: none;
  height: 35px;
  padding: 0px 20px;
  border-radius: 25px;
  color: var(--white-color);
  font-size: 13px;
  font-family: body-font;
  background: linear-gradient(to right, #000000ef, var(--primary-color));
  transition: 0.3s ease-in;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.blog-back-div .blog-div .blog-inner-div .text-div .btn i {
  font-size: 10px;
}

.blog-back-div .blog-div .blog-inner-div .text-div .btn:hover {
 background: linear-gradient(to left, #000000ef, var(--primary-color));
}

@media all and (max-width: 920px) {
  .blog-back-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .blog-back-div .blog-div {
    width: 48%;
  }
}

@media all and (max-width: 720px) {
  .blog-back-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .blog-back-div .blog-div {
    width: 100%;
  }
  .blog-back-div .blog-div .text-div h3 {
    font-size: 18px;
  }
}

.general-faq-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.general-faq-div .faq-title {
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
  background: var(--white-color);
  border-radius: 10px;
  height: auto;
  box-shadow: 0px 0px 10px 3px rgba(83, 83, 83, 0.1);
  transition: all 0.2s ease-in 0.2s;
  cursor: pointer;
}

.general-faq-div .faq-title:hover,
.general-faq-div .active-faq {
  box-shadow: 0px 0px 10px 3px rgba(83, 83, 83, 0.2);
}

.general-faq-div .faq-title .inner-title-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.general-faq-div .faq-title .inner-title-div h2 {
  font-size: 17px;
  padding: 5px 0px;
  font-family: body-font;
  color: var(--sub-body-color);
}

.general-faq-div .faq-title .inner-title-div .expand-div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  font-size: 20px;
}

.general-faq-div .faq-title .inner-title-div .expand-div i {
  color: var(--secondary-color);
}

.general-faq-div .faq-answer-div {
  padding: 2px 15px;
  font-size: 15px;
  line-height: 30px;
  color: var(--text-color);
  text-align: justify;
}
/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.success-back-div {
  width: 100%;
  display: flex;
  gap: 20px;
}

.success-back-div .success-div {
  width: 25%;
  border-radius: 8px;
  border: #e6e6e6 1px solid;
  background: var(--white-color);
  min-height: 230px;
  display: flex;
}

.success-back-div .success-div .inner-div {
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-back-div .success-div .inner-div .icon-div {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background: #f7f8fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-back-div .success-div .inner-div .icon-div .inner {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.success-back-div .success-div .inner-div .icon-div .inner img {
  width: 100%;
  object-fit: cover;
}

.success-back-div .success-div .inner-div .text-div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.success-back-div .success-div .inner-div .text-div h5 {
  font-size: 19px;
  font-family: sub-title-font;
}

.success-back-div .success-div .inner-div .text-div p {
  text-align: center;
  color: #6b6b6b;
}

@media all and (max-width: 850px) {
  .success-back-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .success-back-div .success-div {
    width: 47%;
  }
}

@media all and (max-width: 450px) {
  .success-back-div .success-div {
    width: 95%;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.testimonial {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.testimonial .content {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial .content .text-div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--sub-body-color);
}

.testimonial .content .text-div h2 {
  color: var(--body-color);
  font-size: 35px;
  line-height: 45px;
}

.testimonial .content .text-div h2 span {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #000000ef
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 35px;
}

.testimonial .content .text-div p {
  color: var(--sub-body-color);
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
}

.testimonial .content .btn {
  border: none;
  border-radius: 25px;
  height: 45px;
  min-width: 150px;
  padding: 0px 25px;
  color: var(--white-color);
  font-size: 15px;
  font-family: sub-title-font;
  background: linear-gradient(to right, #000000ef, var(--primary-color));
  transition: 0.3s ease-in;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.testimonial .content .btn i {
  font-size: 12px;
}

.testimonial .content .btn:hover {
  background: linear-gradient(to left, #000000ef, var(--primary-color));
}

.testimonial .right-back-div {
  width: 60%;
  display: flex;
}

.testimonial .right-back-div .main-testimonial {
  width: calc(100% - 60px);
  min-height: 300px;
  background: #fff url(../all-images/images/dotted-background.png) top right
    no-repeat;
  background-size: cover;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.06);
}

.testimonial .right-back-div .main-testimonial .img-back-div {
  display: flex;
  flex-direction: column;
}

.testimonial .right-back-div .main-testimonial .img-back-div .img-div {
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.testimonial .right-back-div .main-testimonial .img-back-div .img-div img {
  width: 100%;
  border-radius: 50px;
  object-fit: cover;
}

.testimonial .right-back-div .main-testimonial .img-back-div .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  width: 28px;
  color: var(--white-color);
  border-radius: 50%;
  border: 4px solid var(--white-color);
  position: relative;
  top: -25px;
  right: -50px;
  background: var(--secondary-color);
}

.testimonial .right-back-div .main-testimonial .img-back-div .icon i {
  font-size: 25px;
}

.testimonial .right-back-div .main-testimonial p {
  color: var(--sub-body-color);
  line-height: 28px;
}

.testimonial .right-back-div .bottom-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.testimonial .right-back-div .bottom-div .star-div {
  display: flex;
  gap: 3px;
}

.testimonial .right-back-div .bottom-div .star-div i {
  color: #f8b81f;
}

.testimonial .right-back-div .bottom-div h5 {
  font-size: 15px;
  line-height: 20px;
  color: var(--sub-body-color);
  font-family: sub-title-font;
}

@media all and (max-width: 920px) {
  .testimonial {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .testimonial .content {
    width: 95%;
    padding: 10px;
  }
  .testimonial .right-back-div {
    width: 100%;
  }
}

@media all and (max-width: 500px) {
  .testimonial .content .text-div h2 {
    font-size: 8.5vw;
    line-height: 10vw;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.progress-back-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-back-div .progress-container {
  width: 100%;
  display: flex;
}

.progress-back-div .progress-container .progress-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-back-div .progress-container .progress-item .title {
  font-size: 16px;
  font-family: sub-title-font;
}

.progress-back-div .progress-container .progress-item .progress-bar {
  position: relative;
  background: #89bab44d;
  border-radius: 10px;
  height: 8px;
  overflow: visible;
}

.progress-back-div
  .progress-container
  .progress-item
  .progress-bar
  .progress-per {
  position: relative;
  width: 0;
  height: 100%;
  border-radius: 10px;
  background: rgba(157, 4, 60, 0.9);
  transition: width 1.7s ease-in-out;
  color: transparent;
}

.progress-item .progress-bar .progress-per::after {
  position: absolute;
  content: attr(data-text) "%";
  width: 25px;
  height: 15px;
  line-height: 15px;
  font-size: 12px;
  text-align: center;
  padding: 4px;
  border-radius: 2px;
  background: rgba(157, 4, 60, 0.9);
  color: var(--white-color);
  right: 10px;
  top: -24;
  animation: text 0.5s ease-in-out;
}

.progress-item .progress-bar .progress-per::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 10px;
  background: rgba(157, 4, 60, 0.9);
  right: 7px;
  top: -10;
  transform: skew(45deg);
  animation: text 0.5s ease-in-out;
}

@keyframes text {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.moving-object {
  position: absolute;
  background: var(--white-color);
  display: flex;
  border-radius: 50px;
  z-index: 300;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.03);
}

.top-moving-object {
  top: 10%;
  left: 2%;
  animation: moveUpDown 3s infinite;
  animation-timing-function: ease-in-out;
}

.bottom-moving-object {
  bottom: 10%;
  right: 5%;
  top: auto;
  left: auto;
  animation: moveRightLeft 3s infinite;
  animation-timing-function: ease-in-out;
}

.moving-object .div-in {
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.moving-object .div-in .text-div {
  display: flex;
  flex-direction: column;
}

.moving-object .div-in .text-div span {
  color: var(--sub-text-color);
  font-size: 17px;
}

.moving-object .div-in .text-div h4 {
  padding: 0px;
  margin: 0px;
  font-family: body-font;
  font-size: 22px;
  color: var(--body-color);
}

.bottom-moving-object .div-in .text-div h4 {
  font-size: 15px;
}
.moving-object .div-in .img-back-div {
  display: flex;
}

.moving-object .div-in .img-back-div .img-div {
  width: 110px;
}

.moving-object .div-in .img-back-div .img-div img {
  width: 100%;
  object-fit: cover;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.faq-back-div {
  width: 100%;
  display: flex;
  gap: 25px;
}

.faq-back-div .left-image-div {
  width: 45%;
  height: 450px;
  overflow: hidden;
  border-radius: 30px 30px 30px 0px;
}

.faq-back-div .left-image-div img {
  width: 100%;
  border-radius: 40px 40px 40px 0px;
  object-fit: cover;
}

.faq-back-div .right-container {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
}

.faq-back-div .right-container .faq-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-back-div .right-container .faq-title .top-title {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 13px;
  font-family: body-font;
  border-radius: 3px;
  color: var(--secondary-color);
  background: rgb(215, 53, 58, 0.1);
  width: fit-content;
}

.faq-back-div .right-container .faq-title h2 {
  color: var(--body-color);
  font-size: 30px;
  line-height: 40px;
}

.faq-back-div .right-container .faq-title h2 span {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #000000ef
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.faq-back-div .right-container .faq-toggle-back {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-back-div .right-container .faq-toggle-back .faq-toggle {
  width: calc(100% - 40px);
  padding: 15px 20px;
  background: var(--white-color);
  border: #ececec 1px solid;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 40px 40px 40px 0px;
  box-shadow: 0px 0px 9px 1px #f7f7f7;
  cursor: pointer;
  transition: all 0.2s ease-in 0.2s;
}

.faq-back-div .right-container .faq-toggle-back .faq-toggle:hover {
  box-shadow: 0px 0px 9px 1px #e9e9e9;
}

.faq-back-div .right-container .faq-toggle-back .faq-toggle.active-faq {
  box-shadow: 0px 0px 9px 1px #e9e9e9;
}

.faq-back-div .right-container .faq-toggle-back .faq-toggle .title-text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-back-div
  .right-container
  .faq-toggle-back
  .faq-toggle
  .title-text
  .quest-text-div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-back-div
  .right-container
  .faq-toggle-back
  .faq-toggle
  .title-text
  .quest-text-div
  .icon-div {
  width: 35px;
  height: 35px;
  background: rgba(157, 4, 60, 0.9);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-back-div
  .right-container
  .faq-toggle-back
  .faq-toggle
  .title-text
  .quest-text-div
  h3 {
  width: calc(100% - 45px);
  color: var(--sub-body-color);
  font-family: sub-title-font;
  font-size: 18px;
  line-height: 25px;
  font-weight: 200;
}

.faq-back-div
  .right-container
  .faq-toggle-back
  .faq-toggle
  .title-text
  .expand-div {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-back-div
  .right-container
  .faq-toggle-back
  .faq-toggle
  .title-text
  .expand-div
  i {
  color: rgba(157, 4, 60, 0.9);
  font-size: 22px;
}

.faq-back-div .right-container .faq-toggle-back .faq-toggle .answer-div {
  padding: 10px 12px;
  font-size: 15px;
  display: none;
}

.faq-back-div .right-container .faq-toggle-back .faq-toggle .answer-div p {
  text-align: justify;
  color: var(--text-color);
}

.faq-back-div .right-container .btn {
  border: none;
  border-radius: 25px;
  height: 42px;
  min-width: 150px;
  padding: 0px 20px;
  color: var(--white-color);
  font-size: 14px;
  font-family: sub-title-font;
  background: linear-gradient(to right, #000000ef, var(--primary-color));
  transition: 0.3s ease-in;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.faq-back-div .right-container .btn i {
  font-size: 12px;
}

.faq-back-div .right-container .btn:hover {
 background: linear-gradient(to left, #000000ef, var(--primary-color));
}

@media all and (max-width: 850px) {
  .faq-back-div {
    width: 94%;
    flex-direction: column;
    gap: 40px;
  }
  .faq-back-div .left-image-div {
    width: 100%;
  }
  .faq-back-div .right-container {
    width: 100%;
  }
}

@media all and (max-width: 500px) {
 .faq-back-div .left-image-div {
  height: auto;
  }
}



/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.footer-div {
  min-height: 350px;
  background: url(../all-images/images/footer_bg.jpg) center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footerContactContainer{
  width: 100%;
}

.footer-div .top-footer-contact {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
}

.footer-div .top-footer-contact .top-inner-div {
  width: 85%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div {
  width: 31%;
  max-width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0px 13px;
  flex-grow: 1;
  border-right: rgba(255, 255, 255, 0.2) 1px solid;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .no-right-border {
  border-right: none;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .icon-div {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: rgba(255, 255, 255, 0.4) 1px solid;
  background-color: #ffffff0d;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .icon-div i {
  color: var(--white-color);
  font-size: 24px;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div {
  width: calc(100% - 90px);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div h3 {
  color: var(--secondary-color);
  font-size: 22px;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div .text-in {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--white-color);
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div .text-in .span{
  color: var(--secondary-color);
  font-family: sub-title-font;
  font-size: 15px;
}

.footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div .text-in .span span{
  overflow-wrap: break-word;
  color: var(--white-color);
  font-size: 13px;
}

.footer-div .footer-div-in {
  width: 85%;
  max-width: 1200px;
  font-size: 15px;
  padding-top: 90px;
  margin-bottom: 30px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer-div .footer-div-in .segment-back-div {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.footer-div .footer-div-in .segment-back-div .segment-div {
  width: 23%;
  min-height: 100px;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-div .footer-div-in .segment-back-div .logo-segment {
  width: 46%;
}

.footer-div .footer-div-in .segment-back-div .segment-div .logo-div {
  width: 180px;
  padding: 5px;
  border: rgba(0, 0, 0, 0.2) 1px solid;
  border-radius: 15px;
  background: var(--white-color);
}

.footer-div .footer-div-in .segment-back-div .segment-div .logo-div .div-in {
  background: var(--body-color);
  border-radius: 15px;
  overflow: hidden;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .logo-div
  .div-in
  img {
  width: 100%;
}

.footer-div .footer-div-in .segment-back-div .segment-div h3 {
  color: var(--white-color);
  font-size: 20px;
  font-family: sub-title-font;
}

.footer-div .footer-div-in .segment-back-div .segment-div p {
  font-size: 15px;
  line-height: 30px;
}

.footer-div .footer-div-in .segment-back-div .segment-div .icon-div {
  width: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-div .footer-div-in .segment-back-div .segment-div .icon-div li {
  list-style: none;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--white-color);
  background: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in 0.2s;
  cursor: pointer;
}

.footer-div .footer-div-in .segment-back-div .segment-div .icon-div li:hover {
  color: var(--white-color);
  background: var(--secondary-color);
}

.footer-div .footer-div-in .segment-back-div .segment-div ul {
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0px;
  gap: 16px;
}

.footer-div .footer-div-in .segment-back-div .segment-div ul li {
  list-style: none;
  font-size: 15px;
  color: var(--white-color);
  font-family: body-font;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-div .footer-div-in .segment-back-div .segment-div ul li i {
  font-size: 12px;
  color: var(--white-color);
}

.footer-div .footer-div-in .segment-back-div .segment-div ul li:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer-div .footer-div-in .segment-back-div .segment-div ul li:hover i {
  color: var(--secondary-color);
}

.footer-div .footer-div-in .segment-back-div .segment-div .gallery-back-div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .gallery-back-div
  .gallery-div {
  display: flex;
  border-radius: 5px;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .gallery-back-div
  .gallery-div
  .img-div {
  width: 75px;
  height: 75px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .gallery-back-div
  .gallery-div
  .img-div
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 2000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .gallery-back-div
  .gallery-div:hover
  .img-div
  img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.footer-div .footer-div-in .segment-back-div .segment-div .call-contact-div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .call-contact-div
  .icon-div {
  width: 100%;
  display: flex;
  gap: 10px;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .call-contact-div
  .icon-div
  i {
  font-size: 18px;
  color: var(--secondary-color);
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .call-contact-div
  .icon-div
  h3 {
  font-family: sub-title-font;
  font-size: 17px;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .call-contact-div
  .text-div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .call-contact-div
  .text-div
  h4 {
  font-family: body-font;
  font-size: 14px;
}

.footer-div .footer-div-in .segment-back-div .segment-div .input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_field_container {
  min-width: 100%;
}

.text_field_container .footer_placeholder {
  transform: translateY(-45%);
  height: 35px;
  width: calc(80% - 35px);
}

.text_field_container .footer_text_field {
  height: 55px;
  border-radius: 50px;
}

.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .input-container
  .btn {
  height: 40px;
  padding: 0px 20px;
  color: var(--white-color);
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  font-family: sub-title-font;
  cursor: pointer;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}
.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .input-container
  .btn
  i {
  font-size: 11px;
  color: var(--white-color);
}
.footer-div
  .footer-div-in
  .segment-back-div
  .segment-div
  .input-container
  .btn:hover {
  opacity: 0.7;
}

.footer-div .main-bottom-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0px;
  background: #222;
}

.footer-div .main-top-div {
  background: url(../all-images/images/footer_bg.jpg) top no-repeat;
  background-size: cover;
  min-height: 45px;
}

.footer-div .main-bottom-div .div-in {
  width: 85%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-div .main-bottom-div .div-in .text {
  font-size: 12px;
  color: #b7b5a4;
}

.footer-div .main-bottom-div .div-in .text span {
  cursor: pointer;
  color: var(--white-color);
}

.footer-div .main-bottom-div .div-in .text span:hover {
  text-decoration: underline;
}

@media all and (max-width: 1168px) {
  .footer-div .footer-div-in {
    width: 92%;
  }
  .footer-div .main-bottom-div .div-in {
    width: 92%;
  }
  .footer-div .top-footer-contact .top-inner-div {
    width: 92%;
  }
}

@media all and (max-width: 1090px) {
  .footer-div .top-footer-contact .top-inner-div .contact-back-div {
    flex-direction: column;
  }
  .footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div {
    width: 100%;
    border-right: 0px;
    border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
  }
  .footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .icon-div {
    width: 50px;
    height: 50px;
  }
  .footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .icon-div i {
    font-size: 20px;
  }
  .footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div {
    width: calc(100% - 70px);
  }
  .footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div h3 {
    font-size: 18px;
  }
  .footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div .text-in  {
    font-size: 13px;
  }
  .footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div .text-in .span{
    font-size: 12px;
  }
  .footer-div .top-footer-contact .top-inner-div .contact-back-div .contact-div .text-div .text-in .span span{
    font-size: 11px;
  }
}

@media all and (max-width: 940px) {
  .footer-div .footer-div-in .segment-back-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-div .footer-div-in .segment-back-div .segment-div {
    width: 48%;
  }
}

@media all and (max-width: 640px) {
  .footer-div .footer-div-in .segment-back-div {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer-div .footer-div-in .segment-back-div .segment-div {
    width: 100%;
  }
}

@media all and (max-width: 450px) {
  .footer-div .footer-div-in .segment-back-div .segment-div h3 {
    font-size: 18px;
  }
  .footer-div .footer-div-in .segment-back-div .segment-div ul li {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .footer-div .main-bottom-div .div-in {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
}

/* //////////////////////About///////////////////////////// */

.other-pages-slide-section {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../all-images/body-pix/about-us-img.jpg) center no-repeat;
  background-size: cover;
}

.other-pages-slide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(157, 4, 60, 0.897);
  z-index: 1;
}

.other-pages-slide-section > * {
  position: relative;
  z-index: 2;
}

.other-pages-slide-div {
  width: 85%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.other-pages-slide-div .top-title nav ul {
 float: left;
  padding: 0px;
  margin: 0px;
}

.other-pages-slide-div .top-title nav ul li {
  float: left;
	list-style:none;
	color:var(--white-color);
	font-size:15px;
	padding: 0px 3px;
	font-family: sub-title-font;
	transition: 0.3s ease-in;
	cursor:pointer;
}

.other-pages-slide-div .top-title nav ul li i {
  margin-left: 6px;
  font-size: 14px;
  color: var(--white-color);
  transition: all 0.2s ease-in;
}

.other-pages-slide-div .top-title nav ul li:hover,
.other-pages-slide-div .top-title nav ul li:hover i {
  color: var(--secondary-color);
}

/* Main content */
.other-pages-slide-div .other-pages-back-div {
  border-radius: 6px;
}

.other-pages-slide-div .other-pages-back-div .main-content-back-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.other-pages-slide-div .other-pages-back-div .main-content-back-div .image-div {
  width: 25%;
  overflow: hidden;
}

.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .image-div
  img {
  width: 100%;
  object-fit: cover;
}

.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div
  h1 {
  font-size: 50px;
  line-height: 60px;
  font-family: title-font;
  color: var(--white-color);
}

.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div
  h2 {
  font-size: 30px;
  line-height: 40px;
  color: var(--white-color);
}
/* Meta Info Row */
.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div .count{  
	width: calc(100% - 20px);
	font-size: 15px;
	padding: 8px 10px;
    min-height: 20px;
    line-height: 25px;
    border-top: var(--white-color) 1px solid;
    border-bottom: var(--white-color) 1px solid;
    font-size: 14px;
	color: var(--white-color);
}

.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div .count span{  
	color: var(--white-color);
}

.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div .count i{
	color: var(--secondary-color);
	margin-right: 2px;
}

/* Paragraph */
.intro {
  font-size: 16px;
  line-height: 1.6;
}

.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div
  p {
  font-size: 17px;
  font-family: body-font;
  color: var(--white-color);
  margin-bottom: 25px;
}

.other-pages-slide-div .other-pages-back-div .main-content-back-div .btn-div {
  display: flex;
  gap: 20px;
}

.other-pages-slide-div .other-pages-back-div .main-content-back-div .btn {
  background: linear-gradient(to right, #e00a59f1, var(--secondary-color));
  height: 50px;
  border: none;
  padding: 0px 25px;
  border-radius: 25px;
  color: var(--white-color);
  cursor: pointer;
  font-size: 14px;
  font-family: body-font;
  display: flex;
  align-items: center;
  gap: 6px;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.other-pages-slide-div .other-pages-back-div .main-content-back-div .btn:hover {
  color: var(--white-color);
  background: linear-gradient(to left, #e00a59f1, var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .btn.right-btn {
  color: var(--text-color);
  background: var(--white-color);
}

.other-pages-slide-div .other-pages-back-div .main-content-back-div .btn span {
  color: var(--primary-color);
}


@media all and (max-width: 920px) {
  .other-pages-slide-div {
    width: 90%;
  }
  .other-pages-slide-div .other-pages-back-div .main-content-back-div .image-div {
    display: none;
  }
  .other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div {
    width: 100%;
  }
}

@media all and (max-width: 570px) {
  .other-pages-slide-div .other-pages-back-div .main-content-back-div .btn-div {
    flex-direction: column;
  }

  .other-pages-slide-div .other-pages-back-div .main-content-back-div .btn {
    width: 100%;
  }
 .other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div
  h1 {
  font-size: 7vw;
  line-height: 10vw;
}
 .other-pages-slide-div
  .other-pages-back-div
  .main-content-back-div
  .text-content-div
  h2 {
  font-size: 5vw;
  line-height: 6vw;
}
.intro {
  text-align: justify;
}
}

/* blog */
.blog-bg {
  background: var(--white-color);
}

.page-back-div {
  width: 100%;
  min-height: 300px;
}

.page-back-div .left-div {
  width: calc(100% - 360px);
  float: left;
  gap: 20px;
}

.page-back-div .full-container {
  width: 100%;
  float: none;
}

.page-back-div .other-pg-left-div {
  width: calc(100% - 380px);
}

.page-back-div .left-div .page-list-back-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-back-div .left-div .table-page-list-back-div {
  gap: 30px;
}

.page-back-div .left-div .table-page-list-back-div .btn-div{
  display: flex;
  align-self: flex-start;
}

.page-back-div .left-div .table-page-list-back-div .btn-div .btn{
  border: none;
  background: var(--primary-color);
  border-radius: 25px;
  font-family: sub-title-font;
  padding: 0px 25px;
  height: 45px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.page-back-div .left-div .table-page-list-back-div .btn-div .btn:hover{
 opacity: .9;
}

.page-back-div .right-div {
  width: 340px;
  float: right;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-back-div .other-pg-right-div{
  width: 360px;
}

.page-back-div .right-div .div-in {
  display: flex;
  padding: 20px;
  gap: 15px;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-color);
  border: 1px solid var(--bg-color2);
  border-radius: 8px;
  padding-bottom: 20px;
}

.page-back-div .right-div .page-div-in {
  background: var(--white-color);
}

.page-back-div .right-div .div-in h3 {
  font-size: 16px;
  font-family: sub-title-font;
  color: var(--sub-body-color);
}

.page-back-div .right-div .div-in ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-back-div .right-div .div-in ul li {
  padding: 7px 10px;
  color: var(--sub-body-color);
  list-style: none;
  font-size: 13px;
  cursor: pointer;
  font-family: sub-title-font;
  border-radius: 5px;
  background: var(--white-color);
  border: #eceaea 1px solid;
  transition: all 0.2s ease-in 0.2s;
  white-space: nowrap;
}

.page-back-div .right-div .div-in ul li:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.page-back-div .right-div .div-in .pages-inner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-back-div .right-div .div-in .pages-inner-content p {
  color: var(--sub-body-color);
}

.page-back-div .right-div .div-in .pricing-back-div{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-back-div .right-div .div-in .pricing-back-div .title{
  width: calc(100% - 30px);
  padding: 10px 15px;
   background: rgba(204, 204, 204, .2);
   border-radius: 4px;
   font-family: sub-title-font;
   color: var(--sub-body-color);
   display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.page-back-div .right-div .div-in .pricing-back-div .title span{
  font-size: 20px;
  color: var(--primary-color);
  font-family: sub-title-font;
}

.page-back-div .other-pg-right-div{
  width: 360px;
}

.page-back-div .other-pg-right-div .details-back-div{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.page-back-div .other-pg-right-div .details-back-div .details-div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--bg-color2) 1px solid;
  min-height: 40px;
  color: var(--sub-body-color);;
  font-family: sub-title-font;
  font-size: 16px;
  padding-bottom: 5px;
  transition: all 0.2s ease-in 0.2s;
}

.page-back-div .other-pg-right-div .details-back-div .cursor-div:hover{
  color: var(--primary-color);
}


#pricingContainer {
  display: none;
}




.page-back-div .left-div .page-list-back-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-back-div .left-div .page-list-back-div .main-blog-div {
  width: calc(100% - 60px);
  padding: 30px;
  min-height: 450px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin-bottom: 30px;
  background: var(--bg-color);
  border: 1px solid var(--bg-color2);
}

.page-back-div .left-div .page-list-back-div .main-blog-div .top-text {
  position: absolute;
  padding: 5px 15px;
  margin: 10px;
  height: 13px;
  color: var(--white-color);
  line-height: 13px;
  font-size: 10px;
  font-family: sub-title-font;
  background: var(--primary-color);
  border-radius: 5px 20px;
  z-index: 100;
}

.page-back-div .left-div .page-list-back-div .main-blog-div .image-div {
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
}

.page-back-div .left-div .page-list-back-div .main-blog-div .image-div img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.page-back-div .left-div .page-list-back-div .main-blog-div .text-content-div {
  padding: 15px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--sub-body-color);
}

.page-back-div
  .left-div
  .page-list-back-div
  .main-blog-div
  .text-content-div
  h2 {
  font-size: 22px;
  font-family: sub-title-font;
  text-align: left;
  color: var(--body-color);
}

.page-back-div
  .left-div
  .page-list-back-div
  .main-blog-div
  .text-content-div
  .count {
  border-left: 0px;
  border-right: 0px;
  padding: 5px;
  height: 20px;
  line-height: 20px;
  font-size: 13px;
  font-family: body-font;
  color: var(--text-color);
}

.page-back-div
  .left-div
  .page-list-back-div
  .main-blog-div
  .text-content-div
  .count
  i {
  color: var(--secondary-color);
  margin-right: 5px;
}

.page-back-div
  .left-div
  .page-list-back-div
  .main-blog-div
  .text-content-div
  p {
  text-align: left;
  color: var(--text-color);
}

.page-back-div
  .left-div
  .page-list-back-div
  .main-blog-div
  .text-content-div
  .btn {
  border: none;
  height: 40px;
  padding: 0px;
  border-radius: 4px;
  background: none;
  color: var(--secondary-color);
  font-family: sub-title-font;
  font-size: 14px;
  transition: all 0.2s ease-in 0.2s;
  cursor: pointer;
}

.page-back-div .left-div .page-list-back-div .main-blog-div .btn:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.blog-ajax-loader {
  top: 90%;
  left: 40%;
}

.main-picture-back-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.main-picture-back-div .main-picture-div {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}

.main-picture-back-div .main-picture-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-picture-back-div .bottom-img-div {
  width: 100%;
  height: 120px;
  position: relative;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  align-items: center;
}

.bottom-img-div {
  display: none;
}

.main-picture-back-div .bottom-img-div .inner-img-container {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  -moz-transition: all 0.2s ease-in 02s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.main-picture-back-div .bottom-img-div .inner-img-container .inner-img-div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  -moz-transition: all 0.2s ease-in 02s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.main-picture-back-div .bottom-img-div .inner-img-container .each-img-div {
  height: 100px;
  width: 110px;
  transition: transform 0.3s ease-in-out;
}

.main-picture-back-div .bottom-img-div .inner-img-container .each-img-div img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.main-picture-back-div
  .bottom-img-div
  .inner-img-container
  .each-img-div:hover {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  transform: scale(1.06);
}

.bottom-img-div .left-btn,
.right-click-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  cursor: pointer;
  z-index: 100;
  border: none;
  padding: 5px;
  border-radius: 3px;
  color: var(--white-color);
  background: rgba(0, 0, 0, 0.7);
}

.bottom-img-div .left-btn {
  left: 0px;
}

.bottom-img-div .right-click-btn {
  right: 0px;
}

.page-back-div .right-div .div-in .related-post-back-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.page-back-div .right-div .div-in .related-post-back-div .related-post {
  width: 100%;
  height: 90px;
  display: flex;
  gap: 10px;
  cursor: pointer;
  padding: 10px 0px;
  border-bottom: #f5f2f2 1px solid;
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .image-div {
  width: 90px;
  border: #f5efef 4px solid;
  overflow: hidden;
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .image-div
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .cont-div {
  width: calc(100% - 90px);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .cont-div
  h3 {
  color: var(--sub-body-color);
  font-size: 15px;
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .cont-div
  p {
  color: var(--sub-body-color);
  font-size: 14px;
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .cont-div
  h3:hover {
  color: var(--secondary-color);
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .cont-div
  .comment {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-family: body-font;
  gap: 3px;
  color: var(--sub-body-color);
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .cont-div
  .comment
  span {
  color: var(--secondary-color);
}

.page-back-div
  .right-div
  .div-in
  .related-post-back-div
  .related-post
  .cont-div
  .comment
  i {
  font-size: 9px;
}

.page-back-div .right-div .div-in .pages-inner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-back-div .right-div .div-in .pages-inner-content p {
  color: var(--sub-body-color);
}

@media all and (max-width: 920px) {
  .page-back-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .page-back-div .left-div {
    width: 100%;
    float: none;
  }

  .page-back-div .right-div {
    width: 100%;
    display: flex;
    gap: 20px;
  }
}

@media all and (max-width: 500px) {
  .page-back-div {
    width: calc(100% - 20px);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0px;
  }

  .page-back-div .left-div .page-list-back-div .main-blog-div {
    width: calc(100% - 30px);
    padding: 15px;
  }
}

.blog-text {
  font-size: 16px;
  font-family: body-font;
  line-height: 1.6;
  margin-top: 10px;
}

.search-inner-details {
  display: flex;
  flex-direction: column;
  gap: 25px !important;
}

.search-inner-details h2 {
  font-size: 18px !important;
  font-family: subtitle-font;
}

.recent-post {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--bg-color2);
  padding-bottom: 15px;
  cursor: pointer;
}

.recent-post-inner {
  width: 220px;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}

.recent-post-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post p {
  font-size: 15px;
  font-family: body-font;
  font-weight: bold;
}

.recent-post p:hover {
  color: var(--secondary-color);
}

.recent-post small {
  font-size: 12px;
  font-family: body-font;
  color: var(--secondary-color);
}

.recent-post i {
  margin-right: 3px;
  color: var(--text-color);
}

.recent-post span {
  color: var(--text-color);
}

.search-inner-details .inner-table-content {
  width: calc(100% - 40px);
  padding: 20px;
}

.search-inner-details .pages-inner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-inner-details .pages-inner-content p {
  color: var(--sub-body-color);
}

.main-pages-content-div {
  color: var(--sub-body-color);
  font-family: body-font;
  text-align: justify;
  padding: 20px 0px;
  line-height: 30px;
  width: 100%;
}

.main-pages-content-div .btn-div .btn{
  color: var(--sub-body-color);
  font-family: body-font;
  text-align: justify;
  padding: 20px 0px;
  line-height: 30px;
  width: 100%;
}

.main-pages-content-div .btn-div{
  display: flex;
  align-self: flex-start;
}

.main-pages-content-div .btn-div .btn{
  border: none;
  background: var(--primary-color);
  border-radius: 25px;
  font-family: sub-title-font;
  padding: 0px 30px;
  height: 45px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.main-pages-content-div .btn-div .btn:hover{
 opacity: .9;
}

.comment-back-div {
  width: 100%;
  margin-top: 10px;
}

.main-pages-content-div .heading{
  color: var(--primary-color);
  font-family: title-font;
  font-size: 25px;

}

.main-pages-content-div h2.sub-heading{
  color: var(--primary-color);
  font-family: title-font;
  font-size: 25px;
  margin: 25px 0px 10px 0px;
}

.main-pages-content-div ul{
    margin: 0px;
}

.main-pages-content-div .color{
  color: var(--primary-color);
}

.main-pages-content-div .inner-div h2 {
  font-size: 28px;
  line-height: 40px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    #000000ef
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: left;
}

.main-pages-content-div .inner-div h2 hr{
    width: 200px;
	border:none;
    border-bottom: 3px solid var(--primary-color);
	float:left;
}

.main-pages-content-div .inner-div span{
   color: var(--primary-color);
   font-size: 17px;
   font-family: sub-title-font;
}

.main-pages-content-div .inner-div p i{
   color: var(--primary-color);
   font-size: 20px;
}

.main-pages-content-div .inner-div .info-title{
  padding: 10px 15px;
  color: var(--primary-color);
  font-size: 17px;
  background: rgba(204, 204, 204, .3);
  margin: 25px 0px;
  border-radius: 3px;
}

.main-pages-content-div .inner-div .marquee-info{
  background: var(--primary-color);
  color: var(--white-color);
}

.blog-div .blog-div-inner .trade-mark {
  position: absolute;
  top: 40px;
  left: 45px;
  background: var(--primary-color);
  width: 120px;
  padding: 5px;
  display: flex;
  justify-content: center;
  border-radius: 30px 0px 30px 0px;
}

.blog-div .blog-div-inner .trade-mark span {
  color: var(--white-color);
  font-family: body-font;
  font-size: 10px;
}

.blog-div .blog-div-inner .blog-text-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-div .blog-div-inner .blog-text-div h2 {
  font-family: sub-title-font;
  color: var(--sub-body-color);
}

.blog-div .blog-div-inner .blog-text-div span {
  color: var(--text-color);
  font-size: 13px;
}

.blog-div .blog-div-inner .blog-text-div span i {
  color: var(--secondary-color);
}

.blog-div .blog-div-inner .blog-text-div p {
  color: var(--text-color);
}

.blog-div .blog-div-inner .blog-text-div a {
  width: 100px;
  color: var(--secondary-color);
  transition: all 0.6s ease-in-out;
}

.blog-div .blog-div-inner .blog-text-div a:hover {
  color: var(--primary-color);
}

.blog-div .blog-search {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-div .blog-search .search-inner {
  background: var(--bg-color);
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--bg-color2);
}

.blog-div .blog-search .search-inner h2 {
  font-family: sub-title-font;
  color: var(--sub-body-color);
  font-size: 16px;
}

.blog-div .blog-search .search-inner .tag-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-div .blog-search .search-inner .tag-list .btn {
  border: 1px solid var(--bg-color2);
  border-radius: 6px;
  font-family: body-font;
  color: var(--sub-body-color);
  background: var(--white-color);
  font-size: 13px;
  padding: 10px;
  -webkit-border-radius: 6px;
  cursor: pointer;
  transition: all 0.6s ease-in-out;
}

.blog-div .blog-search .search-inner .tag-list .btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Contact Button Style */
.menu-btn-div {
  width: 100%;
  min-height: 50px;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-btn-div .btn-div-in {
  position: relative;
  width: 85%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.menu-btn-div .btn-div-in .menu-btn {
  border: none;
  color: #0c2b4b;
  font-size: 12px;
  min-height: 50px;
  min-width: 130px;
  padding: 0px 20px;
  font-family: sub-title-font;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  background: none;
  cursor: pointer;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

.menu-btn-div .btn-div-in .menu-btn:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.menu-btn-div .btn-div-in .active-btn {
  color: var(--primary-color);
  background: var(--white-color);
}

/* Contact Page Style */
.contact-hash-bg {
  min-height: 150px;
  background: rgba(204, 204, 204, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-body-div {
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  gap: 20px;
}

.bottom-body-div .contact-div {
  width: 40%;
  min-height: 70px;
  color: #25292d;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub-body-color);
}

.bottom-body-div .contact-div .div-in {
  padding: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.bottom-body-div .contact-div .div-in .icon {
  width: 45px;
  height: 45px;
  overflow: hidden;
}

.bottom-body-div .contact-div .div-in .icon img {
  width: 100%;
  object-fit: cover;
}

.bottom-body-div .contact-div .div-in .text {
  text-align: left;
}

.bottom-body-div .contact-div .div-in .text h2 {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  font-family: sub-title-font;
}

.bottom-body-div .contact-div .div-in .text p {
  margin: 0px;
  padding: 0px;
}

@media all and (max-width: 1130px) {
  .bottom-body-div {
    width: 95%;
  }
}

@media all and (max-width: 840px) {
  .bottom-body-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .bottom-body-div .contact-div {
    width: 95%;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    border-bottom: #b4b4b4 1px dashed;
  }
}

/* Map Style */
.map-body-div {
  width: 100%;
  padding: 0px;
}

.map-back-div {
  width: 100%;
  border: none;
}

.map-back-div .google-map {
  width: 100%;
  height: 350px;
  padding: 0px;
  border: none;
}

#kaduna-hide-div,
#ibadan-hide-div {
  display: none;
}

/* Mail Subscribe Style */
.contact-mail-div {
  width: 100%;
  min-height: 240px;
  border-radius: 7px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.contact-mail-div .inner-div {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.contact-mail-div .inner-div .div-in {
  width: 47.5%;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-mail-div .inner-div .right-div-in {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-mail-div .inner-div .div-in .text_area {
  height: 145px;
}

.contact-mail-div .inner-div .div-in .btn {
  height: 50px;
  width: 40%;
  color: #fff;
  background-color: var(--primary-color);
  font-size: 14px;
  border-radius: 25px;
  font-family: body-font;
  border: none;
  transition: all 0.2s ease-in 0.2s;
  -moz-transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
  cursor: pointer;
}

.contact-mail-div .inner-div .div-in .btn:hover {
  opacity: 0.9;
}

.text_area_container {
  width: 100%;
  position: relative;
  min-height: 70px;
}

.text_area_container .placeholder {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  left: 30px;
  color: #999;
  pointer-events: none;
  background: transparent;
  z-index: 100;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

.text_area_container .text_area {
  width: 100%;
  min-height: 90px;
  border: #e2e2e2 1px solid;
  background: var(--bg-white);
  padding: 25px 30px;
  font-size: 15px;
  border-radius: 5px;
  font-family: body-font;
  color: #1e1e1e;
  outline: none;
  resize: vertical;
}

.text_area_container .text_area:focus {
  background: #fff;
  border: #f1c40f 1px solid;
}

.text_area_container .issue {
  background: #fff;
  border: #f00 1px solid;
}

.text_area_container .text_area:focus + .placeholder,
.text_area_container .text_area:not(:placeholder-shown) + .placeholder {
  top: 10%;
  font-size: 11px;
  color: #666;
}

@media all and (max-width: 920px) {
  .contact-mail-div .inner-div {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-mail-div .inner-div .div-in {
    width: 100%;
  }

  .contact-mail-div .right-div-in {
    width: 100%;
  }
}

@media all and (max-width: 400px) {
  .contact-mail-div .inner-div .div-in .btn {
    width: 100%;
  }
}




.message-contact {
  gap: 30px;
}

.contact-input-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-input-div .btn {
  width: 100%;
  height: 60px;
  border: none;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 5px;
  color: var(--white-color);
  font-family: sub-title-font;
  cursor: pointer;
  font-size: 16px;
}

.message {
  min-width: 100%;
  width: calc(100% - 60px);
  min-height: 145px;
  border: #e2e2e2 1px solid;
  background: var(--white-color);
  padding: 0px 30px;
  font-size: 15px;
  border-radius: 5px;
  font-family: body-font;
  box-sizing: border-box;
  color: #1e1e1e;
  outline: none;
  resize: vertical;
}

.message::placeholder {
  color: #999;
  background: transparent;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes moveUpDown {
  0% {
    top: -100px; /* Start position */
    opacity: 1;
  }
  50% {
    top: -90px; /* Move to this position (subtle movement) */
  }
  100% {
    top: -100px; /* Return to start position */
    opacity: 1;
  }
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveRightLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}

.switch-country-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(5px) brightness(0.8) contrast(1.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

.switch-country-overlay .switch-modal-div {
  min-width: 700px;
  min-height: 600px;
  background: var(--white-color);
  border-radius: 10px;
}

.switch-country-overlay .switch-modal-div .image-div {
  width: 100%;
  height: 250px;
  background: url("../all-images/images/dashboard-bg.png"),
    linear-gradient(165deg, #fffdf5, #fff, #fffdf5);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100%;
  border-radius: 10px;
}

.switch-country-overlay .switch-modal-div .content-div {
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(-120deg, #f8f5ec, #fff);
  border-radius: 10px;
}

.switch-country-overlay .switch-modal-div .content-div h3 {
  font-family: sub-title-font;
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.switch-country-overlay .switch-modal-div .content-div .each-content {
  width: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-bottom: #b4b4b4 1px dashed;
  padding: 20px 15px;
  cursor: pointer;
  transition: all 0.3s ease-in 0.3s;
  border-radius: 10px;
}

.switch-country-overlay .switch-modal-div .content-div .each-content:hover {
  background: linear-gradient(-100deg, #fff, #faf5e5);
  border-radius: 8px;
}

.switch-country-overlay .switch-modal-div .content-div .each-content .logo-div {
  width: 70px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
}

.switch-country-overlay
  .switch-modal-div
  .content-div
  .each-content
  .logo-div
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.switch-country-overlay .switch-modal-div .content-div .each-content .text-div {
  width: calc(100% - 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
}

.switch-country-overlay
  .switch-modal-div
  .content-div
  .each-content
  .text-div
  h2 {
  font-family: sub-title-font;
  color: var(--primary-color);
  font-size: 18px;
}

.switch-country-overlay
  .switch-modal-div
  .content-div
  .each-content
  .text-div
  i {
  font-size: 20px;
}

.switch-country-link {
  position: fixed;
  top: 140px;
  z-index: 400;
  width: 11px;
  height: 130px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 2px;
  cursor: pointer;
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  padding: 5px;
  border-radius: 0px 5px 5px 0px;
  transition: 0.2s ease-in 0.2s;
  overflow: hidden;
}

.switch-country-link img {
  width: 100%;
  
  object-fit: cover;
}


@media all and (max-width: 760px) {
  .switch-country-overlay .switch-modal-div {
    min-width: 95%;
  }
}



.main-content-div {
	width:100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}


.fetch-ebooks{
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: auto;
	align-items: center;
	justify-content: center;
	gap: 35px;
}



/*-----------table component---------------------------------------------------------------------------------------*/
.tables-content-div {
	background-color: var(--white-color);
	border-radius: 7px;
	width: 100%;
	min-height: 200px;
	border: 1px solid rgba(215, 215, 215, .6);
}

.tables-content-div .video-cat-back-div{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	padding: 30px;
}

.tables-content-div .content-title {
	min-height: 50px;
	padding: 0px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(215, 215, 215, .6);
}

.tables-content-div .content-title .title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: sub-title-font;
	font-size: 15px;
	color: var(--sub-body-color2);
}

.tables-content-div .content-title .title i {
  color: var(--primary-color);
}

.tables-content-div .content-title .title h3{
	font-size: 15px;
	font-family: sub-title-font;
}

.tables-content-div .content-title .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background: var(--sub-body-color);
	color: var(--white-color);
	font-size: 10px;
	border: none;
	cursor: pointer;
	height: 30px;
	padding: 0px 18px;
	border-radius: 15px;
	transition: 0.2s ease-in;
	font-family: body-font;
}

.tables-content-div .inner-table-content {
	width: calc(100% - 40px);
	padding: 20px;
	gap: 25px 10px;
	display: flex;
	flex-wrap: wrap;
	color: var(--sub-body-color);
}


.tables-content-div .inner-table-content p{
	font-size: 13px;
	font-family: sub-title-font;
}


.book-back-div {
  display: flex;
  justify-content: start;
  padding: 5px;
  flex-wrap: wrap;
}

.book-back-div .book-div {
  position: relative;
  border-radius: 10px;
  border: #e6e6e6 1px solid;
  background: var(--white-color);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  cursor: pointer;
  flex: 1 1 19%; /* grow:1 shrink:1 basis:19% */
  min-width: 270px;
  max-width: 270px;
}
.book-back-div .book-div:hover {
  border: 1px solid var(--primary-color);
  background: linear-gradient(-180deg, #faf5e5, #fff);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.book-back-div .book-div .image-div {
  position: relative;
  width: calc(100% - 20px);
  height: 200px;
  border-radius: 7px;
  overflow: hidden;
  margin-top: 10px;
}

.book-back-div .book-div .image-div img {
  width: 100%;
  height: 100%;
  transition: 0.2s ease-in;
}

.book-back-div .book-div:hover .image-div img {
  transform: scale(1.1);
}

.book-back-div .book-div .icon-div {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--white-color);
  border-radius: 5px;
  border: rgba(0, 0, 0, 0.2) 1px solid;
  right: 20px;
  top: 190px;
  overflow: hidden;
  z-index: 2;
}

.book-back-div .book-div .icon-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-back-div .book-div .text-div {
  width: calc(100% - 40px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.book-back-div .book-div .text-div .details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.book-back-div .book-div .text-div .details h3 {
  font-family: sub-title-font;
  font-size: 18px;
  line-height: 20px;
  color: var(--body-color);
}
.book-back-div .book-div .text-div .details .book-sum {
  display: flex;
  gap: 10px;
  font-size: 12px;
}
.book-back-div .book-div .text-div .details .book-sum p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.book-back-div .book-div .text-div .details .book-sum p i {
  color: var(--primary-color);
}

.book-back-div .book-div .text-div .btn {
  width: 100%;
  border: none;
  height: 40px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 20px;
  font-family: sub-title-font;
  align-self: self-start;
  padding: 0px 15px;
  color: var(--white-color);
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  background-size: 100%;
  background-position: left;
  transition: background-position 0.4s ease-in-out, transform 0.2s ease-in-out;
  white-space: nowrap;
}

.book-back-div .book-div .text-div .btn:hover {
  background-size: 200% 100%;
  background-position: right;
  transform: scale(1.05); /* subtle hover grow */
}


@media all and (max-width: 460px) {
  .tables-content-div .video-title {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    padding: 15px 15px;
  }

  .tables-content-div .video-title p{
    font-size: 13px;
  }

}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.slide-form-div {
  position: absolute;
  min-width: 550px;
  min-height: 650px;
  max-height: 650px;
  background-color: var(--white-color);
  overflow: hidden;
  border-radius: 10px;
}

.slide-form-div .form-title-div {
  width: calc(100% - 40px);
  padding: 0px 20px;
  min-height: 65px;
  background: rgba(250, 245, 229, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-form-div .form-title-div .title-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: body-font;
  color: var(--text-color);
}
.slide-form-div .form-title-div .title-div .icon-div {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    120deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 8px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
}
.slide-form-div .form-title-div .title-div .icon-div i {
  color: var(--white-color);
  font-size: 20px;
}
.slide-form-div .form-title-div .title-div h3 {
  background: linear-gradient(
    120deg,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for WebKit browsers */
  background-clip: text;
  color: transparent;
}
.slide-form-div .form-title-div .btn-div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-form-div .form-title-div .btn-div .btn {
  border: none;
  height: 30px;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 15px;
  font-family: body-font;
  padding: 0px 15px;
  color: var(--white-color);
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  background-size: 100%;
  background-position: left;
  transition: background-position 0.4s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.slide-form-div .form-title-div .btn-div .btn:hover {
  background-size: 200% 100%;
  background-position: right;
  transform: scale(1.05); /* subtle hover grow */
}

.slide-form-div .container-back-div {
  position: absolute;
  width: 100%;
  height: calc(100% - 80px);
  bottom: 0px;
  padding-bottom: 15px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: start;
  align-items: center;
}
.slide-form-div .container-back-div .form-notification {
	width: calc(100% - 60px);
	padding: 20px 30px;
	height: auto;
	background: rgba(250, 245, 229, 0.5);
	color: var(--link-color);
}

.slide-form-div .container-back-div .form-notification strong{
	color: var(--primary-color);
}

.slide-form-div .container-back-div .text_field_back_container{
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 8px 0px;
}

.slide-form-div .container-back-div .text_field_back_container .col-back-div{
	display: flex;
	gap: 8px;
}

.slide-form-div .container-back-div .btn-div {
  width: calc(100% - 60px);
  padding: 0px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.slide-form-div .container-back-div .btn-div .btn {
  border: none;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 30px;
  font-family: body-font;
  font-size: 17px;
  color: var(--white-color);
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  background-size: 100%;
  background-position: left;
  transition: background-position 0.4s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.slide-form-div .container-back-div .btn-div .btn:hover {
  background-size: 200% 100%;
  background-position: right;
  transform: scale(1.05); /* subtle hover grow */
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.form-container {
  width: calc(100% - 40px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-container .form-note {
  font-size: 12px;
  color: var(--sub-body-color2);
  font-style: italic;
}
.form-container .form-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 10px;
}
.form-container .form-text span {
  color: var(--secondary-color);
  font-style: italic;
  font-size: 11px;
}


.main-content-div {
	width: calc(100% - 60px);
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 0px;
}



.form-main-content{
	width: 100%;
	box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.068);
	border-radius: 15px;
	min-height: unset;
	padding: 0px;
}


@media all and (max-width: 560px) {
  .slide-form-div {
    min-width: 100%;
		min-height: 100%;
    max-height: 100%;
    border-radius: 0px;
  }
  .main-content-div {
    width: calc(100% - 30px);
    padding: 15px;
  }
  .slide-form-div .container-back-div .btn-div {
    width: calc(100% - 30px);
    padding: 0px 15px;
  }
  .slide-form-div .container-back-div .btn-div .btn {
    width: 100%;
  }
}



.text_area_container {
	width: 100%;
    position: relative;
}

.text_area_container .placeholder {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    left: 30px;
    color: #999;
    pointer-events: none;
    background: transparent;
    z-index: 100;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

.text_area_container .text_area {
    min-width: 100%;
	width: calc(100% - 60px);
    min-height: 30px;
    border: #e2e2e2 1px solid;
	background: var(--white-color);
    padding: 25px 30px;
    font-size: 15px;
	box-sizing: border-box;
    border-radius: 5px;
    font-family: body-font;
    color: #1e1e1e;
    outline: none;
    resize: vertical;
}

.text_area_container .text_area:focus {
	background: #fff;
	border: #f1c40f 1px solid;
}

.text_area_container .issue {
	background: #fff;
	border: #F00 1px solid;
}

.text_area_container .issueText {
  margin-top: 1px;
  color: #f00;
  font-family: body-font;
  font-size: 10px;
  font-style: italic;
}

.text_area_container .text_area:focus + .placeholder,
.text_area_container .text_area:not(:placeholder-shown) + .placeholder {
    top: 10%;
    font-size: 11px;
    color: #666;
}

.back-container {
  display: flex;
  border: #e2e2e2 1px solid;
  border-radius: 10px;
  background: var(--white-color);
}

.back-container .inner-container{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.back-container .inner-container .btn-div{
  display: flex;
}

.back-container-div .btn{
  border: none;
  background: var(--primary-color);
  border-radius: 25px;
  font-family: sub-title-font;
  padding: 0px 25px;
  height: 45px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.back-container .inner-container .btn-div .btn:hover{
 opacity: .9;
}

@media all and (max-width: 370px) {
  .back-container .inner-container{
    padding: 20px;
  }
  .back-container .inner-container .btn-div .btn{
  width: 100%;
   font-size: 12px;
  }
}



.other-main-content {
	display: flex;
  width: 100%;
  padding: 0px;
}


.table-div{
	width:100%;
	display: flex;
	flex-direction: column;
	background: var(--white-color);
	overflow: auto;
	border: #e7ecec 1px solid;
	border-radius: 10px;
}

.table-div .table {
	width: 100%;
	font-size: 12px;
	min-width: 500px;
	border-collapse: collapse;
}

.table-div .table .tb-col{
background: rgba(204, 204, 204, .2);
	height: 55px;
  text-align: left;
  border-bottom: 1px solid rgba(215, 215, 215, .6);
	color: var(--sub-body-color);
}

.table-div .table .tb-col th {
  padding: 10px 20px;
	font-family: sub-title-font;
	font-size: 16px;
	font-weight: 100;
}

.table-div .table .tb-row {
  height: 60px;
	font-size: 15px;
	color: var(--text-color);
  border-bottom: 1px solid rgba(215, 215, 215, .6);
	transition:all 0.2s ease-in 0.2s;
}

.table-div .table .tb-row:hover {
	background: rgba(215, 215, 215, .3);
}

.table-div .table td {
  padding: 10px 20px; 
	font-family: body-font;
}

/* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.video-back-div {
  display: flex;
  justify-content: start;
  gap: 15px;
  padding: 5px;
  flex-wrap: wrap;
}

.video-back-div .video-div {
	position: relative;
	width: 300px;
	height: 250px;
	border-radius: 5px;
	display: flex;
	cursor: pointer;
}

.video-back-div .video-div .video-slide{
  width: 100%;
	height: 100%;
	border-radius: 5px;
	object-fit: cover;
}

.video-back-div .video-div .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.video-back-div .video-div .play-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

.video-back-div .video-div {
  position: relative; /* ensure overlay positions correctly */
  overflow: hidden;
}

.video-back-div .video-div .sub-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 20px;
  padding-top: 30px;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.video-back-div .video-div:hover .sub-overlay {
  opacity: 1; /* show overlay on hover */
}

.video-back-div .video-div .sub-overlay h3{
  font-size: 18px;
  font-family: sub-title-font;
  text-align: center;
}


@media all and (max-width: 470px) {
  .video-back-div .video-div {
   width: 100%;
  }
}


.partners-back-div {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 1%;
}

.partners-back-div .partner-div {
  display: flex;
  align-items: center;
  width: 220px;
  max-width: 18%;
  height: 100px;
  flex-grow: 1;
  overflow: hidden;
  border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 12px 3px rgba(0, 0, 0, 0.02);
	background: linear-gradient(-120deg, #f8f6ef, #fff);
	transition: all 0.3s ease-in 0.3s;
  cursor: pointer;
}

.partners-back-div .partner-div:hover {
  background: linear-gradient(-100deg, #fff, #faf5e5);
  transform: scale(1.03);
  transition: 0.2s ease-in;
  border: 1px solid rgba(157, 4, 60, 0.096);
}

.partners-back-div .partner-div img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media all and (max-width: 900px) {
  .partners-back-div .partner-div {
     max-width: 48.5%;
  }
}
/* Larger main header navigation */
header .main-header .main-header-inner .link-div nav ul li {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

@media all and (max-width: 1050px) {
  header .main-header .main-header-inner .link-div nav ul { gap: 14px; }
  header .main-header .main-header-inner .link-div nav ul li { font-size: 16px; }
}


/* Hide slider play controls: the hero is an automatic background slider. */
#wowslider-container1 .ws_controls,
#wowslider-container1 .ws_playpause,
.slide-section .play-div,
.slide-section .play-btn {
  display: none !important;
}

/* Keep the support buttons compact and readable over the hero images. */
.slide-section .slide-div .slide-inner-div .slide-card .text-div {
  padding: 0;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div {
  justify-content: center;
  gap: 12px;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn {
  flex: 1 1 240px;
  max-width: 300px;
  min-height: 52px;
  padding: 0 20px;
  white-space: nowrap;
  background: rgba(0, 0, 0, .72);
  border: 1px solid rgba(255,255,255,.2);
}

@media all and (max-width: 600px) {
  .slide-section .slide-div {
    background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.28));
  }
  .slide-section .slide-div .slide-inner-div {
    width: 92%;
  }
  .slide-section .slide-div .slide-inner-div .slide-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(8,14,32,.5);
    border: 1px solid rgba(255,255,255,.2);
  }
  .slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div {
    flex-direction: column;
    gap: 10px;
  }
  .slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn {
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }
}


/* WES hero support panel: compact glass panel that sits cleanly over the slider. */
.slide-section .slide-div {
  background: linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.18) 55%, rgba(0,0,0,.08));
  pointer-events: none;
}
.slide-section .slide-div .slide-inner-div {
  width: min(92%, 1180px);
  justify-content: center;
  gap: 24px;
  pointer-events: auto;
}
.slide-section .slide-div .slide-inner-div .slide-card {
  width: min(680px, 100%);
  min-height: 0;
  padding: 24px;
  background: rgba(8,14,32,.42);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.slide-section .slide-div .slide-inner-div .slide-card .text-div {
  padding: 0;
  gap: 0;
}
.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div {
  justify-content: center;
  gap: 12px;
}
.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn {
  flex: 1 1 240px;
  max-width: 300px;
  min-height: 52px;
  height: 52px;
  padding: 0 20px;
  white-space: nowrap;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.2);
}

/* Remove every visible play/pause control from the hero slider. */
#wowslider-container1 .ws_controls,
#wowslider-container1 .ws_playpause,
.slide-section .play-div,
.slide-section .play-btn {
  display: none !important;
}

@media all and (max-width: 600px) {
  .slide-section .slide-div {
    background: linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.28));
  }
  .slide-section .slide-div .slide-inner-div {
    width: 92%;
  }
  .slide-section .slide-div .slide-inner-div .slide-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(8,14,32,.5);
  }
  .slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div {
    flex-direction: column;
    gap: 10px;
  }
  .slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn {
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }
}


/* === Custom slider/course presentation adjustments === */
.slide-section .slide-div .slide-inner-div .slide-card h1,
.slide-section .slide-div .slide-inner-div .slide-card .text-div,
.slide-section .slide-div .slide-inner-div .slide-card .text-div p,
.slide-section .slide-div .slide-inner-div .slide-card .text-div a {
    color: #ffffff !important;
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div a {
    text-decoration-color: rgba(255,255,255,.75);
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn {
    background: linear-gradient(135deg, #001f5b 0%, #003b8f 52%, #00163f 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    box-shadow: 0 5px 14px rgba(0, 22, 63, .28);
}

.slide-section .slide-div .slide-inner-div .slide-card .text-div .btn-div .btn:hover {
    background: linear-gradient(135deg, #003b8f 0%, #0051b8 52%, #001f5b 100%) !important;
    color: #ffffff !important;
}

/* Make the IT Courses images more compact while keeping them sharp */
.partners-back-div .partner-div {
    width: 165px;
    max-width: 15%;
    height: 78px;
}

.partners-back-div .partner-div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media all and (max-width: 900px) {
    .partners-back-div .partner-div {
        width: 145px;
        max-width: 30%;
        height: 72px;
    }
}

@media all and (max-width: 600px) {
    .partners-back-div .partner-div {
        width: 130px;
        max-width: 44%;
        height: 68px;
    }
}


/* ==========================================================================
   WES ABOUT US - homepage section immediately below the slider
   ========================================================================== */
.wes-about-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.wes-about-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -180px;
  top: -170px;
  background: radial-gradient(circle, rgba(0, 99, 210, .12), rgba(0, 99, 210, 0) 68%);
  pointer-events: none;
}

.wes-about-inner {
  width: 86%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(0, 1.35fr);
  gap: 72px;
  align-items: center;
}

.wes-about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wes-about-octagon {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  clip-path: polygon(30% 3%, 70% 3%, 97% 30%, 97% 70%, 70% 97%, 30% 97%, 3% 70%, 3% 30%);
  background: linear-gradient(145deg, #002f78, #0878e8 52%, #001b49);
  box-shadow: 0 22px 55px rgba(0, 43, 103, .24);
}

.wes-about-octagon::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  clip-path: polygon(30% 3%, 70% 3%, 97% 30%, 97% 70%, 70% 97%, 30% 97%, 3% 70%, 3% 30%);
  border: 2px solid rgba(255,255,255,.75);
  pointer-events: none;
}

.wes-about-octagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

.wes-about-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(145deg, rgba(0, 20, 64, .12), rgba(0, 64, 145, .12) 48%, rgba(0, 12, 42, .58));
}

.wes-about-badge {
  position: absolute;
  z-index: 4;
  left: 9%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border-radius: 14px;
  background: rgba(0, 28, 72, .86);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}

.wes-about-badge i {
  font-size: 34px;
  color: #55b7ff;
}

.wes-about-badge span {
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.wes-about-content {
  color: #26364d;
}

.wes-about-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #0878e8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
}

.wes-about-content h2 {
  margin: 0 0 18px;
  color: #062b63;
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.12;
  font-weight: 800;
}

.wes-about-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 17px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0067d9, #29b6f6);
}

.wes-about-content p {
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 1.8;
}

.wes-about-content .wes-about-lead {
  color: #425d7d;
  font-size: 17px;
  line-height: 1.7;
}

.wes-about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 27px;
}

.wes-about-highlight {
  min-height: 125px;
  padding: 17px 15px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce9f7;
  box-shadow: 0 8px 24px rgba(15, 66, 120, .07);
}

.wes-about-highlight > i {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #003c91, #0a83ed);
  font-size: 18px;
}

.wes-about-highlight strong {
  display: block;
  margin-bottom: 4px;
  color: #07336f;
  font-size: 13px;
}

.wes-about-highlight span {
  display: block;
  color: #667a92;
  font-size: 11px;
  line-height: 1.5;
}

.wes-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 21px;
  border-radius: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, #001f55, #005dcc 58%, #0878e8);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 9px 22px rgba(0, 70, 160, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.wes-about-btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(0, 70, 160, .3);
}

@media (max-width: 900px) {
  .wes-about-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .wes-about-octagon {
    width: min(100%, 440px);
  }

  .wes-about-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .wes-about-section {
    padding: 58px 0 64px;
  }

  .wes-about-inner {
    width: 90%;
  }

  .wes-about-octagon {
    width: min(100%, 340px);
  }

  .wes-about-content h2 {
    font-size: 30px;
  }

  .wes-about-content p {
    font-size: 14px;
  }

  .wes-about-content .wes-about-lead {
    font-size: 15px;
  }
}


/* =========================================================
   WES ABOUT US - HOMEPAGE SECTION
   Inserted immediately after the homepage slider.
   ========================================================= */
.wes-about-section{
    position:relative;
    width:100%;
    padding:80px 5%;
    background:linear-gradient(135deg,#f7faff 0%,#ffffff 55%,#eef6ff 100%);
    overflow:hidden;
}
.wes-about-section:before{
    content:"";
    position:absolute;
    width:360px; height:360px;
    border-radius:50%;
    background:rgba(0,91,187,.07);
    top:-180px; right:-120px;
}
.wes-about-container{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(320px,.9fr) minmax(0,1.35fr);
    gap:70px;
    align-items:center;
}
.wes-about-visual{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:440px;
}
.wes-about-octagon{
    position:relative;
    width:min(100%,470px);
    aspect-ratio:1/1;
    padding:12px;
    background:linear-gradient(145deg,#063b88,#0788df,#01245d);
    clip-path:polygon(30% 0,70% 0,100% 30%,100% 70%,70% 100%,30% 100%,0 70%,0 30%);
    filter:drop-shadow(0 22px 35px rgba(0,42,105,.24));
}
.wes-about-octagon:after{
    content:"";
    position:absolute;
    inset:22px;
    border:2px solid rgba(255,255,255,.45);
    clip-path:polygon(30% 0,70% 0,100% 30%,100% 70%,70% 100%,30% 100%,0 70%,0 30%);
    pointer-events:none;
}
.wes-about-octagon img{
    width:100%; height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    clip-path:polygon(30% 0,70% 0,100% 30%,100% 70%,70% 100%,30% 100%,0 70%,0 30%);
}
.wes-about-badge{
    position:absolute;
    right:-18px; bottom:35px;
    width:130px; height:130px;
    border-radius:50%;
    background:linear-gradient(145deg,#03265f,#006fca);
    border:5px solid #fff;
    box-shadow:0 12px 30px rgba(0,42,105,.28);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    z-index:3;
}
.wes-about-badge i{font-size:30px; margin-bottom:5px;}
.wes-about-badge span{font-size:11px; line-height:1.25; font-weight:800; letter-spacing:.7px;}
.wes-about-kicker{
    display:inline-block;
    padding:7px 16px;
    border-radius:30px;
    background:#e5f2ff;
    color:#0057a8;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    margin-bottom:13px;
}
.wes-about-content h2{
    margin:0 0 18px;
    color:#062b63;
    font-size:clamp(30px,3.2vw,45px);
    line-height:1.12;
    font-weight:800;
}
.wes-about-content p{
    margin:0 0 14px;
    color:#4c5b6b;
    font-size:16px;
    line-height:1.8;
}
.wes-about-content strong{color:#073b80;}
.wes-about-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin:25px 0 25px;
}
.wes-about-feature{
    background:#fff;
    border:1px solid #e1ebf5;
    border-radius:14px;
    padding:18px 14px;
    box-shadow:0 8px 25px rgba(16,64,112,.07);
}
.wes-about-feature>i{
    width:45px; height:45px;
    display:flex; align-items:center; justify-content:center;
    border-radius:12px;
    background:linear-gradient(145deg,#063b88,#0788df);
    color:#fff;
    font-size:21px;
    margin-bottom:12px;
}
.wes-about-feature strong{display:block; color:#082f67; font-size:14px; margin-bottom:6px;}
.wes-about-feature span{display:block; color:#667789; font-size:12px; line-height:1.5;}
.wes-about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:13px 22px;
    border-radius:8px;
    color:#fff !important;
    background:linear-gradient(135deg,#03265f,#005bb7,#06367b);
    text-decoration:none !important;
    font-weight:800;
    font-size:13px;
    letter-spacing:.3px;
    box-shadow:0 8px 20px rgba(0,57,126,.22);
    transition:.25s ease;
}
.wes-about-btn:hover{transform:translateY(-2px); box-shadow:0 12px 25px rgba(0,57,126,.3);}
@media(max-width:900px){
    .wes-about-container{grid-template-columns:1fr; gap:35px;}
    .wes-about-visual{min-height:auto;}
    .wes-about-octagon{max-width:420px;}
}
@media(max-width:650px){
    .wes-about-section{padding:55px 20px;}
    .wes-about-features{grid-template-columns:1fr;}
    .wes-about-badge{right:-5px; bottom:20px; width:105px; height:105px;}
    .wes-about-badge i{font-size:24px;}
    .wes-about-badge span{font-size:9px;}
}


/* =========================================================
   FINAL WES HOMEPAGE LAYOUT OVERRIDES
   About WES is a full-width standalone section.
   IT Courses is a separate section below it.
   ========================================================= */
.wes-about-section{
    width:100%;
    margin:0;
    padding:82px 0;
    background:linear-gradient(135deg,#f7faff 0%,#ffffff 52%,#eef6ff 100%);
    border-top:1px solid #edf3f9;
    border-bottom:1px solid #dce9f6;
    overflow:hidden;
}
.wes-about-container{
    width:100%;
    max-width:none;
    margin:0;
    padding:0 5vw;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:5vw;
    align-items:center;
    box-sizing:border-box;
}
.wes-about-visual{
    width:100%;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.wes-about-octagon{
    width:min(100%,560px);
    max-width:560px;
    aspect-ratio:1/1;
}
.wes-about-content{
    width:100%;
    max-width:none;
    box-sizing:border-box;
    padding-right:2vw;
}
.wes-about-content h2{font-size:clamp(32px,3.4vw,52px);}
.wes-about-content p{font-size:16px;max-width:850px;}
.wes-about-features{grid-template-columns:repeat(3,minmax(0,1fr));}

.wes-it-courses-section{
    width:100%;
    margin:0;
    padding:70px 0 80px;
    background:#fff;
    border-top:8px solid #f0f5fa;
    clear:both;
}
.wes-it-courses-section .body-div-in{
    margin-top:0 !important;
    padding-top:0 !important;
}
.wes-it-courses-section .inner-body-div-in{
    width:90%;
    max-width:1300px;
    margin:0 auto;
}
.wes-it-courses-section .title-div{
    margin-bottom:30px;
}

@media(max-width:900px){
    .wes-about-section{padding:65px 0;}
    .wes-about-container{
        grid-template-columns:1fr;
        gap:45px;
        padding:0 6vw;
    }
    .wes-about-visual{min-height:0;}
    .wes-about-octagon{width:min(100%,480px);}
    .wes-about-content{padding-right:0;}
    .wes-about-features{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media(max-width:650px){
    .wes-about-section{padding:50px 0 58px;}
    .wes-about-container{padding:0 20px;gap:32px;}
    .wes-about-octagon{width:min(100%,350px);}
    .wes-about-content h2{font-size:30px;}
    .wes-about-content p{font-size:14px;line-height:1.7;}
    .wes-about-features{grid-template-columns:1fr;gap:12px;}
    .wes-about-feature{min-height:auto;display:flex;flex-direction:row;align-items:flex-start;gap:12px;}
    .wes-about-feature>i{flex:0 0 45px;margin-bottom:0;}
    .wes-about-badge{right:-4px;bottom:18px;width:105px;height:105px;}
    .wes-it-courses-section{padding:50px 0 60px;border-top-width:6px;}
    .wes-it-courses-section .inner-body-div-in{width:92%;}
}
