/*
Theme Name: Eduspace
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Eduspace - Online Course, Education & University Html Template
Version: 1.2.0
*/
/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme-blue: #005BFF;
  --theme-blue-2: #553CDF;
  --theme-green: #00E2C5;
  --theme-green-2: #C3F499;
  --theme-green-3: #102F25;
  --theme-yellow: #FFD25D;
  --theme-yellow-2: #F69B17;
  --theme-yellow-3: #FDC500;
  --theme-yellow-4: #FFD335;
  --theme-purple: #8F66FF;
  --theme-red: #AD0119;
  --theme-pink: #EE4A62;
  --theme-orange: #F47900;
  --header: #031F42;
  --base: #5C30FD;
  --text: #5B6D84;
  --border: #E6EFFF;
  --border2: #373737;
  --ratting: #F8BC26;
  --bg: #F4F9FF;
  --bg2: #E6EFFF;
  --bg3: #F4F0FF;
  --bg4: #2F584E;
  --bg5: #09224B;
  --bg6: #EDF3F5;
  --bg7: #F8F2EC;
  --bg8: #F3F1FD;
  ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

.theme-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-flex;
  gap: 15px;
  border: none;
  text-align: center;
  background-color: var(--theme-green);
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
  padding: 20px 30px;
  overflow: hidden;
  align-items: center;
  border-radius: 10px;
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn::after,
.theme-btn::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--header);
  transition: 1s ease;
}

.theme-btn::before {
  top: -2em;
  left: -2em;
}

.theme-btn::after {
  left: calc(100% + 2em);
  top: calc(100% + 2em);
}

.theme-btn:hover {
  color: var(--white);
  box-shadow: none;
}

.theme-btn:hover::after,
.theme-btn:hover::before {
  height: 410px;
  width: 410px;
}

.theme-btn.hover-white::after,
.theme-btn.hover-white::before {
  background-color: var(--white);
}

.theme-btn.hover-white:hover {
  color: var(--header);
}

.theme-btn.yellow-btn {
  background-color: var(--theme-yellow);
  color: var(--header);
}

.theme-btn.yellow-btn::after,
.theme-btn.yellow-btn::before {
  background-color: var(--header);
}

.theme-btn.yellow-btn:hover {
  color: var(--white);
}

.theme-btn.red-btn {
  background-color: var(--theme-red);
  color: var(--white);
}

.theme-btn.red-btn::after,
.theme-btn.red-btn::before {
  background-color: var(--header);
}

.theme-btn.red-btn:hover {
  color: var(--white);
}

.theme-btn.pink-btn {
  background-color: var(--theme-pink);
  color: var(--white);
}

.theme-btn.theme-blue-2 {
  background-color: var(--theme-blue-2);
  color: var(--white);
}

@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", system-ui;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

h1 {
  font-size: 90px;
  font-weight: 600;
}

h2 {
  font-size: 40px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  text-align: center;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme-blue);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Sora", system-ui, "Sora", sans-serif;
  text-align: center;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme-blue);
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--theme-purple);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Sora", system-ui;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme-yellow-2);
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.preloader .edu-preloader-icon {
  display: none;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  padding: 10px 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.header-left span {
  margin-right: 20px;
  color: #333;
  font-weight: 600;
}

.header-left i {
  margin-right: 5px;
  color: #31c35e;
  /* color: #007bff; */
}

.header-right a {
  margin-left: 15px;
  font-size: 16px;
  color: #555;
  transition: color 0.3s;
}

.header-right a:hover {
  color: #31c35e;
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
  }

  .header-left,
  .header-right {
    margin-top: 5px;
  }

  .header-left span {
    display: block;
    margin-bottom: 5px;
  }

  .header-right a {
    margin-left: 0;
    margin-right: 15px;
  }
}


.header-search-bar {
  height: 270px;
  position: fixed;
  top: -200%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  transition: 0.3s;
  box-shadow: var(---box-shadow);
}

.header-search-bar.search-open {
  top: 0;
}

.contact-search-form-box {
  margin-top: 50px;
}

.contact-search-form-box form {
  position: relative;
}

.contact-search-form-box form button {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 18px;
}

.search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: var(--header);
  font-weight: 300;
  width: 45px;
  height: 45px;
}

.search-bar .contact-search-form-box input {
  border: none;
  width: 100%;
  outline: none;
  color: var(--header);
  border-bottom: 1px solid var(--border);
  font-size: 24px;
  padding-bottom: 30px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 767px) {
  .search-bar .contact-search-form-box input {
    font-size: 22px;
  }
}

.search-bar .contact-search-form-box input::placeholder {
  color: var(--header);
}

.search-bar .contact-search-form-box i {
  color: var(--theme-blue);
}

.search-bar .contact-search-form-box p {
  color: #666C78;
  padding-top: 15px;
}

.search-bar .search-bar-title {
  font-size: 25px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1.4px solid var(--border);
  font-size: 16px;
  text-align: center;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme-blue);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme-blue);
  color: var(--white);
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme-blue);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -5px;
}

@media (max-width: 767px) {
  .section-title {
    text-align: center;
    margin-bottom: 0;
  }
}

.section-title h6 {
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: var(--theme-blue);
  position: relative;
  display: inline-block;
}

@media (max-width: 575px) {
  .section-title h6 {
    margin-bottom: 10px;
  }
}

.section-title h6::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/top-bar.png);
  animation: width 1.5s linear 2 !important;
  animation-fill-mode: both;
  background-position: center;
}

.section-title h6.yellow-text {
  color: var(--theme-yellow);
}

.section-title h6.yellow-text::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/yellow-bar-2.png);
  animation: width 1.5s linear infinite !important;
  animation-fill-mode: both;
  background-position: center;
}

.section-title h6.text-white::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/white-bar.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.section-title.color-red h6 {
  color: var(--theme-red);
  position: relative;
}

.section-title.color-red h6::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/Tag.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.section-title.color-red h6 span {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}

.section-title.color-red h6 span img {
  animation: width 8s linear infinite !important;
}

.section-title.color-black h6 {
  position: relative;
  color: var(--header);
}

.section-title.color-black h6::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/black-bar.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.section-title.color-pink h6 {
  position: relative;
  color: var(--theme-pink);
}

.section-title.color-pink h6::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/pink-bar.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.section-title.color-yellow h6 {
  color: var(--theme-yellow-3);
  position: relative;
}

.section-title.color-yellow h6::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/yellow-bar-2.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.section-title.color-blue h6 {
  color: var(--theme-blue-2);
  position: relative;
}

.section-title.color-blue h6::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/blue-bar.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
  }
}

.section-title-area .section-title {
  margin-bottom: 0;
}

.section-title-area .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title-area .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.section-title-area .nav .nav-item .nav-link.active {
  color: var(--header);
  position: relative;
  display: inline-block;
}

.section-title-area .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  right: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/tab-bar.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
  max-width: 70px;
  transform: translateX(-50%);
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.section-bg-2 {
  background-color: #F3F1FD !important;
}

.footer-bg {
  background-color: var(--header);
}

.theme-blue-bg {
  background-color: var(--theme-blue);
}

.theme-green-bg {
  background-color: var(--theme-green);
}

.theme-red-bg {
  background-color: var(--theme-red);
}

.section-padding {
  padding: 70px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes arryUpDown {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}

.animation__arryUpDown {
  animation: arryUpDown 2s ease infinite alternate;
}

@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(10px);
  }
}

.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.GlidingArrow {
  -webkit-animation: slide 5s linear infinite;
  animation: slide 5s linear infinite;
}

.delay1 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay2 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.delay3 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.delay4 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.delay5 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }

  20% {
    opacity: 1;
    transform: translateX(-90);
  }

  80% {
    opacity: 1;
    transform: translateX(90);
  }

  100% {
    opacity: 0;
    transform: translateX(150);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }

  20% {
    opacity: 1;
    transform: translateX(-90);
  }

  80% {
    opacity: 1;
    transform: translateX(90);
  }

  100% {
    opacity: 0;
    transform: translateX(150);
  }
}

/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 45px;
}

@media (max-width: 1899px) {
  .header-main .main-menu ul li {
    margin-inline-end: 35px;
  }
}

@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  font-family: "Sora", system-ui;
}

.header-main .main-menu ul li a .head-icon {
  margin-left: 0;
  margin-right: 5px;
}

.header-main .main-menu ul li a i {
  margin-left: 5px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme-blue) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
  padding: 30px 30px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li:not(:last-child) {
  padding-bottom: 15px;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  padding: 0 0;
  padding-bottom: 0;
  padding-top: 0;
  text-transform: capitalize;
  font-family: "Sora", system-ui;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme-blue) !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-blue);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme-blue);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img:hover {
  transform: scale(1.1);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
  color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
  color: var(--theme-blue) !important;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme-blue);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme-blue);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .header-right {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-1 .container-fluid {
  padding: 0 70px;
}

@media (max-width: 1899px) {
  .header-1 .container-fluid {
    padding: 10px 100px;
  }
}

@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 415px;
  width: 100%;
}

@media (max-width: 1899px) {
  .header-1 .header-left {
    max-width: 360px;
    gap: 25px;
  }
}

@media (max-width: 1600px) {
  .header-1 .header-left {
    max-width: 340px;
  }
}

@media (max-width: 1399px) {
  .header-1 .header-left {
    max-width: initial;
    width: initial;
  }
}

@media (max-width: 1199px) {
  .header-1 .header-left {
    max-width: 415px;
    width: 100%;
  }
}

.header-1 .header-left .category-oneadjust {
  max-width: 215px;
  width: 100%;
  position: relative;
}

@media (max-width: 1399px) {
  .header-1 .header-left .category-oneadjust {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header-1 .header-left .category-oneadjust {
    display: block;
  }
}

@media (max-width: 575px) {
  .header-1 .header-left .category-oneadjust {
    display: none;
  }
}

.header-1 .header-left .category-oneadjust .dot {
  position: absolute;
  top: 15px;
  left: 15px;
}

.header-1 .header-left .category-oneadjust .nice-select {
  width: unset !important;
  gap: 20px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 91, 255, 0.1);
  background: rgba(0, 91, 255, 0.05);
  padding: 20px 35px 20px 40px;
  line-height: 1;
}

.header-1 .header-left .category-oneadjust .nice-select::after {
  width: 8px;
  height: 8px;
  right: 20px;
  top: 52%;
}

.header-1 .header-left .category-oneadjust .nice-select span {
  font-size: 14px;
  font-weight: 500;
  color: var(--header);
}

.header-1 .header-left .category-oneadjust .nice-select .selected.focus {
  background-color: var(--theme-blue);
  color: var(--white);
  font-weight: 500;
}

.header-1 .header-left .category-oneadjust .nice-select .focus {
  background-color: transparent;
}

.header-1 .header-left .category-oneadjust .nice-select .option:hover {
  background-color: transparent;
  color: var(--header);
}

.header-1 .header-left .category-oneadjust .nice-select .list {
  max-height: 15vh;
  background: var(--bg);
  width: 100%;
  padding: 5px 8px;
  overflow-y: scroll;
}

@media (max-width: 1199px) {
  .header-1 .header-left .category-oneadjust .nice-select .list {
    right: -60px;
  }
}

.header-1 .header-left .category-oneadjust .nice-select .list li {
  color: var(--header);
  font-size: 14px;
  border: none;
}

.header-1 .header-right {
  gap: 40px;
}

@media (max-width: 1199px) {
  .header-1 .header-right {
    gap: 20px;
  }
}

.header-1 .header-right .header-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .header-1 .header-right .header-button {
    display: none;
  }
}

.header-1 .header-right .header-button .theme-btn {
  padding: 16px 24px;
}

.header-1 .header-right .header-button .theme-btn.style-2 {
  background: transparent;
  border: 1px solid var(--border);
  align-items: center;
  gap: 10px;
}

@media (max-width: 1600px) {
  .header-1 .header-right .header-button .theme-btn.style-2 {
    display: none;
  }
}

.header-1 .header-right .header-button .theme-btn.style-2 i {
  margin-left: 0;
  margin-right: 0;
}

.header-1 .search-toggle {
  color: var(--header);
  font-size: 16px;
}

.header-1 .sidebar__toggle {
  cursor: pointer;
}

.header-1 .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}

.header-1 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--header);
  overflow: hidden;
}

.header-1 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--header);
  left: 16px;
  width: 15px;
}

.header-1 .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--header);
  width: 30px;
}

.header-1 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--header);
  width: 15px;
}

.header-1 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}

.header-1 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}

.header-1 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}

.header-1 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-2 {
  background-color: var(--white);
  box-shadow: 10px 4px 60px 0px rgba(184, 184, 184, 0.25);
  border-top: 1px solid var(--border);
}

.header-2 .header-logo {
  display: none;
}

@media (max-width: 1199px) {
  .header-2 .header-logo {
    display: block;
  }
}

.header-2 .header-right {
  gap: 20px;
}

.header-2 .header-right .icon-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-2 .header-right .icon-items i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: #C3F499;
  font-size: 14px;
}

.header-2 .header-right .icon-items h6 {
  font-size: 14px;
  font-weight: 600;
}

.header-2 .header-right .icon-items h6 a {
  color: var(--header);
}

.header-2 .header-right .header-button .theme-btn {
  padding: 14px 20px;
}

@media (max-width: 1199px) {
  .header-2 .header-right .header-button .theme-btn {
    display: none;
  }
}

.header-2 .sidebar__toggle {
  cursor: pointer;
}

.header-2 .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}

.header-2 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--header);
  overflow: hidden;
}

.header-2 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--header);
  left: 16px;
  width: 15px;
}

.header-2 .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--header);
  width: 30px;
}

.header-2 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--header);
  width: 15px;
}

.header-2 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}

.header-2 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}

.header-2 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}

.header-2 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-top {
  padding: 10px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-top {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .header-top .top-logo {
    display: none;
  }
}

.header-top .category-oneadjust {
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 991px) {
  .header-top .category-oneadjust {
    display: none !important;
  }
}

.header-top .category-oneadjust .icon {
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--theme-blue);
}

.header-top .category-oneadjust .nice-select {
  width: 226px !important;
  gap: 20px;
  font-size: 16px;
  border: 1px solid rgba(0, 91, 255, 0.1);
  padding: 14px 20px;
  border-radius: 10px 0px 0px 10px;
  border-right: none !important;
  padding-left: 40px;
  background-color: #F4F9FF;
  position: relative;
}

.header-top .category-oneadjust .nice-select::before {
  position: absolute;
  top: 23px;
  left: 15px;
  content: "";
  width: 13px;
  height: 13px;
  background-size: cover;
  background-image: url("../../assets/img/logo/dot.png");
}

.header-top .category-oneadjust .nice-select::after {
  margin-top: 0;
  right: 20px;
  top: 37%;
}

.header-top .category-oneadjust .nice-select span {
  font-weight: 500;
  color: var(--header);
}

.header-top .category-oneadjust .nice-select .list {
  max-height: 15vh;
  background: var(--header);
  width: 100%;
  padding: 5px 8px;
  overflow-y: scroll;
  right: 0;
}

.header-top .category-oneadjust .nice-select .list li {
  color: var(--white);
  font-size: 14px;
  border: none;
}

.header-top .category-oneadjust .search-toggle-box {
  width: 400px;
}

@media (max-width: 1399px) {
  .header-top .category-oneadjust .search-toggle-box {
    width: 270px;
  }
}

@media (max-width: 1399px) {
  .header-top .category-oneadjust .search-toggle-box {
    width: 710px;
  }
}

@media (max-width: 991px) {
  .header-top .category-oneadjust .search-toggle-box {
    width: 250px;
  }
}

.header-top .category-oneadjust .search-toggle-box .input-area {
  position: relative;
}

.header-top .category-oneadjust .search-toggle-box .input-area input {
  outline: none;
  border: 1px solid rgba(0, 91, 255, 0.1);
  background: #F4F9FF;
  padding: 14px 20px;
  width: 100%;
  border-radius: 0px 10px 10px 0px;
  color: var(--text);
  font-weight: 500;
}

.header-top .category-oneadjust .search-toggle-box .input-area input::placeholder {
  color: var(--text);
  font-weight: 500;
}

.header-top .category-oneadjust .search-toggle-box .input-area .cmn-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 18px;
  color: var(--theme-blue);
}

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-3 .header-main .header-logo-2 {
  display: none;
}

.header-3 .header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-3 .header-main .main-menu ul li a {
  color: var(--white);
}

.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme-red) !important;
}

.header-3 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme-red) !important;
}

.header-3 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-red);
}

.header-3 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme-red);
}

.header-3 .header-main .main-menu ul li:hover>a {
  color: var(--theme-red);
}

.header-3 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme-red);
}

.header-3 .header-main .header-right {
  gap: 35px;
}

@media (max-width: 1199px) {
  .header-3 .header-main .header-right {
    gap: 20px;
  }
}

.header-3 .header-main .header-right .search-icon {
  color: var(--white);
  font-size: 18px;
}

.header-3 .header-main .search-toggle {
  color: var(--white);
  font-size: 16px;
}

.header-3 .header-main .sidebar__toggle {
  cursor: pointer;
}

.header-3 .header-main .sidebar__toggle .fa-bars {
  color: var(--white);
}

.header-3 .header-main .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}

.header-3 .header-main .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--white);
  overflow: hidden;
}

.header-3 .header-main .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--white);
  left: 16px;
  width: 15px;
}

.header-3 .header-main .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--white);
  width: 30px;
}

.header-3 .header-main .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--white);
  width: 15px;
}

.header-3 .header-main .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}

.header-3 .header-main .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}

.header-3 .header-main .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}

.header-3 .header-main .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.header-3 .header-button .theme-btn {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  padding: 14px 20px;
}

@media (max-width: 1199px) {
  .header-3 .header-button .theme-btn {
    display: none;
  }
}

.header-3 .header-button .theme-btn:hover {
  border: 1px solid var(--header);
}

.header-3.style-2 .header-main .header-logo-2 {
  display: none;
}

.header-3.style-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-pink) !important;
}

.header-3.style-2 .header-main .main-menu ul li .submenu li {
  color: var(--header);
}

.header-3.style-2 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme-pink) !important;
}

.header-3.style-2 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-pink);
}

.header-3.style-2 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme-pink);
}

.header-3.style-2 .header-main .main-menu ul li:hover>a {
  color: var(--theme-pink);
}

.header-3.style-2 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme-pink);
}

.header-3.style-2 .header-main .theme-btn {
  background-color: var(--theme-pink);
  border: none;
  color: var(--white) !important;
}

.header-3.header-5 .header-main .header-logo-2 {
  display: none;
}

.header-3.header-5 .header-main .main-menu ul li a {
  color: var(--white);
}

.header-3.header-5 .header-main .main-menu ul li a:hover {
  color: var(--theme-blue-2);
}

.header-3.header-5 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.header-3.header-5 .header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme-blue-2) !important;
}

.header-3.header-5 .header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-blue-2) !important;
}

.header-3.header-5 .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  color: var(--theme-blue-2) !important;
}

.header-3.header-5 .header-main .main-menu ul li:hover>a {
  color: var(--theme-blue-2);
}

.header-3.header-5 .header-main .main-menu ul li:hover>a::after {
  color: var(--theme-blue-2);
}

.header-3.header-5 .header-main .theme-btn {
  background-color: var(--theme-yellow-4);
  border: none;
  color: var(--header) !important;
}

.header-3.header-5 .header-main .theme-btn:hover {
  color: var(--white);
}

.header-3.sticky .sidebar__toggle .fa-bars {
  color: var(--theme-red) !important;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: var(---box-shadow);
}

.sticky.header-2 .header-logo {
  display: block;
}

.sticky.header-2 .header-main .main-menu ul li {
  margin-inline-end: 25px;
}

@media (max-width: 1399px) {
  .sticky.header-2 .header-button .theme-btn {
    display: none;
  }
}

.sticky.header-3 .header-main .header-logo-2 {
  display: none;
}

.sticky.header-3 .header-main .main-menu ul li a {
  color: var(--header);
}

.sticky.header-3 .header-main .main-menu ul li a:hover {
  color: var(--theme-red) !important;
}

.sticky.header-3 .header-button .theme-btn {
  border: 1px solid var(--border);
  color: var(--header);
}

.sticky.header-3 .header-button .theme-btn:hover {
  border: 1px solid var(--header);
}

.sticky.header-3 .search-toggle {
  color: var(--header) !important;
}

.sticky.header-3 .sidebar__toggle {
  cursor: pointer;
}

.sticky.header-3 .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}

.sticky.header-3 .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--header);
  overflow: hidden;
}

.sticky.header-3 .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--header);
  left: 16px;
  width: 15px;
}

.sticky.header-3 .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--header);
  width: 30px;
}

.sticky.header-3 .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--header);
  width: 15px;
}

.sticky.header-3 .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}

.sticky.header-3 .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}

.sticky.header-3 .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}

.sticky.header-3 .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}

.sticky.header-3 .header-logo-2 {
  display: block !important;
}

.sticky.header-3 .header-logo {
  display: none;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-blue);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-blue);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
  border: 1px solid var(--theme-blue);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 600;
  color: var(--header);
  font-size: 18px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}

.offcanvas__wrapper .offcanvas__content .offcanvas-button {
  margin-top: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas-button {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #031F42;
}

.breadcrumb-wrapper.shop-page-banner::before,
.breadcrumb-wrapper.courses-page-banner::before {
  display: none;
}

.breadcrumb-wrapper.shop-page-banner .breadcrumb-image,
.breadcrumb-wrapper.courses-page-banner .breadcrumb-image {
  display: none;
}

.breadcrumb-wrapper.shop-page-banner .page-heading,
.breadcrumb-wrapper.courses-page-banner .page-heading {
  padding: 120px 0px;
}

@media (max-width: 767px) {

  .breadcrumb-wrapper.shop-page-banner .page-heading,
  .breadcrumb-wrapper.courses-page-banner .page-heading {
    padding: 100px 0px;
  }
}

@media (max-width: 575px) {

  .breadcrumb-wrapper.shop-page-banner .page-heading,
  .breadcrumb-wrapper.courses-page-banner .page-heading {
    padding: 80px 0px;
  }
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 100%;
}

.breadcrumb-wrapper .shape-1 {
  position: absolute;
  right: 0;
  bottom: 33%;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .shape-1 {
    display: none;
  }
}

.breadcrumb-wrapper .shape-2 {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .shape-2 {
    display: none;
  }
}

.breadcrumb-wrapper .shape-3 {
  position: absolute;
  top: 26%;
  left: 12%;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .shape-3 {
    display: none;
  }
}

.breadcrumb-wrapper .dot-shape {
  position: absolute;
  left: 110px;
  top: 50%;
  animation: float-bob-x 4s linear infinite;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .dot-shape {
    display: none;
  }
}

.breadcrumb-wrapper .vector-shape {
  position: absolute;
  right: 155px;
  top: 24%;
  animation: cir36 4s linear infinite;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .vector-shape {
    display: none;
  }
}

.breadcrumb-wrapper .page-heading {
  padding: 75px 0 75px;
  /* padding: 120px 0 100px; */
  text-align: center;
}

.breadcrumb-wrapper .page-heading h1 {
  font-size: 55px;
  color: var(--white);
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 45px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 20px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50px;
  right: -30px;
  top: 14px;
  background-color: var(--white);
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li:not(:last-child)::before {
    display: none;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme-yellow);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li.style-2 {
  color: var(--theme-yellow);
  text-decoration: underline;
}

.breadcrumb-wrapper .page-heading .breadcrumb-image {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.breadcrumb-wrapper.style-2 {
  position: relative;
  z-index: 9;
}

.breadcrumb-wrapper.style-2::before {
  display: none;
}

.breadcrumb-wrapper.style-2 .shape-1 {
  bottom: 0;
}

.breadcrumb-wrapper.style-2 .page-heading {
  padding: 70px 0 380px;
  text-align: left;
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
  justify-content: start;
  margin-bottom: 130px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper.style-2 .page-heading .breadcrumb-items {
    margin-bottom: 50px;
  }
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content {
  position: relative;
  z-index: 9;
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
  font-size: 55px;
  color: var(--white);
}

@media (max-width: 991px) {
  .breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content h1 {
    font-size: 34px;
  }
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 70px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items {
    padding-right: 0;
    border-right: none;
  }
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items .client-content span {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items .client-content h5 {
  font-size: 18px;
  color: var(--white);
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items .client-content .star {
  color: #FFAE5D;
}

.breadcrumb-wrapper.style-2 .page-heading .breadcrumb-content .courses-breadcrumb-items .client-image-items .client-content .star b {
  font-size: 16px;
  color: var(--white);
  font-weight: 400;
  display: inline-block;
  padding-left: 10px;
}

.breadcrumb-wrapper.style-3 {
  background-color: #F4F9FF;
}

.breadcrumb-wrapper.style-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 67%;
}

.breadcrumb-wrapper.style-3 .page-heading {
  padding: 70px 0 330px;
}

.breadcrumb-wrapper.style-3 .page-heading h1 {
  color: var(--header);
}

.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items {
  margin-bottom: 0;
}

.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li {
  color: var(--text);
}

.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li:not(:last-child)::before {
  background-color: var(--text);
}

.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li a {
  color: var(--text);
}

.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li a:hover {
  color: var(--theme-blue);
}

.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-items li.style-2 {
  color: var(--theme-blue);
}

.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-image {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.breadcrumb-wrapper.style-3 .page-heading .breadcrumb-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.breadcrumb-wrapper.style-event .page-heading {
  padding: 70px 0 300px;
}

.breadcrumb-wrapper.style-event .page-heading .breadcrumb-items {
  margin-bottom: 60px;
}

.error-items .error-image {
  margin-bottom: 50px;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul .homemenu {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav>ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.mean-container .mean-nav ul li a.border-none {
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-blue);
}

.mean-container .mean-nav ul li a .head-icon {
  display: none;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-blue);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  background-color: #031F42;
  padding: 130px 0 0;
  position: relative;
}

.hero-1 .shape-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

@media (max-width: 1199px) {
  .hero-1 .shape-left {
    display: none;
  }
}

.hero-1 .shape-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}

@media (max-width: 1199px) {
  .hero-1 .shape-right {
    display: none;
  }
}

.hero-1 .dot-shape {
  position: absolute;
  left: 110px;
  top: 50%;
}

.hero-1 .vector-shape {
  position: absolute;
  right: 110px;
  top: 30%;
}

.hero-1 .hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.hero-1 .hero-content span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.44px;
  display: inline-block;
  position: relative;
  color: var(--theme-yellow);
  padding-bottom: 10px;
  width: 270px;
}

.hero-1 .hero-content span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/yellow-bar-3.png);
  animation: width 1.5s linear 3 !important;
  animation-fill-mode: both;
  background-position: center;
}

@media (max-width: 767px) {
  .hero-1 .hero-content span {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content span {
    font-size: 18px;
  }
}

.hero-1 .hero-content span img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 5px;
  animation: width 3.5s linear infinite;
}

.hero-1 .hero-content h1 {
  color: var(--white);
  margin-bottom: 30px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 80px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 54px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 34px;
  }
}

.hero-1 .hero-content h3 {
  color: var(--white);
  font-size: 27px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .hero-1 .hero-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h3 {
    font-size: 20px;
  }
}

.hero-1 .hero-content .hero-button {
  margin-top: 50px;
}

.hero-1 .hero-image {
  max-width: 1070px;
  margin: 130px auto 0;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .hero-1 .hero-image {
    height: 630px;
  }

  .hero-1 .hero-image img {
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-image {
    height: 520px;
  }
}

.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px 7px 0px 0px;
}

.hero-1 .hero-image .counter-box {
  background-color: var(--white);
  z-index: 9;
  position: absolute;
  bottom: 130px;
  left: -230px;
  padding: 35px 50px;
  border-radius: 10px;
}

@media (max-width: 1899px) {
  .hero-1 .hero-image .counter-box {
    bottom: 10px;
    left: 10px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-image .counter-box {
    padding: 30px 50px;
    border-radius: 0;
  }
}

.hero-1 .hero-image .counter-box p {
  font-size: 18px;
}

.hero-1 .hero-image .counter-box h2 {
  color: var(--theme-blue);
  font-size: 65px;
}

@media (max-width: 767px) {
  .hero-1 .hero-image .counter-box h2 {
    font-size: 40px;
  }
}

.hero-1 .hero-image .rating-box {
  padding: 50px 40px;
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: -100px;
  right: -140px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1899px) {
  .hero-1 .hero-image .rating-box {
    right: 0px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-image .rating-box {
    padding: 20px 30px;
    display: grid;
    gap: 10px;
  }
}

.hero-1 .hero-image .rating-box h2 {
  font-size: 65px;
}

@media (max-width: 767px) {
  .hero-1 .hero-image .rating-box h2 {
    font-size: 40px;
  }
}

.hero-1 .hero-image .rating-box p {
  font-size: 18px;
}

.hero-1 .hero-image .rating-box .star {
  color: #FFAE5D;
}

.hero-1 .hero-image .rating-box img {
  padding-left: 50px;
  width: initial;
  border-left: 1px solid var(--border);
}

.hero-1 .hero-image .circle-img {
  position: absolute;
  top: -55px;
  left: -55px;
  z-index: -1;
}

.hero-2 {
  padding: 80px 0 100px;
}

@media (max-width: 767px) {
  .hero-2 .hero-content {
    text-align: center;
  }
}

.hero-2 .hero-content h1 {
  font-size: 45px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 35px;
  }
}

.hero-2 .hero-content h1 span {
  color: var(--theme-blue);
  position: relative;
}

.hero-2 .hero-content h1 span img {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 300px;
}

@media (max-width: 991px) {
  .hero-2 .hero-content h1 span img {
    display: none;
  }
}

.hero-2 .hero-content p {
  font-size: 20px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .hero-2 .hero-content p {
    font-size: 18px;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content p {
    font-size: 16px;
    margin-top: 20px;
  }
}

.hero-2 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-content .hero-button {
    justify-content: center;
  }
}

.hero-2 .hero-content .hero-button .button-text span {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.hero-2 .hero-content .hero-button .button-text .video-btn {
  width: 55px;
  height: 55px;
  line-height: 55px;
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--header);
  border-radius: 50%;
  text-align: center;
  color: var(--header);
}

.hero-2 .hero-image-items .hero-image {
  position: relative;
}

@media (max-width: 1199px) {
  .hero-2 .hero-image-items .hero-image img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-image-items .hero-image img {
    width: initial;
    height: initial;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-image-items .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.hero-2 .hero-image-items .hero-image .hero-shape {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 1399px) {
  .hero-2 .hero-image-items .hero-image .hero-shape img {
    width: initial;
    height: initial;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-image-items .hero-image .hero-shape {
    display: none;
  }
}

.hero-2 .hero-image-items .hero-image .counter-box {
  background-color: var(--white);
  z-index: 9;
  position: absolute;
  top: 5px;
  right: -105px;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 10px 4px 60px rgba(168, 168, 168, 0.25);
}

@media (max-width: 1399px) {
  .hero-2 .hero-image-items .hero-image .counter-box {
    right: initial;
    left: 0;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-image-items .hero-image .counter-box {
    right: 0;
    left: initial;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-image-items .hero-image .counter-box {
    display: none;
  }
}

.hero-2 .hero-image-items .hero-image .counter-box p {
  font-size: 18px;
}

.hero-2 .hero-image-items .hero-image .counter-box h2 {
  color: var(--theme-blue);
  font-size: 50px;
}

.hero-3 {
  position: relative;
  z-index: 9;
}

.hero-3 .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}

.hero-3 .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-3 .hero-content {
  position: relative;
  z-index: 9;
  text-align: center;
  max-width: 1030px;
  margin: 0 auto;
  text-align: center;
  padding: 180px 0 355px;
}

@media (max-width: 575px) {
  .hero-3 .hero-content {
    padding: 100px 0 120px;
  }
}

.hero-3 .hero-content h6 {
  color: var(--white);
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.44px;
  position: relative;
  display: inline-block;
}

.hero-3 .hero-content h6::before {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/hero/white-bar.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.hero-3 .hero-content h1 {
  color: var(--white);
  font-size: 90px;
  line-height: 1;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 42px;
  }
}

.hero-3 .hero-content p {
  max-width: 795px;
  text-align: center;
  margin: 30px auto 0;
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 767px) {
  .hero-3 .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content p {
    font-size: 16px;
  }
}

.hero-3 .hero-button {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .hero-3 .hero-button {
    margin-top: 30px;
  }
}

.hero-3 .swiper-slide.swiper-slide-active .slider-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}

.hero-3 .hero-slider {
  position: relative;
}

.hero-3 .hero-slider .array-button {
  position: absolute;
  top: 45%;
  left: 8%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .hero-3 .hero-slider .array-button {
    display: none;
  }
}

.hero-3 .hero-slider .array-button .array-prev,
.hero-3 .hero-slider .array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.hero-3 .hero-slider .array-button .array-prev:hover,
.hero-3 .hero-slider .array-button .array-next:hover {
  background-color: var(--white);
  color: var(--theme-red);
}

.hero-4 {
  background-color: #102F25;
  padding: 300px 0 350px;
  position: relative;
}

@media (max-width: 1399px) {
  .hero-4 {
    padding-top: 190px;
  }
}

@media (max-width: 767px) {
  .hero-4 {
    padding-top: 170px;
  }
}

@media (max-width: 575px) {
  .hero-4 {
    padding-top: 140px;
  }
}

.hero-4 .border-shape {
  position: absolute;
  left: 0;
  top: 15%;
}

@media (max-width: 1600px) {
  .hero-4 .border-shape {
    display: none;
  }
}

.hero-4 .border-shape-2 {
  position: absolute;
  right: 0;
  top: 15%;
}

@media (max-width: 1600px) {
  .hero-4 .border-shape-2 {
    display: none;
  }
}

.hero-4 .parachute-shape {
  position: absolute;
  top: 15%;
  left: 25%;
}

@media (max-width: 1600px) {
  .hero-4 .parachute-shape {
    display: none;
  }
}

.hero-4 .flower-shape {
  position: absolute;
  left: 315px;
  bottom: 150px;
}

@media (max-width: 1600px) {
  .hero-4 .flower-shape {
    display: none;
  }
}

.hero-4 .flower-shape-2 {
  position: absolute;
  right: 20%;
  bottom: 20%;
}

@media (max-width: 1600px) {
  .hero-4 .flower-shape-2 {
    display: none;
  }
}

.hero-4 .star-shape {
  position: absolute;
  top: 15%;
  right: 25%;
}

@media (max-width: 1600px) {
  .hero-4 .star-shape {
    display: none;
  }
}

.hero-4 .container-fluid {
  padding: 0 90px;
}

@media (max-width: 1600px) {
  .hero-4 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .hero-4 .container-fluid {
    padding: 0 30px;
  }
}

.hero-4 .hero-content {
  text-align: center;
  position: relative;
  z-index: 9;
}

.hero-4 .hero-content h6 {
  color: var(--theme-yellow-3);
  position: relative;
  display: inline-block;
}

.hero-4 .hero-content h6::before {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/hero/bar-3.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.hero-4 .hero-content h1 {
  color: var(--white);
  font-size: 75px;
  margin-top: 30px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .hero-4 .hero-content h1 {
    font-size: 66px;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 36px;
  }
}

.hero-4 .hero-content p {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 175%;
  max-width: 685px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero-4 .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content p {
    font-size: 16px;
  }
}

.hero-4 .hero-content .list {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 1600px) {
  .hero-4 .hero-content .list {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  .hero-4 .hero-content .list {
    gap: 30px;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content .list {
    justify-content: center;
    display: grid;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content .list {
    margin-top: 30px;
  }
}

.hero-4 .hero-content .list li {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.hero-4 .hero-content .list li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 20px;
}

@media (max-width: 767px) {
  .hero-4 .hero-content .list li span {
    display: block;
    margin: 0 auto 20px;
  }
}

.hero-4 .hero-content .hero-button {
  margin-top: 50px;
}

.hero-4 .hero-content .hero-button .theme-btn {
  background-color: var(--theme-orange);
  color: var(--white);
}

.hero-4 .hero-content .hero-button .theme-btn::before,
.hero-4 .hero-content .hero-button .theme-btn::after {
  background-color: var(--white);
}

.hero-4 .hero-content .hero-button .theme-btn:hover {
  color: var(--header);
}

.hero-4 .girl-image {
  position: relative;
  z-index: 9;
  text-align: center;
  margin-left: -10px;
}

.hero-4 .girl-image::before {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 368px;
  height: 368px;
  border-radius: 368px;
  background-color: var(--theme-green-2);
  z-index: -1;
}

.hero-4 .girl-image img {
  border-radius: 0px 0px 167px 164px;
}

.hero-4 .boy-image {
  position: relative;
  z-index: 9;
  text-align: center;
}

.hero-4 .boy-image::before {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 370px;
  height: 430px;
  border-radius: 185px;
  background-color: var(--theme-yellow-3);
  z-index: -1;
}

.hero-4 .boy-image img {
  border-radius: 0px 0px 167px 164px;
}

.hero-5 {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 130px 0 56px;
  background-position: bottom;
  position: relative;
}

@media (max-width: 1199px) {
  .hero-5 {
    padding-bottom: 200px;
  }
}

@media (max-width: 991px) {
  .hero-5 {
    padding-bottom: 150px;
    background-position-x: 100%;
  }
}

.hero-5 .rocket-shape {
  left: 70px;
  top: 20%;
  position: absolute;
}

.hero-5 .frame-shape {
  position: absolute;
  bottom: 20%;
  left: 90px;
}

.hero-5 .rocket-shape-2 {
  position: absolute;
  top: 15%;
  left: 55%;
}

.hero-5 .frame-shape-2 {
  position: absolute;
  right: 5%;
  bottom: 30%;
}

.hero-5 .hero-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.hero-5 .hero-content {
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .hero-5 .hero-content {
    text-align: center;
  }
}

.hero-5 .hero-content h6 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-5 .hero-content h6::before {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/hero/white-bar.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
}

.hero-5 .hero-content h1 {
  font-size: 75px;
  margin-bottom: 25px;
}

@media (max-width: 1399px) {
  .hero-5 .hero-content h1 {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  .hero-5 .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  .hero-5 .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-5 .hero-content h1 {
    font-size: 35px;
  }
}

.hero-5 .hero-content p {
  font-size: 20px;
  color: var(--white);
  max-width: 620px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .hero-5 .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .hero-5 .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.hero-5 .hero-content .theme-btn {
  background-color: var(--theme-yellow-4);
}

.hero-5 .hero-image {
  text-align: right;
  margin-bottom: -11px;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .hero-5 .hero-image {
    margin-bottom: 0;
    text-align: center;
  }

  .hero-5 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.hero-5 .hero-image img {
  border-radius: 0px 0px 161px 150px;
}

.hero-5 .hero-image .bg-shape {
  position: absolute;
  top: 32%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.1;
}

.feature-box-items {
  padding: 70px 60px;
  background-color: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease-in-out;
  height: 420px;
}

@media (max-width: 1899px) {
  .feature-box-items {
    padding: 50px 30px;
    height: initial;
  }
}

@media (max-width: 575px) {
  .feature-box-items {
    padding: 30px;
    height: initial;
    text-align: center;
  }
}

.feature-box-items .icon {
  background-color: var(--bg);
  width: 85px;
  height: 85px;
  line-height: 105px;
  text-align: center;
  font-size: 45px;
  color: var(--theme-blue);
  border-radius: 7px;
  border: 1px solid var(--border);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .feature-box-items .icon {
    margin: 0 auto;
  }
}

.feature-box-items .content {
  margin-top: 100px;
  max-width: 290px;
}

@media (max-width: 767px) {
  .feature-box-items .content {
    margin: 30px auto 0;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .feature-box-items .content {
    margin-top: 50px;
  }
}

.feature-box-items .content h3 {
  margin-bottom: 10px;
}

.feature-box-items:hover {
  background-color: #F4F9FF;
}

.feature-box-items:hover .icon {
  background-color: var(--white);
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  padding: 15px 0;
}

.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 30px;
  cursor: pointer;
}

.scrolling-wrap .comm .cmn-textslide {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Sora", system-ui;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scrolling-wrap .comm .cmn-textslide i {
  font-size: 21px;
}

.scrolling-wrap .comm .cmn-textslide.text-color-2 {
  color: var(--header);
}

.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}

@media (max-width: 1399px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .scrolling-wrap {
    gap: 14px;
  }

  .scrolling-wrap .comm {
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .scrolling-wrap .comm {
    gap: 12px;
  }
}

.scrolling-wrap.style-2 {
  margin-top: -175px;
}

.scrolling-wrap.style-2 .comm .stroke-text {
  -webkit-text-stroke: 1px var(--theme-green);
  -webkit-text-fill-color: transparent;
  font-size: 200px;
  font-weight: 600;
  line-height: 255px;
  font-family: "Sora", system-ui;
  animation: shine 3s infinite;
  -webkit-mask-image: linear-gradient(-75deg, rgba(255, 255, 255, 0.07) 50%, #fff 50%, rgba(255, 255, 255, 0.07) 70%);
  -webkit-mask-size: 200%;
}

/* .mycustom-marque.style-3 .scrolling-wrap {
  padding: 0;
} */
.mycustom-marque.style-3 .scrolling-wrap .cmn-textslide {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}

@media (max-width: 767px) {
  .mycustom-marque.style-3 .scrolling-wrap .cmn-textslide {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .mycustom-marque.style-3 .scrolling-wrap .cmn-textslide {
    font-size: 36px;
  }
}

.mycustom-marque.style-3 .scrolling-wrap .cmn-textslide i {
  font-size: 55px;
  color: var(--theme-red);
}

@media (max-width: 575px) {
  .mycustom-marque.style-3 .scrolling-wrap .cmn-textslide i {
    font-size: 44px;
  }
}

.mycustom-marque.theme-green-bg-1 {
  background-color: var(--theme-green);
}

.mycustom-marque.theme-green-bg {
  background-color: var(--theme-green-3);
}

.mycustom-marque.theme-yellow-bg {
  background-color: var(--theme-yellow-3);
}

.mycustom-marque.theme-yellow-bg .scrolling-wrap .comm {
  animation: scrolls 60s linear infinite;
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

.mycustom-marque.theme-yellow-bg .scrolling-wrap .cmn-textslide {
  color: var(--header);
}

.mycustom-marque.theme-yellow-bg .scrolling-wrap .cmn-textslide i {
  color: var(--header);
}

.mycustom-marque.theme-blue-bg-2 {
  background-color: var(--theme-blue-2);
  position: static;
}

.mycustom-marque.style-two .scrolling-wrap.style-2 {
  margin-top: -155px;
}

.mycustom-marque.style-two .scrolling-wrap.style-2 .comm {
  color: rgba(3, 31, 66, 0.1);
}

.mycustom-marque.style-two .scrolling-wrap.style-2 .comm .stroke-text {
  -webkit-text-stroke: 1px var(--text);
  -webkit-text-fill-color: transparent;
  font-size: 200px;
  font-weight: 600;
  line-height: 255px;
  font-family: "Sora", system-ui;
  animation: shine 3s infinite;
  -webkit-mask-image: linear-gradient(-75deg, rgba(3, 31, 66, 0.1) 50%, var(--text) 50%, rgba(3, 31, 66, 0.1) 70%);
  -webkit-mask-size: 200%;
}

.mycustom-marque.header-marque .scrolling-wrap {
  padding: 5px 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrolly {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60%);
  }
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.wcu-p {
  margin-top: 20px;
  color: #bebebe;
}

.wcu-p2 {
  margin-top: 20px;
  color: #bebebe;
  font-weight: 700;
}

.choose-us-section .container-fluid {
  padding: 0 210px;
}

@media (max-width: 1600px) {
  .choose-us-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1199px) {
  .choose-us-section .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .choose-us-section .container-fluid {
    padding: 0 30px;
  }
}

.choose-us-section.choose-bg {
  position: relative;
  z-index: 9;
}

.choose-us-section.choose-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  z-index: -1;
  height: 50%;
}

.choose-us-wrapper {
  background-color: var(--header);
  padding: 70px 45px 70px 80px;
  border-radius: 7px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .choose-us-wrapper {
    padding: 10px 5px;
  }
}
@media (max-width: 768px) {
  .choose-us-section .container-fluid {
    padding: 10px 0;
  }
}

.choose-us-wrapper .choose-us-counter-items {
  margin-left: -60px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper .choose-us-counter-items {
    margin-left: 0;
  }
}

.choose-us-wrapper .choose-us-counter-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  padding: 30px;
}

@media (max-width: 767px) {
  .choose-us-wrapper .choose-us-counter-box {
    text-align: center;
    margin: 0 auto;
  }
}

.choose-us-wrapper .choose-us-counter-box .icon {
  font-size: 60px;
  color: var(--white);
}

.choose-us-wrapper .choose-us-counter-box .content {
  margin-top: 35px;
}

.choose-us-wrapper .choose-us-counter-box .content h2 {
  color: var(--white);
}

.choose-us-wrapper .choose-us-counter-box .content p {
  color: var(--white);
  font-size: 16px;
  margin-top: 5px;
}

.choose-us-wrapper .choose-us-counter-box.style-2 {
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
}

.choose-us-wrapper .choose-us-image {
  /* margin-bottom: -70px; */
  text-align: right;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-image {
    text-align: center;
  }
}

.choose-us-wrapper .choose-us-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-yellow);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: -1;
  top: 90px;
  left: initial;
  right: -100px;
}

@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-image::before {
    display: none;
  }
}

.main-choose-us-wrapper {
  position: relative;
}

.main-choose-us-wrapper .choose-us-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .main-choose-us-wrapper .choose-us-top {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .main-choose-us-wrapper .choose-us-top {
    justify-content: center;
    text-align: center;
  }
}

.main-choose-us-wrapper .choose-us-top .icon-items {
  max-width: 220px;
}

.main-choose-us-wrapper .choose-us-top .icon-items .icon {
  width: 130px;
  height: 130px;
  line-height: 140px;
  text-align: center;
  border-radius: 50%;
  font-size: 60px;
  color: var(--header);
  background-color: var(--theme-green);
}

@media (max-width: 767px) {
  .main-choose-us-wrapper .choose-us-top .icon-items .icon {
    margin: 0 auto;
  }
}

.main-choose-us-wrapper .choose-us-top .icon-items .content {
  margin-top: 50px;
}

.main-choose-us-wrapper .choose-us-top .icon-items .content h2 {
  font-size: 55px;
  margin-bottom: 5px;
}

.main-choose-us-wrapper .choose-us-bottom {
  display: flex;
  align-items: center;
  gap: 345px;
}

@media (max-width: 1199px) {
  .main-choose-us-wrapper .choose-us-bottom {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .main-choose-us-wrapper .choose-us-bottom {
    justify-content: center;
    text-align: center;
  }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items {
  max-width: 220px;
  margin-top: 110px;
  margin-left: 90px;
}

@media (max-width: 1199px) {
  .main-choose-us-wrapper .choose-us-bottom .icon-items {
    margin-left: 0;
    margin-top: 30px;
  }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items .icon {
  width: 130px;
  height: 130px;
  line-height: 150px;
  text-align: center;
  border-radius: 50%;
  font-size: 60px;
  color: var(--white);
  background-color: var(--theme-blue);
}

@media (max-width: 767px) {
  .main-choose-us-wrapper .choose-us-bottom .icon-items .icon {
    margin: 0 auto;
  }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items .content {
  margin-top: 25px;
}

.main-choose-us-wrapper .choose-us-bottom .icon-items .content h2 {
  font-size: 55px;
  margin-bottom: 5px;
}

.main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 {
  margin-top: -185px;
  margin-left: 0;
}

@media (max-width: 1199px) {
  .main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 {
    margin-top: 0;
  }
}

.main-choose-us-wrapper .choose-us-bottom .icon-items.style-2 .icon {
  background-color: var(--theme-yellow);
  color: var(--header);
}

.main-choose-us-wrapper .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .main-choose-us-wrapper .line-shape {
    display: none;
  }
}

.main-choose-us-wrapper .line-shape img {
  width: 100%;
  height: 100%;
}

.feature-wrapper-3 {
  background-color: var(--white);
  border-radius: 7px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1899px) {
  .feature-wrapper-3 {
    box-shadow: var(---box-shadow);
  }
}

@media (max-width: 575px) {
  .feature-wrapper-3 .feature-wrapper-3 {
    padding-bottom: 50px;
  }
}

.feature-wrapper-3 .feature-card-items {
  text-align: center;
  border-right: 1px solid var(--theme-red);
  padding: 40px 20px;
}

@media (max-width: 1199px) {
  .feature-wrapper-3 .feature-card-items {
    border-right: none;
    padding: 30px 20px;
  }
}

.feature-wrapper-3 .feature-card-items .icon {
  font-size: 55px;
  color: var(--theme-red);
}

.feature-wrapper-3 .feature-card-items .content {
  margin-top: 20px;
}

.feature-wrapper-3 .feature-card-items .content h5 {
  margin-bottom: 10px;
}

.feature-wrapper-3.style-2 {
  background-color: var(--white);
  box-shadow: 10px 4px 60px rgba(190, 190, 190, 0.25);
}

.feature-wrapper-3.style-2 .feature-card-items {
  border-right: 1px solid var(--border);
}

.feature-wrapper-3.style-2 .feature-card-items .icon {
  color: var(--theme-blue);
}

.feature-section-3.style-margin-top {
  margin-top: -350px;
}

@media (max-width: 575px) {
  .feature-section-3.style-margin-top {
    margin-top: -130px;
  }
}

.counter-section-2 {
  position: relative;
}

.counter-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  height: 38%;
}

.counter-section-22 {
  position: relative;
}

.counter-section-22::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #F3F1FD;
  top: 35%;
}

.counter-section-23 {
  position: relative;
}

.counter-section-23::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 50%;
}

.counter-wrapper-2 {
  padding: 70px 100px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 50px;
  }
}

@media (max-width: 991px) {
  .counter-wrapper-2 {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper-2 {
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper-2 .counter-items {
    text-align: center;
  }
}

.counter-wrapper-2 .counter-items .icon {
  color: var(--white);
  font-size: 65px;
}

.counter-wrapper-2 .counter-items .content {
  margin-top: 30px;
}

.counter-wrapper-2 .counter-items .content h2 {
  /* font-size: 55px; */
  color: var(--white);
}

@media (max-width: 767px) {
  .counter-wrapper-2 .counter-items .content h2 {
    font-size: 42px;
  }
}

.counter-wrapper-2 .counter-items .content p {
  color: var(--white);
  margin-top: 5px;
}

.choose-us-section-3 {
  position: relative;
}

.choose-us-wrapper-3 .video-image {
  max-width: 1165px;
  position: relative;
}

.choose-us-wrapper-3 .video-image img {
  width: 100%;
  height: 100%;
}

.choose-us-wrapper-3 .video-image .video-btn {
  width: 130px;
  height: 130px;
  line-height: 130px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.6) 14.64%, rgba(255, 255, 255, 0.5) 86.55%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(20px);
  color: var(--white);
}

@media (max-width: 767px) {
  .choose-us-wrapper-3 .video-image .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}

.choose-us-wrapper-3 .choose-content {
  background-color: var(--theme-red);
  padding: 100px;
  margin-left: -80px;
  margin-top: 50px;
  position: relative;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-content {
    padding: 50px 40px;
  }
}

@media (max-width: 991px) {
  .choose-us-wrapper-3 .choose-content {
    margin-left: 0;
    margin-top: 0;
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .choose-us-wrapper-3 .choose-content {
    text-align: center;
  }
}

.choose-us-wrapper-3 .choose-content .circle-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.choose-us-wrapper-3 .choose-content .icon-items {
  margin-top: 50px;
}

.choose-us-wrapper-3 .choose-content .icon-items .icon {
  color: var(--white);
  font-size: 50px;
  margin-bottom: 20px;
}

.choose-us-wrapper-3 .choose-content .icon-items h3 {
  color: var(--white);
}

.choose-us-box-4 {
  margin-top: 30px;
  padding: 35px;
  background-color: var(--white);
  position: relative;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .choose-us-box-4 {
    padding: 30px;
    text-align: center;
  }
}

.choose-us-box-4::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--theme-pink);
  border-left: 1px solid var(--theme-pink);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: initial;
  border-radius: 10px;
}

.choose-us-box-4::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--theme-pink);
  border-right: 1px solid var(--theme-pink);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
}

.choose-us-box-4 .icon {
  font-size: 55px;
  color: var(--theme-pink);
}

.choose-us-box-4 .content {
  margin-top: 30px;
}

.choose-us-box-4 .content h4 {
  margin-bottom: 15px;
  line-height: 150%;
}

.choose-us-box-4 .content p {
  line-height: 188%;
}

.choose-us-box-4:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.choose-us-box-4:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transform: initial;
  transform-origin: initial;
}

.choose-us-4 {
  padding-top: 240px;
  margin-top: -250px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .choose-us-4 {
    padding-top: 188px;
    margin-top: -250px;
    background-position: top;
  }
}

@media (max-width: 1199px) {
  .choose-us-4 {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.meet-fun-wrapper {
  margin-top: 140px;
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .meet-fun-wrapper {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.meet-fun-wrapper .main-bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
  .meet-fun-wrapper .main-bg-shape {
    display: none;
  }
}

@media (max-width: 991px) {
  .meet-fun-wrapper .meet-fun-items {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .meet-fun-wrapper .meet-fun-items {
    margin-left: 0;
  }
}

.meet-fun-wrapper .meet-fun-items .meet-fun-box {
  margin-top: 30px;
  background-color: var(--theme-pink);
  box-shadow: 10px 4px 60px rgba(238, 74, 98, 0.5);
  border-radius: 15px;
  padding: 30px 32px;
  max-width: 310px;
}

@media (max-width: 1199px) {
  .meet-fun-wrapper .meet-fun-items .meet-fun-box {
    max-width: initial;
  }
}

.meet-fun-wrapper .meet-fun-items .meet-fun-box .icon {
  font-size: 45px;
  color: var(--white);
}

.meet-fun-wrapper .meet-fun-items .meet-fun-box .content {
  margin-top: 20px;
}

.meet-fun-wrapper .meet-fun-items .meet-fun-box .content h4 {
  margin-bottom: 10px;
  color: var(--white);
}

.meet-fun-wrapper .meet-fun-items .meet-fun-box .content p {
  color: var(--white);
}

.meet-fun-wrapper .meet-fun-items .meet-fun-box.bg-2 {
  box-shadow: 10px 4px 60px rgba(0, 122, 255, 0.5);
  background-color: var(--theme-blue);
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .meet-fun-wrapper .meet-fun-items .meet-fun-box.bg-2 {
    margin-left: 0;
  }
}

.meet-fun-wrapper .meet-fun-items .meet-fun-box.bg-3 {
  background-color: var(--theme-orange);
  box-shadow: 10px 4px 60px rgba244, 121, 0, 0.5;
}

.meet-fun-wrapper .meet-fun-items .meet-fun-box.bg-4 {
  background-color: var(--bg4);
  box-shadow: 10px 4px 60px rgba(47, 88, 78, 0.5);
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .meet-fun-wrapper .meet-fun-items .meet-fun-box.bg-4 {
    margin-left: 0;
  }
}

.meet-fun-wrapper .meet-fun-image {
  margin-top: 30px;
  position: relative;
  text-align: center;
  margin-left: -50px;
}

@media (max-width: 1199px) {
  .meet-fun-wrapper .meet-fun-image {
    margin-left: 0;
  }
}

.meet-fun-wrapper .meet-fun-image img {
  border-radius: 0px 0px 0px 90px;
}

.meet-fun-wrapper .meet-fun-image .bg-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media (max-width: 470px) {
  .meet-fun-wrapper .meet-fun-image .bg-shape {
    display: none;
  }
}

.meet-fun-wrapper .meet-fun-image .bg-shape img {
  border-radius: 0;
}

.portfolio-item {
  position: relative;
  margin-top: 30px;
}

.portfolio-item .portfoio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-item .portfoio-thumb img {
  border-radius: 10px;
}

.portfolio-item .portfoio-thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  background: rgba(0, 91, 255, 0.85);
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}

.portfolio-item .portfoio-thumb .portfolio-arrow {
  position: absolute;
  right: 20px;
  top: -120px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.portfolio-item .portfoio-thumb .portfolio-arrow a {
  width: 55px;
  height: 55px;
  text-align: center;
  background: var(--theme-yellow);
  display: inline-block;
  line-height: 55px;
  border-radius: 100%;
}

.portfolio-item .portfoio-thumb .portfolio-text {
  position: absolute;
  left: 40px;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.portfolio-item .portfoio-thumb .portfolio-text h3 {
  color: var(--white);
  margin-bottom: 5px;
}

.portfolio-item .portfoio-thumb .portfolio-text p {
  color: var(--white);
}

.portfolio-item:hover .portfolio-arrow {
  top: 20px;
  opacity: 1;
  visibility: visible;
}

.portfolio-item:hover .portfolio-text {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

.portfolio-item:hover .portfoio-thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 1;
  visibility: visible;
}

.pricing-card-items {
  margin-top: 30px;
  padding: 40px 50px;
  background-color: var(--white);
  filter: drop-shadow(10px 4px 60px rgba(204, 204, 204, 0.25));
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.pricing-card-items .pricing-header {
  margin-bottom: 30px;
}

.pricing-card-items .pricing-header h5 {
  color: var(--theme-blue);
  margin-bottom: 10px;
}

.pricing-card-items .pricing-btn {
  margin-top: 20px;
}

.pricing-card-items .pricing-btn .theme-btn {
  width: 100%;
  justify-content: center;
}

.pricing-card-items .pricing-list {
  margin-top: 50px;
}

.pricing-card-items .pricing-list li {
  color: var(--header);
}

.pricing-card-items .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-card-items .pricing-list li i {
  color: var(--theme-blue);
  margin-right: 10px;
}

.pricing-card-items.style-2 .post-btn {
  background-color: var(--theme-yellow);
  border-radius: 7px;
  padding: 3px 10px;
  display: inline-block;
  font-size: 12px;
  color: var(--header);
  position: absolute;
  top: 7px;
  right: 7px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-card-items.style-2 .pricing-btn .theme-btn {
  background-color: var(--theme-blue);
  color: var(--white);
}

.pricing-card-items:hover {
  transform: translateY(-10px);
}

.choose-us-wrapper-5 .choose-content {
  max-width: 532px;
}

.choose-us-wrapper-5 .choose-content .choose-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .choose-us-wrapper-5 .choose-content .choose-items {
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    justify-content: center;
  }
}

.choose-us-wrapper-5 .choose-content .choose-items .circle-text {
  position: relative;
}

.choose-us-wrapper-5 .choose-content .choose-items .circle-text .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-40deg);
  font-size: 40px;
  color: #553CDF;
}

.choose-us-wrapper-5 .choose-content .choose-items .circle-text .circle-animation {
  animation: cir36 10s linear infinite;
}

.choose-us-wrapper-5 .choose-content .choose-items .counter-box {
  padding: 15px 35px;
  text-align: center;
  background-color: var(--white);
  box-shadow: 10px 4px 60px rgba(160, 160, 160, 0.25);
  border-radius: 10px;
  border: 1px solid rgba(9, 21, 66, 0.1);
}

.choose-us-wrapper-5 .choose-content .choose-items .counter-box .title {
  font-size: 85px;
  font-weight: 600;
  color: #553CDF;
}

.choose-us-wrapper-5 .choose-content .choose-items .counter-box p {
  font-size: 18px;
  font-weight: 400;
}

.choose-us-wrapper-5 .choose-us-items-5 {
  background-color: var(--white);
  border: 1px solid rgba(9, 21, 66, 0.1);
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3 {
  padding: 40px 35px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(9, 21, 66, 0.1);
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3.border-right-none {
  border-right: none;
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3.border-top-none {
  border-top: none;
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3.border-left-none {
  border-left: none;
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3.border-bottom-none {
  border-bottom: none;
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3 .icon {
  font-size: 55px;
  color: #553CDF;
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3 .content {
  margin-top: 30px;
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3 .content h5 {
  margin-bottom: 10px;
}

.choose-us-wrapper-5 .choose-us-items-5 .choose-box-3:hover {
  background: var(--white);
  box-shadow: 10px 4px 60px 0px rgba(160, 160, 160, 0.25);
}

.gallery-section .nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-section .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.gallery-section .nav .nav-item .nav-link.active {
  color: var(--header);
  position: relative;
  display: inline-block;
}

.gallery-section .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  right: 0;
  content: "";
  width: 100%;
  height: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bar/tab-bar.png);
  animation: width 1.5s linear !important;
  animation-fill-mode: both;
  background-position: center;
  max-width: 70px;
  transform: translateX(-50%);
}

.pricing-section .nav {
  border: none;
}

.pricing-section .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
  justify-content: center;
}

.pricing-section .nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--text);
  margin-bottom: 0;
}

.pricing-section .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: var(--theme-blue);
  width: 75px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid var(--theme-blue);
}

.pricing-section .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFD25D;
  z-index: 1;
}

.pricing-section .nav .nav-link:first-child {
  padding-left: 0;
}

.pricing-section .nav .nav-link:last-child {
  padding-right: 0;
}

.pricing-section .nav .nav-link:last-child::after {
  display: none;
}

.pricing-section .nav .nav-link:last-child::before {
  display: none;
}

.pricing-section .nav .nav-link.active {
  color: var(--header);
}

.pricing-section .nav .nav-link.active::after {
  right: 8px;
}

@media (max-width: 991px) {
  .about-wrapper {
    margin-top: -29px;
  }
}

@media (max-width: 767px) {
  .about-wrapper {
    margin-top: -104px;
  }
}

.about-wrapper .about-image {
  margin-left: 0%;
  max-width: 585px;
  margin-top: 80px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-image {
    max-width: 1000px;
  }
}

.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}

.about-wrapper .about-content {
  max-width: 700px;
  margin-top: 37px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-content {
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
  }
}

.about-wrapper .about-content p {
  font-size: 20px;
  color: var(--header);
  line-height: 175%;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-content p {
    text-align: center;
  }
}

.about-wrapper .about-content .counter-box-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .counter-box-items {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-content .counter-box-items {
    justify-content: center;
  }
}

.about-wrapper .about-content .counter-box-items .counter-content {
  border-right: 1px solid var(--border);
  padding-right: 150px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .counter-box-items .counter-content {
    padding-right: 0;
    border-right: none;
  }
}

.about-wrapper .about-content .counter-box-items .counter-content h2 {
  font-size: 85px;
}

@media (max-width: 767px) {
  .about-wrapper .about-content .counter-box-items .counter-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-content .counter-box-items .counter-content h2 {
    font-size: 46px;
  }
}

.about-wrapper .about-content .counter-box-items .counter-content p {
  font-size: 18px;
  color: var(--text);
}

.about-wrapper .about-content .counter-box-items .text {
  max-width: 270px;
  color: var(--text);
  font-size: 16px;
}

.about-wrapper .about-content .theme-btn {
  background-color: transparent;
  color: var(--header);
  border: 1px solid var(--header);
}

.about-wrapper .about-content .theme-btn::before,
.about-wrapper .about-content .theme-btn::after {
  background-color: var(--theme-green);
}

.about-wrapper .about-image-items {
  position: relative;
  margin-right: -10px;
  text-align: right;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items {
    text-align: left;
  }
}

.about-wrapper .about-image-items .about-image-2 img {
  border-radius: 7px;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-image-items .about-image-2 img {
    height: 600px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image-2 img {
    height: 500px;
  }
}

.about-wrapper .about-image-items .about-image-3 {
  position: absolute;
  bottom: -100px;
  left: -60px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-3 {
    bottom: 0;
    left: 0;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-3 {
    height: 300px;
  }
}

.about-wrapper .about-image-items .about-image-3 img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
}

.about-section-3 {
  background-color: #09224B;
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-content {
    text-align: center;
  }
}

.about-wrapper-2 .about-content p {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content p {
    font-size: 16px;
  }
}

.about-wrapper-2 .about-content .theme-btn {
  padding: 18px 30px;
}

.about-wrapper-2 .about-content .theme-btn::before,
.about-wrapper-2 .about-content .theme-btn::after {
  background-color: var(--white);
}

.about-wrapper-2 .about-content .theme-btn:hover {
  color: var(--header);
}

.about-wrapper-2 .about-content .about-counter-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 70px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-counter-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-content .about-counter-items {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.about-wrapper-2 .about-content .about-counter-items .counter-content:not(:last-child) {
  border-right: 1px solid var(--white);
  padding-right: 70px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-counter-items .counter-content:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}

.about-wrapper-2 .about-content .about-counter-items .counter-content h3 {
  font-size: 55px;
  font-weight: 500;
  color: var(--white);
}

.about-wrapper-2 .about-content .about-counter-items .counter-content p {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--white);
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-counter-items .counter-content p {
    font-size: 16px;
  }
}

.about-wrapper-2 .about-image {
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-image img {
    width: initial;
    height: initial;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-image img {
    width: 100%;
    height: 100%;
  }
}

.about-wrapper-2 .about-image .bg-shape {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .bg-shape {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-image .bg-shape {
    display: block;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-image .bg-shape {
    display: none;
  }
}

.about-wrapper-2 .about-image .counter-box {
  background-color: var(--white);
  z-index: 9;
  position: absolute;
  bottom: 50px;
  right: -50px;
  padding: 30px 40px;
  border-radius: 10px;
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-image .counter-box {
    bottom: 50px;
    right: 0;
    padding: 20px 20px;
  }
}

.about-wrapper-2 .about-image .counter-box p {
  font-size: 18px;
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-image .counter-box p {
    font-size: 16px;
  }
}

.about-wrapper-2 .about-image .counter-box h2 {
  color: var(--theme-red);
  font-size: 50px;
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-image .counter-box h2 {
    font-size: 40px;
  }
}

.about-wrapper-3 .about-content {
  max-width: 770px;
}

.about-wrapper-3 .about-content .about-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .about-wrapper-3 .about-content .about-items {
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    justify-content: center;
  }
}

.about-wrapper-3 .about-content .about-items .circle-text {
  position: relative;
}

.about-wrapper-3 .about-content .about-items .circle-text .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-wrapper-3 .about-content .about-items .circle-text .circle-animation {
  animation: cir36 10s linear infinite;
}

/* .about-wrapper-3 .about-content .about-items .content {
  max-width: 420px;
} */
.about-wrapper-3 .about-content .about-items .content P {
  margin-bottom: 50px;
}

.about-wrapper-3 .hero-image {
  text-align: center;
  position: relative;
}

@media (max-width: 991px) {
  .about-wrapper-3 .hero-image {
    margin-top: 30px;
  }
}

.about-wrapper-3 .hero-image .bg-shape {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

@media (max-width: 991px) {
  .about-wrapper-3 .hero-image .bg-shape {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.about-wrapper-4 {
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 {
    margin-bottom: 0;
  }
}

.about-wrapper-4 .about-image {
  max-width: 440px;
  position: relative;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-image {
    max-width: 1200px;
  }
}

.about-wrapper-4 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper-4 .about-image .about-image-2 {
  position: absolute;
  right: -190px;
  bottom: -40%;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-image .about-image-2 {
    bottom: 0;
    right: 0;
    max-width: 350px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-4 .about-image .about-image-2 {
    max-width: 440px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-4 .about-image .about-image-2 {
    max-width: 350px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-4 .about-image .about-image-2 {
    max-width: 240px;
  }
}

.about-wrapper-4 .about-content {
  margin-left: 80px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content {
    margin-left: 0;
  }

  .about-wrapper-4 .about-content .section-title {
    text-align: left;
  }
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .circle-progress-bar-wrapper {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-4 .about-content .circle-progress-bar-wrapper {
    margin-top: 40px;
    gap: 70px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-4 .about-content .circle-progress-bar-wrapper {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-4 .about-content .circle-progress-bar-wrapper {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .content h6 {
  display: block;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 135%;
}

@media (max-width: 575px) {
  .about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .content br {
    display: block;
  }
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
  position: relative;
  height: 120px;
  width: 120px;
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
  position: absolute;
  font-size: 30px;
  line-height: 92px;
  height: 90px;
  width: 90px;
  left: 5px;
  top: 5px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--header);
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
  background-color: rgba(85, 60, 223, 0.1) !important;
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: var(--theme-blue-2) !important;
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: rgba(85, 60, 223, 0.1) !important;
}

.about-wrapper-4 .about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
  clip: rect(0 50px 100px 0);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
  background-color: var(--theme-blue-2) !important;
}

.about-wrapper-4 .about-content .list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
}

.about-wrapper-4 .about-content .list li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-4 .about-content .list li i {
  font-size: 26px;
  color: var(--theme-blue-2);
}

.about-wrapper-4 .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper-4 .about-content .about-author {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-4 .about-content .about-author .about-button .theme-btn {
  background-color: transparent;
  border: 1px solid var(--theme-blue-2);
  color: var(--theme-blue-2);
}

.about-wrapper-4 .about-content .about-author .about-button .theme-btn::before,
.about-wrapper-4 .about-content .about-author .about-button .theme-btn::after {
  background-color: var(--theme-blue-2);
}

.about-wrapper-4 .about-content .about-author .about-button .theme-btn:hover {
  color: var(--white);
}

@media (max-width: 767px) {
  .about-wrapper-5 .about-content {
    text-align: center;
  }
}

.about-wrapper-5 .about-content p {
  font-size: 19px;
  color: var(--header);
}

.about-wrapper-5 .about-content .counter-box-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .counter-box-items {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-5 .about-content .counter-box-items {
    justify-content: center;
    gap: 15px;
  }
}

.about-wrapper-5 .about-content .counter-box-items .counter-content {
  border-right: 1px solid var(--border);
  padding-right: 90px;
}

@media (max-width: 1399px) {
  .about-wrapper-5 .about-content .counter-box-items .counter-content {
    padding-right: 0;
    border-right: none;
  }
}

.about-wrapper-5 .about-content .counter-box-items .counter-content h2 {
  font-size: 85px;
}

@media (max-width: 767px) {
  .about-wrapper-5 .about-content .counter-box-items .counter-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-5 .about-content .counter-box-items .counter-content h2 {
    font-size: 46px;
  }
}

.about-wrapper-5 .about-content .counter-box-items .counter-content p {
  font-size: 18px;
  color: var(--text);
}

.about-wrapper-5 .about-content .counter-box-items .text {
  max-width: 270px;
  color: var(--text);
  font-size: 16px;
}

.top-category-wrapper {
  border: 1px solid var(--border);
  border-radius: 7px;
  background-color: var(--bg);
  border-top: none;
}

.top-category-wrapper .top-category-box-items {
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

@media (max-width: 1199px) {
  .top-category-wrapper .top-category-box-items {
    background: var(--white);
    box-shadow: 10px 4px 60px 0px rgba(0, 91, 255, 0.1);
    border: none !important;
  }

  .top-category-wrapper .top-category-box-items .icon {
    background-color: var(--theme-yellow);
  }
}

.top-category-wrapper .top-category-box-items .icon {
  font-size: 45px;
  color: var(--theme-blue);
  position: relative;
  z-index: 9;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}

.top-category-wrapper .top-category-box-items .icon i {
  padding-top: 25px;
  margin-left: 15px;
  display: inline-block;
}

@media (max-width: 767px) {
  .top-category-wrapper .top-category-box-items .icon i {
    margin-left: 0;
  }
}

.top-category-wrapper .top-category-box-items h6 {
  margin-top: 40px;
  font-weight: 600;
}

.top-category-wrapper .top-category-box-items h6:hover {
  color: var(--theme-blue);
}

.top-category-wrapper .top-category-box-items:hover,
.top-category-wrapper .top-category-box-items.active {
  background: var(--white);
  box-shadow: 10px 4px 60px 0px rgba(0, 91, 255, 0.1);
}

.top-category-wrapper .top-category-box-items:hover .icon,
.top-category-wrapper .top-category-box-items.active .icon {
  background-color: var(--theme-yellow);
}

.top-category-wrapper .top-category-box-items.border-right-none {
  border-right: none;
}

@media (max-width: 767px) {
  .top-category p {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .top-category .top-category-button {
    text-align: center;
  }
}

.top-category-wrapper-2 {
  background-color: var(--white);
  border-radius: 10px;
  position: relative;
  z-index: 9;
}

.top-category-wrapper-2 .top-category-left-items .top-category-box {
  padding: 40px 30px;
  border: 1px solid var(--border);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .top-category-wrapper-2 .top-category-left-items .top-category-box {
    padding: 30px;
    margin: 0 auto;
    text-align: center;
  }
}

.top-category-wrapper-2 .top-category-left-items .top-category-box .icon {
  font-size: 46px;
  color: var(--theme-blue);
  transition: all 0.4s ease-in-out;
}

.top-category-wrapper-2 .top-category-left-items .top-category-box .content {
  margin-top: 45px;
}

.top-category-wrapper-2 .top-category-left-items .top-category-box .content h6 {
  font-size: 16px;
  font-weight: 500;
}

.top-category-wrapper-2 .top-category-left-items .top-category-box .content p {
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .top-category-wrapper-2 .top-category-left-items .top-category-box {
    background-color: var(--theme-blue);
    border: none;
  }

  .top-category-wrapper-2 .top-category-left-items .top-category-box .icon {
    color: var(--white);
  }

  .top-category-wrapper-2 .top-category-left-items .top-category-box .content h6 {
    color: var(--white);
  }

  .top-category-wrapper-2 .top-category-left-items .top-category-box .content p {
    color: var(--white);
  }
}

.top-category-wrapper-2 .top-category-left-items .top-category-box:hover {
  background-color: var(--theme-blue);
}

.top-category-wrapper-2 .top-category-left-items .top-category-box:hover .icon {
  color: var(--white);
}

.top-category-wrapper-2 .top-category-left-items .top-category-box:hover .content h6 {
  color: var(--white);
}

.top-category-wrapper-2 .top-category-left-items .top-category-box:hover .content p {
  color: var(--white);
}

.top-category-wrapper-2 .border-left-none {
  border-left: none !important;
}

.top-category-wrapper-2 .border-top-none {
  border-top: none !important;
}

.top-category-wrapper-2 .border-bottom-none {
  border-bottom: none !important;
}

.top-category-wrapper-2 .border-right-none {
  border-right: none !important;
}

.top-category-wrapper-2 .courses-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .top-category-wrapper-2 .courses-image {
    position: relative;
    left: 0;
    transform: initial;
    text-align: center;
  }
}

.top-category-wrapper-2 .courses-image .bg-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.top-category-section-2 {
  position: relative;
}

.top-category-section-2 .category-bottom-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .top-category-section-2 .category-bottom-title {
    flex-wrap: wrap;
  }
}

.top-category-section-2 .category-bottom-title h3 {
  color: var(--white);
  font-weight: 500;
}

.top-category-section-2 .category-bottom-title .theme-btn {
  padding: 16px 20px;
  font-size: 14px;
}

.top-category-section-2 .circle-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.top-category-items {
  margin-top: 30px;
  border-radius: 10px;
  border: 1px solid rgba(85, 60, 223, 0.1);
  background: var(--white);
  box-shadow: 10px 4px 60px 0px rgba(143, 102, 255, 0.2);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .top-category-items {
    flex-wrap: wrap;
    padding: 30px;
  }
}

.top-category-items::before {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--theme-blue-2);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  z-index: -1;
}

.top-category-items .icon {
  width: 70px;
  line-height: 90px;
  height: 70px;
  text-align: center;
  border-radius: 35px 35px 35px 0px;
  background: rgba(85, 60, 223, 0.15);
  font-size: 40px;
  color: var(--theme-blue-2);
  transition: all 0.4s ease-in-out;
}

.top-category-items .content {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .top-category-items .content {
    flex-wrap: wrap;
  }
}

.top-category-items .content span {
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.top-category-items.active::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.top-category-items.active .icon {
  background-color: var(--theme-yellow-4);
  color: var(--header);
}

.top-category-items.active .content h4 a {
  color: var(--white);
}

.top-category-items.active .content span {
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme-blue);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-blue);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background: var(--theme-blue);
  opacity: 1;
  border-radius: 7px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme-blue);
  content: "";
}

.swiper-dot.white-color .swiper-pagination-bullet {
  background: var(--white);
}

.swiper-dot.white-color .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1px solid var(--white);
  content: "";
}

.swiper-dot.bg-color-3 .swiper-pagination-bullet {
  background: var(--theme-pink);
}

.swiper-dot.bg-color-3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1px solid var(--theme-pink);
  content: "";
}

.swiper-dot.bg-blue .swiper-pagination-bullet {
  background: var(--theme-blue-2);
}

.swiper-dot.bg-blue .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1px solid var(--theme-blue-2);
  content: "";
}

@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.mt-50 {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .mt-50 {
    margin-top: 35px;
  }
}

@media (max-width: 575px) {
  .mt-50 {
    margin-top: 25px;
  }
}

.mt-40 {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .mt-40 {
    margin-top: 35px;
  }
}

@media (max-width: 575px) {
  .mt-40 {
    margin-top: 25px;
  }
}

.mt-30 {
  margin-top: 30px;
}

@media (max-width: 575px) {
  .mt-30 {
    margin-top: 25px;
  }
}

.blue-bg {
  background-color: var(--theme-blue);
}

.border-bottom {
  border-bottom: 1px solid var(--border);
}

.custom-container {
  max-width: 1500px;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.box-shadow {
  box-shadow: var(---box-shadow);
}

.team-box-items {
  position: relative;
}

.team-box-items .team-image {
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.team-box-items .team-image::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(3, 31, 66, 0.8);
  transform-origin: center;
  transition: all 300ms ease;
}

.team-box-items .team-image img {
  width: 100%;
  height: 100%;
}

.team-box-items .team-image .team-content {
  position: absolute;
  left: 40px;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-box-items .team-image .team-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-box-items .team-image .team-content h3 a {
  color: var(--white);
}

.team-box-items .team-image .team-content p {
  color: var(--white);
}

.team-box-items .team-image .social-profile {
  position: absolute;
  right: 20px;
  top: -120px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}

.team-box-items .team-image .social-profile ul {
  transform: translateY(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.team-box-items .team-image .social-profile ul li {
  margin-bottom: 10px;
}

.team-box-items .team-image .social-profile ul li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  display: block;
  background: var(--white);
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 5px;
}

.team-box-items .team-image .social-profile ul li a:hover {
  background: var(--theme-yellow);
}

.team-box-items .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  background: var(--theme-yellow);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
  margin-bottom: 10px;
}

.team-box-items .team-image .social-profile .plus-btn:hover {
  background: var(--theme-yellow);
}

.team-box-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.team-box-items:hover .team-image::before {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.team-box-items:hover .team-image .team-content {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

.team-box-items:hover .team-image .social-profile {
  visibility: visible;
  opacity: 1;
  top: 20px;
}

.team-box-items.style-2 {
  margin-top: 30px;
}

.team-box-items.style-2 .team-image::before {
  display: none;
}

.team-box-items.style-2 .team-image img {
  border-radius: 7px;
}

.team-box-items.style-2 .team-image .social-profile {
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 1;
  visibility: visible;
}

.team-box-items.style-2 .team-image .social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--white);
  color: var(--header);
  border-radius: 50%;
}

.team-box-items.style-2 .team-image .social-profile ul li a:hover {
  background: var(--theme-blue);
  color: var(--white);
}

.team-box-items.style-2 .team-image .social-profile .plus-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--white);
  color: var(--header);
  border-radius: 50%;
}

.team-box-items.style-2 .team-image .social-profile .plus-btn:hover {
  background: var(--theme-blue);
  color: var(--white);
}

.team-box-items.style-2 .team-content {
  margin-top: 20px;
  text-align: center;
}

.team-box-items.style-2 .team-content h4 a:hover {
  color: var(--theme-blue);
}

.team-wrapper {
  margin-top: 65px;
}

@media (max-width: 767px) {
  .team-wrapper {
    margin-top: 30px;
  }
}

.team-wrapper .team-list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid var(--border);
  padding: 30px 50px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .team-wrapper .team-list-items {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .team-wrapper .team-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.team-wrapper .team-list-items.active {
  background-color: var(--theme-pink);
  box-shadow: 10px 4px 60px 0px rgba(238, 74, 98, 0.5);
  border-radius: 15px;
}

.team-wrapper .team-list-items.active .team-content .content span {
  color: var(--white);
}

.team-wrapper .team-list-items.active .team-content .content h3 a {
  color: var(--white);
}

.team-wrapper .team-list-items.active .team-content p {
  color: var(--white);
}

.team-wrapper .team-list-items.active .icon {
  color: var(--white);
}

.team-wrapper .team-list-items .team-content {
  display: flex;
  align-items: center;
  width: 100%;
}

@media (max-width: 991px) {
  .team-wrapper .team-list-items .team-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.team-wrapper .team-list-items .team-content .content {
  display: flex;
  align-items: center;
  gap: 57px;
  flex-basis: 40%;
}

@media (max-width: 991px) {
  .team-wrapper .team-list-items .team-content .content {
    flex-basis: 100%;
  }
}

.team-wrapper .team-list-items .team-content .content span {
  color: var(--text);
}

.team-wrapper .team-list-items .team-content .content h3 a {
  color: var(--header);
}

.team-wrapper .team-list-items .icon {
  font-size: 20px;
  color: var(--text);
  transform: rotate(-40deg);
}

.team-wrapper .team-list-items .team-hover {
  width: 250px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  opacity: 0;
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  margin: -50px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  visibility: hidden;
  border-radius: 10px;
}

.team-wrapper .team-list-items:hover .team-hover {
  opacity: 1;
  visibility: visible;
}

.team-card-items {
  margin-top: 30px;
}

.team-card-items .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.team-card-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.team-card-items .thumb .social-icon {
  padding: 15px 30px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.team-card-items .thumb .social-icon a {
  color: var(--text);
}

.team-card-items .thumb .social-icon a:hover {
  color: var(--theme-blue-2);
}

.team-card-items .content {
  text-align: center;
  margin-top: 20px;
}

.team-card-items .content h4 a:hover {
  color: var(--theme-blue-2);
}

.team-card-items:hover .thumb img {
  transform: scale(1.1);
}

.team-card-items:hover .thumb .social-icon {
  opacity: 1;
  visibility: visible;
  bottom: 25px;
}

.team-card-items.style-2 .thumb .social-icon a:hover {
  color: var(--theme-blue);
}

.team-card-items.style-2 .content h4 a:hover {
  color: var(--theme-blue);
}

.team-details-wrapper {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 10px 4px 60px 0px rgba(189, 189, 189, 0.25);
  padding: 10px 10px 50px;
  margin-top: -260px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .team-details-wrapper {
    padding: 30px;
  }
}

.team-details-wrapper .team-details-items {
  display: flex;
  gap: 50px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.team-details-wrapper .team-details-items .details-image img {
  border-radius: 10px;
}

.team-details-wrapper .team-details-items .team-details-content {
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items .team-details-content {
    margin-top: 0;
  }
}

.team-details-wrapper .team-details-items .team-details-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
}

.team-details-wrapper .team-details-items .team-details-content span {
  font-size: 18px;
  font-weight: 400;
}

.team-details-wrapper .team-details-items .team-details-content .details-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  margin-top: 30px;
  position: relative;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items .team-details-content .details-list {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}

.team-details-wrapper .team-details-items .team-details-content .details-list::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 1px;
  height: 20px;
  background-color: var(--theme-blue);
  left: 20%;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items .team-details-content .details-list::before {
    display: none;
  }
}

.team-details-wrapper .team-details-items .team-details-content .details-list li {
  font-size: 16px;
  font-weight: 400;
  padding-right: 30px;
  margin-right: 30px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items .team-details-content .details-list li {
    padding-right: 0;
    margin-right: 0;
  }
}

.team-details-wrapper .team-details-items .team-details-content .details-list li i {
  margin-right: 5px;
}

.team-details-wrapper .team-details-items .team-details-content .details-list li .star {
  display: inline-block;
}

.team-details-wrapper .team-details-items .team-details-content .details-list li .star i {
  color: #FFAE5D;
}

.team-details-wrapper .team-details-items .team-details-content .details-area {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items .team-details-content .details-area {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.team-details-wrapper .team-details-items .team-details-content .details-area .theme-btn {
  background-color: var(--theme-blue);
  color: var(--white);
}

.team-details-wrapper .team-details-items .team-details-content .details-area h5 a {
  color: var(--header);
}

.team-details-wrapper .team-details-items .team-details-content .details-area .social-icon {
  gap: 15px;
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .team-details-wrapper .team-details-items .team-details-content .details-area .social-icon {
    margin-top: 20px;
  }
}

.team-details-wrapper .team-details-items .team-details-content .details-area .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: #5B6D84;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.team-details-wrapper .team-details-items .team-details-content .details-area .social-icon a:hover {
  background-color: var(--theme-yellow);
  color: var(--header);
  border: 1px solid transparent;
}

.faq-wrapper .faq-image-items .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.faq-wrapper .faq-image-items .faq-image.style-2 {
  margin-bottom: 30px;
}

.faq-wrapper .faq-content {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-content {
    margin-left: 0;
  }
}

.faq-wrapper .faq-content .faq-items {
  margin-bottom: 40px;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid var(--border);
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  font-family: "Sora", system-ui;
  color: var(--header);
  padding: 35px 0;
  padding-left: 105px;
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
    padding-left: 60px;
    padding-right: 40px;
    line-height: 1.4;
  }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
  padding-left: 105px;
  padding-right: 50px;
  padding-top: 0;
  margin-top: -10px;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
    padding-left: 60px;
  }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--header);
  line-height: 30px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    line-height: 28px;
  }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
  background-color: var(--bg);
  color: var(--header);
  padding-left: 105px;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  top: 33px;
  left: 50px;
  font-size: 22px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

@media (max-width: 1199px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
    left: 30px;
  }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed {
  color: var(--header);
  background-color: transparent;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f0a9";
  color: var(--header);
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-collapse.show {
  background-color: var(--bg);
}

.faq-wrapper.style-2 .faq-content {
  margin-left: 0;
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .faq-wrapper.style-2 .faq-content {
    margin-right: 0;
  }
}

.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-item {
  border-bottom: 1px solid rgba(9, 34, 75, 0.1);
}

.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-button {
  background-color: #FFF1E0;
}

.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-button.collapsed {
  color: var(--header);
  background-color: transparent;
}

.faq-wrapper.style-2 .faq-content .faq-items .accordion .accordion-collapse.show {
  background-color: #FFF1E0;
}

.faq-wrapper.style-2 .faq-image-2 {
  position: relative;
}

@media (max-width: 1199px) {
  .faq-wrapper.style-2 .faq-image-2 img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .faq-wrapper.style-2 .faq-image-2 img {
    width: inherit;
    height: initial;
  }
}

@media (max-width: 575px) {
  .faq-wrapper.style-2 .faq-image-2 img {
    width: 100%;
    height: 100%;
  }
}

.faq-wrapper.style-2 .faq-image-2 .bg-shape {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 1199px) {
  .faq-wrapper.style-2 .faq-image-2 .bg-shape {
    display: none;
  }
}

@media (max-width: 991px) {
  .faq-wrapper.style-2 .faq-image-2 .bg-shape {
    display: block;
  }
}

@media (max-width: 575px) {
  .faq-wrapper.style-2 .faq-image-2 .bg-shape {
    display: none;
  }
}

.faq-wrapper.style-2 .faq-image-2 .quote-shape {
  position: absolute;
  bottom: -25px;
  right: -50px;
}

@media (max-width: 575px) {
  .faq-wrapper.style-2 .faq-image-2 .quote-shape {
    display: none;
  }
}

.faq-wrapper.style-3 .faq-content {
  margin-left: 0;
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .faq-wrapper.style-3 .faq-content {
    margin-right: 0;
  }

  .faq-wrapper.style-3 .faq-content .section-title {
    text-align: left;
  }
}

@media (max-width: 1199px) {
  .faq-wrapper.style-3 .faq-content .faq-items {
    margin-bottom: 0;
  }
}

.faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-button {
  background-color: var(--white);
}

.faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-button.collapsed {
  color: var(--header);
}

.faq-wrapper.style-3 .faq-content .faq-items .accordion .accordion-collapse.show {
  background-color: var(--white);
}

.faq-wrapper.style-5 .faq-content {
  margin-left: 0;
}

.faq-section-5 {
  background-color: #F3F1FD;
  position: relative;
  margin-bottom: 100px;
}

@media (max-width: 1399px) {
  .faq-section-5 {
    margin-bottom: 0;
  }
}

.faq-section-5 .faq-image {
  position: absolute;
  top: 100px;
  right: 0;
}

@media (max-width: 1399px) {
  .faq-section-5 .faq-image {
    max-width: 650px;
  }

  .faq-section-5 .faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1199px) {
  .faq-section-5 .faq-image {
    position: static;
    margin-bottom: 40px;
    max-width: 1200px;
  }
}

@media (max-width: 991px) {
  .faq-section-5 .faq-image {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .faq-section-5 .faq-image {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .faq-section-5 .faq-image {
    height: 400px;
  }
}

.cta-newsletter-wrapper {
  padding: 100px 0;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .cta-newsletter-wrapper {
    padding: 80px 0;
  }
}

.cta-newsletter-wrapper .newsletter-input-items {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.cta-newsletter-wrapper .newsletter-input-items input {
  width: 100%;
  border: none;
  background-color: transparent;
  outline: none;
  border-radius: 10px;
  border: 1px solid var(--white);
  padding: 25px;
  line-height: 1;
  color: var(--white);
  padding-left: 60px;
}

.cta-newsletter-wrapper .newsletter-input-items input::placeholder {
  color: var(--white);
}

.cta-newsletter-wrapper .newsletter-input-items .icon {
  position: absolute;
  top: 23px;
  left: 25px;
  color: var(--white);
  font-size: 20px;
}

.cta-newsletter-wrapper .newsletter-input-items .theme-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .cta-newsletter-wrapper .newsletter-input-items .theme-btn {
    top: 10px;
  }
}

.cta-newsletter-wrapper .list-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .cta-newsletter-wrapper .list-items {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .cta-newsletter-wrapper .list-items {
    display: grid;
    gap: 15px;
  }
}

.cta-newsletter-wrapper .list-items li {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.cta-newsletter-wrapper .list-items li i {
  margin-right: 5px;
}

.cta-newsletter-wrapper.style-2 .newsletter-input-items input {
  background-color: var(--white);
  color: var(--text);
}

.cta-newsletter-wrapper.style-2 .newsletter-input-items input::placeholder {
  color: var(--text);
}

.cta-newsletter-wrapper.style-2 .newsletter-input-items .icon {
  color: var(--text);
}

.cta-newsletter-wrapper.style-2 .newsletter-input-items .theme-btn {
  background-color: var(--theme-pink);
  color: var(--white);
}

.cta-newsletter-section {
  position: relative;
  z-index: 9;
}

.cta-newsletter-section .girl-shape {
  position: absolute;
  left: 83px;
  bottom: 0;
  z-index: 99;
}

@media (max-width: 1199px) {
  .cta-newsletter-section .girl-shape {
    position: relative;
    left: 0;
  }
}

.cta-newsletter-section .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .cta-newsletter-section .shape-1 {
    opacity: 0.2;
  }
}

.cta-newsletter-section .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
}

@media (max-width: 1199px) {
  .cta-newsletter-section .shape-2 {
    opacity: 0.2;
  }
}

.instagram-image {
  position: relative;
  max-width: 384px;
  z-index: 9;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}

.instagram-image img {
  width: 100%;
  height: 100%;
}

.instagram-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(9, 34, 75, 0.5);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  z-index: 1;
}

.instagram-image .icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: var(--white);
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.instagram-image .icon i {
  transform: rotate(-40deg);
}

.instagram-image .icon:hover {
  background-color: var(--theme-red);
  color: var(--white);
}

.instagram-image:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

.instagram-image:hover .icon {
  top: 50%;
}

.instagram-image.style-2 {
  border-radius: 10px;
}

.instagram-image.style-2::before {
  border-radius: 10px;
  background: rgba(9, 34, 75, 0.5);
}

.instagram-image.style-2 .icon {
  color: var(--theme-pink);
  font-size: 24px;
}

.instagram-image.style-2 .icon i {
  transform: rotate(0deg);
}

.instagram-image.style-2 .icon:hover {
  background-color: var(--theme-pink);
  color: var(--white);
}

.cta-newsletter-section.style-2 {
  background-color: #102F25;
}

.instagram-section-2 {
  padding: 0 10px;
}

.cta-wrapper-5 {
  padding: 270px 0 70px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .cta-wrapper-5 {
    padding-top: 70px;
  }
}

.cta-wrapper-5 .theme-btn {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  justify-content: center;
}

.cta-wrapper-5 .theme-btn::before,
.cta-wrapper-5 .theme-btn::after {
  background-color: var(--white);
}

.cta-wrapper-5 .theme-btn:hover {
  color: var(--header);
}

.testimonial-box-items {
  margin-top: 30px;
  background-color: #FFEFF0;
  border: 1px solid #FFCCCF;
  border-radius: 7px;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .testimonial-box-items {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}

.testimonial-box-items .testimonial-content {
  max-width: 345px;
}

.testimonial-box-items .testimonial-content .star {
  color: var(--theme-orange);
  margin-bottom: 15px;
}

.testimonial-box-items .testimonial-content p {
  font-size: 22px;
  color: var(--header);
  font-weight: 500;
  line-height: 160%;
}

.testimonial-box-items .testimonial-content .client-info {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .testimonial-box-items .testimonial-content .client-info {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .testimonial-box-items .testimonial-content .client-info {
    margin-top: 20px;
  }
}

.testimonial-box-items .testimonial-content .client-info span {
  color: var(--header);
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
}

.testimonial-box-items .testimonial-image {
  margin-bottom: -40px;
}

.testimonial-box-items.bg-2 {
  background-color: #FFF9E3;
  border: 1px solid #F0DE9C;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-content {
    text-align: center;
  }
}

.testimonial-wrapper .testimonial-content .content .icon-top {
  position: relative;
}

.testimonial-wrapper .testimonial-content .content .icon-top::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  border: 1px solid var(--border);
  width: 100%;
  height: 1px;
  z-index: -1;
}

.testimonial-wrapper .testimonial-content .content .icon {
  width: 65px;
  height: 65px;
  font-size: 28px;
  line-height: 75px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--theme-blue);
  text-align: center;
  margin: 0 auto 30px;
  text-align: center;
  background-color: var(--white);
}

.testimonial-wrapper .testimonial-content .content .star {
  margin-bottom: 20px;
}

.testimonial-wrapper .testimonial-content .content .star span {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  display: inline-block;
  margin-right: 10px;
}

.testimonial-wrapper .testimonial-content .content .star i {
  font-size: 16px;
  color: #F8941F;
}

.testimonial-wrapper .testimonial-content .content h3 {
  font-size: 35px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-content .content h3 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-content .content h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-content .content h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-content .content h3 {
    font-size: 22px;
  }
}

.testimonial-wrapper .testimonial-content .content .client-info {
  margin-top: 35px;
}

.testimonial-wrapper .testimonial-content .content .client-info p {
  font-size: 14px;
  color: var(--header);
  font-weight: 400;
}

.testimonial-wrapper .testimonial-image-items {
  position: relative;
}

.testimonial-wrapper .testimonial-image-items .box-shape {
  position: absolute;
  top: 50%;
  left: -40%;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-image-items .box-shape {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.testimonial-wrapper .testimonial-image-items .client-img-1 {
  width: 190px;
  height: 190px;
  border-radius: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-image-items .client-img-1 {
    text-align: center;
    margin: 0 auto 20px;
  }
}

.testimonial-wrapper .testimonial-image-items .client-img-2 {
  width: 190px;
  height: 190px;
  border-radius: 95px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-image-items .client-img-2 {
    text-align: center;
    margin: 0 auto 20px;
  }
}

.testimonial-wrapper .testimonial-image-items .client-img-3 {
  width: 190px;
  height: 250px;
  border-radius: 95px;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-image-items .client-img-3 {
    text-align: center;
    margin: 0 auto;
  }
}

.testimonial-wrapper .testimonial-image-items .client-img-4 {
  width: 190px;
  height: 230px;
  border-radius: 95px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-image-items .client-img-4 {
    text-align: center;
    margin: 0 auto 20px;
  }
}

.testimonial-wrapper .testimonial-image-items .client-img-5 {
  width: 190px;
  height: 190px;
  border-radius: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-image-items .client-img-5 {
    text-align: center;
    margin: 0 auto 20px;
  }
}

.testimonial-wrapper .testimonial-image-items .client-img-6 {
  width: 190px;
  height: 190px;
  border-radius: 95px;
}

@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-image-items .client-img-6 {
    text-align: center;
    margin: 0 auto;
  }
}

.testimonial-section-3 {
  position: relative;
  background-attachment: fixed;
}

.testimonial-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(9, 34, 75, 0.3) 0%, #09224B 100%);
}

.testimonial-card-items {
  margin-top: 30px;
  background-color: var(--white);
  padding: 40px 50px;
  text-align: center;
  position: relative;
  z-index: 9;
  border-radius: 7px;
}

.testimonial-card-items .client-info span {
  font-size: 16px;
  display: inline-block;
  margin-top: 5px;
}

.testimonial-card-items .client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  margin: 25px auto 25px;
}

.testimonial-card-items p {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}

.testimonial-card-items .icon {
  font-size: 55px;
  color: var(--theme-red);
  margin-top: 20px;
}

.testimonial-wrapper-2 {
  background-color: #F8F2EC;
  border-radius: 10px;
  padding: 0 80px;
  margin-top: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 {
    padding: 0 50px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 {
    margin-top: 30px;
    padding: 30px;
  }
}

.testimonial-wrapper-2 .content {
  max-width: 700px;
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .content {
    text-align: center;
    margin: 0 auto;
  }
}

.testimonial-wrapper-2 .content .icon {
  font-size: 70px;
  color: var(--theme-orange);
  margin-bottom: 30px;
}

.testimonial-wrapper-2 .content .star {
  margin-bottom: 20px;
  color: #F8941F;
}

.testimonial-wrapper-2 .content .star span {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  display: inline-block;
  margin-right: 20px;
}

.testimonial-wrapper-2 .content h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 140%;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .content h3 {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .content h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .content h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .content h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .content h3 {
    font-size: 20px;
  }
}

.testimonial-wrapper-2 .content .client-content {
  margin-top: 30px;
}

.testimonial-wrapper-2 .content .client-content h4 {
  color: #F8941F;
}

.testimonial-wrapper-2 .content .client-content p {
  font-size: 14px;
  color: var(--header);
}

.testimonial-wrapper-2 .thumb {
  max-width: 400px;
  text-align: center;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-top: -30px;
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .thumb {
    text-align: center;
    margin: 0 auto 0;
    max-width: 700px;
  }
}

.testimonial-wrapper-2 .thumb .bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 470px) {
  .testimonial-wrapper-2 .thumb .bg-shape {
    display: none;
  }
}

.testimonial-card-items-2 {
  margin-top: 30px;
  background-color: var(--white);
  box-shadow: 10px 4px 60px rgba(181, 181, 181, 0.25);
  padding: 40px 70px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: all 0.4s ease-in-out;
  position: relative;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .testimonial-card-items-2 {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-card-items-2 {
    padding: 30px;
  }
}

.testimonial-card-items-2 .bar-shape {
  position: absolute;
  bottom: -30px;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.testimonial-card-items-2 .icon {
  font-size: 50px;
  color: var(--theme-blue-2);
  margin-bottom: 20px;
}

.testimonial-card-items-2 h3 {
  font-size: 22px;
  line-height: 146%;
}

.testimonial-card-items-2 .star {
  color: #F47900;
  margin-top: 15px;
}

.testimonial-card-items-2:hover {
  border: 1px solid var(--theme-blue-2);
}

.testimonial-card-items-2:hover .bar-shape {
  opacity: 1;
  visibility: visible;
}

.testimonial-client-wrapper {
  margin-right: -30%;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .testimonial-client-wrapper {
    margin-right: 0;
  }
}

.testimonial-client-wrapper .client-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1199px) {
  .testimonial-client-wrapper .client-info {
    gap: 10px;
  }
}

.testimonial-client-wrapper .client-info .client-img {
  border-radius: 50%;
  width: 65px;
  height: 65px;
}

.testimonial-client-wrapper .client-info .content h3 {
  font-size: 20px;
}

.brand-wrapper {
  padding: 80px 100px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
}

@media (max-width: 991px) {
  .brand-wrapper {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .brand-wrapper {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .brand-wrapper {
    padding: 30px;
  }
}

.brand-wrapper .brand-img {
  margin-top: 20px;
}

.global-partner-wrapper {
  background-color: #FFF1E0;
  border: 1px solid rgba(9, 34, 75, 0.1);
  padding: 70px;
  border-radius: 10px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

@media (max-width: 991px) {
  .global-partner-wrapper {
    padding: 0;
  }
}

.global-partner-wrapper.style-2 {
  background-color: #F3F1FD;
}

@media (max-width: 991px) {
  .global-partner-wrapper .section-title {
    padding-top: 30px;
  }
}

.global-partner-wrapper .section-title p {
  color: var(--header);
  max-width: 370px;
}

@media (max-width: 767px) {
  .global-partner-wrapper .section-title p {
    margin: 0 auto;
  }
}

.global-partner-wrapper .global-partner-items {
  border-left: 1px solid rgba(9, 34, 75, 0.07);
}

.global-partner-wrapper .global-partner-items .global-logo {
  padding: 65px 30px;
  text-align: center;
  border-bottom: 1px solid rgba(9, 34, 75, 0.07);
  border-right: 1px solid rgba(9, 34, 75, 0.07);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .global-partner-wrapper .global-partner-items .global-logo {
    background-color: var(--white);
    border: none;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .global-partner-wrapper .global-partner-items .global-logo {
    padding: 20px;
  }
}

.global-partner-wrapper .global-partner-items .global-logo.border-right-none {
  border-right: none !important;
}

.global-partner-wrapper .global-partner-items .global-logo.border-bottom-none {
  border-bottom: none !important;
}

.global-partner-wrapper .global-partner-items .global-logo:hover,
.global-partner-wrapper .global-partner-items .global-logo.active {
  background-color: var(--white);
}

.event-box-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}

.event-box-items .accordion-single {
  overflow: hidden;
}

.event-box-items .accordion-single .header-area .accordion-btn {
  padding: 34px 50px;
  background-color: var(--white);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .event-box-items .accordion-single .header-area .accordion-btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.event-box-items .accordion-single .content-items {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 1199px) {
  .event-box-items .accordion-single .content-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.event-box-items .accordion-single .content-items .post-date {
  padding: 11px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 91, 255, 0.1);
  background: rgba(0, 91, 255, 0.1);
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-blue);
  display: inline-block;
  line-height: 1;
}

.event-box-items .accordion-single .content-items .content {
  max-width: 385px;
}

.event-box-items .accordion-single .content-items .content h5 a:hover {
  color: var(--theme-blue);
}

.event-box-items .accordion-single .event-image {
  max-width: 300px;
  transition: all 0.6s;
  margin-bottom: -400px;
  opacity: 0;
  visibility: hidden;
}

.event-box-items .accordion-single .event-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.event-box-items .accordion-single .button-list {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1399px) {
  .event-box-items .accordion-single .button-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-box-items .accordion-single .button-list li {
  font-size: 16px;
}

.event-box-items .accordion-single .button-list li i {
  color: var(--theme-blue);
  margin-right: 7px;
}

.event-box-items .accordion-single .button-list li .theme-btn {
  background-color: transparent;
  color: var(--header);
  padding: 16px 25px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
}

.event-box-items .accordion-single .button-list li .theme-btn::before,
.event-box-items .accordion-single .button-list li .theme-btn::after {
  background-color: var(--theme-blue);
}

.event-box-items .accordion-single .button-list li .theme-btn:hover {
  color: var(--white);
}

.event-box-items .accordion-single.active .event-image {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
}

.event-box-items .accordion-single.active .content-items {
  display: block;
}

.event-box-items .accordion-single.active .content-items .post-date {
  margin-bottom: 25px;
  display: inline-block;
}

.event-box-items .accordion-single.active .button-list {
  display: flex;
  align-items: center;
  gap: 65px;
}

@media (max-width: 1399px) {
  .event-box-items .accordion-single.active .button-list {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.event-box-items .accordion-single.active .button-list .theme-btn {
  background-color: var(--theme-blue);
  color: var(--white);
}

.event-wrapper {
  border: 1px solid rgba(9, 34, 75, 0.1);
  border-radius: 7px;
  border-right: none;
}

@media (max-width: 1199px) {
  .event-wrapper {
    border: none;
  }
}

.event-wrapper .event-card-items {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.event-wrapper .event-card-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.event-wrapper .event-card-items .post-cat {
  line-height: 1;
  padding: 8px 10px;
  border-radius: 7px;
  background-color: var(--theme-red);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 9;
  position: absolute;
  top: 40px;
  left: 40px;
}

.event-wrapper .event-card-items .content {
  margin-top: 130px;
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
  transform: translateY(100px);
}

@media (max-width: 767px) {
  .event-wrapper .event-card-items .content {
    margin-top: 100px;
    transform: translateY(0);
  }
}

@media (max-width: 575px) {
  .event-wrapper .event-card-items .content {
    margin-top: 80px;
  }
}

.event-wrapper .event-card-items .content .date-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .event-wrapper .event-card-items .content .date-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-wrapper .event-card-items .content .date-list li {
  font-size: 16px;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}

.event-wrapper .event-card-items .content .date-list li i {
  color: var(--theme-red);
  margin-left: 7px;
  transition: all 0.4s ease-in-out;
}

.event-wrapper .event-card-items .content .theme-btn {
  font-size: 14px;
  padding: 16px 25px;
}

.event-wrapper .event-card-items .content .theme-btn::before,
.event-wrapper .event-card-items .content .theme-btn::after {
  background-color: var(--white);
}

.event-wrapper .event-card-items .content .theme-btn:hover {
  color: var(--header);
}

.event-wrapper .event-card-items:hover,
.event-wrapper .event-card-items.active {
  border-right: none;
}

.event-wrapper .event-card-items:hover::before,
.event-wrapper .event-card-items.active::before {
  background: rgba(9, 34, 75, 0.8);
}

.event-wrapper .event-card-items:hover .content,
.event-wrapper .event-card-items.active .content {
  transform: translateY(0);
}

.event-wrapper .event-card-items:hover .content h4 a,
.event-wrapper .event-card-items.active .content h4 a {
  color: var(--white);
}

.event-wrapper .event-card-items:hover .content .date-list li,
.event-wrapper .event-card-items.active .content .date-list li {
  color: var(--white);
}

.event-wrapper .event-card-items:hover .content .date-list li i,
.event-wrapper .event-card-items.active .content .date-list li i {
  color: var(--white);
}

.event-wrapper .event-card-items:hover .content .theme-btn,
.event-wrapper .event-card-items.active .content .theme-btn {
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1199px) {
  .event-wrapper .event-card-items {
    border-right: none;
  }

  .event-wrapper .event-card-items::before {
    background: rgba(9, 34, 75, 0.8);
  }

  .event-wrapper .event-card-items .content h4 a {
    color: var(--white);
  }

  .event-wrapper .event-card-items .content .date-list li {
    color: var(--white);
  }

  .event-wrapper .event-card-items .content .date-list li i {
    color: var(--white);
  }
}

.event-wrapper-2 .event-image {
  height: 890px;
}

@media (max-width: 1199px) {
  .event-wrapper-2 .event-image {
    height: initial;
  }
}

@media (max-width: 991px) {
  .event-wrapper-2 .event-image {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .event-wrapper-2 .event-image {
    height: 500px;
  }
}

@media (max-width: 575px) {
  .event-wrapper-2 .event-image {
    height: 400px;
  }
}

.event-wrapper-2 .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-wrapper-2 .event-right-items {
  padding: 80px;
  background-color: #102F25;
  margin-left: -80px;
}

@media (max-width: 1899px) {
  .event-wrapper-2 .event-right-items {
    margin-left: -120px;
    padding: 40px;
  }
}

@media (max-width: 1199px) {
  .event-wrapper-2 .event-right-items {
    margin-left: 0;
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .event-wrapper-2 .event-right-items {
    margin-left: 0;
    padding: 20px;
  }
}

.event-wrapper-2 .event-right-items .event-list-area {
  overflow: hidden;
  height: 723px;
}

.event-wrapper-2 .event-right-items .event-list-items {
  background-color: var(--white);
  border-radius: 7px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: scrolly 7s linear infinite;
}

@media (max-width: 1199px) {
  .event-wrapper-2 .event-right-items .event-list-items {
    padding: 30px;
    flex-wrap: wrap;
    gap: 25px;
  }
}

.event-wrapper-2 .event-right-items .event-list-items:not(:last-child) {
  margin-bottom: 10px;
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

@media (max-width: 1399px) {
  .event-wrapper-2 .event-right-items .event-list-items .event-content .content {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .date {
  background-color: var(--theme-orange);
  padding: 12px 20px 12px;
  border-radius: 7px;
  text-align: center;
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .date h2 {
  font-size: 40px;
  color: var(--white);
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .date span {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text {
  max-width: 230px;
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text h4 {
  line-height: 135%;
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text h4 a:hover {
  color: var(--theme-orange);
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text .post-time {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(16, 47, 37, 0.1);
  margin-top: 20px;
  padding-top: 20px;
}

@media (max-width: 1199px) {
  .event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text .post-time {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-wrapper-2 .event-right-items .event-list-items .event-content .content .title-text .post-time li i {
  margin-right: 7px;
}

.event-wrapper-2 .event-right-items .event-list-items .event-thumb {
  max-width: 215px;
}

@media (max-width: 767px) {
  .event-wrapper-2 .event-right-items .event-list-items .event-thumb {
    flex-basis: 100%;
    max-width: 800px;
  }
}

.event-wrapper-2 .event-right-items .event-list-items .event-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.event-box-items-2 {
  margin-top: 30px;
  border: 1px solid rgba(85, 60, 223, 0.15);
  background-color: var(--white);
  border-radius: 7px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .event-box-items-2 {
    display: inline-block;
  }
}

.event-box-items-2 .event-content .content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

@media (max-width: 1399px) {
  .event-box-items-2 .event-content .content {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-box-items-2 .event-content .content .date {
  background-color: var(--theme-yellow-4);
  padding: 10px 20px;
  border-radius: 7px;
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.event-box-items-2 .event-content .content .date h2 {
  font-size: 40px;
  color: var(--header);
}

.event-box-items-2 .event-content .content .date span {
  font-size: 14px;
  color: var(--header);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.event-box-items-2 .event-content .content .title-text {
  max-width: 230px;
}

.event-box-items-2 .event-content .content .title-text h4 {
  line-height: 135%;
}

.event-box-items-2 .event-content .content .title-text h4 a:hover {
  color: var(--theme-blue-2);
}

.event-box-items-2 .event-content .content .title-text .post-time {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(16, 47, 37, 0.1);
  margin-top: 15px;
  padding-top: 15px;
}

.event-box-items-2 .event-content .content .title-text .post-time li i {
  margin-right: 7px;
}

.event-box-items-2 .event-thumb {
  max-width: 170px;
}

@media (max-width: 1399px) {
  .event-box-items-2 .event-thumb {
    flex-basis: 100%;
    max-width: 800px;
    margin-top: 20px;
  }
}

.event-box-items-2 .event-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.event-box-items-2:hover {
  border: 1px solid var(--theme-blue-2);
}

.event-box-items-2:hover .event-content .date {
  background-color: var(--theme-blue-2);
}

.event-box-items-2:hover .event-content .date h2 {
  color: var(--white);
}

.event-box-items-2:hover .event-content .date span {
  color: var(--white);
}

.event-list-wrapper .event-list-top-area {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .event-list-wrapper .event-list-top-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .event-list-wrapper .event-list-top-area {
    margin-bottom: 0;
  }
}

.event-list-wrapper .event-list-top-area .search-widget {
  position: relative;
  max-width: 300px;
  width: 100%;
}

.event-list-wrapper .event-list-top-area .search-widget input {
  border-radius: 10px;
  border: 1px solid #E6EFFF;
  background: var(--white);
  box-shadow: 10px 4px 30px 0px rgba(175, 175, 175, 0.2);
  padding: 16px 20px;
  width: 100%;
  line-height: 1;
  color: var(--text);
  position: relative;
}

.event-list-wrapper .event-list-top-area .search-widget i {
  position: absolute;
  top: 18px;
  right: 20px;
}

.event-list-wrapper .event-list-top-area .search-widget .sub-icon {
  margin-bottom: 0;
}

.event-list-wrapper .event-list-top-area .form-clt {
  max-width: 300px;
  width: 100%;
}

.event-list-wrapper .event-list-top-area .form-clt .nice-select {
  padding: 18px 20px;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid #E6EFFF;
  border-radius: 10px;
  box-shadow: 10px 4px 30px 0px rgba(175, 175, 175, 0.2);
  width: initial;
  line-height: 1;
}

.event-list-wrapper .event-list-top-area .form-clt .nice-select .current i {
  color: var(--text);
  margin-right: 5px;
}

.event-list-wrapper .event-list-top-area .form-clt .nice-select::after {
  right: 20px;
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  top: 22px;
  width: 10px;
  height: 10px;
}

.event-list-wrapper .event-list-top-area .form-clt .nice-select .list {
  width: 100%;
  background-color: var(--bg);
}

.event-list-wrapper .event-list-top-area .form-clt .nice-select .focus {
  background-color: transparent;
  font-weight: 400;
  color: var(--text);
}

.event-list-wrapper .event-list-top-area .form-clt .nice-select .option {
  border: none;
}

.event-list-wrapper .event-list-top-area .form-clt .nice-select .option:hover {
  background-color: transparent;
}

.event-list-wrapper .event-list-items {
  padding: 30px 50px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .event-list-wrapper .event-list-items {
    padding: 30px;
  }
}

@media (max-width: 1199px) {
  .event-list-wrapper .event-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.event-list-wrapper .event-list-items .event-content {
  flex-basis: 57%;
}

@media (max-width: 1199px) {
  .event-list-wrapper .event-list-items .event-content {
    flex-basis: 100%;
    gap: 30px;
  }
}

.event-list-wrapper .event-list-items .event-content .content {
  gap: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .event-list-wrapper .event-list-items .event-content .content {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-list-wrapper .event-list-items .event-content .content .date {
  background-color: var(--header);
  padding: 10px 20px;
  border-radius: 7px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.event-list-wrapper .event-list-items .event-content .content .date h2 {
  font-size: 40px;
  color: var(--white);
}

.event-list-wrapper .event-list-items .event-content .content .date span {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.event-list-wrapper .event-list-items .event-content .content .title-text {
  max-width: 622px;
}

.event-list-wrapper .event-list-items .event-content .content .title-text h4 {
  line-height: 135%;
  font-size: 24px;
}

.event-list-wrapper .event-list-items .event-content .content .title-text h4 a:hover {
  color: var(--theme-blue);
}

.event-list-wrapper .event-list-items .event-content .content .title-text .post-time {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .event-list-wrapper .event-list-items .event-content .content .title-text .post-time {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.event-list-wrapper .event-list-items .event-content .content .title-text .post-time li i {
  margin-right: 7px;
}

.event-list-wrapper .event-list-items .event-image {
  max-width: 270px;
}

.event-list-wrapper .event-list-items .event-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.event-list-wrapper .event-list-items .event-btn .theme-btn {
  background-color: var(--bg);
  border: 1px solid var(--border);
}

.event-list-wrapper .event-list-items:hover .event-content .content .date {
  background-color: var(--theme-blue);
}

.event-list-wrapper .event-list-items:hover .event-btn .theme-btn {
  background-color: var(--theme-green);
  border: 1px solid var(--theme-green);
}

.event-list-wrapper .event-button {
  margin-top: 70px;
  text-align: center;
}

.event-list-wrapper .event-button .theme-btn {
  background-color: var(--theme-blue);
  color: var(--white);
}

.event-details-wrapper {
  margin-top: -250px;
  position: relative;
  z-index: 9;
}

.event-details-wrapper .event-details-items .details-image {
  margin-bottom: 40px;
}

.event-details-wrapper .event-details-items .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.event-details-wrapper .event-details-items .event-details-content h3 {
  font-size: 27px;
  margin-bottom: 20px;
}

.event-details-wrapper .event-details-items .event-details-content .details-list {
  margin-top: 25px;
  margin-bottom: 50px;
}

.event-details-wrapper .event-details-items .event-details-content .details-list li {
  font-weight: 500;
  font-size: 16px;
  color: var(--header);
}

.event-details-wrapper .event-details-items .event-details-content .details-list li:not(:last-child) {
  margin-bottom: 10px;
}

.event-details-wrapper .event-details-items .event-details-content .details-list li i {
  color: var(--theme-blue);
  margin-right: 10px;
}

.event-details-wrapper .event-details-items .event-details-content .map-area {
  margin-top: 40px;
  margin-bottom: 30px;
}

.event-details-wrapper .event-details-items .event-details-content .map-area iframe {
  height: 500px;
  width: 100%;
}

.event-details-wrapper .event-details-items .event-details-content .event-image-items {
  margin-top: 40px;
  border: 1px solid var(--border);
  padding: 40px 45px;
  text-align: center;
  margin-right: -2px;
}

.event-details-wrapper .event-details-items .event-details-content .event-image-items.border-right-none {
  border-right: none;
}

.event-details-wrapper .event-details-items .event-details-content .event-image-items .event-content {
  margin-top: 25px;
}

.event-details-wrapper .event-details-items .event-details-content .event-image-items .event-content h4 a {
  color: var(--header);
}

.event-details-wrapper .event-details-items .event-details-content .event-image-items .event-content span {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-top: 5px;
}

.event-details-wrapper .event-details-items .event-details-content .event-image-items .event-content .social-icon {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 9;
}

.event-details-wrapper .event-details-items .event-details-content .event-image-items .event-content .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 100px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: #5B6D84;
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
}

.event-details-wrapper .event-details-items .event-details-content .event-image-items .event-content .social-icon a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
  border: 1px solid transparent;
}

.event-details-wrapper .event-details-information {
  background-color: var(--white);
  padding: 40px 35px;
  box-shadow: 10px 4px 60px rgba(200, 200, 200, 0.25);
  border-radius: 7px;
}

.event-details-wrapper .event-details-information .information-list {
  margin-top: 20px;
  margin-bottom: 30px;
}

.event-details-wrapper .event-details-information .information-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.event-details-wrapper .event-details-information .information-list li span {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}

.event-details-wrapper .event-details-information .information-list li span i {
  margin-right: 10px;
}

.event-details-wrapper .event-details-information .information-list li .text {
  font-weight: 500;
  color: var(--header);
  text-align: right;
  display: inline-block;
}

.event-details-wrapper .event-details-information .information-list li .text.color-2 {
  color: #F24721;
}

.event-details-wrapper .event-details-information .information-list li .text.color-3 {
  color: var(--theme-blue);
}

.event-details-wrapper .event-details-information .theme-btn {
  width: 100%;
  background-color: var(--theme-blue);
  color: var(--white);
  justify-content: center;
}

.event-details-wrapper .event-details-information .theme-btn::before,
.event-details-wrapper .event-details-information .theme-btn::after {
  display: none;
}

.event-details-wrapper .event-details-information .theme-btn:hover {
  background-color: var(--header);
}

.event-details-wrapper .event-details-information .coming-soon-timer {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 650px;
  justify-content: center;
  margin: 30px auto;
}

@media (max-width: 1199px) {
  .event-details-wrapper .event-details-information .coming-soon-timer {
    flex-wrap: wrap;
  }
}

.event-details-wrapper .event-details-information .coming-soon-timer .timer-content h3 {
  font-size: 27px;
  color: var(--header);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  display: inline-block;
  background-color: #FFD335;
  text-align: center;
  font-family: Sora;
}

.event-details-wrapper .event-details-information .coming-soon-timer .timer-content h3.bg-2 span {
  background-color: #C3F499;
}

.event-details-wrapper .event-details-information .coming-soon-timer .timer-content h3.bg-3 span {
  background-color: #00E2C5;
}

.event-details-wrapper .event-details-information .coming-soon-timer .timer-content h3.bg-4 span {
  background-color: #66FFFF;
}

.event-details-wrapper .event-details-information .coming-soon-timer .timer-content p {
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}

.event-details-wrapper .event-details-information .share-btn {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-blue);
  display: inline-block;
}

.event-details-wrapper .event-details-information .share-btn i {
  margin-right: 5px;
}

.news-box-items {
  margin-top: 30px;
}

.news-box-items .news-image {
  position: relative;
  overflow: hidden;
}

.news-box-items .news-image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  border-radius: 6px;
}

.news-box-items .news-image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0;
  transition: 1s;
  overflow: hidden;
}

.news-box-items .news-content {
  margin-top: 25px;
}

.news-box-items .news-content span {
  display: inline-block;
  margin-bottom: 10px;
}

.news-box-items .news-content h3 {
  margin-bottom: 20px;
}

.news-box-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-box-items .news-content h3 a:hover {
  color: var(--theme-blue);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-blue), var(--theme-blue));
}

.news-box-items .news-content .link-btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  color: var(--text);
}

.news-box-items .news-content .link-btn i {
  margin-left: 5px;
}

.news-box-items .news-content .link-btn:hover {
  color: var(--theme-blue);
}

.news-box-items:hover .news-image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}

.news-card-items {
  margin-top: 30px;
  background: var(--white);
  border: 1px solid rgba(3, 31, 66, 0.1);
  padding: 10px 10px 0px;
}

.news-card-items .news-image {
  position: relative;
  overflow: hidden;
}

.news-card-items .news-image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  border-radius: 6px;
}

.news-card-items .news-image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0;
  transition: 1s;
  overflow: hidden;
}

.news-card-items .news-image .post-cat {
  background-color: var(--theme-blue);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding: 3px 14px;
  border-radius: 7px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.news-card-items .news-content {
  padding: 18px 22px;
}

.news-card-items .news-content .post-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(3, 31, 66, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .news-card-items .news-content .post-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-card-items .news-content .post-meta li {
  font-size: 14px;
}

.news-card-items .news-content .post-meta li i {
  margin-right: 7px;
}

.news-card-items .news-content h5 {
  margin-bottom: 20px;
}

.news-card-items .news-content h5 a:hover {
  color: var(--theme-blue);
}

.news-card-items .news-content .link-btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  color: var(--text);
}

.news-card-items .news-content .link-btn i {
  margin-left: 5px;
}

.news-card-items .news-content .link-btn:hover {
  color: var(--theme-blue);
}

.news-card-items:hover .news-image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}

.news-left-items {
  margin-top: 30px;
  border: 1px solid rgba(9, 34, 75, 0.1);
  border-radius: 7px;
  background-color: var(--white);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.news-left-items::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--theme-red);
  border-left: 1px solid var(--theme-red);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: initial;
}

.news-left-items::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--theme-red);
  border-right: 1px solid var(--theme-red);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.news-left-items .news-thumb {
  padding: 10px;
  padding-bottom: 0;
  position: relative;
  z-index: 9;
}

.news-left-items .news-thumb .post-box {
  font-size: 14px;
  font-weight: 600;
  background-color: var(--theme-red);
  padding: 3px 14px;
  border-radius: 7px;
  color: var(--white);
  position: absolute;
  top: 22px;
  left: 22px;
}

.news-left-items .news-thumb .post-box:hover {
  background-color: var(--header);
}

.news-left-items .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.news-left-items .news-content {
  padding: 30px 40px;
  position: relative;
  z-index: 9;
}

.news-left-items .news-content .post-cat {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.news-left-items .news-content .post-cat li i {
  margin-right: 5px;
}

.news-left-items .news-content h3 {
  line-height: 146%;
}

.news-left-items .news-content h3 a {
  background-image: linear-gradient(var(--theme-red), var(--theme-red));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: all 0.4s ease-in-out;
}

.news-left-items .news-content h3 a:hover {
  background-size: 100% 2px;
  color: var(--theme-red);
}

.news-left-items .news-content .link-btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  color: var(--header);
  margin-top: 15px;
}

.news-left-items .news-content .link-btn i {
  margin-left: 5px;
}

.news-left-items .news-content .link-btn:hover {
  color: var(--theme-red);
}

.news-left-items:hover {
  box-shadow: 10px 4px 60px rgba(173, 1, 25, 0.2);
}

.news-left-items:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  border-radius: 7px;
}

.news-left-items:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transform: initial;
  border-radius: 7px;
  transform-origin: initial;
}

.news-right-items {
  margin-top: 30px;
  border: 1px solid rgba(9, 34, 75, 0.1);
  border-radius: 7px;
}

.news-right-items .news-right-box {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 11px 10px;
}

@media (max-width: 1199px) {
  .news-right-items .news-right-box {
    flex-wrap: wrap;
  }
}

.news-right-items .news-right-box:not(:last-child) {
  border-bottom: 1px solid rgba(9, 34, 75, 0.1);
}

.news-right-items .news-right-box .thumb {
  max-width: 280px;
  position: relative;
}

@media (max-width: 1199px) {
  .news-right-items .news-right-box .thumb {
    max-width: 800px;
    flex-basis: 100%;
  }
}

.news-right-items .news-right-box .thumb .post-box {
  font-size: 14px;
  font-weight: 600;
  background-color: var(--theme-red);
  padding: 2px 14px;
  border-radius: 7px;
  color: var(--white);
  position: absolute;
  top: 10px;
  left: 10px;
}

.news-right-items .news-right-box .thumb .post-box:hover {
  background-color: var(--header);
}

.news-right-items .news-right-box .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.news-right-items .news-right-box .content {
  max-width: 270px;
}

@media (max-width: 1199px) {
  .news-right-items .news-right-box .content {
    max-width: initial;
    padding: 25px;
    padding-top: 0;
  }
}

.news-right-items .news-right-box .content .post-cat {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.news-right-items .news-right-box .content .post-cat li {
  font-size: 14px;
}

.news-right-items .news-right-box .content .post-cat li i {
  margin-right: 5px;
}

.news-right-items .news-right-box .content h5 {
  line-height: 139%;
}

.news-right-items .news-right-box .content h5 a {
  background-image: linear-gradient(var(--theme-red), var(--theme-red));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: all 0.4s ease-in-out;
}

.news-right-items .news-right-box .content h5 a:hover {
  background-size: 100% 2px;
  color: var(--theme-red);
}

.news-right-items .news-right-box .content .link-btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  color: var(--header);
  margin-top: 10px;
}

.news-right-items .news-right-box .content .link-btn i {
  margin-left: 5px;
}

.news-right-items .news-right-box .content .link-btn:hover {
  color: var(--theme-red);
}

.news-box-items-2 {
  margin-top: 30px;
}

.news-box-items-2 .news-image {
  overflow: hidden;
  border-radius: 7px;
}

.news-box-items-2 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
  transition: all 0.4s ease-in-out;
}

.news-box-items-2 .news-content {
  margin-top: 15px;
}

.news-box-items-2 .news-content .post-date {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.news-box-items-2 .news-content .post-date li {
  font-size: 14px;
}

.news-box-items-2 .news-content .post-date li i {
  margin-right: 5px;
}

.news-box-items-2 .news-content h3 {
  line-height: 145%;
  margin-bottom: 20px;
}

.news-box-items-2 .news-content h3 a {
  background-image: linear-gradient(var(--theme-orange), var(--theme-orange));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: all 0.4s ease-in-out;
}

.news-box-items-2 .news-content h3 a:hover {
  background-size: 100% 2px;
  color: var(--theme-orange);
}

.news-box-items-2 .news-content .theme-btn {
  padding: 14px 25px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  background-color: transparent;
  border: 1px solid rgba(16, 47, 37, 0.1);
  border-radius: 10px;
}

.news-box-items-2 .news-content .theme-btn::before,
.news-box-items-2 .news-content .theme-btn::after {
  background-color: var(--theme-orange);
}

.news-box-items-2 .news-content .theme-btn:hover {
  border: 1px solid transparent;
  color: var(--white);
}

.news-box-items-2:hover .news-image img {
  transform: scale(1.1);
}

.blog-wrapper h1,
.blog-wrapper h2,
.blog-wrapper h3,
.blog-wrapper h4,
.blog-wrapper h5,
.blog-wrapper h6 {
  font-weight: 600;
}

.blog-wrapper .blog-post-details.border-wrap {
  border: 2px solid rgba(167, 188, 255, 0.231372549);
  padding: 30px;
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}

.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
}

.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}

.blog-wrapper .single-blog-post.post-details .post-content h1,
.blog-wrapper .single-blog-post.post-details .post-content h2,
.blog-wrapper .single-blog-post.post-details .post-content h3,
.blog-wrapper .single-blog-post.post-details .post-content h4,
.blog-wrapper .single-blog-post.post-details .post-content h5,
.blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }

  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote,
.blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme-blue);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Sora", system-ui;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}

.blog-wrapper .single-blog-post.post-details blockquote a,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}

.blog-wrapper .single-blog-post.post-details blockquote a:hover,
.blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}

@media (max-width: 767px) {

  .blog-wrapper .single-blog-post.post-details blockquote,
  .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.blog-wrapper .single-blog-post.post-details blockquote::before,
.blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme-blue);
  border: none;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before,
.blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../../assets/img/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}

@media (max-width: 585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content,
  .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
  .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 36px;
  color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 450px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme-blue);
  text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}

.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}

.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme-blue);
}

.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}

@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme-blue);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "League Spartan", sans-serif;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme-blue);
}

.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme-blue);
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme-blue);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme-blue);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}

.news-area .main-sidebar .single-sidebar-widget {
  border: 2px solid rgba(167, 188, 255, 0.231372549);
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
}

.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul>li {
  margin-bottom: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  background: var(--bg);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a:hover {
  color: var(--theme-blue);
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme-blue);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme-blue);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
  font-size: 24px;
  font-weight: 600;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
}

.widget_categories ul li:last-child a {
  margin-bottom: 0;
}

.widget_categories ul li a {
  position: relative;
  background: var(--bg);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.widget_categories ul li a:hover {
  color: var(--theme-blue);
}

.widget_categories ul li a i {
  margin-right: 10px;
}

.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: var(--theme-blue);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}

.search_widget form input {
  background-color: var(--bg);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
}

.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme-blue);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}

.popular-posts .single-post-item:last-child,
.popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
  overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme-blue);
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: theme-blue;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.tagcloud a {
  display: inline-block;
  padding: 12px 22px;
  line-height: 1;
  background: var(--bg);
  margin-right: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.tagcloud a:last-child {
  margin-right: 0;
}

.tagcloud a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
}

.tag-share-wrap {
  padding-bottom: 50px;
}

.tag-share-wrap h4 {
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3,
.related-post-wrap h3,
.comment-form-wrap h3 {
  font-size: 26px;
}

@media (max-width: 767px) {

  .comments-heading h3,
  .related-post-wrap h3,
  .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
  font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}

@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}

.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}

.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 10px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--text);
  border: 1px solid #ebebeb;
  background: transparent;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 0;
  margin-left: 0px !important;
  transition: all 0.4s ease-in-out;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before,
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background-color: var(--theme-blue);
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important;
}

.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
  transform: translate(0);
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}

.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--theme-blue);
  font-weight: 500;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}

.social-share a:hover {
  color: var(--theme-blue);
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}

@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}

.comment-form label {
  margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--header);
  background-color: var(--bg);
}

@media (max-width: 585px) {

  .comment-form input,
  .comment-form textarea {
    padding: 15px;
  }
}

.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}

@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}

.comment-form .theme-btn {
  display: inline-block;
  line-height: 1.2;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
  background-color: var(--theme-blue);
  color: var(--white);
}

@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}

@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}

.comment-form .theme-btn i {
  margin-right: 10px;
}

.comment-form .theme-btn:hover i {
  transform: translate(0);
}

.comment ul {
  list-style-type: disc;
}

.comment ul ol {
  margin-bottom: 0;
}

.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}

.comment ol ul {
  margin-bottom: 0;
}

.comment ol ol {
  margin-bottom: 0;
}

.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.courses-card-main-items {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  /* Defining animation Keyframes */
}

.courses-card-main-items .courses-card-items {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 7px;
  border: 1px solid var(--border);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.courses-card-main-items .courses-card-items .courses-image {
  padding: 5px 5px 0 5px;
  position: relative;
}

.courses-card-main-items .courses-card-items .courses-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.courses-card-main-items .courses-card-items .courses-image .courses-title {
  color: var(--white);
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.05px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.courses-card-main-items .courses-card-items .courses-image .topic-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.9px;
}

.courses-card-main-items .courses-card-items .courses-image .arrow-items {
  position: absolute;
  left: 27px;
  top: 44%;
  display: flex;
  align-items: center;
}

.courses-content p {
  line-height: 20px;
  padding-top: 12px;
}

.courses-card-main-items .courses-card-items .courses-content {
  padding: 25px 30px;
}

.courses-card-main-items .courses-card-items .courses-content .post-cat {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.courses-card-main-items .courses-card-items .courses-content .post-cat li i {
  font-size: 14px;
  color: var(--theme-yellow);
  transition: all 0.4s ease-in-out;
}

.courses-card-main-items .courses-card-items .courses-content .post-cat li a {
  display: inline-block;
  padding: 8px 10px;
  align-items: center;
  background-color: var(--bg);
  font-weight: 500;
  font-size: 14px;
  color: var(--theme-blue);
  line-height: 1;
  border-radius: 7px;
}

.courses-card-main-items .courses-card-items .courses-content .client-items {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 25px;
}

.courses-card-main-items .courses-card-items .courses-content .client-items .client-img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.courses-card-main-items .courses-card-items .courses-content .client-items p {
  font-size: 14px;
  font-weight: 500;
  color: var(--header);
  text-transform: capitalize;
}

.courses-card-main-items .courses-card-items .courses-content .post-class {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .courses-card-main-items .courses-card-items .courses-content .post-class {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.courses-card-main-items .courses-card-items .courses-content .post-class li {
  font-size: 14px;
  color: var(--header);
}

.courses-card-main-items .courses-card-items .courses-content .post-class li i {
  color: var(--text);
  margin-right: 5px;
}

.courses-card-main-items .courses-card-items.style-2 {
  opacity: 1;
  visibility: visible;
}

.courses-card-main-items .courses-card-items.style-2 .courses-image .courses-title {
  font-size: 30px;
}

.courses-card-main-items .courses-card-items.style-2 .courses-image .topic-title {
  font-size: 20px;
}

.courses-card-main-items .courses-card-items.style-2 .courses-content h3 a:hover {
  color: var(--theme-blue);
}

.courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn {
  padding: 12px 15px;
  font-size: 14px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn::before,
.courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn::after {
  background-color: var(--theme-orange);
}

.courses-card-main-items .courses-card-items.style-2 .courses-content .post-class li .theme-btn:hover {
  color: var(--white);
}

.courses-card-main-items .courses-card-items.style-2:hover {
  box-shadow: 10px 4px 60px rgba(143, 102, 255, 0.3);
}

.courses-card-main-items .courses-card-items-hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 30px;
  background-color: var(--theme-blue);
  border-radius: 7px;
  border: 1px solid var(--theme-blue);
  transition: all 200ms linear;
  top: 0;
  right: -100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;

  p {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .courses-card-main-items .courses-card-items-hover {
    padding-top: 70px;
  }
}

.courses-card-main-items .courses-card-items-hover .courses-content .post-cat {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.courses-card-main-items .courses-card-items-hover .courses-content .post-cat li i {
  font-size: 14px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.courses-card-main-items .courses-card-items-hover .courses-content .post-cat li a {
  display: inline-block;
  padding: 8px 10px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  line-height: 1;
  border-radius: 7px;
}

.courses-card-main-items .courses-card-items-hover .courses-content .post-cat li a:hover {
  background-color: var(--white);
  color: var(--header);
}

@media (max-width: 767px) {
  .courses-card-main-items .courses-card-items-hover .courses-content h5 {
    font-size: 20px;
  }
}

.courses-card-main-items .courses-card-items-hover .courses-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.courses-card-main-items .courses-card-items-hover .courses-content h5 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--white), var(--white));
}

.courses-card-main-items .courses-card-items-hover .courses-content h4 {
  color: var(--white);
  font-size: 35px;
  padding: 15px 0;
}

.courses-card-main-items .courses-card-items-hover .courses-content span {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.courses-card-main-items .courses-card-items-hover .courses-content .client-items {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--white);
  padding-bottom: 25px;
}

.courses-card-main-items .courses-card-items-hover .courses-content .client-items .client-img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.courses-card-main-items .courses-card-items-hover .courses-content .client-items p {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
}

.courses-card-main-items .courses-card-items-hover .courses-content .post-class {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.courses-card-main-items .courses-card-items-hover .courses-content .post-class li {
  font-size: 14px;
  color: var(--white);
}

.courses-card-main-items .courses-card-items-hover .courses-content .post-class li i {
  color: var(--white);
  margin-right: 5px;
}

.courses-card-main-items .courses-card-items-hover .courses-content .theme-btn {
  padding: 15px 25px;
  margin-top: 19px;
}

@media (max-width: 575px) {
  .courses-card-main-items .courses-card-items-hover .courses-content .theme-btn {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.courses-card-main-items:hover .courses-card-items {
  opacity: 0;
  visibility: hidden;
}

.courses-card-main-items:hover .courses-card-items.style-2 {
  opacity: 1;
  visibility: visible;
  right: 0;
  transform: initial;
}

.courses-card-main-items:hover .courses-card-items-hover {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.courses-card-main-items .GlidingArrow {
  -webkit-animation: slide 5s linear infinite;
  animation: slide 5s linear infinite;
}

.courses-card-main-items .delay1 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.courses-card-main-items .delay2 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.courses-card-main-items .delay3 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.courses-card-main-items .delay4 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.courses-card-main-items .delay5 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }

  20% {
    opacity: 1;
    transform: translateX(-90);
  }

  80% {
    opacity: 1;
    transform: translateX(90);
  }

  100% {
    opacity: 0;
    transform: translateX(150);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }

  20% {
    opacity: 1;
    transform: translateX(-90);
  }

  80% {
    opacity: 1;
    transform: translateX(90);
  }

  100% {
    opacity: 0;
    transform: translateX(150);
  }
}

.live-courses-main-items {
  border: 1px solid rgba(3, 31, 66, 0.1);
  background-color: #F4F9FF;
  border-radius: 7px;
  margin-top: 30px;
  padding: 5px;
  height: 100%;
}

.live-courses-main-items .live-courses-items {
  padding: 30px 19px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.live-courses-main-items .live-courses-items .live-courses-content {
  max-width: 180px;
}

.live-courses-main-items .live-courses-items .live-courses-content h3 {
  font-size: 22px;
  letter-spacing: -0.9px;
  font-weight: 600;
  color: var(--white);
}

.live-courses-main-items .live-courses-items .live-courses-content h3 span {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.72px;
}

.live-courses-main-items .live-courses-items .live-courses-content .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  margin-top: 20px;
}

.live-courses-main-items .live-courses-items .live-courses-image {
  margin-bottom: -32px;
}

.live-courses-main-items .content {
  text-align: center;
  padding: 30px 20px;
  margin: 0 auto;
  padding-top: 0;
}

.live-courses-main-items .content .client-img {
  border: 3px solid var(--white);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: -35px auto 25px;
}

.live-courses-main-items .content h4 a:hover {
  color: var(--theme-blue);
}

.live-courses-main-items .content .list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .live-courses-main-items .content .list {
    flex-wrap: wrap;
  }
}

.live-courses-main-items .content .list li {
  font-size: 16px;
}

.live-courses-main-items .content .list li i {
  margin-right: 5px;
}

.live-courses-main-items .content .theme-btn {
  font-size: 14px;
  padding: 16px 25px;
}

.certificate-text {
  padding: 20px;
  background-color: var(--theme-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 240px;
}

@media (max-width: 1199px) {
  .certificate-text {
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
  }
}

.certificate-text h3 {
  font-size: 27px;
}

.certificate-text .theme-btn {
  background-color: var(--header);
  color: var(--white);
}

.certificate-text .theme-btn::before,
.certificate-text .theme-btn::after {
  background-color: var(--white);
}

.certificate-text .theme-btn:hover {
  color: var(--header);
}

.courses-sub-text {
  font-size: 16px;
  font-weight: 400;
}

.courses-sub-text b {
  color: var(--header);
  font-weight: 600;
}

.popular-courses-items {
  margin-top: 30px;
  background-color: #FFEFF0;
  border: 1px solid #FFCCCF;
  border-radius: 7px;
  padding: 25px 40px;
}

.popular-courses-items .popular-thumb {
  display: flex;
  justify-content: space-between;
}

.popular-courses-items .popular-thumb .post-box {
  margin-top: 10px;
}

.popular-courses-items .popular-thumb .post-box .post-cat {
  display: inline-block;
  color: var(--header);
  font-weight: 500;
  padding: 7px 10px;
  border: 1px solid var(--header);
  border-radius: 7px;
  line-height: 1;
}

.popular-courses-items .popular-thumb .post-box .post-cat:hover {
  background-color: var(--theme-red);
  border: 1px solid var(--theme-red);
  color: var(--white);
}

.popular-courses-items .popular-thumb .thumb {
  margin-right: -20px;
  margin-top: -5px;
  max-width: 169px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 169 169"><path d="M0 15C0 6.71573 6.71573 0 15 0H154C162.284 0 169 6.71573 169 15V151.103C169 160.436 160.568 167.503 151.378 165.872L12.3783 141.197C5.21733 139.926 0 133.701 0 126.428V15Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  z-index: 99;
}

.popular-courses-items .popular-thumb .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.popular-courses-items .content {
  margin-top: 20px;
}

.popular-courses-items .content h4 a:hover {
  color: var(--theme-red);
}

.popular-courses-items .content .star {
  color: #FD8F21;
  margin-top: 15px;
  border-bottom: 1px solid #FFCCCF;
  padding-bottom: 30px;
}

.popular-courses-items .content .star span {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  display: inline-block;
  margin-left: 15px;
}

.popular-courses-items .content .link-btn {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  color: var(--header);
  padding-top: 25px;
}

.popular-courses-items .content .link-btn i {
  margin-left: 5px;
}

.popular-courses-items .content .link-btn:hover {
  color: var(--theme-red);
}

.popular-courses-items.bg-2 {
  background-color: #FFF9E3;
  border: 1px solid #F0DE9C;
}

.popular-courses-items.bg-2 .content .star {
  border-bottom: 1px solid #F0DE9C;
}

.popular-courses-items.bg-3 {
  background-color: #E0FEC6;
  border: 1px solid rgba(9, 34, 75, 0.1);
}

.popular-courses-items.bg-3 .content .star {
  border-bottom: 1px solid rgba(3, 31, 66, 0.1);
}

.quality-coureses-section {
  position: relative;
}

.quality-coureses-section .container-fluid {
  padding: 0 100px;
}

@media (max-width: 1600px) {
  .quality-coureses-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .quality-coureses-section .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .quality-coureses-section .container-fluid {
    padding: 0 30px;
  }
}

.quality-coureses-section .coureses-image {
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .quality-coureses-section .coureses-image {
    text-align: center;
  }
}

.quality-coureses-section .coureses-image .bg-shape {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.quality-coureses-section .coureses-image.style-2 {
  margin-top: -30px;
}

@media (max-width: 1199px) {
  .quality-coureses-section .coureses-image.style-2 {
    margin-top: 0;
  }
}

.quality-coureses-section .coureses-image.style-2 .bg-shape {
  left: 40%;
}

@media (max-width: 1199px) {
  .quality-coureses-section .coureses-image.style-2 .bg-shape {
    left: 50%;
  }
}

.quality-coureses-content p {
  font-size: 24px;
  color: var(--white);
}

@media (max-width: 991px) {
  .quality-coureses-content p {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .quality-coureses-content p {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .quality-coureses-content p {
    font-size: 18px;
  }
}

.quality-coureses-content .theme-btn {
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid #E6EFFF;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-top: 50px;
}

.quality-coureses-content .theme-btn:hover {
  border: 1px solid var(--header);
}

.popular-courses-section-33 .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .popular-courses-section-33 .nav {
    margin-bottom: 0;
  }
}

.popular-courses-section-33 .nav .nav-item .nav-link {
  padding: 13px 25px;
  border-radius: 8px;
  border: 1px solid rgba(9, 34, 75, 0.1);
  background: #FFF1E0;
  line-height: 1;
  color: var(--header);
  font-weight: 600;
  font-size: 14px;
}

.popular-courses-section-33 .nav .nav-item .nav-link.active {
  background-color: var(--theme-red);
  color: var(--white);
}

.popular-program-section {
  background-color: var(--bg6);
  margin: 0 70px;
  border-radius: 20px;
  position: relative;
}

@media (max-width: 1600px) {
  .popular-program-section {
    border-radius: 0;
    margin: 0;
  }
}

.popular-program-section .frame-shape {
  position: absolute;
  bottom: 80px;
  left: 60px;
  animation: rounded 5s linear infinite;
}

.popular-program-section .star-shape {
  position: absolute;
  top: 118px;
  right: 102px;
}

.popular-program-box-items {
  background-color: var(--white);
  border-radius: 20px;
  margin-top: 30px;
  position: relative;
}

.popular-program-box-items .thumb {
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 263"><path fill-rule="evenodd" clip-rule="evenodd" d="M356.5 218C439.619 218 507 150.619 507 67.5C507 -15.6189 439.619 -83 356.5 -83C312.832 -83 273.508 -64.4021 246.016 -34.6949C235.853 -36.8604 225.309 -38 214.5 -38C194.328 -38 175.083 -34.0314 157.503 -26.8325C131.903 -46.9806 99.6053 -59 64.5 -59C-18.6189 -59 -86 8.38114 -86 91.5C-86 174.619 -18.6189 242 64.5 242C84.6719 242 103.917 238.031 121.497 230.832C147.097 250.981 179.395 263 214.5 263C258.168 263 297.492 244.402 324.984 214.695C335.147 216.86 345.691 218 356.5 218Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  padding: 5px;
  padding-bottom: 0;
}

.popular-program-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.popular-program-box-items .content {
  padding: 30px 40px;
  position: relative;
  z-index: 9;
}

.popular-program-box-items .content .price {
  top: 40px;
  right: 40px;
  font-size: 35px;
  color: var(--theme-pink);
  position: absolute;
}

.popular-program-box-items .content .star {
  font-size: 14px;
  color: #FD8F21;
  margin-bottom: 15px;
}

.popular-program-box-items .content .star span {
  color: var(--header);
}

.popular-program-box-items .content h3 {
  margin-bottom: 15px;
}

.popular-program-box-items .content h3 a:hover {
  color: var(--theme-orange);
}

.popular-program-box-items .content .list {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 10px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .popular-program-box-items .content .list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.popular-program-box-items .content .list li {
  color: var(--header);
  font-size: 14px;
}

.popular-program-box-items .content .list li i {
  color: var(--text);
  margin-right: 5px;
}

.popular-program-box-items .content .theme-btn {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  background-color: #F8F2EC;
  border-radius: 8px;
  border: 1px solid rgba(16, 47, 37, 0.1);
  text-align: center;
  justify-content: center;
  padding: 18px 30px;
}

.popular-program-box-items .content .theme-btn::before,
.popular-program-box-items .content .theme-btn::after {
  background-color: var(--theme-orange);
}

.popular-program-box-items::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--theme-orange);
  border-left: 1px solid var(--theme-orange);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: initial;
  border-radius: 20px;
}

.popular-program-box-items::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--theme-orange);
  border-right: 1px solid var(--theme-orange);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
}

.popular-program-box-items:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.popular-program-box-items:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transform: initial;
  transform-origin: initial;
}

.business-courses-main-items {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
}

.business-courses-main-items .business-courses-items {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 7px;
  border: 1px solid var(--theme-blue-2);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.business-courses-main-items .business-courses-items .courses-image {
  padding: 5px 5px 0 5px;
  position: relative;
}

.business-courses-main-items .business-courses-items .courses-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.business-courses-main-items .business-courses-items .courses-image .post-courses-item {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 15px;
  left: 15px;
}

.business-courses-main-items .business-courses-items .courses-image .post-courses-item .post-box {
  border-radius: 7px;
  font-size: 14px;
  color: var(--header);
  line-height: 1;
  background-color: var(--white);
  padding: 8px 12px;
  display: inline-block;
}

.business-courses-main-items .business-courses-items .courses-content {
  padding: 25px 25px;
}

.business-courses-main-items .business-courses-items .courses-content .client-items {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.business-courses-main-items .business-courses-items .courses-content .client-items .cont {
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-courses-main-items .business-courses-items .courses-content .client-items .client-img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.business-courses-main-items .business-courses-items .courses-content .client-items p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-transform: capitalize;
}

.business-courses-main-items .business-courses-items .courses-content .client-items h4 {
  color: var(--theme-blue-2);
}

.business-courses-main-items .business-courses-items .courses-content .star {
  margin-top: 10px;
  margin-bottom: 10px;
}

.business-courses-main-items .business-courses-items .courses-content .star i {
  color: #FD8F21;
  font-size: 14px;
}

.business-courses-main-items .business-courses-items .courses-content .star span {
  display: inline-block;
  font-weight: 400;
  color: var(--header);
  font-size: 16px;
  margin-left: 4px;
}

.business-courses-main-items .business-courses-items .courses-content .post-class {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 25px;
}

.business-courses-main-items .business-courses-items .courses-content .post-class li {
  font-size: 14px;
  color: var(--header);
}

.business-courses-main-items .business-courses-items .courses-content .post-class li i {
  color: var(--text);
  margin-right: 5px;
}

.business-courses-main-items .courses-card-items-hover {
  margin-top: 30px;
  padding: 25px;
  background-color: var(--theme-blue-2);
  border-radius: 7px;
  border: 1px solid var(--theme-blue-2);
  transition: all 200ms linear;
  top: 0;
  right: -100%;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}

@media (max-width: 1199px) {
  .business-courses-main-items .courses-card-items-hover {
    padding-top: 60px;
  }
}

@media (max-width: 991px) {
  .business-courses-main-items .courses-card-items-hover {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .business-courses-main-items .courses-card-items-hover {
    padding-top: 100px;
  }
}

.business-courses-main-items .courses-card-items-hover .courses-content .post-courses-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.business-courses-main-items .courses-card-items-hover .courses-content .post-courses-item .post-box {
  border-radius: 7px;
  font-size: 14px;
  color: var(--header);
  line-height: 1;
  background-color: var(--white);
  padding: 8px 12px;
  display: inline-block;
}

.business-courses-main-items .courses-card-items-hover .courses-content .post-courses-item .post-box:hover {
  background-color: var(--theme-yellow);
}

.business-courses-main-items .courses-card-items-hover .courses-content .star {
  margin-top: 10px;
  margin-bottom: 10px;
}

.business-courses-main-items .courses-card-items-hover .courses-content .star i {
  color: var(--theme-yellow-4);
  font-size: 14px;
}

.business-courses-main-items .courses-card-items-hover .courses-content .star span {
  display: inline-block;
  font-weight: 400;
  color: var(--white);
  font-size: 16px;
  margin-left: 4px;
}

.business-courses-main-items .courses-card-items-hover .courses-content h5 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.business-courses-main-items .courses-card-items-hover .courses-content h5 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--white), var(--white));
}

.business-courses-main-items .courses-card-items-hover .courses-content h4 {
  color: var(--white);
  font-size: 20px;
}

.business-courses-main-items .courses-card-items-hover .courses-content span {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}

.business-courses-main-items .courses-card-items-hover .courses-content .client-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.business-courses-main-items .courses-card-items-hover .courses-content .client-items .cont {
  display: flex;
  align-items: center;
  gap: 10px;
}

.business-courses-main-items .courses-card-items-hover .courses-content .client-items .client-img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.business-courses-main-items .courses-card-items-hover .courses-content .client-items p {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
}

.business-courses-main-items .courses-card-items-hover .courses-content .theme-btn {
  padding: 15px 25px;
  margin-top: 19px;
  background-color: var(--theme-yellow-4);
}

.business-courses-main-items .courses-card-items-hover .courses-content .theme-btn::before,
.business-courses-main-items .courses-card-items-hover .courses-content .theme-btn::after {
  background-color: var(--white);
}

.business-courses-main-items .courses-card-items-hover .courses-content .theme-btn:hover {
  color: var(--header);
}

.business-courses-main-items:hover .courses-card-items {
  opacity: 0;
  visibility: hidden;
}

.business-courses-main-items:hover .courses-card-items.style-2 {
  opacity: 1;
  visibility: visible;
  right: 0;
  transform: initial;
}

.business-courses-main-items:hover .courses-card-items-hover {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.courses-main-sidebar-area .courses-main-sidebar {
  border-radius: 7px;
  border: 1px solid var(--border);
  background: #F4F9FF;
  padding: 30px;
  margin-bottom: 20px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .wid-title {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 91, 255, 0.1);
  padding-bottom: 20px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .wid-title.style-2 {
  border: none;
  padding-bottom: 0;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items:not(:last-child) {
  margin-bottom: 30px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .search-widget form {
  width: 100%;
  position: relative;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .search-widget form input {
  background-color: var(--white);
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--header);
  font-size: 14px;
  line-height: 1;
  border: 1px solid var(--theme-blue);
  border-radius: 7px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .search-widget form button {
  position: absolute;
  right: 20px;
  top: 1px;
  font-size: 18px;
  height: 100%;
  color: var(--header);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  display: block;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single:not(:last-child) {
  margin-bottom: 10px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  border: 1px solid rgba(0, 91, 255, 0.15);
  background-color: var(--white);
  top: 5px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .checkbox-area .checkmark::after {
  content: "";
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .checkbox-area input:checked~.checkmark {
  background-color: var(--theme-blue);
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .checkbox-area input:checked~.checkmark::after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  top: -5px;
  left: 5px;
  color: var(--theme-blue);
  font-size: 11px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .checkbox-area input:checked~.checkmark:after {
  display: block;
  color: var(--white);
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .text-color {
  font-weight: 400;
  color: var(--text);
  font-size: 14px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .text-color .star {
  color: #FD8F21;
  margin-right: 5px;
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .text-color .star i.color-2 {
  color: var(--text);
}

.courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list .checkbox-single .text-color .ratting-text {
  font-size: 16px;
}

.courses-main-sidebar-area .theme-btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.courses-main-sidebar-area .theme-btn i {
  margin-left: 0;
}

.courses-list-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 50px;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .courses-list-items {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
  }
}

.courses-list-items .price {
  font-size: 27px;
  background-color: var(--theme-blue);
  color: var(--white);
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
}

@media (max-width: 1399px) {
  .courses-list-items .price {
    top: 30px;
    right: 30px;
  }
}

.courses-list-items::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--theme-blue);
  border-left: 1px solid var(--theme-blue);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: initial;
  border-radius: 7px;
  z-index: -1;
}

.courses-list-items::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--theme-blue);
  border-right: 1px solid var(--theme-blue);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 7px;
  z-index: -1;
}

.courses-list-items .thumb {
  max-width: 290px;
  position: relative;
}

.courses-list-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.courses-list-items .thumb .courses-title {
  color: var(--white);
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.05px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.courses-list-items .thumb .topic-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.9px;
}

.courses-list-items .thumb .arrow-items {
  position: absolute;
  left: 27px;
  top: 44%;
  display: flex;
  align-items: center;
}

.courses-list-items .content {
  max-width: 600px;
  padding-right: 40px;
}

.courses-list-items .content .post-cat {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.courses-list-items .content .post-cat li i {
  font-size: 14px;
  color: #FFAE5D;
  transition: all 0.4s ease-in-out;
}

.courses-list-items .content .post-cat li a {
  display: inline-block;
  padding: 8px 10px;
  align-items: center;
  border-radius: 7px;
  background: rgba(0, 91, 255, 0.1);
  font-weight: 500;
  font-size: 14px;
  color: var(--theme-blue);
  line-height: 1;
}

.courses-list-items .content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.courses-list-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}

.courses-list-items .content h3 a:hover {
  color: var(--theme-blue);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-blue), var(--theme-blue));
}

.courses-list-items .content .post-class {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

@media (max-width: 1399px) {
  .courses-list-items .content .post-class {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.courses-list-items .content .post-class li {
  font-size: 14px;
  color: var(--header);
}

.courses-list-items .content .post-class li i {
  color: var(--text);
  margin-right: 5px;
}

.courses-list-items .content .post-class li .client-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.courses-list-items .content .post-class li .client-items .client-img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
}

.courses-list-items .content .post-class li .client-items p {
  font-size: 14px;
  font-weight: 500;
  color: var(--header);
  text-transform: capitalize;
}

.courses-list-items:hover {
  box-shadow: 10px 4px 60px rgba(0, 91, 255, 0.2);
}

.courses-list-items:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.courses-list-items:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transform: initial;
  transform-origin: initial;
}

.courses-details-wrapper {
  margin-top: -275px;
  position: relative;
  z-index: 9;
}

.courses-details-wrapper .courses-image {
  position: relative;
  margin-bottom: 50px;
}

.courses-details-wrapper .courses-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.courses-details-wrapper .courses-image .video-btn {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  display: inline-block;
  color: var(--theme-blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.courses-details-wrapper .courses-details-items .breadcrumb-content {
  position: relative;
  z-index: 9;
  margin-bottom: 50px;
}

.courses-details-wrapper .courses-details-items .breadcrumb-content h1 {
  font-size: 35px;
  color: var(--header);
}

@media (max-width: 575px) {
  .courses-details-wrapper .courses-details-items .breadcrumb-content h1 {
    font-size: 34px;
  }
}

.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

@media (max-width: 1199px) {
  .courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items {
    padding-right: 0;
    border-right: none;
  }
}

.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items .client-content span {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
}

.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items .client-content h5 {
  font-size: 16px;
  color: var(--header);
}

.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items .client-content .star {
  color: #FFAE5D;
}

.courses-details-wrapper .courses-details-items .breadcrumb-content .courses-breadcrumb-items .client-image-items .client-content .star b {
  font-size: 16px;
  color: var(--header);
  font-weight: 400;
  display: inline-block;
  padding-left: 10px;
}

.courses-details-wrapper .courses-details-items .courses-image {
  position: relative;
  margin-bottom: 0;
}

.courses-details-wrapper .courses-details-items .courses-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.courses-details-wrapper .courses-details-items .courses-image .video-btn {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  display: inline-block;
  color: var(--theme-blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.courses-details-wrapper .courses-details-items .courses-details-content {
  margin-top: 32px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .nav {
  display: flex;
  align-items: center;
  background-color: var(--white);
  box-shadow: 10px 4px 30px rgba(168, 168, 168, 0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  justify-content: center;
  padding: 14px 30px;
  gap: 80px;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .courses-details-wrapper .courses-details-items .courses-details-content .nav {
    gap: 30px;
    flex-wrap: wrap;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item {
  padding: 0;
  position: relative;
}

.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link::before {
  position: absolute;
  right: -40px;
  top: 20px;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(0, 91, 255, 0.2);
}

@media (max-width: 1199px) {
  .courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link::before {
    display: none;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link.bb-none::before {
  display: none;
}

.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link.active {
  color: var(--theme-blue);
}

.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link.active::before {
  background-color: var(--theme-blue);
}

.courses-details-wrapper .courses-details-items .courses-details-content .nav .nav-item .nav-link.active::after {
  position: absolute;
  bottom: -15px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme-blue);
  transition: 0.3s;
}

.courses-details-wrapper .courses-details-items .courses-details-content .description-content h3 {
  font-size: 27px;
  margin-bottom: 20px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .description-content .list-item li {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}

.courses-details-wrapper .courses-details-items .courses-details-content .description-content .list-item li i {
  color: var(--theme-blue);
  margin-right: 5px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .description-content .list-item li:not(:last-child) {
  margin-bottom: 10px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items h3 {
  font-size: 27px;
  margin-bottom: 30px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 7px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 20px 30px;
  font-family: "Sora", system-ui;
  color: var(--header);
  background-color: #F4F9FF;
  border-bottom: 1px solid var(--border);
  border-radius: 7px;
}

@media (max-width: 575px) {
  .courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body {
  padding: 0;
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
}

@media (max-width: 1199px) {
  .courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li span {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li span i {
  margin-right: 10px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button::after {
  display: none;
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  top: 18px;
  right: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header);
}

.courses-details-wrapper .courses-details-items .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button.collapsed::before {
  content: "\f054";
  color: var(--header);
  background-color: transparent;
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items h3 {
  margin-bottom: 10px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items {
  padding: 40px 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: #F4F9FF;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items .content {
  max-width: 521px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items .content h4 {
  font-size: 22px;
  margin-bottom: 5px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items .content p {
  margin-top: 25px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items .content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items .content .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items .content .social-icon a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
  border: 1px solid var(--theme-blue);
}

.courses-details-wrapper .courses-details-items .courses-details-content .instructors-items .instructors-box-items.style-2 {
  background-color: var(--white);
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items h3 {
  font-size: 27px;
  margin-bottom: 30px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box {
  display: flex;
  align-items: center;
  gap: 70px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box .reviews-box {
  padding: 50px 34px;
  text-align: center;
  min-width: 248px;
  box-shadow: 10px 4px 60px rgba(182, 182, 182, 0.2);
  background-color: var(--white);
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box .reviews-box h2 {
  font-size: 90px;
  line-height: 1;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box .reviews-box .star {
  color: #FFAE5D;
  margin-bottom: 10px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right {
  max-width: 452px;
  width: 100%;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item:not(:last-child) {
  margin-bottom: 15px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .star {
  color: #FFAE5D;
  display: flex;
  align-items: center;
  gap: 7px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .star i.color-2 {
  color: var(--text);
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item span {
  font-weight: 500;
  color: var(--header);
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .progress {
  background: rgba(255, 174, 93, 0.3);
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 5px;
  width: 100%;
  max-width: 244px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: #FFAE5D;
  height: 5px;
  width: 0;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-two {
  animation: load2 3s normal forwards;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-three {
  animation: load3 3s normal forwards;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-four {
  animation: load4 3s normal forwards;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-five {
  animation: load5 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 80%;
  }
}

@keyframes load4 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load5 {
  0% {
    width: 0;
  }

  100% {
    width: 60%;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .instructors-box-items {
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 767px) {
  .courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .instructors-box-items {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
  }
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .instructors-box-items .content {
  max-width: 540px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .instructors-box-items .content h4 {
  font-size: 22px;
  margin-bottom: 5px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .instructors-box-items .content p {
  margin-top: 15px;
}

.courses-details-wrapper .courses-details-items .courses-details-content .courses-reviews-items .instructors-box-items .content .star {
  color: #FFAE5D;
  margin-top: 15px;
}

.courses-details-wrapper .courses-sidebar-area {
  background-color: var(--white);
  border-radius: 7px;
  box-shadow: 10px 4px 60px rgba(200, 200, 200, 0.25);
}

.courses-details-wrapper .courses-sidebar-area .courses-items {
  padding: 10px;
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image {
  position: relative;
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image .courses-title {
  color: var(--white);
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.05px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image .topic-title {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: var(--white);
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.9px;
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-image .arrow-items {
  position: absolute;
  left: 27px;
  top: 44%;
  display: flex;
  align-items: center;
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content {
  padding: 30px 25px;
}

@media (max-width: 575px) {
  .courses-details-wrapper .courses-sidebar-area .courses-items .courses-content {
    padding: 10px 15px;
  }
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn {
    display: block !important;
  }
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn {
  background-color: var(--theme-blue);
  color: var(--white);
  border: 1px solid var(--theme-blue);
}

@media (max-width: 575px) {
  .courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn {
    display: block !important;
    margin-top: 15px;
  }
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2::before,
.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2::after {
  background-color: var(--theme-blue);
}

.courses-details-wrapper .courses-sidebar-area .courses-items .courses-content .courses-btn .theme-btn.style-2:hover {
  color: var(--white);
}

.courses-details-wrapper .courses-sidebar-area .courses-category-items {
  border-top: 1px solid var(--border);
  padding: 40px 25px;
}

.courses-details-wrapper .courses-sidebar-area .courses-category-items h5 {
  margin-bottom: 15px;
}

.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li span {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}

.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li span i {
  margin-right: 10px;
}

.courses-details-wrapper .courses-sidebar-area .courses-category-items ul li .text {
  font-weight: 500;
  color: var(--header);
  text-align: right;
  display: inline-block;
}

.courses-details-wrapper .courses-sidebar-area .courses-category-items .share-btn {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-blue);
  margin-top: 20px;
  display: inline-block;
}

.courses-details-wrapper .courses-sidebar-area .courses-category-items .share-btn i {
  margin-right: 5px;
}

.program-details-wrapper .program-details-items .details-image img {
  width: 100%;
  height: 100%;
}

.program-details-wrapper .program-details-items .details-content {
  margin-top: 40px;
}

.program-details-wrapper .program-details-items .details-content .post {
  background-color: var(--theme-blue);
  color: var(--white);
  padding: 4px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.program-details-wrapper .program-details-items .details-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .program-details-wrapper .program-details-items .details-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .program-details-wrapper .program-details-items .details-content h2 {
    font-size: 24px;
  }
}

.program-details-wrapper .program-details-items .details-content .details-author-area {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 40px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .program-details-wrapper .program-details-items .details-content .details-author-area {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.program-details-wrapper .program-details-items .details-content .details-author-area .author-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.program-details-wrapper .program-details-items .details-content .details-author-area .class-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.program-details-wrapper .program-details-items .details-content .details-author-area .class-list li i {
  color: var(--theme-blue);
}

.program-details-wrapper .program-details-items .details-content .list-items {
  margin-top: 20px;
}

.program-details-wrapper .program-details-items .details-content .list-items li:not(:last-child) {
  margin-bottom: 10px;
}

.program-details-wrapper .program-details-items .details-content .list-items li i {
  margin-right: 5px;
  color: var(--theme-blue);
}

.program-details-wrapper .details-list-area {
  padding: 30px 40px;
  border-radius: 10px;
  position: relative;
  z-index: 9;
  border: 1px solid var(--border);
}

@media (max-width: 1199px) {
  .program-details-wrapper .details-list-area {
    padding: 30px 20px;
  }
}

@media (max-width: 991px) {
  .program-details-wrapper .details-list-area {
    padding: 30px 40px;
  }
}

.program-details-wrapper .details-list-area h3 {
  font-size: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

@media (max-width: 1199px) {
  .program-details-wrapper .details-list-area {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .program-details-wrapper .details-list-area {
    margin-top: 0;
  }
}

.program-details-wrapper .details-list-area .details-list {
  margin-bottom: 30px;
}

.program-details-wrapper .details-list-area .details-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.program-details-wrapper .details-list-area .details-list li span {
  font-weight: 600 !important;
  color: var(--header);
}

.program-details-wrapper .details-list-area .details-list li span i {
  color: var(--theme-blue);
}

.program-details-wrapper .details-list-area .theme-btn {
  padding: 19px 40px;
  justify-content: center;
}

@media (max-width: 1199px) {
  .program-details-wrapper .details-list-area .theme-btn {
    padding: 19px 25px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .program-details-wrapper .details-list-area .theme-btn {
    padding: 19px 40px;
    font-size: 16px;
  }
}

.program-details-wrapper .details-list-area .theme-btn.border-style {
  border: 1px solid var(--theme-blue);
  color: var(--theme-blue);
  background-color: transparent;
  padding: 18px 40px;
}

.program-details-wrapper .details-list-area .theme-btn.border-style::after,
.program-details-wrapper .details-list-area .theme-btn.border-style::before {
  background-color: var(--theme-blue);
}

.program-details-wrapper .details-list-area .theme-btn.border-style:hover {
  color: var(--white);
}

.program-details-wrapper .details-list-area .social-icon {
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.program-details-wrapper .details-list-area .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--theme-blue);
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--theme-blue);
  border-radius: 8px;
}

.program-details-wrapper .details-list-area .social-icon a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
  border: 1px solid transparent;
}

.program-details-wrapper .program-author-items {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 23px;
}

@media (max-width: 1199px) {
  .program-details-wrapper .program-author-items {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

.program-details-wrapper .program-author-items .thumb {
  max-width: 370px;
}

.program-details-wrapper .program-author-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.program-details-wrapper .program-author-items .content {
  max-width: 700px;
}

@media (max-width: 1199px) {
  .program-details-wrapper .program-author-items .content {
    margin: 0 auto;
    text-align: center;
  }
}

.program-details-wrapper .program-author-items .content h2 {
  font-size: 30px;
  margin-bottom: 5px;
}

@media (max-width: 575px) {
  .program-details-wrapper .program-author-items .content h2 {
    font-size: 26px;
  }
}

.program-details-wrapper .program-author-items .content span {
  margin-bottom: 20px;
  display: inline-block;
}

@media (max-width: 575px) {
  .program-details-wrapper .program-author-items .content span {
    margin-bottom: 10px;
  }
}

.program-details-wrapper .program-author-items .content ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

@media (max-width: 1199px) {
  .program-details-wrapper .program-author-items .content ul {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
}

.program-details-wrapper .program-author-items .content ul li {
  color: var(--header);
}

.program-details-wrapper .program-author-items .content ul li i {
  margin-right: 5px;
}

.program-details-wrapper .program-author-items .content ul li .color-star {
  color: var(--theme-blue);
}

.program-details-wrapper .program-author-items .content .social-icon {
  margin-top: 40px;
  gap: 15px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .program-details-wrapper .program-author-items .content .social-icon {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .program-details-wrapper .program-author-items .content .social-icon {
    margin-top: 20px;
  }
}

.program-details-wrapper .program-author-items .content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--theme-blue);
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--theme-blue);
}

.program-details-wrapper .program-author-items .content .social-icon a:hover {
  background-color: var(--theme-blue);
  color: var(--white);
  border: 1px solid transparent;
}

.coureses-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .coureses-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.coureses-notices-wrapper .courses-showing {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.coureses-notices-wrapper .courses-showing .icon-items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coureses-notices-wrapper .courses-showing .icon-items a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: rgba(0, 91, 255, 0.3);
  text-align: center;
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}

.coureses-notices-wrapper .courses-showing .icon-items a:hover {
  color: var(--theme-blue);
  border: 1px solid var(--theme-blue);
}

.coureses-notices-wrapper .courses-showing h5 {
  font-size: 16px;
  font-weight: 400;
}

.coureses-notices-wrapper .courses-showing h5 span {
  color: var(--theme-blue);
}

.coureses-notices-wrapper .form-clt {
  max-width: 300px;
  width: 100%;
}

.coureses-notices-wrapper .form-clt .nice-select {
  padding: 14px 20px;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid #E6EFFF;
  border-radius: 10px;
  box-shadow: 10px 4px 30px 0px rgba(175, 175, 175, 0.2);
  width: initial;
}

.coureses-notices-wrapper .form-clt .nice-select::after {
  right: 30px;
}

.coureses-notices-wrapper .form-clt .nice-select .list {
  width: 100%;
  background-color: var(--bg);
}

.coureses-notices-wrapper .form-clt .nice-select .focus {
  background-color: transparent;
  font-weight: 400;
  color: var(--text);
}

.coureses-notices-wrapper .form-clt .nice-select .option {
  border: none;
}

.coureses-notices-wrapper .form-clt .nice-select .option:hover {
  background-color: transparent;
}

.contact-box-items {
  margin-top: 30px;
  padding: 50px;
  border: 1px solid var(--bg2);
  background-color: var(--white);
  filter: drop-shadow(10px 4px 60px rgba(204, 204, 204, 0.25));
  height: 363px;
}

.contact-box-items .icon {
  font-size: 45px;
  color: var(--theme-blue);
  margin-bottom: 40px;
}

.contact-box-items h5 {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-box-items .image {
  margin-bottom: 25px;
}

.contact-box-items h4 {
  line-height: 150%;
}

.map-area iframe {
  height: 715px;
  width: 100%;
}

@media (max-width: 991px) {
  .map-area iframe {
    height: 650px;
  }
}

@media (max-width: 767px) {
  .map-area iframe {
    height: 530px;
  }
}

@media (max-width: 575px) {
  .map-area iframe {
    height: 430px;
  }
}

.map-area-section .container-fluid {
  padding: 0px 115px;
}

@media (max-width: 1600px) {
  .map-area-section .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .map-area-section .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .map-area-section .container-fluid {
    padding: 0 30px;
  }
}

.contact-form-items {
  background-color: var(--bg);
  border: 1px solid var(--theme-blue);
  border-radius: 10px;
  padding: 60px 110px;
  margin-top: -320px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .contact-form-items {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .contact-form-items {
    padding: 60px 50px;
  }
}

@media (max-width: 767px) {
  .contact-form-items {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .contact-form-items {
    padding: 40px 30px;
  }
}

.contact-form-items .title {
  margin-bottom: 30px;
}

.contact-form-items .title h2 {
  font-size: 40px;
}

.contact-form-items .form-clt {
  position: relative;
}

.contact-form-items .form-clt input,
.contact-form-items .form-clt textarea {
  padding: 16px 30px;
  border: none;
  outline: none;
  background-color: var(--white);
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text);
}

@media (max-width: 575px) {

  .contact-form-items .form-clt input,
  .contact-form-items .form-clt textarea {
    padding: 12px 20px;
  }
}

.contact-form-items .form-clt textarea {
  padding: 18px 30px 110px;
}

@media (max-width: 575px) {
  .contact-form-items .form-clt textarea {
    padding: 12px 20px 90px;
  }
}

.contact-form-items .form-clt::placeholder {
  color: var(--text);
}

.contact-form-items .form-clt .icon {
  position: absolute;
  right: 30px;
  top: 16px;
  color: var(--text);
}

.contact-form-items .theme-btn {
  background-color: var(--theme-blue);
  color: var(--white);
}

.sign-in-items {
  background-color: var(--bg);
  border: 1px solid var(--theme-blue);
  border-radius: 10px;
  padding: 60px 110px;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .sign-in-items {
    padding: 60px 50px;
  }
}

@media (max-width: 767px) {
  .sign-in-items {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .sign-in-items {
    padding: 40px 30px;
  }
}

.sign-in-items .title {
  margin-bottom: 30px;
}

.sign-in-items .title h2 {
  font-size: 30px;
}

.sign-in-items .form-clt {
  position: relative;
}

.sign-in-items .form-clt span {
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
  color: #031F42;
}

.sign-in-items .form-clt input,
.sign-in-items .form-clt textarea {
  padding: 16px 30px;
  border: none;
  outline: none;
  background-color: var(--white);
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border-radius: 7px;
  color: var(--text);
  border: 1px solid rgba(0, 91, 255, 0.2);
}

@media (max-width: 575px) {

  .sign-in-items .form-clt input,
  .sign-in-items .form-clt textarea {
    padding: 12px 20px;
  }
}

.sign-in-items .form-clt.style-2 input,
.sign-in-items .form-clt.style-2 textarea {
  border: 1px solid var(--theme-blue);
}

.sign-in-items .form-clt textarea {
  padding: 18px 30px 110px;
}

@media (max-width: 575px) {
  .sign-in-items .form-clt textarea {
    padding: 12px 20px 90px;
  }
}

.sign-in-items .form-clt::placeholder {
  color: var(--text);
}

.sign-in-items .form-clt .icon {
  position: absolute;
  right: 30px;
  top: 55px;
  color: #031F42;
}

.sign-in-items .from-cheak-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sign-in-items .from-cheak-items .from-customradio .form-check-label {
  text-transform: capitalize;
  color: var(--text);
}

.sign-in-items .from-cheak-items span {
  color: var(--theme-blue);
  font-weight: 500;
}

.sign-in-items .from-cheak-items.style-2 {
  justify-content: right;
}

.sign-in-items .theme-btn {
  background-color: var(--theme-blue);
  color: var(--white);
  width: 100%;
  justify-content: center;
}

.footer-widget-wrapper {
  padding: 30px 0 30px;
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-size: 20px;
  color: var(--white);
}

@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 50%;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme-yellow);
  color: var(--header);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info li {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .contact-info li a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .list-area li {
  font-weight: 400;
  font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
  position: relative;
  padding-left: 20px;
}

.footer-widget-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-yellow);
}

.footer-widget-wrapper .single-footer-widget .list-area li a:hover::before {
  background-color: var(--theme-yellow);
}

.footer-widget-wrapper.style-2 {
  padding: 70px 0 100px;
}

@media (max-width: 991px) {
  .footer-widget-wrapper.style-2 {
    padding: 50px 0 80px;
  }
}

.footer-widget-wrapper.style-2 .single-footer-widget {
  position: relative;
  z-index: 9;
}

.footer-widget-wrapper.style-2 .single-footer-widget.style-left {
  margin-left: -30px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper.style-2 .single-footer-widget.style-left {
    margin-left: 0;
  }
}

.footer-widget-wrapper.style-2 .single-footer-widget .widget-head h3 {
  color: var(--header);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content p {
  color: var(--text);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
  color: var(--text);
  border: 1px solid rgba(9, 34, 75, 0.1);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme-red);
  color: var(--white);
  border: 1px solid var(--theme-red);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .contact-info li {
  color: var(--text);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .contact-info li a {
  color: var(--text);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 25px;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .footer-input .icon {
  position: absolute;
  top: 14px;
  left: 20px;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .footer-input input {
  border-radius: 10px;
  border: 1px solid rgba(9, 34, 75, 0.1);
  background: #FFF1E0;
  outline: none;
  width: 100%;
  padding: 16px 20px;
  padding-left: 45px;
  line-height: 1;
  color: var(--text);
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .footer-input .newsletter-btn {
  padding: 15px 30px;
  display: inline-block;
  color: var(--white);
  background-color: var(--theme-red);
  line-height: 1;
  border-radius: 10px;
  position: absolute;
  top: 4px;
  right: 4px;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .footer-input .newsletter-btn:hover {
  background-color: var(--header);
}

.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a {
  color: var(--text);
}

.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a::before {
  background-color: var(--text);
}

.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a:hover {
  color: var(--theme-red);
}

.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a:hover::before {
  background-color: var(--theme-red);
}

@media (max-width: 991px) {
  .footer-widget-wrapper.style-4 {
    padding-top: 50px;
  }
}

.footer-widget-wrapper.style-4 .single-footer-widget {
  position: relative;
  z-index: 9;
}

.footer-widget-wrapper.style-4 .single-footer-widget.style-left {
  margin-left: -30px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper.style-4 .single-footer-widget.style-left {
    margin-left: 0;
  }
}

.footer-widget-wrapper.style-4 .single-footer-widget .widget-head h3 {
  color: var(--header);
}

.footer-widget-wrapper.style-4 .single-footer-widget .footer-content p {
  color: var(--text);
}

.footer-widget-wrapper.style-4 .single-footer-widget .footer-content .social-icon a {
  color: var(--text);
  border: 1px solid rgba(9, 34, 75, 0.1);
}

.footer-widget-wrapper.style-4 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme-orange);
  color: var(--white);
  border: 1px solid var(--theme-orange);
}

.footer-widget-wrapper.style-4 .single-footer-widget .footer-content .contact-info li {
  color: var(--text);
}

.footer-widget-wrapper.style-4 .single-footer-widget .footer-content .contact-info li a {
  color: var(--text);
}

.footer-widget-wrapper.style-4 .single-footer-widget .list-area li a {
  color: var(--text);
}

.footer-widget-wrapper.style-4 .single-footer-widget .list-area li a::before {
  background-color: var(--text);
}

.footer-widget-wrapper.style-4 .single-footer-widget .list-area li a:hover {
  color: var(--theme-orange);
}

.footer-widget-wrapper.style-4 .single-footer-widget .list-area li a:hover::before {
  background-color: var(--theme-orange);
}

.footer-widget-wrapper.style-5 {
  padding: 40px 0 70px;
}

.footer-widget-wrapper.style-5 .single-footer-widget {
  position: relative;
  z-index: 9;
}

.footer-widget-wrapper.style-5 .single-footer-widget.style-left {
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper.style-5 .single-footer-widget.style-left {
    margin-left: 0;
  }
}

.footer-widget-wrapper.style-5 .single-footer-widget .widget-head h4 {
  color: var(--white);
  line-height: 150%;
}

.footer-widget-wrapper.style-5 .single-footer-widget .footer-content p {
  color: var(--white);
}

.footer-widget-wrapper.style-5 .single-footer-widget .footer-content .social-icon a {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
}

.footer-widget-wrapper.style-5 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme-yellow-4);
  color: var(--header);
}

.footer-widget-wrapper.style-5 .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 25px;
}

.footer-widget-wrapper.style-5 .single-footer-widget .footer-content .footer-input .icon {
  position: absolute;
  top: 14px;
  left: 20px;
}

.footer-widget-wrapper.style-5 .single-footer-widget .footer-content .footer-input input {
  border-radius: 7px;
  border: none;
  background: var(--white);
  outline: none;
  width: 100%;
  padding: 16px 20px;
  padding-left: 45px;
  line-height: 1;
  color: var(--text);
}

.footer-widget-wrapper.style-5 .single-footer-widget .footer-content .footer-input .newsletter-btn {
  padding: 15px 30px;
  display: inline-block;
  color: var(--header);
  background-color: var(--theme-yellow-4);
  line-height: 1;
  border-radius: 10px;
  position: absolute;
  top: 4px;
  right: 4px;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  font-weight: 600;
}

.footer-widget-wrapper.style-5 .single-footer-widget .footer-content .footer-input .newsletter-btn:hover {
  background-color: var(--header);
  color: var(--white);
}

.footer-widget-wrapper.style-5 .single-footer-widget .contact-list-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper.style-5 .single-footer-widget .contact-list-area {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.footer-widget-wrapper.style-5 .single-footer-widget .contact-list-area ul li {
  color: var(--white);
}

.footer-widget-wrapper.style-5 .single-footer-widget .contact-list-area ul li span {
  color: var(--white);
  opacity: 0.55;
  text-transform: capitalize;
  margin-bottom: 5px;
  display: block;
  font-size: 18px;
}

.footer-widget-wrapper.style-5 .single-footer-widget .contact-list-area ul li a {
  color: var(--white);
  display: block;
}

.footer-bottom p {
  text-align: center;
  font-weight: 400;
  color: var(--white);
  padding-bottom: 20px;
}

@media (max-width: 991px) {
  .footer-bottom p {
    text-align: center;
    padding-bottom: 20px;
  }
}

.footer-bottom p a {
  color: var(--theme-green);
}

.footer-bottom.style-2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom.style-2 p {
  text-align: center;
}

.footer-bottom.style-2 p a {
  color: var(--theme-yellow);
}

.footer-bottom.style-3 {
  border-top: 1px solid rgba(9, 34, 75, 0.1);
  padding: 30px 0;
}

.footer-bottom.style-3 .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer-bottom.style-3 .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom.style-3 .footer-bottom-wrapper p {
  color: var(--text);
}

@media (max-width: 991px) {
  .footer-bottom.style-3 .footer-bottom-wrapper p {
    padding-bottom: 0;
  }
}

.footer-bottom.style-3 .footer-bottom-wrapper p a {
  color: var(--theme-red);
}

.footer-bottom.style-3 .footer-bottom-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 575px) {
  .footer-bottom.style-3 .footer-bottom-wrapper .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer-bottom.style-3 .footer-bottom-wrapper .footer-menu li {
  font-size: 16px;
}

.footer-bottom.style-3 .footer-bottom-wrapper .footer-menu li a {
  color: var(--text);
  background-image: linear-gradient(var(--theme-red), var(--theme-red));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

.footer-bottom.style-3 .footer-bottom-wrapper .footer-menu li a:hover {
  background-size: 100% 2px;
  color: var(--theme-red);
}

.footer-bottom.style-4 p {
  color: var(--text);
}

.footer-bottom.style-4 p a {
  color: var(--theme-pink);
}

.footer-bottom.style-5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 9;
}

.footer-bottom.style-5 .footer-bottom-wrapper p {
  color: var(--white);
}

.footer-bottom.style-5 .footer-bottom-wrapper p a {
  color: var(--white);
}

.footer-bottom.style-5 .footer-bottom-wrapper .footer-menu li a {
  color: var(--white);
  background-image: linear-gradient(var(--white), var(--white));
}

.footer-bottom.style-5 .footer-bottom-wrapper .footer-menu li a:hover {
  color: var(--white);
}

.footer-name {
  margin-bottom: -60px;
  margin-top: -30px;
}

@media (max-width: 1600px) {
  .footer-name {
    margin-bottom: 0;
    margin-top: 0;
  }
}

.footer-name h2 {
  color: var(--white);
  text-align: center;
  font-size: 350px;
  font-weight: 700;
  letter-spacing: -17.5px;
  line-height: 1;
}

@media (max-width: 1600px) {
  .footer-name h2 {
    letter-spacing: 2px;
  }
}

@media (max-width: 1600px) {
  .footer-name h2 {
    font-size: 250px;
  }
}

@media (max-width: 1399px) {
  .footer-name h2 {
    font-size: 220px;
  }
}

@media (max-width: 1199px) {
  .footer-name h2 {
    font-size: 180px;
  }
}

@media (max-width: 991px) {
  .footer-name h2 {
    font-size: 150px;
  }
}

@media (max-width: 767px) {
  .footer-name h2 {
    font-size: 110px;
  }
}

@media (max-width: 575px) {
  .footer-name h2 {
    font-size: 60px;
  }
}

.footer-name.style-2 h2 {
  color: rgba(3, 31, 66, 0.05);
}

.footer-banner-items {
  padding: 100px 0 0;
}

.footer-banner-items .footer-banner {
  padding: 50px 40px;
  background-color: var(--theme-green);
  border-radius: 7px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .footer-banner-items .footer-banner {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .footer-banner-items .footer-banner {
    justify-content: center;
    text-align: center;
  }
}

.footer-banner-items .footer-banner .content {
  max-width: 295px;
}

.footer-banner-items .footer-banner .content p {
  color: var(--header);
  margin-top: 10px;
  margin-bottom: 25px;
}

.footer-banner-items .footer-banner .content .theme-btn {
  background-color: var(--header);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 18px 30px;
}

.footer-banner-items .footer-banner .content .theme-btn::after,
.footer-banner-items .footer-banner .content .theme-btn::before {
  background-color: var(--white);
}

.footer-banner-items .footer-banner .content .theme-btn:hover {
  color: var(--header);
}

.footer-banner-items .footer-banner .thumb {
  margin-bottom: -50px;
  position: relative;
  z-index: 8;
}

.footer-banner-items .footer-banner .thumb::before {
  position: absolute;
  bottom: -125px;
  left: 50%;
  transform: translateX(-50%);
  height: 286px;
  width: 286px;
  border-radius: 50%;
  background-color: #00C8AE;
  content: "";
  z-index: -1;
}

.footer-banner-items .footer-banner.style-2 {
  background-color: var(--theme-yellow);
}

.footer-banner-items .footer-banner.style-2 .thumb {
  margin-bottom: -50px;
  position: relative;
  z-index: 8;
}

.footer-banner-items .footer-banner.style-2 .thumb::before {
  background-color: var(--theme-yellow-2);
}

.footer-section-3 {
  position: relative;
}

.footer-section-3 .circle-shape {
  position: absolute;
  bottom: 35%;
  left: 5%;
  animation: bounce-x 7s infinite linear;
}

.footer-section-3 .vector-shape {
  position: absolute;
  top: 25%;
  right: 5%;
  animation: bounce-x 7s infinite linear;
}

.footer-section-5 {
  position: relative;
}

@media (max-width: 1399px) {
  .footer-section-5 {
    background-color: #553CDF;
  }
}

.footer-section-5 .bg-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .footer-section-5 .bg-shape-1 {
    display: none;
  }
}

.footer-section-5 .bg-shape-2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .footer-section-5 .bg-shape-2 {
    display: none;
  }
}

.footer-section-5 .circle-shape-3 {
  position: absolute;
  bottom: 15%;
  left: 10%;
}

.footer-section-5 .vector-shape-3 {
  position: absolute;
  bottom: 25%;
  right: 5%;
}

.footer-section {
  position: relative;
}

.footer-section .circle-shape-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
}

.footer-section .big-circle {
  position: absolute;
  bottom: 50px;
  right: 0;
}

.footer-section .Vector-shape-2 {
  position: absolute;
  top: 18%;
  right: 8%;
}

.shop-box-items {
  margin-top: 30px;
}

.shop-box-items .star i {
  color: var(--theme-blue);
}

.shop-box-items .shop-button {
  margin-top: 30px;
}

.shop-box-items .shop-button .theme-btn {
  width: 100%;
  background-color: var(--bg);
  color: var(--theme-blue);
}

.shop-box-items .shop-button .theme-btn:hover {
  color: var(--white);
}

.shop-box-items .book-thumb {
  position: relative;
  overflow: hidden;
}

.shop-box-items .book-thumb img {
  transition: all 0.4s ease-in-out;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.shop-box-items .book-thumb .post-box {
  position: absolute;
  left: 24px;
  top: 20px;
  display: grid;
  gap: 6px;
}

.shop-box-items .book-thumb .post-box li {
  background-color: var(--theme-blue);
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  border-radius: 4px;
  padding: 8px 16px;
  line-height: 1;
}

.shop-box-items .book-thumb .post-box li:nth-child(2) {
  background-color: var(--theme-blue);
}

.shop-box-items .book-thumb .shop-icon {
  gap: 8px;
  position: absolute;
  top: 26px;
  right: 26px;
}

.shop-box-items .book-thumb .shop-icon li {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  background-color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
}

.shop-box-items .book-thumb .shop-icon li a i,
.shop-box-items .book-thumb .shop-icon li a .icon {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

.shop-box-items .book-thumb .shop-icon li:hover {
  background-color: var(--theme-blue);
}

.shop-box-items .book-thumb .shop-icon li:hover i {
  color: var(--white);
}

.shop-box-items .book-thumb .shop-icon li:hover .icon {
  filter: invert(100%) brightness(250%) contrast(100%);
}

.shop-box-items .shop-content {
  margin-top: 20px;
}

.shop-box-items .shop-content h3 {
  font-size: 18px;
}

.shop-box-items .shop-content h3 a:hover {
  color: var(--theme-blue);
}

.shop-box-items .shop-content .price-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.shop-box-items .shop-content .price-list li {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-blue);
}

.shop-box-items .shop-content .price-list li del {
  font-weight: 500;
  color: rgba(92, 112, 126, 0.8);
}

.shop-box-items .shop-content .price-list li:nth-child(2) {
  font-weight: 600;
  color: var(--text);
}

.shop-box-items .shop-content .price-list li:nth-child(2) i {
  color: #FFA900;
  margin-right: 8px;
}

.shop-box-items .shop-content .shop-button {
  margin-top: 20px;
}

.shop-box-items .shop-content .shop-button .theme-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 30px;
  gap: 10px;
  color: var(--header);
}

.shop-box-items .shop-content .shop-button .theme-btn::before,
.shop-box-items .shop-content .shop-button .theme-btn::after {
  background-color: var(--theme-blue);
}

.shop-box-items .shop-content .shop-button .theme-btn:hover {
  color: var(--white);
}

.shop-box-items:hover .book-thumb img {
  transform: scale(1.1);
}

.shop-box-items:hover .book-thumb .shop-icon li {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.common-table .cart-item-thumb {
  width: 86px;
}

@media (max-width: 1399px) {
  .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}

.common-table .cart-item-thumb .head {
  color: #1B1F2A;
  font-size: 20px;
  text-transform: capitalize;
  font-family: "Sora", system-ui;
  font-weight: 600;
}

.common-table .price-usd {
  font-size: 16px;
  font-weight: 500;
  color: #666C78;
}

.common-table tr {
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead,
.common-table tbody {
  width: 100%;
}

.common-table thead tr,
.common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

.common-table thead tr th,
.common-table thead tr td,
.common-table tbody tr th,
.common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}

.common-table thead tr {
  color: #1B1F2A;
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 16px;
  padding-bottom: 16px;
}

.common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}

.quantity button i {
  font-size: 16px;
}

.quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: #000;
  border: unset;
}

.price-range-wrapper {
  /* Custom thumb styling */
  /* Remove the default appearance for sliders in Firefox */
}

.price-range-wrapper .slider-container {
  position: relative;
  width: 100%;
}

.price-range-wrapper .price-text label {
  color: #1b1f2a;
  font-size: 16px;
  font-weight: 500;
}

.price-range-wrapper .price-text input {
  color: #1b1f2a;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
}

.price-range-wrapper .slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #ddd;
  /* Default background */
  outline: none;
  position: absolute;
  top: 0;
  pointer-events: none;
}

.price-range-wrapper .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--theme-blue);
  cursor: pointer;
  border: 2px solid #fff;
  position: relative;
  z-index: 2;
  pointer-events: all;
}

.price-range-wrapper .slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--theme-blue);
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #000;
  z-index: 2;
  position: relative;
}

.price-range-wrapper .slider::-ms-thumb {
  width: 20px;
  height: 20px;
  background: var(--theme-blue);
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #000;
  z-index: 2;
  position: relative;
}

.price-range-wrapper input[type=range]::-moz-range-track {
  background: transparent;
}

@media (max-width: 767px) {
  .cart-list-area .table-responsive {
    overflow-x: scroll;
  }
}

@media (max-width: 991px) {
  .cart-list-area .table-responsive .table {
    width: 900px;
  }
}

.cart-list-area .coupon-items input {
  background: #F5F6FA;
  border: none;
  padding: 18px 30px;
  color: var(--text);
  line-height: 1;
  border-radius: 10px;
}

.cart-list-area .theme-btn {
  transition: all 0.4s ease-in-out;
}

.cart-total-area {
  margin-top: -10px;
}

.cart-total-area h3 {
  font-size: 40px;
  margin-bottom: 5px;
}

.cart-total-area ul {
  margin-bottom: 50px;
}

.cart-total-area ul li {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 220px;
  border-bottom: 1px solid #E4E4E5;
  padding-bottom: 25px;
  padding-top: 25px;
}

.cart-total-area ul li .subtotal {
  color: #666C78;
  font-weight: 400;
  margin-left: -30px;
}

.cart-total-area ul li .price {
  font-weight: 700;
  font-size: 22px;
  flex-basis: 30%;
}

.shop-details-wrapper .shop-details-items .details-image {
  overflow: hidden;
}

.shop-details-wrapper .shop-details-items .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.shop-details-wrapper .shop-details-items .book-list {
  margin-top: 40px;
}

.shop-details-wrapper .shop-details-items .book-list ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .shop-details-wrapper .shop-details-items .book-list ul {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.shop-details-wrapper .shop-details-items .book-list ul li {
  display: grid;
  font-size: 14px;
  gap: 10px;
  text-align: center;
}

.shop-details-wrapper .shop-details-items .book-list ul li .text-1 {
  line-height: 1.3;
}

.shop-details-wrapper .shop-details-items .book-list ul li i {
  font-size: 22px;
}

.shop-details-wrapper .shop-details-items .book-list ul li .text-2 {
  line-height: 1.4;
  font-weight: 700;
}

.shop-details-wrapper .shop-details-items .details-content {
  margin-left: 70px;
}

@media (max-width: 1199px) {
  .shop-details-wrapper .shop-details-items .details-content {
    margin-left: 0;
  }
}

.shop-details-wrapper .shop-details-items .details-content .post-cut {
  background: rgba(0, 91, 255, 0.0784313725);
  padding: 8px 12px;
  border-radius: 30px;
  color: var(--theme-blue);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
}

.shop-details-wrapper .shop-details-items .details-content h2 {
  font-size: 48px;
}

@media (max-width: 575px) {
  .shop-details-wrapper .shop-details-items .details-content h2 {
    font-size: 36px;
  }
}

.shop-details-wrapper .shop-details-items .details-content .author-list {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 25px;
}

@media (max-width: 1199px) {
  .shop-details-wrapper .shop-details-items .details-content .author-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.shop-details-wrapper .shop-details-items .details-content .author-list li {
  font-size: 14px;
}

.shop-details-wrapper .shop-details-items .details-content .author-list li span b {
  font-weight: 600;
  color: var(--header);
}

.shop-details-wrapper .shop-details-items .details-content .author-list li .star {
  color: #FFA900;
  font-size: 14px;
}

.shop-details-wrapper .shop-details-items .details-content .author-list li .star i.color-2 {
  color: #ebebeb;
}

.shop-details-wrapper .shop-details-items .details-content .author-list li .star span {
  font-weight: 500;
  color: var(--header);
}

.shop-details-wrapper .shop-details-items .details-content .price-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .shop-details-wrapper .shop-details-items .details-content .price-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.shop-details-wrapper .shop-details-items .details-content .price-list h3 {
  color: var(--theme-blue);
}

.shop-details-wrapper .shop-details-items .details-content .format-items {
  margin-top: 30px;
}

.shop-details-wrapper .shop-details-items .details-content .format-items .format-box-list {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .shop-details-wrapper .shop-details-items .details-content .format-items .format-box-list {
    flex-wrap: wrap;
  }
}

.shop-details-wrapper .shop-details-items .details-content .format-items .format-box-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 14px 16px;
  line-height: 1;
  border-radius: 10px;
  padding-right: 24px;
}

.shop-details-wrapper .shop-details-items .details-content .format-items .format-box-list li span {
  color: var(--theme-blue);
  display: block;
  margin-top: 14px;
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}

@media (max-width: 1199px) {
  .shop-details-wrapper .shop-details-items .details-content .cart-quantity {
    flex-wrap: wrap;
  }
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .qty {
  display: flex;
  align-items: center;
  border: 1px solid #E4E4E5;
  padding: 16px 24px;
  line-height: 1;
  justify-content: space-between;
  border-radius: 10px;
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .qty button,
.shop-details-wrapper .shop-details-items .details-content .cart-quantity .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  font-weight: 400;
  font-size: 24px;
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .qty input {
  background-color: transparent;
  text-align: center;
  border-radius: 0;
  border: unset;
  outline: none;
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .shop-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--theme-blue);
  color: var(--white);
  padding: 24px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  border-radius: 10px;
  text-transform: capitalize;
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .shop-btn i {
  margin-right: 10px;
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .shop-btn:hover {
  background-color: var(--header);
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .icon-item .icon {
  border: 1px solid #E4E4E5;
  padding: 16px 24px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.shop-details-wrapper .shop-details-items .details-content .cart-quantity .icon-item .icon:hover {
  background-color: var(--theme-blue);
  color: var(--white);
}

.shop-details-wrapper .shop-details-items .details-content .buy-btn {
  width: 100%;
  background-color: transparent;
  outline: none;
  border: 1px solid #E4E4E5;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  border-radius: 10px;
  text-transform: capitalize;
}

.shop-details-wrapper .shop-details-items .details-content .buy-btn:hover {
  background-color: var(--theme-blue);
  color: var(--white);
}

.shop-details-wrapper .shop-details-items .details-content .list {
  margin-top: 20px;
}

.shop-details-wrapper .shop-details-items .details-content .list li {
  font-size: 14px;
}

.shop-details-wrapper .shop-details-items .details-content .list li:not(:last-child) {
  margin-bottom: 8px;
}

.shop-details-wrapper .shop-details-items .details-content .list li i {
  margin-right: 5px;
}

.shop-details-wrapper .shop-details-items .details-content .payment-metod {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #E4E4E5;
  border-bottom: 1px solid #E4E4E5;
  padding: 30px 0;
}

.shop-details-wrapper .shop-details-items .details-content .payment-metod p {
  font-weight: 500;
  color: var(--header);
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .shop-details-wrapper .single-tab {
    margin-top: -10px;
  }
}

.shop-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
}

.shop-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 24px;
  font-weight: 700;
}

.shop-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}

.shop-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--theme-blue);
}

.shop-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme-blue);
  transition: 0.3s;
}

@media (max-width: 470px) {
  .shop-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}

.shop-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 18px;
}

@media (max-width: 767px) {
  .shop-details-wrapper .single-tab .table-responsive {
    overflow-x: scroll;
  }
}

@media (max-width: 991px) {
  .shop-details-wrapper .single-tab .table-responsive .table {
    width: 900px;
  }
}

.shop-details-wrapper .single-tab .table-responsive .table tbody tr .text-1 {
  font-weight: 600;
  color: var(--text);
  padding: 18px 0px 18px 20px;
  line-height: 1;
  max-width: 670px;
}

.shop-details-wrapper .single-tab .table-responsive .table tbody tr .text-2 {
  font-weight: 400;
  color: var(--text);
  padding: 18px 20px;
  line-height: 1;
}

.shop-details-wrapper .single-tab .review-wrap-area {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 40px;
}

@media (max-width: 991px) {
  .shop-details-wrapper .single-tab .review-wrap-area {
    flex-wrap: wrap;
    gap: 20px !important;
  }
}

.shop-details-wrapper .single-tab .review-wrap-area .review-thumb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content {
  width: 100%;
  flex-basis: 90%;
}

@media (max-width: 991px) {
  .shop-details-wrapper .single-tab .review-wrap-area .review-content {
    flex-basis: initial;
  }
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont {
  margin-bottom: 10px;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont h5 {
  font-size: 20px;
  font-weight: 600;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .cont span {
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.shop-details-wrapper .single-tab .review-wrap-area .review-content .head-area .star {
  color: #FFA41B;
}

.shop-details-wrapper .single-tab .review-title h4 {
  font-size: 24px;
  font-weight: 700;
}

.shop-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}

.shop-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--header);
}

.shop-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #FFA41B;
}

.shop-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}

.shop-details-wrapper .single-tab .review-form .form-clt span {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  display: inline-block;
  margin-bottom: 15px;
}

.shop-details-wrapper .single-tab .review-form .form-clt input,
.shop-details-wrapper .single-tab .review-form .form-clt textarea {
  width: 100%;
  outline: none;
  border: 1px solid #E3E3E3;
  padding: 18px 25px;
  color: var(--text);
  background-color: transparent;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 8px;
}

@media (max-width: 575px) {

  .shop-details-wrapper .single-tab .review-form .form-clt input,
  .shop-details-wrapper .single-tab .review-form .form-clt textarea {
    padding: 15px 20px;
  }
}

.shop-details-wrapper .single-tab .review-form .form-clt textarea {
  padding-bottom: 160px;
}

.shop-details-wrapper .single-tab .review-form .from-customradio .form-check-label {
  color: var(--header);
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.shop-details-wrapper .single-tab .review-form .theme-btn {
  transition: all 0.4s ease-in-out;
}

.shop-list-items {
  display: flex;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
}

@media (max-width: 991px) {
  .shop-list-items {
    display: inline-block;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .shop-list-items .book-thumb {
    max-width: 700px;
  }

  .shop-list-items .book-thumb img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .shop-list-items .shop-content {
    margin-top: 30px;
  }
}

.shop-list-items .shop-content h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.shop-list-items .shop-content h3 a:hover {
  color: var(--theme-blue);
}

.shop-list-items .shop-content h4 {
  font-size: 24px;
}

.shop-list-items .shop-content .star {
  color: #FFA900;
  margin: 20px 0;
}

.shop-list-items .shop-content .shop-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .shop-list-items .shop-content .shop-button {
    flex-wrap: wrap;
  }
}

.shop-list-items .shop-content .shop-button .shop-icon {
  gap: 8px;
}

.shop-list-items .shop-content .shop-button .shop-icon li {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  background-color: var(--bg);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
}

.shop-list-items .shop-content .shop-button .shop-icon li a i,
.shop-list-items .shop-content .shop-button .shop-icon li a .icon {
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

.shop-list-items .shop-content .shop-button .shop-icon li:hover {
  background-color: var(--theme-blue);
}

.shop-list-items .shop-content .shop-button .shop-icon li:hover i {
  color: var(--white);
}

.shop-list-items .shop-content .shop-button .shop-icon li:hover .icon {
  filter: invert(100%) brightness(250%) contrast(100%);
}

.shop-list-items .shop-content .shop-button .theme-btn {
  background-color: var(--theme-blue);
  color: var(--white);
}

.checkout-radio {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 24px;
}

.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}

.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--border);
  font-weight: 500;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--header);
  text-transform: capitalize;
}

.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}

@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--white);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .list {
  width: 100%;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .option {
  background-color: var(--bg);
  border: none;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.checkout-single-wrapper .boxshado-single {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
  margin-bottom: 24px;
}

@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}

.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 32px;
}

.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid var(--border);
  background: transparent;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}

.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background-color: var(--theme-blue);
  outline: none;
  color: var(--header);
}

.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}