:root {
  --blue1-color: #071952;
  --blue2-color: #088395;
  --blue3-color: #37B7C3;
  --green-color: #10ce39;
  --dark-color: #545a5b;
  --darker-color: #3b4650;
  --black-color: #000;
  --white-color: #EBF4F6;
}


@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/IRANSansX-Thin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/IRANSansX-UltraLight.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/IRANSansX-Light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/IRANSansX-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: IRANSansXd;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/IRANSansX-Demibold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/IRANSansXvar(--darker-color).woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/IRANSansX-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/IRANSansX-Regular.woff2") format("woff2");
  font-display: swap;
}

body {
  font-family: "IRANSansX";
  direction: rtl;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {

  color: var(--blue3-color);
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

a:hover {
  color: var(--blue2-color);
}

li {
  list-style: none;
}

/* S desktop header Style */
#nav-bar {
  padding: 0 1rem;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bar__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bar__right-logo {
  width: 155px;
  height: 70px;
  object-fit: contain;
  margin-left: 1.5rem;
}

.nav-bar__right-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-bar__right-menu-item {
  position: relative;
}

.nav-bar__right-menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-bar__right-menu-link {
  margin-left: 0.5rem;
  color: #7f8187;
}

.nav-bar__right-menu-link:hover {
  color: #7f8187 !important;
}

.nav-bar__right-menu-link-icon {
  color: #7f8187;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.nav-bar__right-menu-dropdown {
  display: none !important;
  position: absolute;
  z-index: 1;
  top: 24px;
  right: -154%;
  width: 16rem;
  gap: 10px !important;
  padding: 10px;
  box-shadow: 2px 2px 20px 1px #00000062;
  border-bottom: 3px solid var(--blue1-color);
  border-radius: 10px;
  transition: all 0.7s ease;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
}

.nav-bar__right-menu-dropdown-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* عرض 100 درصد برای هر آیتم */
}

.nav-bar__right-menu-dropdown-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nav-bar__right-menu-dropdown-linkImg {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .nav-bar__right-menu-dropdown {
    grid-template-columns: repeat(3, 1fr);
    /* تغییر تعداد ستون‌ها برای صفحه نمایش‌های کوچکتر */
  }
}

@media (max-width: 768px) {
  .nav-bar__right-menu-dropdown {
    grid-template-columns: repeat(2, 1fr);
    /* تغییر تعداد ستون‌ها برای موبایل */
  }
}

.nav-bar__right-menu-item:hover .nav-bar__right-menu-link {
  color: var(--blue1-color) !important;
}

.nav-bar__right-menu-item:hover .nav-bar__right-menu-dropdown {
  display: block !important;
  ;
  background: #fff;
}

.nav-bar__right-menu-item:hover .nav-bar__right-menu-link-icon {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  color: var(--blue1-color);
}

.nav-bar__right-menu-dropdown-item {
  padding: 7px 0px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.nav-bar__right-menu-dropdown-item:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.nav-bar__right-menu-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 0.8rem;
  color: var(--darker-color);
  gap: 5px;

}

.nav-bar__right-menu-dropdown-linkImg {
  width: 25px;
}

.nav-bar__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-bar__left-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-left: 10px;
}

.nav-bar__left-search-btn {
  padding: 0.5rem;
  color: var(--darker-color);
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  font-size: 25px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.nav-bar__left-search-btn:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.nav-bar__left-cart-btn {
  padding: 1rem;
  background-color: #f0f2f7;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-size: 2rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.nav-bar__left-cart-btn:hover {
  background-color: #ced0d6;
  color: var(--dark-color);
}

.nav-bar__left__profile {
  border: 2px solid var(--primary-color);
  padding: 3px 15px;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--primary-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.nav-bar__left__profile:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* F desktop header Style */
/* S applyCta Style */
#applyCta {
  background: #F6FAFB;
  padding: 40px 0;
  text-align: center;
  color: #fff;
}

.applyCta__mainDiv {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 0;
}

.applyCta__title {
  font-size: 24px;
  color: #fff;
  background-color: var(--blue2-color);
  padding: 30px;
  border-radius: 10px 10px 0 0px;
  -webkit-border-radius: 10px 10px 0 0px;
  -moz-border-radius: 10px 10px 0 0px;
  -ms-border-radius: 10px 10px 0 0px;
  -o-border-radius: 10px 10px 0 0px;
  padding-top: 30px;
  margin-bottom: 0;
}

.applyCta__form {
  padding: 35px 15px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #fff !important;
}

.applyCta__input {
  padding: 5px;
  font-size: 16px;
  border: 2px solid #fff;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease-in-out;
}

.applyCta__input::placeholder {
  color: #fff;
}

.applyCta__label {
  color: var(--darker-color) !important;
  margin-bottom: 5px;
  text-align: left;
}


.applyCta__input:focus {
  border-color: var(--blue2-color);
}

.applyCta__btn {
  position: relative;
  background-color: var(--blue2-color);
  color: #fff;
  padding: 5px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 2px solid var(--blue2-color);
  overflow: hidden;
  -webkit-transition: ;
  -moz-transition: ;
  -ms-transition: ;
  -o-transition: ;
}

.applyCta__btn:hover {
  background-color: #fff;
  color: var(--blue2-color);
  border: 2px solid var(--blue2-color);
}

.bgPulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.bgPulse span {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #fff;
  opacity: 0.2;
  border-radius: 50%;
  animation: newAnimate 10s linear infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.bgPulse span:nth-child(odd) {
  background-color: transparent;
  border: 2px solid #fff;
}

.bgPulse span:nth-child(1) {
  top: 50%;
  left: 50%;
  animation-duration: 4s;
}

.bgPulse span:nth-child(2) {
  top: 40%;
  left: 60%;
  animation-duration: 6s;
}

.bgPulse span:nth-child(3) {
  top: 30%;
  left: 40%;
  animation-duration: 8s;
}

.bgPulse span:nth-child(4) {
  top: 60%;
  left: 30%;
  animation-duration: 5s;
}

.bgPulse span:nth-child(5) {
  top: 20%;
  left: 70%;
  animation-duration: 7s;
}

@keyframes newAnimate {
  0% {
    transform: scale(0) translate(-50%, -50%);
    opacity: 1;
    -webkit-transform: scale(0) translate(-50%, -50%);
    -moz-transform: scale(0) translate(-50%, -50%);
    -ms-transform: scale(0) translate(-50%, -50%);
    -o-transform: scale(0) translate(-50%, -50%);
  }

  100% {
    transform: scale(0.5) translate(-50%, -50%);
    opacity: 0;
    -webkit-transform: scale(0.5) translate(-50%, -50%);
    -moz-transform: scale(0.5) translate(-50%, -50%);
    -ms-transform: scale(0.5) translate(-50%, -50%);
    -o-transform: scale(0.5) translate(-50%, -50%);
  }
}


.applyCta__callCenterDiv {
  width: 100%;
}


.landing__Swiper .swiper-container {
  width: 100%;
  height: 300px;
}

.landing__Swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  /*رنگپس‌زمینهکارت‌ها*/
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  color: var(--darker-color);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.card-1 {
  background-color: var(--blue1-color);
}

.card-2 {
  background-color: var(--blue2-color);
}

.card-3 {
  background-color: var(--green-color);
}

.card-4 {
  background-color: var(--dark-color);
}

.card-5 {
  background-color: var(--blue3-color);
}

.headerMobile {
  display: none;
}

.headerDektop {
  background: #fff;
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  padding: 6px;
}

.headerMobile__bars {
  font-size: 25px;
  color: var(--darker-color);
  cursor: pointer;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.headerMobile__bars:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

/* Hide mobile menu by default */
.headerMobile__menu {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 70px;
  width: 50%;
  z-index: 999;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  max-height: 62rem;
  height: 62rem;
  transform: translateX(193px);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.headerMobile__menu-advise {
  width: 50%;
  margin: 0 auto;
}

.headerMobile__menu-advisebtn {
  width: 100%;
  padding: 8px 18px;
  font-weight: 600;
  background-color: var(--blue2-color);
  border: 2px solid var(--blue2-color);
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  color: #fff;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.headerMobile__menu-advisebtn .nav-bar__right-menu-link-icon {
  color: #fff;
}

.headerMobile__menu-advisebtn:hover {
  background-color: #fff;
  color: var(--blue2-color);
}

.headerMobile__menu-advisebtn:hover .nav-bar__right-menu-link-icon {
  color: var(--blue2-color);
}

.headerMobile__menu ul {
  margin-top: 19px !important;
  list-style: none;
  padding: 0;
  margin: 0 !important;
}

.headerMobile__menu ul li {
  border-bottom: 1px solid #eee;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.headerMobile__menu ul li a:hover {
  background-color: var(--blue2-color);
  color: #fff;
}

.headerMobile__menu ul li a {
  text-decoration: none;
  color: var(--darker-color);
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  padding: 8px;
}

.dropdown-toggleByme {
  font-weight: 600;
}

.headerMobile__submenu {
  display: none;
  padding-left: 20px;
}



.headerMobile__submenu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.headerMobile__submenu a {
  padding-right: 23px !important;
}



.headerMobile__menu.show {
  display: flex;
  flex-direction: column;
  max-height: 62rem;
  overflow-y: scroll;
  height: 62rem;
  transform: translateX(0px);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}


.headerMobile__bars {
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.headerMobile__bars.open {
  transform: rotate(90deg);
}

.headerMobile__bars.close {
  transform: rotate(45deg);
  content: "\f00d";
}

.headerMobile__submenu {
  display: none;
  padding-left: 20px;
}


.headerMobile__submenu.show {
  display: block;
}

.dropdown-toggle::after {
  content: "";
  border: none;
  margin: 0;
}

/* S landing__gif Style */
.landing__gif-img {
  margin-top: 80px;
  width: 100%;
}

/* F landing__gif Style */

/* S landing__introMigration style */
.landing__introMigration-mainDiv {
  margin: 100px 0;
}

.landing__introMigration-mainDiv-title {
  color: var(--darker-color);
  margin-bottom: 21px;
}

.landing__introMigration-mainDiv-desc {
  color: var(--darker-color);
  line-height: 2.2;
  text-align: justify;
}

.landing__introMigration-mainDiv-desc2 {
  color: var(--darker-color);
  line-height: 2.2;
  text-align: justify;
  font-size: 0.8rem;
}

.landing__introMigration-mainDiv-butnAboutUs {
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue1-color);
  color: var(--blue1-color);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing__introMigration-mainDiv-butnAboutUs:hover {
  background-color: var(--blue1-color);
  color: #fff;
}

.landing__introMigration-mainDiv-butnFree {
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue1-color);
  color: #fff;
  background-color: var(--blue1-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
}

.landing__introMigration-mainDiv-butnFree2 {
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue1-color);
  color: #fff;
  background-color: var(--blue1-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
  animation: pulse-insta 2s infinite;
}

.landing__introMigration-mainDiv-butnFree3 {
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue2-color);
  color: #fff;
  background-color: var(--blue2-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
  animation: pulse-insta 2s infinite;
}

.equal-width {
  width: 310px;
}

.landing__introMigration-mainDiv-butnFree2:hover {
  color: #fff;
}

.landing__introMigration-mainDiv-butnFree2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s;
}

.landing__introMigration-mainDiv-butnFree2:hover {

  color: #fff;
}

.landing__introMigration-mainDiv-butnFree3:hover {
  color: var(--blue2-color);
  background-color: #FFF;
}

.landing__introMigration-mainDiv-butnFree3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s;
}


@keyframes pulse-insta {
  0% {
    box-shadow: 0 0 0 0 #ffffff8f;
  }

  70% {
    box-shadow: 0 0 0 20px #fff0;
  }

  100% {
    box-shadow: 0 0 0 0 #00a74000;
  }
}

.landing__introMigration-mainDiv-butnFree:hover {
  background-color: #fff;
  color: var(--blue1-color);
}

.landing__introMigration-mainDiv-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing__introMigration-mainDiv-img1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing__introMigration-mainDiv-img2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 70px;
  /* اندازه دلخواه دکمه play */
  height: 70px;
  /* اندازه دلخواه دکمه play */
  z-index: 1;
  /* برای قرار دادن دکمه روی تصویر */
}


.landing__videoModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  z-index: 20000;
}

.landingModal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 768px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landingModal-content video {
  width: 100%;
  height: auto;
}

.landing__modalVideo-close {
  position: absolute;
  top: -3px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
  color: var(--darker-color);
}


/* F landing__introMigration style */

/* S landing__EnglishWeb Style */
.landing__EnglishWeb-mainDiv {
  background-color: #EBEBEB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  margin-top: 96px !important;
  padding: 32px 24px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}


.landing__EnglishWeb-mainDiv::after {
  content: "";
  position: absolute;
  width: 175px;
  height: 124px;
  left: 58%;
  transform: translateX(-50%);
  top: 5px;
  background-image: url(../images/ZtcWeb.svg);
  background-size: cover;
  z-index: 1;
  background-repeat: no-repeat;
}

.landing__EnglishWeb-mainDiv-right {
  color: var(--darker-color);
}

.landing__EnglishWeb-mainDiv-right {
  color: var(--darker-color);
}

.landing__EnglishWeb-mainDiv-titleSpan {
  color: var(--blue2-color);
}

.landing__EnglishWeb-mainDiv-desc {
  font-size: 18px;
}


.landing__EnglishWeb-mainDiv-left {
  text-align: left;
}

.landing__EnglishWeb-mainDiv-left-link {
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue2-color);
  color: #fff;
  background-color: var(--blue2-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
}

.landing__EnglishWeb-mainDiv-left-link:hover {
  background-color: #fff;
  color: var(--blue2-color);
}


/* F landing__EnglishWeb Style */


/* S landing__ourServices Style */
#landing__ourServices {
  margin-top: 53px;
  padding: 60px 0;
  background-color: #f9f9f9;
}

.landing__ourServices-title {
  color: var(--darker-color);
  text-align: center;
  margin-bottom: 45px;
  font-weight: 700;
}

.landing__ourServices-mainDiv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

}

.landing__ourServices-mainDiv2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;

}

.landing__ourServices-mainDiv3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

}

.landing__ourServices-mainDiv4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

}

.landing__ourServices-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  width: 100%;
  margin-bottom: 24px;
  border: 2px solid transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing__ourServices-box2 {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 2px solid transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing__ourServices-box3 {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 18px 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 15px;
  height: 100%;
  border: 2px solid transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing__ourServices-box3 h3,
.landing__ourServices-box h3 {
  font-size: 20px;
}

.landing__ourServices-box3 h4,
.landing__ourServices-box h4 {
  font-size: 30px;
}

.articleSpan {
  text-align: justify;
  line-height: 1.9;
  font-size: 14px;
}



.equal-height {
  min-height: 400px;
  max-height: 100%;
  overflow: hidden;
}

.landing__ourServices-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--blue1-color);
}

.landing__ourServices-box2:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--blue1-color);
}

.landing__ourServices-box3:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--blue1-color);
}

.landing__ourServices-box svg {
  margin-bottom: 16px;
}

.landing__ourServices-box-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--darker-color);
  margin-bottom: 16px;
}

.landing__ourServices-box-desc {
  font-size: 0.8rem;
  color: var(--dark-color);
  text-align: justify;
  margin-bottom: 24px;
  line-height: 1.9;
}

.landing__ourServices-box-mainUlDiv {
  margin-top: 16px;
  display: flex;
  gap: 6px;

}

.landing__ourServices-box-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.landing__ourServices-box-item {
  flex: 1;
}

.landing__ourServices-box-link {
  /*min-width: 140px;
  height: 100%;
  */
  font-size: 10.5px;
  padding: 0.8rem 0rem;
  background-color: var(--blue1-color);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  transition: color 0.3s ease;
  border: 2px solid var(--blue1-color);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing__ourServices-box-link:hover {
  color: var(--blue1-color);
  background-color: #fff;
}

.landing__ourServices__swiperImg {
  margin-top: 120px;
}

.landing__ourServices__swiperImg img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing__ourServices__swiperImg .swiper-container {
  width: 100%;
  height: 300px;

}

.landing__ourServices-secondDiv {
  margin-top: 50px;
}

.landing__adviser-secondDiv-title {
  text-align: center;
  color: var(--darker-color);
}

.landing__adviser-secondDiv-desc {
  text-align: center;
  color: var(--dark-color);
  margin-bottom: 50px;
  line-height: 2;
}

.landing__adviser-secondDiv-img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* F landing__ourServices Style */
/* S landing__Adviser Style */
#landing__Adviser {
  background-image: url("../images/طرح\ ثبت\ فرم\ مصاحبه.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#landing__Adviser2 {

  background-color: var(--white-color);
}


.landing__adviser-mainDiv {
  display: flex;
  justify-content: center;
  padding: 26px 0;
  align-items: center;
  position: relative;
  width: 100%;
}

.landing__adviser-mainDiv-right {
  color: var(--darker-color);
}

.landing__adviser-mainDiv-left {
  text-align: left;
}

.landing__adviser-mainDiv-left-link {
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue2-color);
  color: #fff;
  background-color: var(--blue2-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
}

.landing__adviser-mainDiv-left-link:hover {
  background-color: #fff;
  color: var(--blue2-color);
}


.landing__adviser-mainDiv-title {
  font-size: 1.8rem;
}

.landing__adviser-mainDiv-titleSpan {
  color: var(--blue2-color);
}

/* F landing__Adviser Style */

/* S landing__MigrationWay Style */
.landing__MigrationWay-Div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

.landing__MigrationWay-mainDiv-title {
  margin: 60px 0;
  text-align: center;
  color: var(--darker-color);
}

.landing__MigrationWay-Box1,
.landing__MigrationWay-Box2,
.landing__MigrationWay-Box3,
.landing__MigrationWay-Box4 {
  flex: 1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing__MigrationWay-Box1 {
  background-image: url(../images/Country/Canada.webp);

}

.landing__MigrationWay-Box2 {
  background-image: url(../images/Country/germany.webp);
}

.landing__MigrationWay-Box3 {
  background-image: url(../images/Country/ENGLAND.png);
}

.landing__MigrationWay-Box4 {
  background-image: url(../images/Country/Neth.webp);

}

.landing__MigrationWayButtonsDiv {
  padding: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.landing__MigrationWayButtonsDiv-link {
  padding: 0.8rem 1rem;
  background-color: var(--blue1-color);
  color: #fff;
  border: 2px solid var(--blue1-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.landing__MigrationWayButtonsDiv-link:hover {
  background-color: #fff;
  color: var(--blue1-color);
}

/* F landing__MigrationWay Style */


/* S landing__Swiper Style */
.landingSwiper {
  width: 100%;
  height: 100px;
  padding-bottom: 50px;
}

.landingSwiper .swiper-slide {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  height: 100%;
}

.landing__Swiper-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.landing__Swiper-title {
  margin: 60px 0;
  text-align: center;
  color: var(--darker-color);
}

.landing__Swiper-link span {
  font-size: 15px;
}

.landingSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  color: #333;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* F landing__Swiper Style */

/* S landing__lastArticles Style */
#landing__lastArticles {
  margin: 50px 0px;
}

.landing__lastArticles-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--darker-color);
}

.landing__lastArticles-button {
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue1-color);
  color: #fff;
  background-color: var(--blue1-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
}

.landing__lastArticles-button:hover {
  background-color: #fff;
  color: var(--blue1-color);
}

.landing__lastArticles-down-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 314px;
}

.landing__lastArticles-down-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.landing__lastArticles-boxImg {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing__lastArticles-down-title {
  font-size: 18px;
  color: var(--darker-color);
  margin-bottom: 10px;
}

.landing__lastArticles-dateDiv {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--darker-color);
}

/* F landing__lastArticles Style */

/* S SuccessfulProjects Style */
#SuccessfulProjects {
  margin: 100px 0;
}

#SuccessfulProjects img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.SuccessfulProjects__upDiv-title {
  color: var(--darker-color);
}

.SuccessfulProjects__upDiv-button {
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue1-color);
  color: #fff;
  background-color: var(--blue1-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease;
}

.SuccessfulProjects__upDiv-button:hover {
  background-color: #fff;
  color: var(--blue1-color);
}

/* F SuccessfulProjects Style */

/* S study-in-canada Page Style */
.sectionOne {
  margin-top: 8rem;
}

.sectionTwo {
  margin-top: 8rem;
  background-image: url("../images/canada.png");
  min-height: 600px;
  background-size: contain;
}

/* حالت پیش فرض */
#LinkTo {
  position: relative;
  top: 0;
  z-index: 3;
  overflow-x: auto;
  white-space: nowrap;
  background-color: var(--blue2-color);
  overflow-x: auto;
  white-space: nowrap;
  z-index: 5;
}


/* سفارشی کردن اسکرول بار */
#LinkTo::-webkit-scrollbar {
  height: 8px;
  /* ارتفاع اسکرول بار */
}

#LinkTo::-webkit-scrollbar-thumb {
  background-color: rgba(55, 183, 195, 0.6);
  /* رنگ اسکرول بار */
  border-radius: 10px;
  /* گوشه‌های گرد اسکرول بار */
  border: 2px solid rgba(255, 255, 255, 0.5);
  /* خط حاشیه سفید نازک */
}

#LinkTo::-webkit-scrollbar-thumb:hover {
  background-color: rgba(55, 183, 195, 1);
  /* تغییر رنگ هنگام هاور */
}

#LinkTo::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  /* پس‌زمینه اسکرول بار */
  border-radius: 10px;
}


.sticky {
  position: fixed !important;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  top: 82px !important;
}

.LinkTo__list {
  background-color: var(--blue2-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 0;
  gap: 20px;
  margin: 0;

}

.LinkTo__item {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.LinkTo__item:hover {
  transform: scale(1.2) !important;
  -webkit-transform: scale(1.2) !important;
  -moz-transform: scale(1.2) !important;
  -ms-transform: scale(1.2) !important;
  -o-transform: scale(1.2) !important;
}

.LinkTo__link {
  color: var(--white-color);
}

.LinkTo__link-button1 {
  padding: 8px 13px;
  border-radius: 10px;
  background-color: var(--blue1-color);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.LinkTo__link-button1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s;
}

.LinkTo__link-button1:hover {
  color: #fff;
}

.LinkTo__link-button1:hover::before {
  opacity: 1;
  animation: slide-glow 0.5s forwards;
  -webkit-animation: slide-glow 0.5s forwards;
}

.LinkTo__link-button2 {
  padding: 8px 13px;
  border-radius: 10px;
  background-color: #fff;
  color: var(--blue2-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.LinkTo__link-button2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(55, 183, 195, 0.3), transparent);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s;
}

.LinkTo__link-button2:hover::before {
  opacity: 1;
  animation: slide-glow 0.5s forwards;
}




@keyframes slide-glow {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}


.landing__why-icon,
.landing__why-icon2 {
  fill: var(--blue1-color);
  color: var(--blue1-color);
  border-color: var(--blue1-color);

}

.landing__why-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.landing__why-icon2 svg {
  width: 5rem;
  height: 5rem;
}


#mainVideo {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  max-width: 262px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: start !important;
  justify-content: end !important;
}

.gallery img {
  width: 100%;
  max-width: 100px;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.2s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 100px;
  object-fit: cover;
}

.gallery img:hover {
  transform: scale(1.05);
}

.list-item-style2 {
  padding: 0 !important;
  margin: 15px auto;
  padding: 10px;
  font-size: 0.8rem;
}

.list-item-style2 li {
  position: relative;
  list-style-type: none;
  color: var(--darker-color);
  text-align: justify;
  line-height: 2;
}

.list-item-style2 li:before {
  content: "";
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODBweCIgaGVpZ2h0PSI4MHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjMmE4ZDc1Ij4KDTxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+Cg08ZyBpZD0iU1ZHUmVwb190cmFjZXJDYXJyaWVyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KDTxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4gPHBhdGggZD0iTTQgMTRMOSAxOUwyMCA4TTYgOC44ODg4OUw5LjA3NjkyIDEyTDE2IDUiIHN0cm9rZT0iIzJhOGQ3NSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+);
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  background-repeat: no-repeat;
  position: relative;
  top: 4px;
  margin-left: -2px;
}

/* استایل برای کلاس CTA */
.cta {
  display: flex;
  background-color: var(--blue1-color);
  background-image: linear-gradient(270deg, rgba(148, 57, 147, 0.65) 100%, rgba(148, 57, 147, 0) 0), url("../images/instagram-cta-background.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 25px;
  border-radius: 10px;
  margin: 50px 0;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.cta2 {
  display: flex;
  background-color: var(--blue1-color);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-radius: 10px;
  margin: 50px 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.cta3 {
  display: flex;
  background-image: url("../images/طرح\ ثبت\ فرم\ مصاحبه.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border-radius: 10px;
  margin: 50px 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.cta__move {
  position: relative;
  height: 100%;
  display: flex;
}

.cta__image {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cta__image img {
  width: 250px;
  animation: scrollBackground 30s linear infinite;
  -webkit-animation: scrollBackground 30s linear infinite;
}


@keyframes scrollBackground {
  0% {
    transform: translateY(0);

  }

  50% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes scrollBackground {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

.cta__right {
  color: #fff;
}


.cta__right-num {
  font-size: 25px;
}

.uniColege {
  margin-top: 150px;
}

#services {
  background-image: url("../images/explorer-bg-2.svg");
}

.landing__services-h3 {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--darker-color);
}

#services .service-box .text {
  font-size: 13px;
  min-height: 120px;
  line-height: 20px;
  margin-top: 15px;
}

.service-box-link:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#landing-faq .faq-card .answer {
  display: none;
  font-size: 14px;
  padding-top: 8px;
}

#landing-faq .faq-card {
  border-radius: 10px;
  cursor: pointer;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#landing-faq .faq-card .question {
  font-size: 15px;
  font-weight: bold;
}

#landing-faq .faq-card .faq-icon {
  left: 20px;
  top: 19px;
  color: var(--blue1-color);
  transition: all 0.3s;
}

#landing-faq .faq-card.open .faq-icon {
  color: #fff;
  transform: rotateX(180deg);
}

#landing-faq .faq-card.open {
  background-color: var(--blue1-color);
  color: #fff !important;
}

/* F study-in-canada Page Style */

/* S Footer Style */
.footer__maniDiv {
  background: url(../images/footer-bg.png) center no-repeat #F2F3F3;
  padding: 70px;
  margin-top: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.footer__Div1 {
  padding: 70px;
}

.footer__Div1-left-box span,
.footer__Div1-right-box span {
  font-size: 14px;
}

.footer__Div3 {
  padding-bottom: 33px;
}

.footer__Div3-link {
  border-bottom: 2px solid var(--blue2-color);
}

.footer__Div3-socialLinks img {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.footer__Div3-socialLinks img:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.footer__Div3-span {
  color: var(--darker-color);
}

.footer__Div3-call {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.footer__Div3-call:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

@media screen and (max-width:768px) {
  .footer__maniDiv {
    margin-top: 0px;
    margin-bottom: 62px;
  }
}

/* F Footer Style */
/* Start header css */
.navbar-nav .nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  margin-top: 0;
}

.hamburger {
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-color);
}

.hamburger i {
  color: var(--dark-color);
}

.offcanvas-end {
  width: 70% !important;
}

.offcanvas-header,
.offcanvas-body {
  text-align: center;
}

.offcanvas .offcanvas-body {
  padding: 0 !important;
}

.offcanvas .accordion {
  border: none !important;
  margin-bottom: 1rem;
}

.offcanvas .headerNav-mobile-nav-link-home {
  border-bottom: none !important;
}

.offcanvas .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.offcanvas .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.offcanvas .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  padding: 10px 0px;
  font-size: 15px;
  color: var(--darker-color);
}

.offcanvas .accordion-button:not(.collapsed) {
  background-color: var(--dark-color);
  color: white;
}

.offcanvas .accordion-button:focus {
  box-shadow: none;
}

.offcanvas .accordion-button::after {
  margin-left: 0 !important;
  transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
}

.offcanvas .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg) scale(0.6);
}

.offcanvas .accordion-body {
  padding: 0 !important;
}

.offcanvas .headerNav-mobile-nav-link-last {
  border-bottom: none;

}

.offcanvas .accordion-body ul {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.offcanvas-body li {
  list-style-type: none;
}

.offcanvas-body .nav-link {
  border-bottom: 1px solid #e7e7e7;
}

.submenu {
  display: none;
  padding-left: 15px;
}

.submenu a {
  font-size: 0.9rem;
}

#stickyNav {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}






.nav-link {
  color: var(--darker-color) !important;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover {
  color: var(--blue2-color) !important;
}

.dropdown-header-sec {
  border-radius: 10px;
  text-align: right;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.header-main {
  background-color: rgb(255, 255, 255);
}

.call-head-sec {
  margin-right: -45px !important;
  margin-left: 45px;
}

.header-frst {
  height: 35px;
  border-bottom: 0.5px solid rgba(17, 17, 17, 0.041);
}

.headerNav-mobile {
  position: relative;
  display: flex;
  flex-direction: column;
}

.headerNav-mobile-nav-link {
  color: var(--darker-color);
  margin-right: 5px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 1px solid #e7e7e7;
  font-size: 15px;
  padding: 7px 0;
}

/* End header css */

.blinking-star {
  animation: blink 2s infinite;
  -webkit-animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10000;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
}


.close {
  color: var(--dark-color);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: var(--darker-color);
  text-decoration: none;
  cursor: pointer;
}

#searchInput {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  margin-bottom: 25px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#searchInput:focus {
  border-color: var(--blue1-color);
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}


.sectionOne {
  margin-top: 0rem;
}


#landing__ourServices {
  padding: 28px 0;
}

.landing__ourServices-secondDiv {
  margin-top: 25px;
}

.landing__adviser-secondDiv-desc {
  font-size: 14px;
  margin-bottom: 18px;
}

.landing__ourServices__swiperImg {
  margin-top: 60px;
}



.landing__lastArticles-button {
  padding: 0.35rem 1rem;
}

.landing__lastArticles-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--darker-color);
}

.footer__Div1 {
  padding: 33px;
}

footer .container {
  padding: 0;
}

.footer__maniDiv {
  padding: 0px;
}

.landing__Swiper-title {
  margin: 30px 0 20px 0;
  font-size: 17px;
}

.landing__adviser-mainDiv-title {
  color: #fff;
  font-size: 24px;
}

.landing__adviser-mainDiv-desc {
  font-size: 13px;
  line-height: 2;
  color: #fff;
}

.landing__adviser-mainDiv-left {
  text-align: center;
  margin-top: 15px;
}

.landing__adviser-mainDiv {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  margin: 0 auto;
}

.landing__EnglishWeb-mainDiv {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.landing__EnglishWeb-mainDiv-left {
  text-align: center;
  margin-top: 15px;
}

.landing__EnglishWeb-mainDiv-desc {
  line-height: 2;
  text-align: center;
}

.landing__MigrationWay-mainDiv-title {
  margin: 39px 0;
  font-size: 22px;
}



.applyCta__countryDiv {
  width: 100%;
}


.blogCategory-articles {
  margin: 2rem 0;
  margin-top: 85px;
}

.blogCategory-dff33 {
  padding: 11px;
}

.articless-blog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.articlesss-blog {
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #333;
  /*background-color: #f9f9f9;
  */
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.articles__box-blog {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.articles__box-title-blog h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--darker-color);
}

.articles__box-title-date-blog {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #bbbaba;
}

.articles__box-img-blog {
  width: 100%;
  height: auto;
  max-width: 770px;
  max-height: 400px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.articles__box-img-blog img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 60%;
}

.articles__box-img-blog video {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.articles__box-desc-blog {
  max-width: 770px;
}

.articles__box-desc-blog p {
  text-align: justify;
  margin-top: 4px;
  color: var(--darker-color);
  font-size: 15px;
  line-height: 1.9;
}

.blogCategory-dddd {
  padding: 1rem;
  height: max-content;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.blogCategory-articles__title {
  margin: 1rem 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--darker-color);
}

.blogCategory-articles__list {
  padding: 0;
  margin: 0;
}

.blogCategory-articles__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  margin-bottom: 5px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.blogCategory-articles__item-1 {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  font-size: 0.9rem;
  color: var(--darker-color) !important;
  padding: 5px 10px;
  gap: 0.5rem;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.blogCategory-articles__item-1:hover {
  transform: translateX(-20px);
  -webkit-transform: translateX(-20px);
  -moz-transform: translateX(-20px);
  -ms-transform: translateX(-20px);
  -o-transform: translateX(-20px);
  color: var(--blue1-color) !important;
}

.grade-table-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.grade-table,
.ielts-table,
.university-table {
  width: 90%;
  border-collapse: collapse !important;
  font-size: 1rem;
  color: var(--darker-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;


}

.grade-table thead th,
.ielts-table thead th,
.university-table thead th {
  background-color: var(--blue1-color) !important;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 13px;
}

.grade-table tbody td,
.ielts-table tbody td,
.university-table tbody td {
  padding: 10px !important;
  text-align: center !important;
  border: 1px solid #ddd !important;
  font-size: 13px !important;
  background-color: #fff !important;
}

.grade-table tbody td,
.grade-table thead th,
.ielts-table tbody td,
.ielts-table thead th,
.university-table tbody td,
.university-table thead th {
  border: 1px solid #ddd;
}

.fixed__articleMenue {
  position: fixed;
  top: 70px;
  z-index: 1000;
}

.working {
  background-color: var(--white-color);
  padding: 50px 0;
}

.courses-info {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course__ShortLink {
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 13px 1px rgba(70, 72, 77, 0.08);
  border: 1px solid #f2f2f2;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .allVisa {
    flex-direction: column;
  }

  .headerDektop {
    display: none;
  }

  .headerMobile {
    display: flex;
  }

  #nav-bar {
    padding: 0rem 1rem;
  }

  .nav-bar__right-logo {
    margin-left: 0;
  }

  .nav-bar__left-search-btn {
    padding: 0rem;
  }

  .nav-bar__left-icon {
    margin-left: 0px;
  }


}

@media screen and (max-width: 992px) {
  .applyCta__phoneDiv {
    flex-direction: column;
    gap: 15px;
  }

  .landing__ourServices-mainDiv {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .sectionTwo {
    margin-top: 1rem;
    background-repeat: no-repeat;

  }

  .applyCta__form div {
    gap: 15px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .articles__box-img-blog img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: 100%;
  }

  #SuccessfulProjects {
    margin: 20px 0;
  }

  .table-container {
    overflow-x: scroll;
  }

  .landing__ourServices-box3 h4 {
    font-size: 25px;
  }

  .landing__ourServices-box3 h3 {
    font-size: 20px;
  }

  .grade-table,
  .ielts-table,
  .university-table {
    width: 100%;
  }

  .articlesss-blog {
    padding: 10px;
  }

  .blogCategory-articles {
    margin: 0rem 0;
  }

  .articles__box-title-blog h2 {
    font-size: 1.3rem;
  }

  .articleSpan {
    font-size: 12px;
  }

  .modal-content {
    margin: 56% auto;
    width: 87%;
  }

  .landing__adviser-mainDiv::after {
    display: none;
  }

  .landing__adviser-mainDiv.landing__adviser-mainDiv {
    padding: 28px 0;
    align-items: center;
    justify-content: center !important;
  }

  .landing__adviser-mainDiv-title {
    font-size: 22px;
  }

  .dfsdfsdf {
    margin-top: 20px;
  }

  .applyCta__mainDiv {

    background: transparent;

  }

  .applyCta__title {
    color: #fff;
    padding: 19px 30px;
    border-radius: 10px 10px 0 0px;
    -webkit-border-radius: 10px 10px 0 0px;
    -moz-border-radius: 10px 10px 0 0px;
    -ms-border-radius: 10px 10px 0 0px;
    -o-border-radius: 10px 10px 0 0px;
    font-size: 18px;
  }

  .applyCta__input {
    padding: 6px;
    font-size: 14px;
    border: 1px solid var(--dark-color);
  }

  .applyCta__btn {
    padding: 4px;
  }

  .landing__introMigration-mainDiv {
    margin: 10px 0;
  }

  .cta {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .cta__move {
    position: relative;
    height: 50%;
    display: flex;
  }

  .cta__image {

    display: none;
  }

  .landing__ourServices-title {
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: 1.3rem;
  }

  .section {
    padding: 20px 0;
  }

  .landing__introMigration-mainDiv-title {
    font-size: 19px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .landing__introMigration-mainDiv-desc {
    font-size: 14px;
    text-align: justify !important;
    margin-top: 12px;
  }

  .landing__ourServices-box {

    margin-bottom: 4px;
  }

  .landing__ourServices-mainDiv3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  #services {
    background-image: none;
  }

  .SuccessfulProjects__upDiv {
    flex-direction: column;
    gap: 20px;
  }

  .landing__MigrationWay-Box1,
  .landing__MigrationWay-Box2,
  .landing__MigrationWay-Box3,
  .landing__MigrationWay-Box4 {
    background-size: contain;
    height: 100%;
  }

  .landing__MigrationWay-Div {
    gap: 0px;
  }

  .landingSwiper {
    width: 100%;
    height: 100px;
    padding-bottom: 22px;
  }

  .footer__Div1-left-box span,
  .footer__Div1-right-box span {
    font-size: 12px;
  }

  .footer__Div1 {
    padding: 20px;
  }

  .landing__ourServices-mainDiv2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .landing__ourServices-mainDiv {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }

  .landing__ourServices-mainDiv4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .landing__MigrationWayButtonsDiv-link {
    font-size: 13px;
  }
}



@media screen and (max-width: 576px) {
  .landing__ourServices-mainDiv4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .landing__ourServices-mainDiv {
    grid-template-columns: 1fr;
  }

  .landing__ourServices-mainDiv3 {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    gap: 25px;
  }
}






/* HELPER */

/*start download list style-1*/
.download-list-style1 {
  margin: 15px auto;
  padding: 0;
}

.download-list-style1 li {
  display: block;
  margin-bottom: 10px;
}

.download-list-style1 li a {
  display: block;
  margin-bottom: 10px;
  background-color: #20af96;
  border-radius: 10px;
  padding: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.2s;
  position: relative;
  padding-right: 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.download-list-style1 li a:hover {

  background-color: #118874;
  padding-right: 45px;

}

.download-list-style1 li a:before {
  content: '';
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tIFVwbG9hZGVkIHRvOiBTVkcgUmVwbywgd3d3LnN2Z3JlcG8uY29tLCBHZW5lcmF0b3I6IFNWRyBSZXBvIE1peGVyIFRvb2xzIC0tPg0KPHN2ZyB3aWR0aD0iNzBweCIgaGVpZ2h0PSI3MHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBkPSJNMTcgOS4wMDE5NUMxOS4xNzUgOS4wMTQwNiAyMC4zNTI5IDkuMTEwNTEgMjEuMTIxMyA5Ljg3ODlDMjIgMTAuNzU3NiAyMiAxMi4xNzE4IDIyIDE1LjAwMDJWMTYuMDAwMkMyMiAxOC44Mjg2IDIyIDIwLjI0MjkgMjEuMTIxMyAyMS4xMjE1QzIwLjI0MjYgMjIuMDAwMiAxOC44Mjg0IDIyLjAwMDIgMTYgMjIuMDAwMkg4QzUuMTcxNTcgMjIuMDAwMiAzLjc1NzM2IDIyLjAwMDIgMi44Nzg2OCAyMS4xMjE1QzIgMjAuMjQyOSAyIDE4LjgyODYgMiAxNi4wMDAyTDIgMTUuMDAwMkMyIDEyLjE3MTggMiAxMC43NTc2IDIuODc4NjggOS44Nzg4OUMzLjY0NzA2IDkuMTEwNTEgNC44MjQ5NyA5LjAxNDA2IDcgOS4wMDE5NSIgc3Ryb2tlPSIjMUMyNzRDIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+DQo8cGF0aCBkPSJNMTIgMkwxMiAxNU0xMiAxNUw5IDExLjVNMTIgMTVMMTUgMTEuNSIgc3Ryb2tlPSIjMUMyNzRDIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+DQo8L3N2Zz4=);
  display: inline-block;
  width: 28px;
  height: 50px;
  position: absolute;
  right: 5px;
  top: 6px;
  background-size: contain;
  background-repeat: no-repeat;
}

/*end downlado list style-1*/

/*start downlado list style-2*/

.download-list-style2 {
  margin: 15px auto;
  padding: 0;
}

.download-list-style2 li {
  display: block;
  margin-bottom: 10px;
}

.download-list-style2 li a {
  display: block;
  margin-bottom: 10px;
  background-color: var(--red-color);
  border-radius: 10px;
  padding: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: all 0.2s;
  position: relative;
  padding-right: 40px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.download-list-style2 li a:hover {

  background-color: #ce3474;
  padding-right: 45px;

}

.download-list-style2 li a:before {
  content: '';
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmZmZmYiPgoNPGcgaWQ9IlNWR1JlcG9fYmdDYXJyaWVyIiBzdHJva2Utd2lkdGg9IjAiLz4KDTxnIGlkPSJTVkdSZXBvX3RyYWNlckNhcnJpZXIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgoNPGcgaWQ9IlNWR1JlcG9faWNvbkNhcnJpZXIiPiA8cGF0aCBkPSJNNCA0QzQgMy40NDc3MiA0LjQ0NzcyIDMgNSAzSDE0SDE0LjU4NThDMTQuODUxIDMgMTUuMTA1NCAzLjEwNTM2IDE1LjI5MjkgMy4yOTI4OUwxOS43MDcxIDcuNzA3MTFDMTkuODk0NiA3Ljg5NDY0IDIwIDguMTQ5IDIwIDguNDE0MjFWMjBDMjAgMjAuNTUyMyAxOS41NTIzIDIxIDE5IDIxSDVDNC40NDc3MiAyMSA0IDIwLjU1MjMgNCAyMFY0WiIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPiA8cGF0aCBkPSJNMjAgOEgxNVYzIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+IDxwYXRoIGQ9Ik0xMS41IDEzSDExVjE3SDExLjVDMTIuNjA0NiAxNyAxMy41IDE2LjEwNDYgMTMuNSAxNUMxMy41IDEzLjg5NTQgMTIuNjA0NiAxMyAxMS41IDEzWiIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+IDxwYXRoIGQ9Ik0xNS41IDE3VjEzTDE3LjUgMTMiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPiA8cGF0aCBkPSJNMTYgMTVIMTciIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPiA8cGF0aCBkPSJNNyAxN0w3IDE1LjVNNyAxNS41TDcgMTNMNy43NSAxM0M4LjQ0MDM2IDEzIDkgMTMuNTU5NiA5IDE0LjI1VjE0LjI1QzkgMTQuOTQwNCA4LjQ0MDM2IDE1LjUgNy43NSAxNS41SDdaIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+);
  display: inline-block;
  width: 28px;
  height: 50px;
  position: absolute;
  right: 5px;
  top: 6px;
  background-size: contain;
  background-repeat: no-repeat;
}

/*end downlado list style-2*/


.blog-post-link {
  display: block;
  padding: 30px;
  border-right: 3px solid #7c9199;
  background-color: #ccdfe6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.blog-post-link a {
  color: #2e5d6e;
  text-decoration: none;
  background: #abc3cc;
  padding: 5px 10px;
  border-radius: 1px;
  transition: all 0.2s;
}

.blog-post-link a:hover {
  color: #c1dfea;
  text-decoration: none;
  background: #72929e;
}

/*start list style-1*/
.list-item-style1 {
  padding: 0;
  margin: 15px auto;
  background: #fffff5;
  padding: 10px;
  border-radius: 10px;
  border: dashed #deede1;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.list-item-style1 li {
  position: relative;
  margin-bottom: 15px;
  list-style-type: none;
}

.list-item-style1 li:before {
  content: '';
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODBweCIgaGVpZ2h0PSI4MHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjMmE4ZDc1Ij4KDTxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+Cg08ZyBpZD0iU1ZHUmVwb190cmFjZXJDYXJyaWVyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KDTxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4gPHBhdGggZD0iTTQgMTRMOSAxOUwyMCA4TTYgOC44ODg4OUw5LjA3NjkyIDEyTDE2IDUiIHN0cm9rZT0iIzJhOGQ3NSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+);
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  background-repeat: no-repeat;
  position: relative;
  top: 4px;
  margin-left: 5px;
}

/*end list style-1*/


/*start list style-2*/

.list-item-style2 {
  padding: 0;
  margin: 15px auto;
  padding: 10px;
}

.list-item-style2 li {
  position: relative;
  margin-bottom: 4px;
  list-style-type: none;
}

.list-item-style2 li:before {
  content: '';
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODBweCIgaGVpZ2h0PSI4MHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjMmE4ZDc1Ij4KDTxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+Cg08ZyBpZD0iU1ZHUmVwb190cmFjZXJDYXJyaWVyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KDTxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4gPHBhdGggZD0iTTQgMTRMOSAxOUwyMCA4TTYgOC44ODg4OUw5LjA3NjkyIDEyTDE2IDUiIHN0cm9rZT0iIzJhOGQ3NSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+);
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  background-repeat: no-repeat;
  position: relative;
  top: 4px;
  margin-left: 5px;
}

/*end list style-2*/
.p-style1 {
  background: #5abc9c;
  padding: 15px;
  line-height: 30px;
  text-align: justify;
  color: #fff;
  border-radius: 10px;
  background: rgb(90, 188, 156);
  background: linear-gradient(106deg, rgba(90, 188, 156, 1) 0%, rgba(45, 126, 100, 1) 100%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.p-style2 {
  background: #100a1c;
  background-image: radial-gradient(50% 30% ellipse at center top, #bf0000 0%, rgba(0, 0, 0, 0) 100%), radial-gradient(60% 50% ellipse at center bottom, #ff1f00 0%, #8e0000 100%);
  background-attachment: fixed;
  color: #ffffff;
  padding: 15px;
  line-height: 30px;
  text-align: justify;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.p-animation-style1 {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding: 30px;
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
  margin: 15px auto;
  line-height: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.heading-style-1 {
  display: block;
  background: #e9ecf2;
  margin: 15px auto;
  border-radius: 10px;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  background: rgb(245, 245, 245);
  background: linear-gradient(180deg, rgb(229 235 250) 0%, rgba(45, 126, 100, 0) 100%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}




/*start table style-1*/

.table-style-1 thead tr th {
  background: #c30000;
  text-align: center;
  color: #fff;
}

.table-style-1 tbody tr td {
  background: #313131;
  text-align: center;
  color: #fff;
}

.table-style-1 tbody tr:nth-of-type(odd)>* {
  background: #545454;
  color: #fff;
}

/*end table style-1*/

/*start table style-2*/

.table-style-2 thead tr th {
  background: #c30000;
  text-align: center;
  color: #fff;
}

.table-style-2 tbody tr td {
  background: #f2f2f2;
  text-align: center;
  color: #000000;
}


/*end table style-2*/


.blockquote-style-1 {
  background-color: #ccc;
  border-radius: 10px;
  padding: 15px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.blockquote-style-1 {
  background-color: #f0faf2;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.blockquote-style-1:after {
  content: '';
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyBmaWxsPSIjNTI1MjUyIiB3aWR0aD0iODBweCIgaGVpZ2h0PSI4MHB4IiB2aWV3Qm94PSIwIDAgMzIgMzIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiM1MjUyNTIiPgoNPGcgaWQ9IlNWR1JlcG9fYmdDYXJyaWVyIiBzdHJva2Utd2lkdGg9IjAiLz4KDTxnIGlkPSJTVkdSZXBvX3RyYWNlckNhcnJpZXIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgoNPGcgaWQ9IlNWR1JlcG9faWNvbkNhcnJpZXIiPiA8dGl0bGU+cXVvdGU8L3RpdGxlPiA8cGF0aCBkPSJNOS41NjMgOC40NjlsLTAuODEzLTEuMjVjLTUuNjI1IDMuNzgxLTguNzUgOC4zNzUtOC43NSAxMi4xNTYgMCAzLjY1NiAyLjY4OCA1LjM3NSA0Ljk2OSA1LjM3NSAyLjg3NSAwIDQuOTA2LTIuNDM4IDQuOTA2LTUgMC0yLjE1Ni0xLjM3NS00LTMuMjE5LTQuNjg4LTAuNTMxLTAuMTg4LTEuMDMxLTAuMzQ0LTEuMDMxLTEuMjUgMC0xLjE1NiAwLjg0NC0yLjg3NSAzLjkzOC01LjM0NHpNMjEuOTY5IDguNDY5bC0wLjgxMy0xLjI1Yy01LjU2MyAzLjc4MS04Ljc1IDguMzc1LTguNzUgMTIuMTU2IDAgMy42NTYgMi43NSA1LjM3NSA1LjAzMSA1LjM3NSAyLjkwNiAwIDQuOTY5LTIuNDM4IDQuOTY5LTUgMC0yLjE1Ni0xLjQwNi00LTMuMzEzLTQuNjg4LTAuNTMxLTAuMTg4LTEtMC4zNDQtMS0xLjI1IDAtMS4xNTYgMC44NzUtMi44NzUgMy44NzUtNS4zNDR6Ii8+IDwvZz4KDTwvc3ZnPg==);
  display: block;
  width: 45px;
  height: 45px;
  position: absolute;
  top: -15px;
  background-size: contain;
  right: 0px;
}

.blockquote-style-1:before {
  content: '';
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyBmaWxsPSIjNTI1MjUyIiB3aWR0aD0iODBweCIgaGVpZ2h0PSI4MHB4IiB2aWV3Qm94PSIwIDAgMzIgMzIiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiM1MjUyNTIiPgoNPGcgaWQ9IlNWR1JlcG9fYmdDYXJyaWVyIiBzdHJva2Utd2lkdGg9IjAiLz4KDTxnIGlkPSJTVkdSZXBvX3RyYWNlckNhcnJpZXIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgoNPGcgaWQ9IlNWR1JlcG9faWNvbkNhcnJpZXIiPiA8dGl0bGU+cXVvdGU8L3RpdGxlPiA8cGF0aCBkPSJNOS41NjMgOC40NjlsLTAuODEzLTEuMjVjLTUuNjI1IDMuNzgxLTguNzUgOC4zNzUtOC43NSAxMi4xNTYgMCAzLjY1NiAyLjY4OCA1LjM3NSA0Ljk2OSA1LjM3NSAyLjg3NSAwIDQuOTA2LTIuNDM4IDQuOTA2LTUgMC0yLjE1Ni0xLjM3NS00LTMuMjE5LTQuNjg4LTAuNTMxLTAuMTg4LTEuMDMxLTAuMzQ0LTEuMDMxLTEuMjUgMC0xLjE1NiAwLjg0NC0yLjg3NSAzLjkzOC01LjM0NHpNMjEuOTY5IDguNDY5bC0wLjgxMy0xLjI1Yy01LjU2MyAzLjc4MS04Ljc1IDguMzc1LTguNzUgMTIuMTU2IDAgMy42NTYgMi43NSA1LjM3NSA1LjAzMSA1LjM3NSAyLjkwNiAwIDQuOTY5LTIuNDM4IDQuOTY5LTUgMC0yLjE1Ni0xLjQwNi00LTMuMzEzLTQuNjg4LTAuNTMxLTAuMTg4LTEtMC4zNDQtMS0xLjI1IDAtMS4xNTYgMC44NzUtMi44NzUgMy44NzUtNS4zNDR6Ii8+IDwvZz4KDTwvc3ZnPg==);
  display: block;
  width: 45px;
  height: 45px;
  position: absolute;
  bottom: -15px;
  background-size: contain;
  left: 0px;
}

/*start call to action style-1*/
.call-to-action-style1 {
  min-height: 100px;
  background: rgb(201, 56, 61);
  background: linear-gradient(90deg, rgba(201, 56, 61, 1) 0%, rgba(153, 0, 5, 1) 100%);
  border-radius: 10px;
  margin: 15px auto;
  padding: 15px;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.call-to-action-style1 .title {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.call-to-action-style1 .description {
  color: #f0d7d7;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

span.phone-action {
  background: #e4c805;
  padding: 6px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

span.phone-action:hover {
  background: #e49905;

}

span.phone-action a {
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  font-size: 20px;
  text-shadow: 2px 1px 9px #000000;
}

.cube {
  position: absolute;
  top: 15px;
  right: 30px;
  width: 10px;
  height: 10px;
  border: solid 1px #ff0051;
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  -webkit-animation: cube 12s ease-in forwards infinite;
  animation: cube 12s ease-in forwards infinite;
  z-index: 0;
}

.cube:nth-child(2n) {
  border-color: #f40018;
}

.cube:nth-child(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  right: 50px;
  top: 15px;
}

.cube:nth-child(3) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  right: 70px;
  top: 10px;
}

.cube:nth-child(4) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  right: 120px;
  top: 5px;
}

.cube:nth-child(5) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
  right: 30px;
  top: 5px;
}

.cube:nth-child(6) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
  right: 300px;
  top: 10px;
}

@-webkit-keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }

  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }

  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

/*end call to action style-1*/



/*start call to action style-1*/
.call-to-action-style2 {
  min-height: 100px;
  background-color: #edf2e4;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.call-to-action-style2 .form-input {

  position: relative;
}

.call-to-action-style2 .form-input .text-input {
  background-color: #fff;
  border: 0;
  border-radius: 3px;
  margin: 15px 0;
  height: 45px;
  padding: 15px;
  border: 1px solid #73a51f;
  font-size: 14px;
  display: block;
  width: 100%;
  max-width: 300px;
  margin-top: 30px;

}

.call-to-action-style2 .field-title {
  font-size: 11px;
  background: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  position: absolute;
  right: 10px;
  top: -15px;
}

.call-to-action-image-style2 {
  position: absolute;
  left: -15px;
  bottom: 0px;
  height: 270px;
}

.form-input .btn-send {
  background-color: #389e66;
  display: block;
  width: 100%;
  max-width: 300px;
  border: 0;
  color: #fff;
  padding: 5px 15px;
  border-radius: 3px;
}

.call-to-action-style2 .title {
  font-weight: bold;
  font-size: 20px;
  color: #66960f;
}

/*end call to action style-2*/


/*start call to action style-3*/
.call-to-action-style3 {
  margin: 45px auto;
}

.call-to-action-style3 .title {
  top: -21px;
  position: absolute;
  background-color: #d6efd8;
  font-weight: bolder;
  text-align: center;
  border-radius: 10px;
  padding: 7px;
  background: linear-gradient(360deg, rgb(255 255 255 / 0%) 0%, rgba(214, 239, 216, 1) 70%);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}


.call-to-action-style3 {
  background: rgb(255, 255, 255);
  background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(214, 239, 216, 1) 100%);
  position: relative;
  border-radius: 5px;
  padding: 1rem;
}


.call-to-action-style3 .social {
  list-style-type: none;
}

.call-to-action-style3 .social li {
  text-align: center;
  margin-bottom: 7px;
}


.call-to-action-style3 .social li a {
  color: #fff;
  padding: 8px;
  display: block;
  border-radius: 5px;
  background-color: #D6EFD8;
  position: relative;
  text-decoration: none;
  font-size: 12px;
}


.call-to-action-style3 .social li a::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  top: 2px;
  right: 8px;
}

.call-to-action-style3 .phone a {
  color: #000;
}

.call-to-action-style3 .phone-number {
  background-color: #D6EFD8;
  left: 60px;
  top: -12px;
  z-index: 1;
  min-width: 80px;
  text-align: left;
  padding-left: 20px !important;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 5px 10px;
}

.call-to-action-style3 .phone-number span a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}


.call-to-action-style3 .social li a.telegram {
  background: rgb(39, 148, 190);
  background: linear-gradient(90deg, rgb(120 197 227) 28%, rgb(44 154 215) 79%);
}

.call-to-action-style3 .social li a.instagram {
  background: #833ab4;
  background: linear-gradient(to right,
      #833ab4, #fd1d1d, #fcb045);
}

.call-to-action-style3 .social li a.whatsapp {
  background: rgb(41, 171, 35);
  background: linear-gradient(90deg, rgba(41, 171, 35, 1) 28%, rgba(49, 131, 50, 1) 79%);
}

.call-to-action-style3 .social li a.whatsapp::before {
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAHKUlEQVR4nO1ZeWwUZRRfPKIx8T4SNWr806gx0T+M/lWvaIwaQUIQr6hBRFQ8IMjlhaggCgohiuCBNx6J0KC0YsEWtHa7c3R3Z75v5pvZbo89elJ2d/Z+5k3odqa77R4dNCZ9yZdsZmfee7/vnd/7XK5pmqZpmjIBwAk8Idd7CFvRoWgNAtWCPFHjnKxmceFvfCZSbT8nqas8knLjLoATXf81cYRczFO2nidswMcCsa5wNDM0chQSyRRksznI5/Pmwt/4bGgkBl3hvqyfdcYEwoZ4wja5vezSf11xrzd4jkC0HTxRDVTaSKagWjJSaeiO9GUFwgyBsp0eSs//V5TnZGUOT9gRVDyTzcJUKZvLoVUyPGFHOYk9cNwUb2pqOkkg2navqifiRrKkMr1GGPaGf4NN6jZY5l0DTwvLYZGw3Py9Uf0I9oQaoNvoLfltIpkEn6on0Bput/tkZ5XX9VMFojUowR4Dd8xKecjDb9E/YCG/DOqaZ1a0nuCWQH2oEdK5tI1XLpcD1tWbFCk76Hb3nObkzjdo3aEUBqSV3EMCzOderFjx8Wtu2wJo6W+1b0g+D4GecEog7IAjluCp9jHuvFX5HORhm/5FzYqPXxuUrZCyWANloSXQnaakvEdis72qHre6jZE1YIXvTceUrzu2nhNXQzwbt7mTVw0YNQe2KHaeLRA2bA1Y3PmV/rccV77u2FosrrJZAgObJ2zELcvnVQ+Asm3BUDRj9U8n3WYyd7ISpliBss+rUt7tD1yIRcqa51sHPUXCbm65Dz7r/BakEQp/9P8Fdx6e5wiIFktgYxXHYtehKJdUDECQ1TexUI0yyeSz8EDbU0WCdnXvtu3Wh/rnjgCY27bAlmKxYvOEbaxIeQCYIRAtir3LKO2LNBUJedC9yKwB4wvZTc2zHAFRH2q0tR3YO1XUAAp+5VqfGohZFVvEv1QkAOOhFGHVdQLAAm6Jja+fBWLtfuWGsgA4SV0aDEcL9osk+0ru6u7QvpIADg387VhA9xphWzBzkrKyLIAOqtUPHjla+PDXyO8lmX8Z/KEkgIN9hx0DUG9xI2zTRUVrLAtApBqz5v4tbEdJ5q9I64uUH0gNwZy/5zsG4H314wJvjEmBskD5GCBsOJ0ZS58TFa7bDs2B4fQRG4A18nuOKV/XPBNe8r1R4I0pXSAsVj4GZJbEMj5KWOInEvAB217U3DmVheqaZ8Izwgpbf8TJaqYsAF5WbS3zix2vTCgAC5l0VLGBwL7fKQDPCisLfHOVAhAo60+lxzqIV6UNkwp52P202eAVTJ3PwFLva44AWO5ba3MhPLWVB6BoqjWIt2qflhW02r/OVtSwIZsoHtBCX3X9CLNbHy/LdzPbYQniJIiU6WUBiIr2ff/wWHA29bVUtFvbA18VZSU8Qt7950OFd16V3ikAxVZhT6gB5rUtnJDnL+H9BV6Y2kWq/1oWgEdSFwdDkUIh608NVByYpWpDLBM3d3wt2WRztTHfzpln6PG8UCYW0VHC3oyT1WVlAfB+9aoORR87WQDAC5MEcikXyearm1b82FNfxAcHAlbyqXqsXVKvKwvAdCPKuq1xsD/aXFXwPckthUA8WDGA1+V3i3g0RA7Y/F+gDM0xoyIAPGVrOi1uhCexxz3PVwXi1pbZsI5uga5Ez6TKtw3xcEvL7KLMZrViMBzNCIS95apm8sYTNWFNpyio1nSII5cfevaYVhkNYoytbfoXJtDxvo8FcZQyGUyfaqJdki6qGMAxK3wdHhgqMAoZEUdy+x2H74e7/nxwwv8/CXxtsxB6gkC0ra5qSaQ6PxIbi2Vsn50AMNla5X/bdNdRiiUM8yDjZuzMqpSXJOl0jrBULjfGDLvP46n8av86W5rFdqZD0ROcrNxb9e63S8o9NNAVs+Zqa0Fyct3UPAs+0nfadh4bNxrsNniibXHVQjjEDfcPFjj6RkhB4O2H5sKSjtfgm66foDF6EB5tX1yz8o+0PwOeIdHm86g8jjFFyvbWfAkiUNZrPdTjKQuDix/2Fg9kIW+2G8+Lqyuq2PjOs+JKcyCcy9sHxThCoZ3dBipPKT2lJuV5Wb5cpCwBNVB/ahB+72sxxyvY92AFx4XBiU3hvsgB851SFEsYps+LVNsypesnTlIXBHrCpS8ALGZGgdaTW62UzmShszeS5gkbxNhzTZVEhe0bPDJSJAivkaKDw6AEe+O8zHByrOPhp7M3kprowmMywm+CoWgai5RAtc1/UXqGI3cBeKOI1Q+r8MDwCGg9IfRJvDkJ4YwSr5hGh62tfv+5vKy+jDHToWhx7GKxFUfl8HtMhbjSmYz5DPnhOzjxFogWxpaFV9ULXE4Rp+tnYf73KjreIg6LlP3MS+yxdp92Wblv2wm5AltxgbLvRKpRPNmhhXBhMRKppoiKtpuXlRc8RLum4sasWhIkdjXnU66s+sNpmibX/5L+AahqYyCllOFHAAAAAElFTkSuQmCC");
}


.call-to-action-style3 .social li a.telegram::before {
  content: "";
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODBweCIgaGVpZ2h0PSI4MHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjZmZmZmZmIj4KDTxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+Cg08ZyBpZD0iU1ZHUmVwb190cmFjZXJDYXJyaWVyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KDTxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4gPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMS45OTcgMTJDMjEuOTk3IDE3LjUyMjggMTcuNTE5OCAyMiAxMS45OTcgMjJDNi40NzQxNSAyMiAxLjk5Njk5IDE3LjUyMjggMS45OTY5OSAxMkMxLjk5Njk5IDYuNDc3MTUgNi40NzQxNSAyIDExLjk5NyAyQzE3LjUxOTggMiAyMS45OTcgNi40NzcxNSAyMS45OTcgMTJaTTEyLjM1NTMgOS4zODI0NEMxMS4zODI3IDkuNzg3IDkuNDM4NzYgMTAuNjI0MyA2LjUyMzU2IDExLjg5NDRDNi4wNTAxOCAxMi4wODI3IDUuODAyMiAxMi4yNjY5IDUuNzc5NjIgMTIuNDQ2OUM1Ljc0MTQ3IDEyLjc1MTMgNi4xMjI1OCAxMi44NzExIDYuNjQxNTUgMTMuMDM0M0M2LjcxMjE0IDEzLjA1NjUgNi43ODUyOCAxMy4wNzk1IDYuODYwMjYgMTMuMTAzOEM3LjM3MDg1IDEzLjI2OTggOC4wNTc2NyAxMy40NjQgOC40MTQ3MiAxMy40NzE3QzguNzM4NiAxMy40Nzg3IDkuMTAwMDkgMTMuMzQ1MiA5LjQ5OTE4IDEzLjA3MTFDMTIuMjIyOSAxMS4yMzI1IDEzLjYyOSAxMC4zMDMyIDEzLjcxNzIgMTAuMjgzMUMxMy43Nzk1IDEwLjI2OSAxMy44NjU4IDEwLjI1MTIgMTMuOTI0MyAxMC4zMDMyQzEzLjk4MjggMTAuMzU1MiAxMy45NzcgMTAuNDUzNiAxMy45NzA4IDEwLjQ4QzEzLjkzMzEgMTAuNjQxIDEyLjQzNzEgMTIuMDMxOCAxMS42NjI5IDEyLjc1MTVDMTEuNDIxNiAxMi45NzU5IDExLjI1MDQgMTMuMTM1IDExLjIxNTQgMTMuMTcxNEMxMS4xMzcgMTMuMjUyOCAxMS4wNTcxIDEzLjMyOTggMTAuOTgwMyAxMy40MDM4QzEwLjUwNiAxMy44NjExIDEwLjE1MDIgMTQuMjA0IDExIDE0Ljc2NEMxMS40MDgzIDE1LjAzMzEgMTEuNzM1MSAxNS4yNTU2IDEyLjA2MTEgMTUuNDc3NkMxMi40MTcxIDE1LjcyMDEgMTIuNzcyMiAxNS45NjE5IDEzLjIzMTcgMTYuMjYzMUMxMy4zNDg3IDE2LjMzOTggMTMuNDYwNSAxNi40MTk1IDEzLjU2OTQgMTYuNDk3MUMxMy45ODM3IDE2Ljc5MjUgMTQuMzU1OSAxNy4wNTc5IDE0LjgxNTggMTcuMDE1NUMxNS4wODMgMTYuOTkxIDE1LjM1OSAxNi43Mzk3IDE1LjQ5OTIgMTUuOTkwM0MxNS44MzA1IDE0LjIxOTMgMTYuNDgxNyAxMC4zODIgMTYuNjMyMiA4LjgwMDgxQzE2LjY0NTQgOC42NjIyOCAxNi42Mjg4IDguNDg0OTggMTYuNjE1NCA4LjQwNzE1QzE2LjYwMjEgOC4zMjkzMiAxNi41NzQzIDguMjE4NDIgMTYuNDczMSA4LjEzNjMzQzE2LjM1MzMgOC4wMzkxMSAxNi4xNjgzIDguMDE4NjEgMTYuMDg1NiA4LjAyQzE1LjcwOTUgOC4wMjY3IDE1LjEzMjQgOC4yMjczNSAxMi4zNTUzIDkuMzgyNDRaIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4gPC9nPgoNPC9zdmc+)
}

.call-to-action-style3 .social li a.instagram::before {
  content: "";
  width: 25px;
  height: 25px;
  top: 3px;
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KDTwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODBweCIgaGVpZ2h0PSI4MHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGlkPSJMYXllcl8xIiBkYXRhLW5hbWU9IkxheWVyIDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0iI2ZmZmZmZiIgc3Ryb2tlPSIjZmZmZmZmIj4KDTxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+Cg08ZyBpZD0iU1ZHUmVwb190cmFjZXJDYXJyaWVyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KDTxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4KDTxkZWZzPgoNPHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7c3Ryb2tlOiNmZmZmZmY7c3Ryb2tlLW1pdGVybGltaXQ6MTA7c3Ryb2tlLXdpZHRoOjEuOTFweDt9LmNscy0ye2ZpbGw6I2ZmZmZmZjt9PC9zdHlsZT4KDTwvZGVmcz4KDTxyZWN0IGNsYXNzPSJjbHMtMSIgeD0iMS41IiB5PSIxLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIyMSIgcng9IjMuODIiLz4KDTxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMTIiIGN5PSIxMiIgcj0iNC43NyIvPgoNPGNpcmNsZSBjbGFzcz0iY2xzLTIiIGN4PSIxOC4yIiBjeT0iNS44IiByPSIxLjQzIi8+Cg08L2c+Cg08L3N2Zz4=)
}


.call-to-action-style3 .phone-icon {
  top: -25px;
  left: 15px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}


.phone-icon {
  animation: scale 5s infinite;
  background-color: #D6EFD8;
  z-index: 2;
}

.phone-icon svg {
  animation: shake 5s infinite;
  fill: #508D4E;
  width: 1.5rem;
  height: 1.5rem;
}

@keyframes scale {
  0% {
    background-color: #D6EFD8;
    transform: scale(1);
  }

  20% {
    background-color: #D6EFD8;
    transform: scale(1.2);
  }

  30% {
    background-color: #D6EFD8;
    transform: scale(1);
  }
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  1% {
    transform: translateX(-1px);
  }

  2% {
    transform: translatex(1px);
  }

  3% {
    transform: translateX(-1px);
  }

  4% {
    transform: translatex(1px);
  }

  5% {
    transform: translateX(-1px);
  }

  6% {
    transform: translatex(1px);
  }

  7% {
    transform: translateX(-1px);
  }

  8% {
    transform: translatex(1px);
  }

  9% {
    transform: translateX(-1px);
  }

  10% {
    transform: translatex(1px);
  }

  11% {
    transform: translateX(-1px);
  }

  12% {
    transform: translatex(1px);
  }

  13% {
    transform: translateX(-1px);
  }

  14% {
    transform: translatex(1px);
  }

  15% {
    transform: translateX(-1px);
  }

  16% {
    transform: translatex(1px);
  }

  17% {
    transform: translateX(-1px);
  }

  18% {
    transform: translatex(1px);
  }

  19% {
    transform: translateX(-1px);
  }

  20% {
    transform: translateX(0);
  }
}

/*end call to action style-3*/


@media only screen and (max-width: 991px) {
  span.phone-action {
    margin: 15px;
    position: static;
    width: 90%;
    display: block;
    text-align: center;
  }

  .call-to-action-style1 {
    text-align: center;
  }


  .call-to-action-style3 .title {
    right: 0;
    font-size: 12px;
    top: -14px;
  }

  .call-to-action-style3 .phone .phone-icon {
    left: 5px;
    top: -30px;
  }

  .call-to-action-style3 .phone .phone-number {
    left: 48px;
    top: -18px;
  }

  .call-to-action-image-style2 {

    display: none;
  }
}

/* HELPER */



/*S FROM NEW */
.text-content-2 li {
  list-style-type: disc;
}


.section {
  padding: 40px 0;
}

.l-transitions-middle {
  transition: all .3s !important;
  -webkit-transition: all .3s !important;
  -moz-transition: all .3s !important;
  -ms-transition: all .3s !important;
  -o-transition: all .3s !important;
}

.l-p-3 {
  padding: 15px !important;
}

.l-position-relative {
  position: relative !important;
}

.sassaht-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}


.sassaht-read-more::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -4px;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/images/arrow-left-svgrepo-com.svg);
}

.sassaht-read-more::after {
  content: "";
  position: absolute;
  width: 13px;
  transition: all .3s;
  height: 20px;
  z-index: 1;
  background-color: #76009c;
  border-radius: 3px;
}

.sassaht-box::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}

.sassaht-box::before,
.sassaht-box::after {
  content: '';
  display: block;
  position: absolute;
  box-sizing: border-box;
  border-style: solid;
  width: 2em;
  height: 2em;
  transition: all 0.8s ease-in-out;
  border-color: var(--blue1-color);
  z-index: -1;
}

.sassaht-box:hover p {
  color: white !important;
}

.sassaht-box:hover a {
  color: white !important;
}


.sassaht-box:hover {
  border-radius: 9px;
  background-color: #0d092c;
}

.sassaht-box:hover::before {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
}

.sassaht-box:hover::after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 9px;
}

.l-mr-2 {
  margin-right: 20px !important;
}

.l-mb-2 {
  margin-bottom: 20px !important;
}

.l-mt-2 {
  margin-top: 20px !important;
}

.l-position-relative {
  position: relative !important;
}




.navbar-IELTS {
  position: sticky;
  top: -1px;
  background: var(--blue2-color);
  z-index: 10000 !important;

}

.navbar-IELTS ul {
  display: flex;
  overflow-x: scroll;
  justify-content: center;
  list-style-type: none;
  direction: rtl;
  margin: 0;
  padding: 0 !important;
  padding-bottom: 1px !important;
  justify-content: start;
  align-items: center;
  background-color: var(--blue2-color);
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  justify-content: center;
}



.navbar-IELTS ul li {
  font-weight: bold;
  position: relative;
  padding: 20px 0;
}

.navbar-IELTS ul li::before {
  content: "";
  background-color: var(--blue1-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
}

.navbar-IELTS ul li:hover::before {
  opacity: 1;
  visibility: visible;
}

.navbar-IELTS ul li a {
  color: var(--white-color);
  text-decoration: none;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: normal;
  display: block;
}

/* width */
.navbar-IELTS ul::-webkit-scrollbar {
  height: 3px;
  position: relative;
  padding-top: 10px;
}

/* Track */
.navbar-IELTS ul::-webkit-scrollbar-track {
  background: #e5e5e5;

}

/* Handle */
.navbar-IELTS ul::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #797979;
}

/* Handle on hover */
.navbar-IELTS ul::-webkit-scrollbar-thumb:hover {
  background: #000;
}

@media screen and (max-width:768px) {
  .navbar-IELTS ul li {
    padding: 0px 0;
  }

  .sticky {
    position: fixed !important;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    top: 78px !important;
  }

  .pakap-2-title {
    font-size: 22px !important;
  }

  .pakap-2-list-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: var(--darker-color);
    text-align: center;
    line-height: 1.8;
  }

  .pakap-2-list-text {

    text-align: justify;
  }

  .litleland-title {
    line-height: 1.8;
    font-size: 17px;
  }

  .builder-section .builder-title {
    color: #0D1E50;
    font-size: 26px !important;
    line-height: 1.9;
    font-size: 1.3rem !important;
  }

  .landings-text-editor :is(h1, h2, h3, h4, h5, h6) {
    line-height: 1.8;
  }

  .nexus-text {
    font-size: 14px;
    line-height: 1.9;
    color: #545a5b;
    text-align: justify;
  }

  .bootsland-box-content p {
    font-size: 14px;
  }

  .sassaht-content p {
    font-size: 14px;
  }

  .intro-slider-landing-slider2 .item p {
    font-size: 14px;
  }
}

@media (min-width:0) and (max-width:576px) {
  .navbar-IELTS ul li {
    flex: 0 0 30%;
  }


}

@media (min-width:576px) and (max-width:768px) {
  .navbar-IELTS ul li {
    flex: 0 0 25%;
  }

}

@media (min-width:768px) and (max-width:992px) {
  .navbar-IELTS ul li {
    flex: 0 0 20%;
  }
}

@media (min-width:992px) and (max-width:1200px) {
  .navbar-IELTS ul li {
    flex: 0 0 15%;
  }
}

@media (min-width:1200px) and (max-width:1400px) {
  .navbar-IELTS ul li {
    flex: 0 0 15%;
  }


}


@media (min-width:1400px) {
  .navbar-IELTS ul {
    justify-content: center;

  }

  .navbar-IELTS ul li {
    flex: 0 0 10%;
  }
}

/*F FROM NEW */

@media screen and (max-width:768px) {
  .float-call-button {
    background-color: var(--blue2-color);
    bottom: 16px;
    z-index: 998;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    gap: 8px;
    padding: 10px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
}

/* about-us style */
#homePage__header {
  padding: 240px 0;
  position: relative;
  background-image: url('/portal/nd/images/Mohajerat/صفحه اول سایت.jpg  ');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
}

#homePage__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.486);
  z-index: 1;
}

.homePage__headerDiv {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes rotateAndFade {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: rotate(360deg);
    opacity: 0;
  }
}

.homePage__header-starImg {
  position: absolute;
  top: 9%;
  right: 0%;
  z-index: 99;
  width: 87px;
  animation: rotateAndFade 4s linear infinite;
}

.homePage__header-h1 {
  font-size: 2.5rem;
}

.homePage__header-p2 {
  font-size: 1rem;
  line-height: 1.9;
}

.homePage__headerDiv-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.homePage__headerDiv-buttons .btn11 {
  background-color: var(--blue1-color);
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 160px;
  padding: 10px 0px;
  border: 2px solid var(--blue1-color);
  border-radius: 5px;
  gap: 10px;
  transition: background-color 0.3s;
}

.homePage__headerDiv-buttons .btn22 {
  background-color: rgb(255, 255, 255);
  color: var(--blue1-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 160px;
  padding: 10px 0px;
  border: 2px solid var(--blue1-color);
  border-radius: 5px;
  gap: 10px;
  transition: background-color 0.3s;
}

.homePage__headerDiv-buttons .btn11 {
  background-color: var(--blue1-color);
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 160px;
  padding: 10px 0px;
  border: 2px solid var(--blue1-color);
  border-radius: 5px;
  gap: 10px;
  transition: background-color 0.3s;
}

.homePage__headerDiv-buttons .btn11:hover {
  background-color: rgb(255, 255, 255);
  color: var(--blue1-color);
}

.homePage__headerDiv-buttons .btn11:hover svg {
  fill: var(--blue1-color);
}

.homePage__headerDiv-buttons .btn11:hover svg path {
  fill: var(--blue1-color);
}

.homePage__headerDiv-buttons .btn22:hover {
  background-color: var(--blue1-color);
  color: #fff;
}

.homePage__headerDiv-buttons .btn22:hover svg {
  fill: #fff;
}

.homePage__headerDiv-buttons .btn22:hover svg path {
  fill: #fff;
}

@media screen and (max-width: 768px) {
  .homePage__header-h1 {
    font-size: 1.5rem;
  }

  .homePage__header-starImg {
    top: 6%;
    right: -1%;
    width: 55px;
  }

  .homePage__header-p2 {
    font-size: 1rem;
    margin-top: 20px;
  }

  #homePage__header {
    padding: 150px 0;
  }

  .cta {
    display: none;
  }

  #title-4 {
    font-size: 20px;
  }

  .builder-title {
    font-size: 20px !important;
  }
}


.container22 {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--blue2-color);
  padding: 10px 0;
  white-space: nowrap;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrolling-wrapper {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.scrolling-text {
  display: flex;
  color: white;
  font-size: 20px;
  padding: 0 40px;
  gap: 50px;
}


.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.iconA img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--darker-color)
}

.feature-text {
  font-size: 14px;
  color: var(--dark-color);
  line-height: 1.8;
  text-align: justify;
}

.feature-box.middle {
  margin-top: -35px;
}

@media (max-width: 768px) {
  .feature-box {
    margin-bottom: 20px;
  }

  .feature-box.middle {
    margin-top: 0px;
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: start !important;
    justify-content: center !important;
  }

  .intro-slider-landing-title-Mhdi {
    font-size: 20px !important;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
  }

  .partition-slider-title {
    font-size: 22px !important;
    line-height: 45px;
    text-align: center;
  }

  tbody,
  td,
  tfoot,
  th,
  thead,
  tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    font-size: 13px;
  }

  .bootsland-text {
    text-align: justify;
    color: #545a5b;
    line-height: 1.8;
  }

  .navbar-IELTS ul {
    justify-content: start;
  }




}


.imageModal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90%;
}

.imageclos {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.about-us .sassaht-box {
  min-height: 318px !important;
}

.landing-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-image: url("/portal/nd/images/Mohajerat/20.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 550px;
}


.landing-status__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  width: 300px;
  height: 300px;
}

.landing-status__item svg {
  fill: var(--blue1-color);
}

.landing-status__count {
  font-weight: bold;
  font-size: 2rem;
  margin-top: 0.5rem;
}

.landing-status__text {
  font-weight: bold;
}

@media screen and (max-width:570px) {
  .landing-status {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-image: none;
    background-color: var(--blue1-color);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 550px;
  }

  .landing-status__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    width: 215px;
    height: 215px;
  }
}





.blog-post-link-extra {
  padding: 7px !important;
  font-size: 14px;
  margin-bottom: 18px;
}

@media screen and (max-width:992px) {
  .blog-post-link-extra {
    font-size: 13px;
    flex-direction: column;
    padding: 0px !important;
    margin-bottom: 15px !important;
  }

}

@media screen and (max-width:768px) {
  .blog-post-link-extra-inner {
    gap: 3px !important;
    font-size: 11px;
    padding-right: 2px;
    padding-left: 2px;
  }

  .blog-post-link-extra {
    font-size: 13px;
    flex-direction: column;
    padding-right: 2px !important;
    padding-left: 2px !important;

  }

}