:root {
  --primary: #185fc7;
  --primary-dark: #094091;
  --secondry: #ffa600;
  --black: #222;
  --white: #fff;
}

/*::selection {background: #050607; color: var(--white); text-shadow: none;}*/
::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  background-color: #dedede;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: var(--primary);
}

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: 700;
  color: var(--black);
}

p {
  display: block;
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type="submit"] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
}

p,
a {
  font-size: 15px;
  color: var(--black);
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

a {
  font-family: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -70px;
}

.slick-dots > li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots > li button {
  padding: 0;
  font-size: 0;
  width: 10px;
  height: 10px;
  background-color: #e24659;
  border-radius: 25px;
  cursor: pointer;
  border: none;
}

.slick-arrow {
  font-size: 0;
  cursor: pointer;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

textarea,
select,
input[type],
textarea,
select,
button {
}

::-webkit-input-placeholder {
  color: #3b3b3b;
}

::-moz-placeholder {
  color: #3b3b3b;
}

:-ms-input-placeholder {
  color: #3b3b3b;
}

:-moz-placeholder {
  color: #3b3b3b;
}

/* Custom Radio Button */
.customradio {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  font-weight: 400;
  color: var(--white);
}

.customradio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 11px;
  width: 11px;
  border-radius: 3px;
  background-color: #e0e0e0;
}

.customradio input:checked ~ .checkmark {
  background: #ff6101;
}

/* Hamburger Menu */
.menu-bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 8;
  display: none;
}

.menu-bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary);
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}

.menu-bar span:nth-child(1) {
  top: 0;
}

.menu-bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.menu-bar span:nth-child(3) {
  top: 16px;
}

.menu-bar.open span {
  background: var(--white);
}

.menu-bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}

.menu-bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/* Global Css */
.over-hidden {
  overflow: hidden;
}

.overlay::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay {
  display: none;
}

/* Dropdown CSS*/
ul.dropdown {
  position: absolute;
  width: 200px;
  left: 0;
  margin: auto;
  background: var(--white);
  padding: 10px 15px;
  text-align: left;
  border-radius: 2px;
  box-shadow: 0 0 10px 3px #00000014;
}

ul.dropdown li a::before {
  display: none;
}

@keyframes btotreverse {
  0% {
    top: 75px;
    opacity: 1;
  }

  100% {
    top: 115px;
    opacity: 0;
  }
}

.dropdown-nav:hover ul.dropdown {
  z-index: 9;
}

@keyframes btot {
  0% {
    top: 115px;
    opacity: 0;
  }

  100% {
    top: 24px;
    opacity: 1;
  }
}

ul.dropdown li {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px;
}

ul.dropdown li a {
  font-size: 14px;
  text-transform: capitalize;
  color: #000 !important;
  display: block;
  text-align: left;
  font-weight: 500;
}

ul.dropdown li a:hover {
  color: rgba(0, 0, 0, 0.5) !important;
}

.dropdown-nav {
  overflow: hidden;
  vertical-align: top;
}

.dropdown-nav:hover {
  overflow: visible;
}

/* General CSS  */

.element {
  position: absolute;
}

.dotted-shape {
  position: absolute;
  background-image: url(../images/mix/dotted-shape.webp);
  background-repeat: repeat;
}

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

.p-relative {
  position: relative !important;
}

.spacing__x {
  padding: 80px 0;
}

.p-40 {
  padding: 40px;
}

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

.bg-detail-1 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-detail-2 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

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

.bg-color-1 {
  background-color: #f9f9f9;
}

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

.color-white {
  color: var(--white);
}

.bb {
  border-bottom: 1px solid #eeeeee;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0;
}

ul li {
  list-style: none;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
}

ul.inline-block > li {
  display: inline-block;
  margin-right: 5px;
}

ul.inline-block > li:last-child {
  margin-right: 0;
}

.dtbl {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.dtbl .dtd {
  display: table-cell;
  vertical-align: middle;
}

.headingstyle1 {
  margin-bottom: 45px;
}

.headingstyle1 h4 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}

.headingstyle1 h6 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 400;
}

.headingstyle1 h3 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
}

.headingstyle1 p {
  margin-bottom: 0;
}

.headingstyle1.style-2 h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.headingstyle1.style-3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.headingstyle1.style-3 h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-style-1 {
  position: relative;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
  padding: 11px 35px;
  border-radius: 4px;
}

.btn-style-1:hover {
  color: var(--white);
  background-color: #246ad1;
}

.btn-style-1 i {
  margin-right: 5px;
}

.btn-style-2 {
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--white);
  border: 1px solid var(--white);
  padding: 11px 35px;
  border-radius: 4px;
}

.btn-style-2:hover {
  color: var(--white);
  background-color: transparent;
}

.btn-style-2 i {
  margin-right: 5px;
}

.vh-1000 {
  position: relative;
}

/* General CSS End */

.socialIcons {
  display: flex;
  gap: 6px;
}

.header-top {
  background-color: var(--primary-dark);
  padding: 8px 0;
}

.header-top ul > li {
  margin-right: 15px;
}

.header-top ul > li:last-child {
  margin-right: 0;
}

.header-top ul > li a {
  color: var(--white);
}

header.sticky-header .header-top {
  display: none;
}

header.sticky-header .header-bottom {
  box-shadow: 0 0 15px 5px #d9d9d9;
}

.header-bottom {
  background-color: var(--white);
}

.header-bottom > .container {
  position: relative;
}

.header-bottom > .container .position-unset {
  position: unset;
}

.main-navigation > ul {
  font-size: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: end;
}

.main-navigation > ul > li {
  position: relative;
}

.main-navigation > ul > li > a {
  color: #111111;
  text-transform: uppercase;
  position: relative;
  padding: 35px 0;
}

.main-navigation > ul > li:last-child {
  margin-right: 0;
}

.main-navigation > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 0;
  background-color: var(--secondry);
  width: 0;
  height: 2px;
  transition: all 500ms ease-in-out;
}

.main-navigation > ul > li > a:hover {
  color: var(--secondry);
}

.main-navigation > ul > li > a:hover::before {
  width: 100%;
}

.dropdown-nav:hover {
  overflow: visible;
}

.main-navigation > ul > li .dropdown-menu {
  margin: 0;
  min-width: 13rem;
  border: 0;
  border-radius: 0;
  background: #ededed;
}

.main-navigation > ul > li:hover .dropdown-menu {
  display: block;
}

.main-navigation > ul > li .dropdown-menu a {
  color: #000;
  padding: 7px 1rem;
  display: block;
}

.main-navigation > ul > li .dropdown-menu a:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.contact-info ul {
}

.contact-info ul li {
  margin-right: 5px;
}

.contact-info ul li:last-child {
  margin-right: 0;
}

.contact-info ul li a {
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
  padding: 8px 17px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
}

.contact-info ul li a i {
  margin-right: 5px;
}

.contact-info ul li a:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

.banner-home {
  position: relative;
  min-height: 450px;
  min-height: calc(100% - 14.3125rem);
  display: flex;
  align-items: center;
}

.banner-home .custom-submit-style {
  background: var(--black);
}

.banner-home .custom-submit-style:hover,
.banner-home .custom-submit-style:focus {
  background: var(--white);
  color: var(--black);
}

.banner-content h2 {
  color: var(--white);
}

.banner-content p {
  color: var(--white);
  font-size: 19px;
  font-weight: 300;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}

.banner-content p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--secondry);
  width: 76px;
  height: 6px;
  z-index: 1;
}

.banner-content p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  background-color: #636160;
  width: 100%;
  height: 1px;
}

.banner-content ul li {
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 13px;
}

.banner-content ul li i {
  color: var(--secondry);
  font-size: 14px;
  margin-right: 5px;
}

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

.banner-inner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.banner-inner .banner-inner-content h2 {
  color: var(--white);
  margin: 0;
  font-size: 36px;
}
/* Begin: LP Header */
.lp-header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
  padding: 20px 0;
}
.lp-header .toll-free {
  text-align: right;
}
.lp-header .toll-free a {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.lp-header .toll-free a span {
  color: var(--secondary-color);
  font-weight: 500;
}
/* END: LP Header */
/* Begin: Canada Banner CSS */
.banner-style-1 {
  position: relative;
  min-height: 780px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 6rem;
}
.banner-style-1 h3 {
  font-weight: 100;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}
.banner-style-1 h1 {
  margin-top: 12px;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
.banner-style-1 p {
  background: transparent;
  border-radius: 0;
  padding: 0;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 100;
}
.banner-style-1 .form-group i {
  display: none;
}
.banner-style-1 .form-group .custom-input-style,
.banner-style-1 .form-group .custom-select-style {
  border: 0 !important;
  border-radius: 0 !important;
  padding: 10px 15px;
  height: 46px;
}
.banner-style-1 .form-group .intl-tel-input.separate-dial-code .selected-flag {
  background: none;
  border-radius: 0;
}
/* END: Canada Banner CSS*/
.about-company {
  padding-bottom: 110px;
}

.about-company .img-area {
  position: relative;
}

.about-company .img-area > a {
  position: absolute;
  right: 17%;
  top: 13%;
}

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

.stats-box {
  position: relative;
  text-align: center;
  top: -40px;
}

.stats-box .main-round {
  border-radius: 100px;
  width: 119px;
  height: 119px;
  margin: auto auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease-in-out;
}

.stats-box .main-round span {
  background-color: var(--black);
  width: 93px;
  height: 93px;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-dark);
}

.stats-box .main-round span i {
  background: url(../images/sprite.webp) no-repeat;
  background-position: 0 0;
  width: 55px;
  height: 39px;
  display: inline-block;
  filter: brightness(20);
}

.stats-box .main-round span i.ic2 {
  background-position: -66px 0;
  width: 48px;
  height: 48px;
}

.stats-box .main-round span i.ic3 {
  background-position: -125px 0;
  width: 47px;
  height: 43px;
}

.stats-box .main-round span i.ic4 {
  background-position: -183px 0;
  width: 38px;
  height: 48px;
}

.stats-box h5 {
  color: var(--white);
  font-size: 50px;
  line-height: 1;
  margin: 0;
}

.stats-box p {
  margin: 0;
  color: var(--white);
  font-size: 18px;
}

.stats-box:hover .main-round {
  background-color: var(--primary-dark);
}

.stats-box:hover .main-round > span {
  box-shadow: 0 0 20px 0 rgb(0 0 0 / 30%);
}

.subject-list {
  text-align: center;
}

.subject-list ul li {
  margin-right: 15px;
  margin-bottom: 20px;
}

.subject-list ul li a {
  display: block;
  border: 1px solid #898989;
  font-size: 15px;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 4px;
  text-transform: capitalize;
}

.subject-list ul li a:hover {
  background-color: var(--secondry);
  border-color: var(--secondry);
}

.style-box-1 {
}

.style-box-1 h4 {
  color: var(--white);
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
}

.style-box-1 h5 {
  font-size: 26px;
  font-weight: 600;
}

.style-box-1 p {
}

.style-box-1 ul li {
  color: var(--white);
  margin-bottom: 22.5px;
  position: relative;
  padding-left: 20px;
}

.style-box-1 ul li:last-child {
  margin-bottom: 0;
}

.style-box-1 ul li i {
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 5px;
}

.style-box-1.bg-2 {
  background-color: #8fbcff;
  padding: 20px 30px;
}

.style-box-1.bg-3 {
  background-color: #09409152;
  padding: 33px 30px;
}

.cta-1 {
  padding: 50px 0;
}

.cta-1 .text-area h3 {
  margin-bottom: 0;
  color: var(--white);
}

.cta-1 .text-area h3 span {
  display: inline-block;
  padding: 1px 8px;
  line-height: normal;
}

.cta-1 .button-area {
  text-align: right;
}

.cta-1 .button-area ul li {
  margin-right: 15px;
}

.cta-1 .button-area ul li:last-child {
  margin-right: 0;
}

.process-box {
  position: relative;
  padding: 60px 0 0 20px;
  margin-bottom: 20px;
}

.process-box .count {
  font-size: 99px;
  color: rgb(9 64 145 / 10%);
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
}

.process-box h5 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.process-box p {
  margin: 0;
  line-height: 1.4;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--secondry);
}

.process-box .link-area {
  background: url(../images/sprite.webp) no-repeat;
  background-position: 0 -55px;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 25%;
}

.client-review {
  position: relative;
  min-height: 518px;
  font-size: 0;
}

.client-review::before {
  content: "";
  background: url(../images/bg/bg-testimonial.webp) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.client-review::after {
  content: "";
  position: absolute;
  right: 0;
  top: -26px;
  width: 50%;
  height: 105%;
  background-color: var(--primary-dark);
  border-radius: 12px 0 0 0;
  z-index: -1;
}

.client-review .headingstyle1 {
  margin-bottom: 34px;
}

.client-review .text-area h4 {
  color: var(--white);
  font-size: 34px;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.client-review .text-area h4 span {
  display: block;
  font-size: 50px;
  font-weight: 700;
  color: var(--secondry);
}

.client-review .text-area p {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 25px;
}

.client-review .testimonial-slide {
  position: relative;
}

.client-review .testimonial-slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  z-index: 1;
  background: -moz-linear-gradient(
    top,
    rgba(125, 185, 232, 0) 0%,
    rgba(5, 177, 105, 1) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(125, 185, 232, 0) 0%,
    rgba(5, 177, 105, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(125, 185, 232, 0) 0%,
    var(--primary-dark) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007db9e8', endColorstr='var(--primary)', GradientType=0);
}

.client-review .testimonial-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: 7px;
  margin-bottom: 25px;
  position: relative;
}

.client-review .testimonial-box p {
  font-size: 16px;
}

.client-review .testimonial-box p img {
  display: inline-block;
}

.client-review .testimonial-box .d-flex {
  justify-content: space-between;
}

.client-review .testimonial-box h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  font-style: italic;
  font-family: sans-serif;
}

.client-review .testimonial-box ul li i {
  color: #ffa200;
  font-size: 14px;
}

.testimonial-slider .slick-dots {
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex !important;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slider .slick-dots li {
  font-size: 0;
  width: 16px;
  height: 16px;
  border-radius: 25px;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.testimonial-slider .slick-dots li button {
  background-color: var(--white);
  opacity: 0;
}

.testimonial-slider .slick-dots li.slick-active button {
  opacity: 1;
}

.top-list {
  position: relative;
  -webkit-box-shadow: inset 0px 0px 20px -4px rgba(204, 204, 204, 1);
  -moz-box-shadow: inset 0px 0px 20px -4px rgba(204, 204, 204, 1);
  box-shadow: inset 0px 0px 20px -2px rgb(204 204 204);
}

.top-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  background-color: var(--primary-dark);
}

.top-list .heading {
  height: 100%;
  padding: 25px 0;
  border-radius: 0 60px 60px 0;
  background-color: var(--primary-dark);
}

.top-list .heading h5 {
  color: var(--white);
  font-weight: 400;
  margin: 0;
}

.institution-slider-box {
  padding: 15px 0;
}

.institution-slider li img {
  margin: auto;
}

.institution-slider .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 0;
  z-index: 1;
  background: url(../images/sprite.webp) no-repeat;
  background-position: -57px -63px;
  width: 13px;
  height: 24px;
  border: none;
}

.institution-slider .slick-prev {
  left: -20px;
}

.institution-slider .slick-next {
  transform: rotate(180deg);
  right: -20px;
}

.institution-slider .slick-arrow:hover {
  filter: grayscale(100%);
}

.banner-form {
  padding: 20px 20px;
  border-radius: 7px;
  background: var(--secondry);
}

.banner-form h5 {
  position: relative;
  font-size: 28px;
  margin: 0;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.banner-form h5 span {
  animation: lighing ease infinite 2s;
}

@keyframes lighing {
  0% {
    color: #ff0000;
  }

  50% {
    color: var(--black);
  }

  50% {
    color: #ff0000;
  }
}

.banner-form h5::before,
.banner-form h5::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 1px;
  background-color: var(--primary);
  bottom: 15px;
  left: 10px;
}

.banner-form h5::after {
  right: 10px;
  left: auto;
}

.banner-form .form-group {
  position: relative;
}

.banner-form .form-group i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  display: flex;
  align-items: center;
  color: #adadad;
}

.banner-form .form-group .sprite {
  right: 70px;
  left: auto;
}

.custom-input-style {
  width: 100%;
  background: var(--white);
  border: 1px solid #f1f1f1;
  font-size: 14px;
  border-radius: 4px;
  height: 49px;
  padding: 0 10px 0 40px;
  box-shadow: 0px 0px 10px #0000001a;
}

.custom-select-style {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--white);
  font-size: 14px;
  border-radius: 4px;
  height: 49px;
  padding: 0 10px 0 40px;
}

.custom-submit-style {
  width: 100%;
  height: 50px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  background: rgb(66, 66, 66);
  background-color: var(--primary);
}

.custom-textarea-style {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--white);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px 10px 20px;
  resize: none;
}

.sprite {
  background: url(../images/sprite.webp) no-repeat;
  background-position: -1px -103px;
  width: 19px;
  height: 16px;
}

footer .footer-top {
  padding: 15px 0;
}

footer .footer-nav {
  text-align: right;
}

footer .footer-nav ul li {
  padding: 0 10px 0 25px;
  margin: 0 10px;
  position: relative;
}

footer .footer-nav ul li + li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 1px;
  height: 55%;
  background-color: #d3d3d3;
}

footer .footer-nav ul li a {
  font-size: 14px;
  text-transform: uppercase;
}

footer .footer-nav ul li a:hover {
  color: var(--primary);
}

footer .footer-middle {
  background-color: #f9f9f9;
  padding: 15px 0;
}

footer .disclaimer {
  text-align: center;
}

footer .disclaimer h6,
footer .disclaimer p {
  font-size: 14px;
  margin: 0;
  line-height: 1.2;
  margin-bottom: 5px;
}

footer .footer-bottom {
  background-color: #212121;
  padding: 10px 0;
}

footer .footer-bottom p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
}

footer .footer-bottom ul li {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--white);
}

footer .footer-bottom ul li:last-child {
  border-right: 0;
}

footer .footer-bottom ul li a {
  color: var(--white);
  font-size: 14px;
}

footer .footer-bottom ul li a:hover {
  color: var(--primary);
}

.style-box-2 {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.style-box-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 99%,
    rgba(0, 0, 0, 0.4) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 99%,
    rgba(0, 0, 0, 0.4) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgb(0 0 0 / 79%) 99%,
    rgba(0, 0, 0, 0.4) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);
}

.style-box-2 h5 {
  position: absolute;
  color: var(--white);
  bottom: 20px;
  left: 30px;
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  padding-left: 50px;
}

.style-box-2 h5::before {
  content: "";
  position: absolute;
  left: 0;
  width: 43px;
  height: 4px;
  background-color: var(--secondry);
  top: 0;
  bottom: 0;
  margin: auto;
}

.style-box-2 .hover-box {
  position: absolute;
  width: 97%;
  height: 96%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #094091bd;
  padding: 50px 40px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  transform: translateY(-120%);
}

.style-box-2 .hover-box i {
  background: url(../images/sprite.webp) no-repeat;
  background-position: -11px -131px;
  width: 130px;
  height: 130px;
}

.style-box-2 .hover-box i.ic2 {
  background-position: -11px -270px;
}

.style-box-2 .hover-box h6 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

.style-box-2 .hover-box p {
  color: var(--white);
  margin: 0;
}

.style-box-2:hover > img {
  filter: blur(5px);
}

.style-box-2:hover .hover-box {
  transform: translateY(0);
  opacity: 1;
}

.style-box-2:hover h5 {
  opacity: 0;
}

.contact-options h6 {
  margin-bottom: 15px;
  position: relative;
}

.contact-options h6::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 1px;
  background-color: #cccccc;
}

.contact-options ul li {
  display: block;
  margin-bottom: 5px;
}

.contact-options ul li a {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

.contact-options ul li a i {
  margin-right: 5px;
}

.img-box {
  margin-bottom: 30px;
}

.contact-us .banner-form {
  right: auto;
  top: auto;
  padding: 20px 30px;
  border-radius: 4px;
  padding-top: 30px;
}

.contact-us .form-group .sprite {
  right: 25px;
}

.contact-us .custom-submit-style {
  text-align: left;
  padding: 0 0 0 20px;
}

.contact-us .banner-form h5 {
  text-align: left;
}

.contact-us .banner-form h5::before,
.contact-us .banner-form h5::after {
  display: none;
}

.list-style-1 {
  margin-bottom: 20px;
}

.list-style-1 > li {
  margin-bottom: 2px;
}

.list-style-1 > li i {
  color: var(--primary);
  margin-right: 2px;
}

.subject-box {
  text-align: center;
  background-color: var(--white);
  border-radius: 4px;
  padding: 40px 30px;
  transition: all 0.4s ease-in-out;
  margin-bottom: 20px;
}

.subject-box > span {
  width: 98px;
  height: 98px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondry);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.subject-box > span i {
  background: url(../images/sprite.webp) no-repeat;
  background-position: -111px -60px;
  width: 50px;
  height: 43px;
}

.subject-box > span i.ic2 {
  background-position: -168px -55px;
  width: 50px;
  height: 50px;
}

.subject-box > span i.ic3 {
  background-position: -225px -57px;
  width: 50px;
  height: 50px;
}

.subject-box > span i.ic4 {
  background-position: -282px -60px;
  width: 50px;
  height: 38px;
}

.subject-box h6 {
  font-size: 20px;
  margin-top: 15px;
}

.subject-box p {
  margin-bottom: 20px;
}

.subject-box:hover {
  box-shadow: 0 0 20px 1px rgb(204 204 204 / 40%);
}

.subject-box:hover > span {
  background-color: var(--secondry);
  box-shadow: 0 0 10px 1px rgb(248 179 24 / 82%);
}

.subject-box:hover > span i {
  filter: brightness(0) invert(1);
}

/* Tab Style  */
.tab > ul {
  font-size: 0;
  padding: 11px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.tab > ul li {
  display: inline-block;
}

.tab > ul li:last-child {
  margin-bottom: 0;
}

.tab > ul li a {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  padding: 5px 50px;
  border-radius: 4px;
}

.tab > ul li.active a {
  color: var(--secondry);
  background-color: var(--white);
}

.subject-list {
  font-size: 0;
}

.subject-list > li {
  display: block;
  margin-bottom: 20px;
}

.subject-list > li a {
  display: block;
  background-color: #f9f9f9;
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 16px 15px;
  border-radius: 6px;
}

.sub-img-box {
  position: relative;
  padding-right: 8px;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.sub-img-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 97%;
  height: 97%;
  border-radius: 4px;
  background-color: var(--primary);
  z-index: -1;
}

.client-review.for-small-device {
  display: none;
}

.blog-title .inner-wrap {
  position: relative;
  padding: 40px 0 !important;
}

.blog-title .inner-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  left: 0;
  top: 0;
  border-radius: 8px;
}

.nav-submenu {
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  transform: initial;
  text-transform: initial;
  letter-spacing: initial;
  z-index: 2222;
  padding: 30px;
  position: absolute;
  top: 100%;
  transition: all 0.1s linear;
  border-top: 6px solid var(--primary-dark);
  -webkit-box-shadow: 0px 5px 16px -4px rgb(0 0 0 / 50%);
  -moz-box-shadow: 0px 5px 16px -4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 16px -4px rgb(0 0 0 / 50%);
}

.main-navigation ul li.dropdown-nav:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
}

.nav-submenu.style-2 {
  width: 60%;
}

.main-navigation ul li.dropdown-nav:hover > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid var(--primary-dark);
}

.menu-tab-content h5 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}

.menu-tab-content p {
  font-size: 14px;
}

.menu-tab-content .btn-style-1 {
  padding: 8px 25px;
  font-size: 14px;
  border-radius: 2px;
}

.menu-tab-content .btn-style-1 > i {
  margin: 0 0 0 5px;
}

.menu-tab-content h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.menu-tab-content > ul li {
}

.menu-tab-content > ul li a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.menu-tab-content > ul li a > i {
  color: var(--secondry);
  margin-right: 3px;
}

.menu-tab-content > ul li > a:hover {
  color: var(--primary);
}

.thankyouBanner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
}

.thank-hdr {
  background-color: var(--white);
  padding: 50px 50px;
}

.thank-hdr h1 {
  font-size: 54px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 57px;
  text-align: center;
  color: #29bb89;
  margin-bottom: 13px;
}

.thank-hdr p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
  letter-spacing: normal;
  text-align: center;
  color: var(--black);
  padding: 0;
  margin-bottom: 10px;
}

.thank-hdr a {
  color: var(--black);
  text-decoration: underline;
  font-style: italic;
  font-size: 16px;
}

.errorDisplay {
  text-align: center;
  width: 100%;
  color: red;
  font-size: 12px;
}

.logo a img {
  width: 100%;
}

.btn-style-1 {
  background: var(--secondry);
  border-color: #fff;
}

.btn-style-icon {
  color: #ffffff;
  background-color: transparent;
  border-color: #fff;
}

.resultSec img {
  margin: 0.6rem 0;
}

.resultSec .container-fluid {
  padding: 0 12rem;
}

.allResults {
  display: flex;
  flex-flow: row wrap;
  justify-content: start;
  gap: 1.5rem 1rem;
  text-align: center;
  margin-bottom: 3rem;
}

.allResults .item {
  flex: 0 0 23.5%;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: 6px;
  padding-bottom: 10px;
  box-shadow: 0 0 20px #0000;
  transition: ease all 0.5s;
}

.allResults .item h4 {
  margin: 0;
  font-size: 1.25rem;
  padding-top: 10px;
  border-top: 1px solid #ccc;
}

.allResults .item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #0002;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .banner-form {
    right: 4%;
    top: 60px;
  }

  .institution-slider .slick-next,
  .testimonial-slider .slick-dots {
    display: none !important;
  }

  .allResults .item {
    flex: 0 0 32%;
  }
}

@media (max-width: 1200px) {
  .menu-bar {
    display: block;
    top: 30px;
  }

  .menu-wrapper.open {
    display: block;
    left: 0;
  }

  .menu-wrapper {
    position: fixed;
    padding: 15px;
    left: -210%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #000000;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 3;
    width: 100vw;
    overflow-y: scroll;
  }

  .menu-wrapper > ul > li {
    display: block;
    margin-bottom: 10px;
  }

  .menu-wrapper > ul > li > a {
    color: var(--white);
    padding: 0;
  }

  header .header-top .text-right {
    text-align: center !important;
  }

  header .contact-info {
    display: none;
  }

  .spacing__x {
    padding: 60px 0;
  }

  .cta-1 {
    background-size: cover;
  }

  .main-navigation > ul {
    display: block;
    padding: 2rem;
  }

  .main-navigation > ul li {
    padding: 1rem;
  }

  .main-navigation > ul li a {
    font-size: 1.3rem;
    font-weight: 500;
  }

  .banner-form h5::before,
  .banner-form h5::after {
    display: none;
  }

  .banner-form h5 {
    font-size: 22px;
  }

  .banner-form button {
    font-size: 22px;
  }

  .banner-home .custom-submit-style {
    font-size: 17px;
  }

  .header-bottom {
    padding: 0.7rem 0;
  }

  .header-bottom {
  }

  .menu-bar {
    top: 0;
  }

  .top-list .heading h5 {
    font-size: 1rem;
  }

  .institution-slider li img {
    width: 100px;
  }

  .resultSec .container-fluid {
    padding: 0 1rem;
  }

  .allResults .item {
    flex: 0 0 48.5%;
  }
}

@media (max-width: 825px) {
  p,
  a,
  ul li {
    font-size: 14px;
  }

  .spacing__x {
    padding: 40px 0;
  }

  .dsp-none {
    display: none !important;
  }

  .btn-style-1 {
    font-size: 14px;
    padding: 10px 25px;
  }

  .btn-style-2 {
    font-size: 14px;
    padding: 10px 25px;
  }

  .headingstyle1 {
    margin-bottom: 20px;
  }

  .headingstyle1 h4 {
    font-size: 24px;
  }

  .headingstyle1 h3,
  .headingstyle1.style-2 h3,
  .headingstyle1.style-3 h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .headingstyle1 h6 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .header-top ul > li a {
    font-size: 12px;
  }

  .header-bottom {
    padding: 10px 0;
  }

  .mt-0 {
    margin-top: 119px;
  }

  .banner-home,
  .banner-inner {
    height: 100vh;
    min-height: auto;
  }

  .banner-content h2 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .banner-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .banner-inner .banner-inner-content h2 {
    font-size: 26px;
  }

  .banner-form {
    position: relative;
    left: auto;
    right: 0;
    top: auto;
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 1rem;
  }

  .top-list::before {
    width: 0;
  }

  .top-list {
    text-align: center;
    webkit-box-shadow: inset 0px 0px 80px -2px rgb(231 231 231);
    -moz-box-shadow: inset 0px 0px 80px -2px rgb(231 231 231);
    box-shadow: inset 0px 0px 80px -2px rgb(231 231 231);
  }

  .top-list .heading {
    background: transparent;
  }

  .top-list .heading h5 {
    color: var(--black);
    font-size: 22px;
  }

  .institution-slider-box {
    padding: 15px 0 35px 0;
  }

  .cta-1 .text-area h3 {
    margin-bottom: 20px;
  }

  .cta-1 .button-area {
    text-align: left;
  }

  .cta-1 .button-area ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .process-box .link-area {
    transform: rotate(90deg);
  }

  .client-review.for-small-device,
  .client-review.for-small-device .text-area {
    display: block;
  }

  .client-review.for-small-device::before {
    width: 100%;
  }

  .client-review .text-area {
    display: none;
  }

  .client-review::before {
    width: 0%;
  }

  .client-review::after {
    width: 100%;
    top: 0;
  }

  .client-review {
    min-height: auto;
    padding: 40px 0;
  }

  .client-review .text-area h4 {
    font-size: 24px;
  }

  .client-review .text-area h4 span {
    font-size: 30px;
  }

  .client-review .text-area p {
    font-size: 18px;
  }

  .client-review .text-area {
    margin-bottom: 100px;
  }

  .client-review .headingstyle1 {
    margin-bottom: 10px;
  }

  .client-review .testimonial-box {
    margin-bottom: 0;
  }

  .client-review .testimonial-slide::before {
    height: 0;
  }

  .client-review .pt-40 {
    padding: 0 !important;
  }

  footer .footer-top {
    display: none;
  }

  footer .footer-bottom {
    text-align: center;
  }

  footer .disclaimer h6,
  footer .disclaimer p {
    font-size: 12px;
  }

  footer .footer-bottom .text-right {
    text-align: center !important;
  }

  .e-online {
    padding-bottom: 0;
  }

  .style-box-2 .hover-box i {
    display: none;
  }

  .style-box-2 .hover-box h6 {
    margin: 0 0 5px 0;
    font-size: 18px;
  }

  .style-box-2 .hover-box {
    padding: 15px;
  }

  .style-box-2 .hover-box p {
    font-size: 13px;
  }

  .tab > ul li {
    display: block;
    text-align: center;
  }

  .nav-submenu {
    opacity: 1;
    visibility: visible;
    position: relative;
    padding: 0;
    top: auto;
    border: none;
    box-shadow: none;
    transition: none;
    z-index: auto;
    background: transparent;
    left: auto;
    right: auto;
    width: 100% !important;
  }

  .menu-tab-content.mob-display-none {
    display: none;
  }

  .menu-tab-content {
    padding-left: 20px;
  }

  .menu-tab-content > ul {
    margin-top: 10px;
  }

  .menu-tab-content h6 {
    display: none;
  }

  .menu-tab-content > ul li a {
    color: var(--white);
    font-family: inherit;
  }

  .main-navigation ul li.dropdown-nav:hover > a::after {
    display: none;
  }

  .cta-2 {
    display: none;
  }

  .mob-pb-0 {
    padding-bottom: 0 !important;
  }

  .banner-form h5 {
    font-size: 22px;
  }

  .main-navigation > ul li {
    padding: 10px;
  }

  .main-navigation > ul li a {
    font-size: 1rem;
  }

  .resultSec img {
    margin: 0.5rem 0;
  }
}

@media (max-width: 767px) {
  .header-bottom {
    padding: 6px 0;
  }

  .custom-submit-style {
    font-size: 18px;
  }

  .header-top .socialIcons,
  .banner-home .banner-form h5 {
    display: none;
  }

  header .logo img {
    width: 8rem;
    color: #094091;
  }

  .banner-home {
    padding: 2rem 0;
    background-image: linear-gradient(
      to left bottom,
      #094091,
      #0148a9,
      #0051c1,
      #0059d9,
      #0061f2
    ) !important;
    height: 100vh;
  }

  .banner-content p {
    padding-bottom: 0;
    font-weight: 500;
    font-size: 15px;
  }

  .banner-content p:before,
  .banner-content p:after {
    content: none;
  }

  .banner-home .banner-form {
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    background: transparent;
  }

  .banner-content ul li {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
  }

  .banner-home .banner-form .form-group {
    margin-bottom: 0.5rem;
  }

  .banner-form .form-group .custom-input-style {
    height: 3rem;
    border: 0;
  }

  .thankyouBanner {
    background: linear-gradient(45deg, #185fc7, #094091) !important;
  }

  .thank-hdr {
    padding: 1rem;
  }

  .thank-hdr h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .resultSec img {
    height: auto;
    object-fit: cover;
  }

  .allResults {
    gap: 1rem;
  }

  .allResults .item h4 {
    font-size: 14px;
    padding-top: 5px;
  }

  .allResults .item {
    padding-bottom: 5px;
  }
  .fancybox-navigation .fancybox-button--arrow_right {
    right: 35%;
    top: 87%;
  }
  .fancybox-navigation .fancybox-button--arrow_left {
    left: 35%;
    top: 87%;
  }
  .fancybox-infobar {
    bottom: 1.25rem;
  }
  .content-style ul {
    border-bottom: 0;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .content-style ul li {
    color: #fff;
  }
}

@media (max-width: 575px) {
  .allResults .item {
    flex: 0 0 100%;
  }
}
.iti {
  width: 100% !important;
}
.form-error {
  border: 2px solid red !important;
}
.form-error .vscomp-value {
  color: red !important;
}

.form-error::placeholder {
  color: red !important;
}
