<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;display=swap');

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

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


:root {
  --sky-blue: #05d2f3;
  --dark-blue: #110053;
  --green: #64FFD9;
  --black: #111;
  --white: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.wrapper {
  width: 100%;
  max-width: 1240px;
  margin: 0px auto;
}

.headermain {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 15px 40px;
}

.navgiation ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.navgiation ul a {
  color: var(--black);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  padding-bottom: 5px;
  position: relative;
}


.navgiation ul a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  background-color: var(--dark-blue);
}

.navgiation ul a:hover:after {
  width: 100%;
}

.navgiation ul a:hover {
  color: var(--sky-blue);
}

.head_top {
  padding: 0px 40px;
  background-color: #4d6289;
}

.headtopR {
  display: flex;
  justify-content: end;
}

.headtopR a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--dark-blue);
  width: max-content;
  padding: 8px 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  min-width: 280px;
  cursor: pointer;
  border-radius: 0px;
  position: relative;
}

.headtopR a img {
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}

.headtopR a:hover img{
    filter: none;
  position: relative;
  z-index: 10;
}

.headtopR a::after{
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  transition: all 1s;
  background-color: #d7f7e9;
}

.headtopR a:hover:after{
  width: 100%;
  left: 0;
}

.head_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headtopL ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.headtopL ul a {
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.headtopL ul a svg {
  width: 25px;
  transition: all 0.3s;
}

.headtopL ul a:hover g {
  fill: var(--dark-blue) !important;
  stroke: var(--dark-blue) !important;
}

.headtopL ul a:hover {
  color: var(--dark-blue);
}

.sitelogo img {
  max-width: 220px;
}

.Bannerslider .swiper-slide {
  min-height: calc(100vh - 100px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.slide1 {
  background-image: url('../images/refer-friend.jpg');
}

.slide2 {
  background-image: url('../images/Melbourne-slide.webp');
}


.bannerslidecontent p {
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
}

.Bannerslider .swiper-slide::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.slide2::after {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.bannerslidecontent h2 {
  font-size: 56px;
  color: var(--white);
  font-weight: 300;
  text-transform: uppercase;
  transform: translateY(50px);
  transition: all 1s;
  transition-delay: 0.2s;
  opacity: 0.8;
}

.bannerslidecontent p{
  transform: translateY(50px);
  transition: all 1s;
  transition-delay: 0.3s;
  opacity: 0.8;
} 

.bannerslidecontent a{
  transform: translateY(50px);
  transition: all 1s !important;
  transition-delay: 0.4s;
}


.swiper-slide.swiper-slide-active .bannerslidecontent h2,
.swiper-slide.swiper-slide-active .bannerslidecontent a,
.swiper-slide.swiper-slide-active .bannerslidecontent p{
  transform: translateY(0px);
  opacity: 1;
}


.global_txt h2 span {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
}

.fwBold {
  font-weight: 700;
}

.bannerslidecontent h1 .fwBold {
  display: block;
}

.bannerslidecontent {
  position: relative;
  z-index: 10;
}

.bannerslidecontent a {
  margin-top: 20px;
  padding: 10px 30px;
  background-color: var(--sky-blue);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.3s;
  width: max-content;
  min-width: 220px;
  justify-content: center;
}

.bannerslidecontent a:hover {
  gap: 15px;
}

.ACEA_Global {
  padding: 100px 0px;
}

.Global_banner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.global_img img {
  height: 600px;
  border-radius: 10px;
  width: calc(100% - 40px);
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}

.global_img {
  position: relative;
}

.global_img,
.global_txt {
  width: 50%;
}

.global_txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.global_txt h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}

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

.global_txt span {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.global_txt ul {
  list-style: disc;
  column-count: 2;
  padding-left: 15px;
}

.global_txt ul li {
  margin-bottom: 10px;
}

.servicesSec {
  padding: 100px 0px;
  padding-top: 80px;
  background-color: var(--dark-blue);
}

.servicesRow {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
}

.servicesCol {
  width: calc(33.3% - 16px);
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding-bottom: 120px;
}

.servicesCol h2 {
  font-size: 120px;
  line-height: 1;
  color: var(--dark-blue);
  position: absolute;
  right: -15px;
  bottom: -25px;
  opacity: 0.08;
}

.servicesCol h3 {
  font-size: 20px;
  text-transform: uppercase;
}

.servheading h1 {
  margin-bottom: 30px;
  text-align: center;
  color: var(--green);
  font-size: 50px;
  line-height: 56px;
  font-weight: 400;
  text-transform: uppercase;
}

.fwBoldhead {
  font-weight: 700;
}

.servicesCol a {
  margin-top: auto;
  background-color: var(--dark-blue);
  padding: 12px 25px;
  border-radius: 100px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  width: max-content;
  position: absolute;
  bottom: -20px;
  left: 20px;
  border: 2px solid #64ffd9;
  transition: all 0.3s !important;
}

.global_txt ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
}

.servicesCol a:hover {
  background-color: var(--green);
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}


.servicesCol img {
  width: 45px;
}

.whychoseus {
  padding: 00px 0px;
  position: relative;
  margin-top: -310px;
}

.fourkimg {
  position: absolute;
  right: 200px;
  top: 0;
}

.fourkimg img {
  width: 250px;
}

.whychoseus .servheading h1 {
  color: var(--dark-blue);
}

.global2 {
  height: 220px;
  width: 300px;
  position: absolute;
  right: 0;
  bottom: -30px;
}

.global2 img {
  width: 100%;
  height: 100%;
}


/* counter */
.counter {
  width: 190px;
  padding: 7px 0;
  border-radius: 12px;
  position: relative;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}

.counter:before,
.counter:after {
  content: "";
  background: var(--dark-blue);
  width: 100%;
  height: 70px;
  border-radius: 20px 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.counter:after {
  top: auto;
  bottom: 0;
}

.counter .counter-icon {
  color: #fff;
  background: #11005347;
  font-size: 30px;
  line-height: 50px;
  height: 50px;
  width: 80px;
  border-radius: 0 0 15px 15px;
  margin: 0 auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter h3 {
  color: var(--dark-blue);
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  padding: 30px 10px;
}

.counter h3:before {
  content: "";
  background: var(--sky-blue);
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border-radius: 12px;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.counter .counter-value {
  color: #fff;
}

.counter_value_main {
  color: #fff;
  background-color: #11005347;
  font-size: 36px;
  font-weight: 600;
  line-height: 55px;
  height: 55px;
  width: max-content;
  min-width: 150px;
  display: block;
  border-radius: 10px 10px 0 0;
  margin: 0 auto;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

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

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

.whychooserow .counter {
  width: calc(25% - 16px);
  display: flex;
  flex-direction: column;
}

.counter-icon img {
  filter: brightness(0) invert(1);
  width: 42px;
}

/* counter */


.ourpartners{
  padding: 80px 0px;
  padding-top: 300px;
  background-color: var(--dark-blue);
  /* background-image: url(../images/Section-BG.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -220px;
}

.ourpartners .servheading h1 {
  color: var(--white);
}

.partners_slider,
.partners_slider2 {
  padding-bottom: 20px !important;
  border-radius: 10px;
}

.partners_slider .swiper-slide img,
.partners_slider2 .swiper-slide img {
  width: 100%;
  height: 160px;
  background-color: #fff;
  object-fit: contain;
}

.partners_slider2 .swiper-slide img {
  height: 120px;
}

.partners-pagination {
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.partners-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  opacity: 1 !important;
  background-color: var(--white);
  margin: 0px !important;
  transition: all 0.3s;
  border: 2px solid transparent;

}

.partners-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid var(--white);
  border: 2px solid var(--dark-blue);
}

.Bannerslider .swiper-pagination {
  display: none;
}

.partners_slider .swiper-slide,
.partners_slider .swiper-slide img {
  border-radius: 10px;
}

.partners_slider2 .swiper-slide,
.partners_slider2 .swiper-slide img {
  border-radius: 10px;
}


.Got_a_question {
  padding: 80px 0px;
}

.guestion_box {
  display: flex;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.question_box_img {
  width: 50%;
  height: 600px;
}

.question_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.question_box_form {
  background-color: var(--white);
  padding: 50px 30px;
  width: 50%;
}

.formhead h2 {
  font-size: 36px;
  line-height: 46px;
  color: #9b5647;
  font-weight: 400;
  text-transform: uppercase;
}

.form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input_row {
  width: 100%;
  display: flex;
  gap: 10px;
}

.input_col {
  width: 100%;
}

.input_col input,
.input_col textarea {
  padding: 14px 15px;
    min-height: 48px;
    border: 1px solid #b7b7b7;
    font-size: 14px;
    line-height: 18px;
    color: #222;
    font-family: "Montserrat", sans-serif;
    width: 100%;
}

.input_col textarea {
  height: 150px;
  resize: none;
}

.input_col input:focus,
.input_col input:focus {
  border-color: #9b5647 !important;
  outline: 0px !important;
}

.input_col input::placeholder,
.input_col textarea::placeholder {
  opacity: 1;
}

.input_col button {
  padding: 14px 45px;
  background-color: #9b5647;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: 0px !important;
  border-radius: 100px;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 20px;
}

.input_col button:hover {
  background-color: var(--dark-blue);
}

.Reviews {
  min-height: 500px;
  background-image: url(../images/bg1-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 0px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Reviews::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.review_main {
  position: relative;
  z-index: 10;
  text-align: center;
}

.review_main h2 {
  color: #fff;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
}

.site_testimonial {
  padding: 80px 0px;
}

.review_main img {
  width: 100%;
  max-width: 300px;
  border: 3px solid #fff;
  outline: 5px solid #fff;
  outline-offset: 4px;
}





.choose_row{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 30px;
  background-color: #fff;
  border-bottom: 10px solid #316cca;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.05);
}

.col-md{
  width: calc(25% - 15px);
  background-color: #fff;
}

.countermd{
color: var(--main-color);
text-align: center;
padding: 35px 20px;
margin: 0 auto;
position: relative;
border-right: 1px solid #ddd;
}


.col-md:nth-child(4) .countermd,
.col-md:last-child .countermd{
border: 0px !important;
}




.countermd h3{
font-size: 16px;
line-height: 1.4;
font-weight: 600;
margin: 10px 0px 0px 0px;
color: #4D4D6A;
font-family: "Montserrat", sans-serif;
text-align: center;
}

.countermd .counter_value_main{
font-size: 60px !important;
font-weight: 600;
line-height: 60px;
display: block;
background-color: transparent;
color: #21235D !important;
text-align: center;
}

.countermd .counter_value_main span{
color: #21235D !important;
}

.fourkimg{
display: none;
}



/* testimonial */
.sec-title {
  position: relative;
}

.sec-title h2 {
  font-size: 60px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--dark-blue);
}

.testimonial-area {
  background: var(--white);
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.testimonial-area .owl-carousel {
  overflow: hidden;
  padding: 0 20px;
  margin: 0px -40px;
  padding-right: 40px;
}

.testimonial-area .owl-stage-outer {
  padding: 30px 50px;
  margin-left: -34px;
  width: calc(100% + 100px);
}

.single-testimonial {
  border: 7px solid var(--dark-blue);
  text-align: center;
  border-radius: 45px;
  position: relative;
  z-index: 2;
}

.headtopR a:hover span {
    color: var(--dark-blue);
    position: relative;
    z-index: 10;
    transition: all 0.3s;
  }

.single-testimonial p {
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 24px;
  padding: 50px;
  padding-bottom: 30px;
  position: relative;
  z-index: 3;
}

.round {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.round-1::before {
  content: "";
  position: absolute;
  left: 88px;
  top: -7px;
  width: 80px;
  height: 7px;
  background: var(--green);
  border-radius: 30px;
}

.round-1::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 62px;
  width: 7px;
  height: 80px;
  background: var(--green);
  border-radius: 30px;
}

.round-2::before {
  content: "";
  position: absolute;
  right: 87px;
  bottom: -7px;
  width: 80px;
  height: 7px;
  background: var(--green);
  border-radius: 30px;
  z-index: 1;
}

.round-2::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 62px;
  width: 7px;
  height: 80px;
  background: var(--green);
  border-radius: 30px;
  z-index: 1;
}

.client-video {
  padding-right: 15px;
}

.client-info {
  position: relative;
  z-index: 3;
}

.client-info a {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  font-size: 22px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-bottom: 30px;
}

.client-info h6 {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-blue);
}

.client-info span {
  display: inline-block;
  color: var(--dark-blue);
  font-size: 14px;
}

.sec-title.white-title h2 {
  color: var(--dark-blue);
}

.owl-dots button {
  background: var(--dark-blue) !important;
  width: 10px;
  height: 10px;
  border-radius: 26px;
  margin: 0 5px;
  transition: 0.3s;
}

.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dots button.active {
  width: 30px;
}

/* testimonial */

.Recognized-sec {
  padding: 80px 0px;
  background-color: #eee;
  background-image: url(../images/pattern-1.png);
}

.Recognized-sec .servheading h1 {
  color: var(--dark-blue);
}

.sitefooter {
  padding: 50px 0px;
  padding-bottom: 0px;
}

.footer_top_row {
  display: flex;
  gap: 50px;
}

.footertop_col-sm {
  width: 30%;
}

.footertop_col-sm p {
  font-size: 15px;
  line-height: 24px;
  margin-top: 20px;
}

.footertop_col-lg {
  width: 70%;
}

.footertop_col-lg {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  width: 100%;
}

.footer-links h4 {
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  transition: all 0.3s;
}

.footer-links ul li a:hover {
  color: var(--sky-blue);
}

.offices_row {
  display: flex;
  gap: 50px;
}

.office_heading {
  padding-bottom: 15px;
  border-bottom: 4px solid #eee;
  margin-bottom: 30px;
}


.office_heading h2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
}

.office_heading h2 img {
  width: 100%;
  max-width: 100px;
  height: 50px;
  object-fit: cover;
}

.footer_btm {
  margin-top: 50px;
  padding-bottom: 50px;
}

.office-sm-col {
  width: 40%;
}

.office-lg-col {
  width: 60%;
}

.branch_locs {
  display: flex;
  gap: 30px;
}

.branch-loc p {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 15px;
}

.branch-loc p a {
  font-size: 16px;
  color: var(--black);
  line-height: 26px;
  font-weight: 500;
  transition: all 0.3s;
}

.branch-loc p a:hover {
  color: var(--green);
}

.smbranchead h6 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
}

.smbranchead h6 svg {
  width: 30px;
}

.footer-strip {
  background-color: #4d6289
  ;
  padding: 25px 20px;
}

.footstrip {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.footstrip p,
.footstrip span {
  color: #fff;
  font-size: 16px;
}


/* About */

.About_Banner {
  background-color: var(--dark-blue);
  padding: 100px 30px;
}

.aboutbanner_content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.aboutban_img {
  width: 40%;
}

.aboutban_img img {
  width: 100%;
}

.aboutban_txt {
  width: 60%;
}

.aboutban_txt h2 {
  font-size: 52px;
  line-break: 60px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--white);
}

.aboutban_txt p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--white);
  text-align: justify;
}

.aboutban_txt p a {
  color: var(--sky-blue);
  font-weight: 700;
  transition: all 0.3;
}

.aboutban_txt p a:hover {
  color: var(--green);
}

.our_goals {
  padding: 80px 0px;
}

.goals_main {
  padding: 20px;
  background-color: #eee;
  border-radius: 10px;
}

.goals_main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.goal_img {
  width: 50%;
}

.goal_txt {
  width: 50%;
}

.goal_txt h4 {
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 10px;
  color: var(--dark-blue);
  font-weight: 400;
  text-transform: uppercase;
}

.goal_txt h6 {
  font-size: 24px;
  line-height: 32px;
  color: var(--dark-blue);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.goal_txt p {
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
  text-align: justify;
}


.goal_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.goals_main {
  margin-bottom: 80px;
}


.goals_main:last-child {
  margin: 0px !important;
}

.our_director {
  padding: 100px 0px;
  background-color: var(--dark-blue);
}

.director_box {
  margin-bottom: 50px;
  display: flex;
  gap: 50px;
}

.director_image {
  width: 50%;
}

.director_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 15px 15px 0px #05d3f376;
}

.director_text {
  width: 50%;
  position: relative;
  padding-top: 150px;
}

.director_box:last-child {
  margin: 0px !important;
}

.director_text h2 {
  color: var(--sky-blue);
  font-size: 60px;
  line-height: 70px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 50px;
  text-align: end;
  right: -200px;
  position: absolute;
  z-index: 1;
  top: 14px;
}

.director_text h5 {
  color: var(--white);
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.director_text ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.director_text ul li {
  font-size: 15px;
  line-height: 24px;
  color: var(--white);
  font-weight: 400;
}


.director_box2 .director_text {
  padding-top: 50px;
}

.director_box2 .director_image img {
  height: 600px;
  object-position: top center;
}

.director_two {
  padding: 100px 0px;
}

.director_box2 h5 {
  color: var(--black);
}

.director_box2 ul li {
  color: var(--black);
}

.innerfooter {
  background-color: #eee;
}

.innerfooter .office_heading {
  border-color: #110053;
}

.memberships {
  background-color: var(--dark-blue);
  padding: 100px 0px;
}

.members_row {
  display: flex;
  gap: 100px;
  position: relative;
}

.members_row::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--green);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.partners_col {
  width: calc(50% - 50px);
}

.representing {
  padding: 100px 0px;
}

/* About */

.counter::before {
  display: none;
}

.memberships .servheading h1 {
  margin-bottom: 20px;
  text-align: left;
  color: var(--green);
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  text-transform: uppercase;
}

.represting_colleges h2 {
  font-size: 50px;
  line-height: 60px;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.represting_colleges img {
  width: 100%;
  display: block;
}

.director_achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.achieve_row {
  background-color: #eee;
  padding: 10px;
  padding-right: 30px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: calc(50% - 15px);
}

.achieve_txt h4 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  color: var(--dark-blue);
  text-transform: uppercase;
}

.achieve_img {
  width: 150px;
  height: 100px;
}

.achieve_img img {
  width: 130px;
  height: 100px;
  min-width: 130px;
  object-fit: cover;
}

.education_banner {
  min-height: 500px;
  background-color: var(--dark-blue);
  display: flex;
  align-items: center;
  position: relative;
}

.eduban_content h2 {
  color: var(--white);
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.courses_heading h2 {
  font-size: 50px;
  line-height: 60px;
  color: var(--dark-blue);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.trade_main .goal_txt h5 {
  font-size: 20px;
  color: var(--dark-blue);
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.experiences {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.experiences li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--black);
}

.experiences li svg {
  width: 20px;
  min-width: 20px;
}

.trade_main .goal_txt p {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.course_listing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course_listing li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

.trade_reverse {
  flex-direction: row-reverse;
}

.vetcourses {
  background-color: var(--dark-blue);
}

.vetcourses .courses_heading h2 {
  color: var(--green);
}

.education_banner::after {
  content: "";
  position: absolute;
  background-image: url(../images/education-banner.jpeg);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.1;
  background-position: center;
  background-size: contain;
}

.eduban_content {
  position: relative;
  z-index: 1;
}




/* Visa */

.Visamain {
  padding: 100px 0px;
}

.visamainhead {
  text-align: center;
  max-width: 1000px;
  margin: 0px auto;
  margin-bottom: 60px;
}

.visamainhead h2 {
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

.visamainhead p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.visarowssechead h5 {
  font-size: 26px;
  line-height: 34px;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.visarowssecRow {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.visarowssecCol {
  width: 50%;
  background-color: #eee;
  padding: 30px 20px;
  border-radius: 8px;
}


.visarowssecCol h3 {
  color: var(--dark-blue);
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.visarowssecCol p {
  text-align: center;
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  max-width: 450px;
  margin: 0px auto;
  margin-bottom: 40px;
}

.visarowssecCol ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visarowssecCol ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--black);
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

.visarowssecCol ul li span {
  margin-top: -4px;
}

.checklist_sec {
  padding: 60px 0px;
}

.checklist_txt {
  padding: 20px;
  background-color: var(--dark-blue);
  border-radius: 8px;
}

.checklist_txt h3 {
  text-align: center;
  font-size: 36px;
  line-height: 46px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.checklist_txt ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.checklist_txt ul li {
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.checklist_txt ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist_txt ul li svg {
  width: 26px;
}


.price_head h3 {
  text-align: center;
  font-size: 46px;
  line-height: 46px;
  color: var(--dark-blue);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.price_row {
  display: flex;
  gap: 20px;
}

.price_box {
  margin-top: 50px;
  padding: 30px 20px;
  background-color: var(--green);
  width: calc(25% - 10px);
  border-radius: 4px;
}

.price_box .price {
  font-size: 52px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-top: -62px;
}

.price-text h5 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
}

.processing-time {
  margin-top: 50px;
}

.processing-time h5 {
  font-size: 20px;
  line-height: 24px;
  color: var(--dark-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.processing-time p {
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
  font-weight: 500;
}

.visitor_visa {
  padding: 100px 0px;
  background-color: var(--dark-blue);
}

.visitor_main .visamainhead h2 {
  color: var(--sky-blue);
}

.visitor_main .visamainhead p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.visitor_main .visamainhead p:nth-child(2) {
  margin-bottom: 15px;
}

.visitor_main .visamainhead ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 5px 10px;
  justify-content: center;
}

.visitor_main .visamainhead ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
}


.visitor_row {
  margin-top: 40px;
  display: flex;
  gap: 30px;
}

.visitor_col {
  width: calc(50% - 15px);
  background-color: #eee;
  padding: 30px 20px;
  border-radius: 8px;
}


.visitor_col .price_box {
  width: 100%;
}

.visitor_col h3 {
  color: var(--dark-blue);
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.visitor_col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.visitor_col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--black);
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
}

.visitor_col ul li span {
  margin-top: -6px;
}

.visitor_main .processing-time h5 {
  color: var(--sky-blue);
}

.visitor_main .processing-time p {
  color: var(--white);
}


.price_row3 .price_box {
  width: calc(33.3% - 10px);
}

.pricing_sec2 {
  margin-top: 80px;
}

.visarowssecRow2 .visarowssecCol {
  width: 33.3%;
}

.skilled_migration {
  padding: 100px 0px;
  background-color: var(--dark-blue);
}

.skilled_head h2 {
  font-size: 42px;
  line-height: 56px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--sky-blue);
}

.skilled_head ul {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--green);
}

.skilled_head ul li {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--green);
}

.Listno {
  width: 40%;
  min-width: 40%;
}

.listcontent {
  width: calc(100% - 20px - 40%);
}

.Sub_list {
  gap: 5px !important;
  margin-left: 5px;
  padding: 0px !important;
  border: 0px !important;
  margin-top: 10px !important;
  list-style: disc #fff !important;
}

.Sub_list li {
  border: 0px !important;
  padding: 0px !important;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.listcontent p {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}

.Listno h5 {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: uppercase;
}

.skilled_head2 .listcontent {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.skilled_head2 .listcontent p svg {
  width: 12px;
}

.skilled_head2 .listcontent p svg path {
  fill: var(--green);
}

.skilled_head2 {
  margin-top: 80px;
}

.skilled_head2 h4 {
  color: var(--white);
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing_sec_bg {
  background-color: #eee;
  padding: 20px;
  border-radius: 8px;
}

.skilled_main .processing-time h5,
.Visamain_blue .processing-time h5 {
  color: var(--sky-blue);
}

.skilled_main .processing-time p,
.Visamain_blue .processing-time p {
  color: #fff;
}

.visarowssecCol_center ul li {
  text-align: center;
  line-height: 26px;
}

.Visamain_blue {
  background-color: var(--dark-blue);
}

.Visamain_blue .visamainhead h2 {
  color: var(--sky-blue);
}

.listcontent_full {
  width: 100%;
}

.SKILL_P {
  margin: 20px 0px;
  font-size: 16px;
  line-height: 26px;
  line-height: 26px;
  color: var(--white);
}

.skillsmhead {
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}

.price_row.price_row2 {
  justify-content: center;
}

.price_row.price_row2 .price_box {
  width: calc(33.3% - 10px);
}

/* Visa */


/* change course */

.Change_course {
  padding: 100px 0px;
}

.Cchange_main {
  display: flex;
  align-items: center;
  gap: 50px;
}

.Cchange_img {
  width: calc(50% - 25px);
  position: relative;
}

.Cchange_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  left: 0;
  border-radius: 8px;
  top: 0;
}

.Cchange_img img {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
  box-shadow: 10px 10px 0px 0px var(--dark-blue);
  border-radius: 8px;
}

.Cchange_txt {
  width: calc(50% - 25px);
}

.Cchange_txt h2 {
  font-size: 38px;
  line-height: 48px;
  color: var(--dark-blue);
  font-weight: 400;
  text-transform: uppercase;
}

.Cchange_txt p {
  font-size: 16px;
  line-height: 28px;
  color: var(--black);
  font-weight: 500;
}

.underline {
  width: 430px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: -10px;
}

.underline span {
  width: 100%;
  height: 1px;
  border: 1px dashed var(--dark-blue);
}

.Cchange_main_reverse {
  flex-direction: row-reverse;
}

.Cchange_main_reverse .underline {
  width: 100%;
}

.diplomacourse {
  padding-top: 0px !important;
}

.Acea_changes {
  background-color: var(--dark-blue);
  padding: 120px 0px;
}

.aceachange_head h2 {
  text-align: center;
  color: var(--sky-blue);
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  text-transform: uppercase;
}


.aceachange-boxes {
  margin-top: 50px;
  display: flex;
  gap: 30px;
}

.aceachange-box {
  width: calc(25% - 15px);
  background-color: var(--sky-blue);
  padding: 20px;
  border: 1px solid var(--green);
  outline: 2px dashed var(--green);
  outline-offset: 3px;
  transition: all 0.3s;
}

.aceachange-box:hover {
  background-color: var(--white);
}

.aceachange-box p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  color: var(--dark-blue);
}



/* change course */


/* other changes */

.visarowssecCol_full {
  width: 100%;
}

.visarowssecCol_full ul {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.visarowssecCol_full ul li {
  font-weight: 500;
}

.visarowssecCol_full p {
  max-width: 100%;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.healthcover_row {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.healthcover_row .healthcovercol {
  width: calc(50% - 10px);
  text-align: center;
  background: var(--green);
  padding: 40px 20px;
  border-radius: 8px;
}

.healthcover_row .healthcovercol h3 {
  font-size: 20px;
  line-height: 30px;
  color: var(--dark-blue);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}

.healthcover_row .healthcovercol p {
  font-size: 16px;
  color: var(--dark-blue);
  line-height: 28px;
}

.healthcover h4 {
  text-transform: initial;
  font-weight: 500;
  font-size: 24px;
}

.healthcover ul {
  margin-top: 20px;
}

.healthcover2 {
  margin-top: 0px !important;
}

.healthcover2 h4 {
  color: var(--white);
  font-size: 25px;
  line-height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 40px;
}

.skilltime p {
  text-align: center;
}

.professional_head {
  max-width: 100%;
}

.professional_head p {
  font-weight: 400;
  font-size: 16px;
}

.pyp_row ul {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.pyp_row ul li {
  background-color: #eee;
  width: auto;
  flex: auto;
  padding: 15px;
  text-align: center;
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
}

.eligibility_row {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.elib_col {
  width: calc(50% - 10px);
  background-color: #eee;
  border-radius: 8px;
  padding: 30px 20px;
}

.elib_col h3 {
  color: var(--dark-blue);
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.elib_col p {
  text-align: center;
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.elib_col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.elib_col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--black);
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}

.elib_col span {
  display: inline-block;
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin-top: 20px;
}

.streams {
  margin-top: 60px;
}

.streams_head h5 {
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  color: var(--dark-blue);
  font-weight: 600;
}

.streams_row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stream_col {
  width: calc(33.3% - 10px);
  background-color: var(--dark-blue);
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 5px 5px 1px var(--sky-blue);
}

.stream_col h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--sky-blue);
  margin-bottom: 20px;
  text-align: center;
  line-height: 30px;
  text-transform: uppercase;
}

.stream_col p {
  font-size: 16px;
  line-height: 26px;
  color: var(--white);
  text-align: center;
}


/* other changes */


/* our branches */

.Our_branches {
  padding: 100px 0px;
}


.branches_main {
  display: flex;
  gap: 30px;
}

.branches_box {
  width: calc(33.3% - 15px);
  padding: 30px 20px;
  background-color: var(--dark-blue);
  border-radius: 8px;
  box-shadow: 5px 5px 1px #f28e38;
}

.branches_heading h2 {
  font-size: 30px;
  color: var(--sky-blue);
  font-weight: 800;
  text-transform: uppercase;
}

.branches_heading h2 span {
  font-size: 15px;
  font-weight: 600;
}

.address h5 {
  font-size: 16px;
  color: var(--white);
  line-height: 25px;
  font-weight: 600;
  margin-top: 30px;
}

.address ul {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.address ul li a {
  color: var(--sky-blue);
  font-weight: 600;
  transition: all 0.3s;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}

.address ul li a:hover {
  color: #f28e38;
}

.address ul li a I {
  color: #f28e38;
}

.contact_form {
  margin-top: 100px;
  display: flex;
  align-items: center;
}

.contactform_col {
  width: 50%;
}

.contactform_col img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: top;
  border: 5px solid var(--dark-blue);
  border-radius: 8px;
}

.contactform_col form {
  padding: 50px 30px;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: -100px;
  position: relative;
  z-index: 10;
}

.contact_col {
  width: 100%;
}

.contact_row {
  display: flex;
  gap: 20px;
}

.contact_col label {
  display: block;
  font-size: 15px;
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact_col input {
  width: 100%;
  height: 45px;
  background-color: #f7f7f7;
  border: 1px solid var(--dark-blue);
  font-size: 15px;
  padding: 0px 15px;
}

.contact_col textarea {
  width: 100%;
  height: 140px;
  background-color: #f7f7f7;
  border: 1px solid var(--dark-blue);
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  padding: 15px;
  resize: none;
}


.contact_col button {
  padding: 16px 60px;
  background-color: var(--dark-blue);
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 0px;
  font-weight: 500;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
}

.contact_col button:hover {
  background-color: var(--sky-blue);
  color: var(--dark-blue);
}


.Formheading {
  text-transform: uppercase;
  font-size: 30px;
  color: var(--dark-blue);
  font-weight: 400;
}

/* our branches */



.Newservices {
  position: relative;
  padding: 100px 0px;
  background-color: var(--dark-blue);
  background-color: #17a2b820;
  padding-bottom: 380px;
}

.newservrow {
  display: flex;
  flex-wrap: wrap;
  gap: 150px 30px;
}

.newservcol {
  width: calc(33.3% - 20px);
  border-radius: 8px;
  background-color: #fff;
  padding: 30px 20px;
  box-shadow: 0px 0px 20px rgba(255,255,255,.3);
  transition: all 0.8s;
}

.serv_head h2 {
  text-align: center;
  color: var(--dark-blue);
  font-size: 50px;
  line-height: 56px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 130px;
}

.newservimg {
  text-align: center;
  margin-top: -120px;
  /*background-color: #4d6289;*/
  background-color:var(--dark-blue);
  border-radius: 10px;
  border: 2px solid #fff;
}


.newservimg img {
  width: 240px;
  height: 200px;
  object-fit: contain;
}


.newservtxt h3 {
  margin-top: 20px;
  font-size: 20px;
  color: var(--dark-blue);
  line-height: 36px;
}

.newservtxt a {
  margin-top: 5px;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark-blue);
  font-weight: 500;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 5px;
}

.booking_plane {
  position: absolute;
  top: 0;
  left: 0;
}

.booking_plane img {
  width: 120px;
}


.points_calc {
  padding: 40px 0px;
  border-top: 2px solid var(--dark-blue);
}

.pointscalc_header h2 {
  color: var(--dark-blue);
  font-size: 50px;
  line-height: 56px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pointscalc_header p {
  font-size: 18px;
  line-height: 26px;
  color: var(--black);
}

.pr_form {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}

.pr_form_left {
  width: calc(70% - 15px);
  padding: 30px 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.pr_form_Right {
  width: calc(30% - 15px);
  padding: 30px 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.Firstbox_labels {
  display: flex;
  gap: 30px;
}

.Firstbox_labels label {
  position: relative;
  cursor: pointer;
}

.Firstbox_labels label input {
  display: none;
}

.colored_img {
  display: none;
}

.user_img {
  --size: 95px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: #eee;
  transition: all 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
}

.user_img img {
  width: 75px;
}

.Firstbox_labels label:hover .user_img {
  transform: scale(.9);
}

.tooltip {
  position: absolute;
  top: 0;
  min-width: 30px;
  width: 30px;
  height: 30px;
  right: -10px;
  background-color: red;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 10;
  transition: all 0.3;
}

.tooltip p {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.Labels {
  text-align: center;
}

.Labels p {
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
  margin-top: 10px;
}

.Firstbox_labels label input:checked+.user_img .colored_img {
  display: block !important;
}


.Firstbox_labels label input:checked+.user_img .black_img {
  display: none;
}

.Firstbox_labels label input:checked~.tooltip {
  opacity: 1;
}

.prForm_stage {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.first_box_heading {
  margin-bottom: 15px;
}

.first_box_heading h5 {
  font-size: 20px;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.first_box_heading p {
  margin: 0px;
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
}

/* later remove */

.prformstages {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* later remove */

.Form_stage5 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Form_stage5 h1 {
  color: var(--black);
  font-size: 30px;
}

.Form_stage5 h2 {
  color: var(--sky-blue);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.Form_stage5 p {
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
}

.btngroup {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 10px;
}

.btngroup a {
  color: var(--dark-blue);
  background-color: var(--sky-blue);
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: max-content;
  border: 2px solid transparent;
  cursor: pointer;
}

.btngroup a.prevbtn {
  color: var(--dark-blue);
  border: 2px solid var(--sky-blue);
  font-size: 15px;
  background-color: transparent;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: max-content;
}

.pr_form_Right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.points-box {
  --size: 200px;
  width: var(--size);
  height: var(--size);
  border: 5px solid #f28e38;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.points-box h2 {
  font-size: 70px;
  line-height: 70px;
  color: var(--dark-blue);
  font-weight: 600;
}

.points-box h5 {
  font-size: 20px;
  text-transform: uppercase;
  color: #f28e38;
}

.progress {
  display: flex;
  gap: 30px;
}

.prcalcprogress {
  margin-bottom: 30px;
}

.prog {
  width: 100%;
  height: 20px;
  background-color: #ddd;
  border-radius: 20px;
  height: 15px;
}

.prog .span {
  width: 0%;
  height: 15px;
  border-radius: 20px;
  display: block;
  background-color: green;
}


/* contact/us */

.Contact_us .contact_form {
  margin-top: 0px;
  margin-bottom: 100px;
}

.branchesmapview {
  display: flex;
}

.australia_map {
  width: 40%;
}

.india_map {
  display: flex;
  width: 60%;
}

.panchkula-map,
.Kurukshetra-map {
  width: 100%;
}

.branchesmapview iframe {
  width: 100%;
}

.education_banner {
  min-height: 400px;
}

/* contact/us */


.prForm_stage {
  display: none;
}

.prForm_stage.active {
  display: flex;
}



/* 24-6-24 */

.appointmentpopup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  left: 0;
  top: 0;
  display: none;
}

.bookactive .appointmentpopup {
  display: flex;
}


.form-popup {
  background-color: #fff;
  width: max-content;
  padding: 30px 20px;
  width: 100%;
  border-radius: 10PX;
  max-width: 450px;
  position: relative;
}

.crosspop {
  position: absolute;
  right: 10px;
  top: 10px;
}

.crosspop a {
  cursor: pointer;
}

.crosspop svg {
  width: 40px;
  height: 40px;
}


.popup-head {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-head img {
  max-width: 200px;
}

.popform {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popform_col input {
  padding: 14px 15px;
  min-height: 45px;
  border: 1px solid var(--sky-blue);
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  width: 100%;
  border-radius: 10px;
}

.popform_col textarea {
  padding: 14px 15px;
  min-height: 80px;
  border: 1px solid var(--sky-blue);
  font-size: 14px;
  line-height: 18px;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  width: 100%;
  border-radius: 10px;
  resize: none;
}

.popform_col {
  display: flex;
  justify-content: center;
}

.popform_col button {
  padding: 14px 45px;
  background-color: var(--dark-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  border: 0px !important;
  border-radius: 100px;
  transition: all 0.3s;
  cursor: pointer;
}

.popform_col button:hover {
  background-color: var(--sky-blue);
  color: var(--dark-blue);
}

.head_top {
  transition: all 0.3s;
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
  border-bottom:1px solid #ddd;
}

.scrollingdown .head_top {
  top: -100%;
}

.scrollingup .head_top {
  top: 0;
  position: fixed;
}


.siteheader {
  padding-top: 47px;
}

.achieve_img img {
  object-fit: contain !important;
}

/* 24-6-24 */



/* Login */

.loginmain {
  min-height: 100vh;
  padding: 60px 0px;
}

.loginformmain {
  display: flex;
  align-items: center;
}

.formimg {
  width: 50%;
}

.formimg img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.mainformLogin {
  width: 50%;
}

.Formparent {
  background-color: #fff;
  width: 100%;
  padding: 30px 30px;
  border-radius: 20px;
  box-shadow: 7px 7px 22px 0px rgba(0, 0, 0, 0.25);
  margin-left: -60px;
  padding-bottom: 60px;
}

.form_col a {
  display: block;
  text-align: end;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--dark-blue);
}


.role-row {
  display: flex;
  gap: 10px;
}

.role-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  border: 1px solid var(--dark-blue);
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.role-col.active {
  background-color: var(--dark-blue);
}

.role-col.active svg path {
  fill: #fff;
}

.role-col.active h5 {
  color: #fff;
}

.role-col svg {
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.formheadimg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-col h5 {
  font-size: 16px;
  font-weight: 500;
}

.formheadimg img {
  max-width: 200px;
}

.formheadtxt h2 {
  text-align: center;
  color: var(--dark-blue);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 22px;
  margin-top: 15px;
}

.form_role_row {
  margin: 15px 0px;
}

.Formparent label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

.form_row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form_col input {
  width: 100%;
  min-height: 45px;
  padding: 0px 15px;
  border: 1px solid var(--dark-blue);
  font-size: 15px;
  color: var(--black);
}

.form_col button {
  width: 100%;
  background: var(--dark-blue) !important;
  padding: 15px 20px;
  border: 0px !important;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.form_col button:hover,
.form_col button:active {
  background-color: #f28e38 !important;
}


.form_col input[type='email'] {
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyBmaWxsPSIjMTEwMDUzIiB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9IjAgMCAxOTIwIDE5MjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+Cg08ZyBpZD0iU1ZHUmVwb19iZ0NhcnJpZXIiIHN0cm9rZS13aWR0aD0iMCIvPgoNPGcgaWQ9IlNWR1JlcG9fdHJhY2VyQ2FycmllciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cg08ZyBpZD0iU1ZHUmVwb19pY29uQ2FycmllciI+IDxwYXRoIGQ9Ik0xOTIwIDQyOC4yNjZ2MTE4OS41NGwtNDY0LjE2LTU4MC4xNDYtODguMjAzIDcwLjU4NSA0NjguNjc5IDU4NS45MDRIODMuNjg0bDQ2OC42NzktNTg1LjkwNC04OC4yMDItNzAuNTg1TDAgMTYxNy44MDVWNDI4LjI2NWw5NTkuOTQ0IDgzMi40NDFMMTkyMCA0MjguMjY2Wk0xOTE5LjkzMiAyMjZ2NTIuNjI3bC05NTkuOTQzIDgzMi40NEwuMDQ1IDI3OC42MjhWMjI2aDE5MTkuODg3WiIgZmlsbC1ydWxlPSJldmVub2RkIi8+IDwvZz4KDTwvc3ZnPg==);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding-left: 35px;
}


.form_col input[type='password'] {
  background-image: url(data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4NCjwhLS0gVXBsb2FkZWQgdG86IFNWRyBSZXBvLCB3d3cuc3ZncmVwby5jb20sIFRyYW5zZm9ybWVkIGJ5OiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4KPHN2ZyB3aWR0aD0iODAwcHgiIGhlaWdodD0iODAwcHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KDTxnIGlkPSJTVkdSZXBvX2JnQ2FycmllciIgc3Ryb2tlLXdpZHRoPSIwIi8+Cg08ZyBpZD0iU1ZHUmVwb190cmFjZXJDYXJyaWVyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KDTxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4gPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik01LjI1IDEwLjA1NDZWOEM1LjI1IDQuMjcyMDggOC4yNzIwOCAxLjI1IDEyIDEuMjVDMTUuNzI3OSAxLjI1IDE4Ljc1IDQuMjcyMDggMTguNzUgOFYxMC4wNTQ2QzE5Ljg2NDggMTAuMTM3OSAyMC41OTA3IDEwLjM0OCAyMS4xMjEzIDEwLjg3ODdDMjIgMTEuNzU3NCAyMiAxMy4xNzE2IDIyIDE2QzIyIDE4LjgyODQgMjIgMjAuMjQyNiAyMS4xMjEzIDIxLjEyMTNDMjAuMjQyNiAyMiAxOC44Mjg0IDIyIDE2IDIySDhDNS4xNzE1NyAyMiAzLjc1NzM2IDIyIDIuODc4NjggMjEuMTIxM0MyIDIwLjI0MjYgMiAxOC44Mjg0IDIgMTZDMiAxMy4xNzE2IDIgMTEuNzU3NCAyLjg3ODY4IDEwLjg3ODdDMy40MDkzMSAxMC4zNDggNC4xMzUyNSAxMC4xMzc5IDUuMjUgMTAuMDU0NlpNNi43NSA4QzYuNzUgNS4xMDA1MSA5LjEwMDUxIDIuNzUgMTIgMi43NUMxNC44OTk1IDIuNzUgMTcuMjUgNS4xMDA1MSAxNy4yNSA4VjEwLjAwMzZDMTYuODY3IDEwIDE2LjQ1MTUgMTAgMTYgMTBIOEM3LjU0ODQ5IDEwIDcuMTMzMDEgMTAgNi43NSAxMC4wMDM2VjhaTTE0IDE2QzE0IDE3LjEwNDYgMTMuMTA0NiAxOCAxMiAxOEMxMC44OTU0IDE4IDEwIDE3LjEwNDYgMTAgMTZDMTAgMTQuODk1NCAxMC44OTU0IDE0IDEyIDE0QzEzLjEwNDYgMTQgMTQgMTQuODk1NCAxNCAxNloiIGZpbGw9IiMxMTAwNTMiLz4gPC9nPgoNPC9zdmc+);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 10px center;
  padding-left: 35px;
}


/* Login */




@media (max-width:1300px) {

  .wrapper {
    padding: 0px 15px;
  }

}


@media (max-width:991px) {

  .Bannerslider .swiper-slide {
    min-height: 550px;
    padding: 50px 0px;
  }

  .bannerslidecontent h2 {
    font-size: 28px;
  }

  .bannerslidecontent p {
    font-size: 16px;
    margin-top: 15px !important;
  }

  .whychoseus{
    margin-top: 0px !important;
  }

  .bannerslidecontent p br {
    display: none;
  }


  .ACEA_Global {
    padding: 60px 0px;
  }

  .Global_banner {
    flex-direction: column;
    gap: 70px !important;
  }

  .global_img,
  .global_txt {
    width: 100%;
  }

  .global_img img {
    height: 450px;
    width: 100% !important;
  }


  .global2 {
    width: 180px;
    height: 150px;
  }

  .global2 img {
    width: 100%;
    height: 100%;
  }

  .global_txt ul {
    column-count: unset !important;
  }

  .global_txt h2 {
    font-size: 30px;
  }


  .Newservices {
    padding: 50px 0px;
  }

  .serv_head h2,
  .servheading h1,
  .review_main h2 {
    font-size: 28px;
  }

  .newservrow {
    flex-direction: column;
    gap: 80px;
  }


  .newservcol {
    width: 100%;
  }

  .newservimg img {
    width: 180px;
    height: 150px;
    object-fit: contain;
  }

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


  .whychoseus {
    padding: 60px 0px;
    position: relative;
  }

  .whychooserow .counter {
    width: 100%;
  }


  .Got_a_question {
    padding: 60px 0px;
  }


  .guestion_box {
    flex-direction: column;
  }

  .question_box_img {
    width: 100%;
    height: 300px;
  }

  .question_box_form {
    width: 100%;
    padding: 30px 20px;
  }

  .formhead h2 {
    font-size: 28px;
    line-height: 36px;
  }


  .Reviews {
    background-attachment: unset !important;
  }

  .testimonial-area {
    padding: 60px 0px;
  }

  .sec-title h2 {
    font-size: 28px;
    text-align: center;
  }

  .eduban_content h2 {
    font-size: 28px;
    line-height: 36px;
  }


  /* footer */
  .footer_top_row {
    flex-direction: column;
  }

  .footertop_col-sm {
    width: 100%;
  }

  .footertop_col-lg {
    width: 100%;
    flex-direction: column;
  }


  .offices_row {
    flex-direction: column;
  }

  .office-sm-col {
    width: 100%;
  }

  .office-lg-col {
    width: 100%;
  }

  .branch_locs {
    flex-direction: column;
  }

  .footstrip {
    flex-direction: column;
    text-align: center;
  }


  .footstrip p,
  .footstrip span {
    color: #fff;
    font-size: 14px;
  }

  /* footer */


  .loginformmain {
    flex-direction: column;
  }

  .formimg {
    display: none;
  }

  .mainformLogin {
    width: 100% !important;
  }

  .Formparent {
    margin: 0px !important;
  }

  .formheadtxt h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .role-col svg {
    width: 30px;
    height: 30px;
  }

  .loginmain {
    min-height: auto;
  }

  .education_banner::after {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .Our_branches {
    padding: 60px 0px;
  }

  .Contact_us .contact_form {
    flex-direction: column;
  }

  .contactform_col {
    width: 100%;
  }

  .contactform_col img {
    height: 350px;
  }

  .contactform_col form {
    margin: 0px;
    padding: 30px 15px;
    margin-top: 0px;

  }

  .contact_row {
    flex-direction: column;
  }

  .contact_col button {
    width: 100%;
    text-align: center;
  }

  .branches_main {
    flex-direction: column;
  }

  .branches_box {
    width: 100%;
  }

  .branchesmapview {
    flex-direction: column;
    gap: 10px;
  }

  .australia_map {
    width: 100%;
    height: 200px;
  }

  .branchesmapview iframe {
    height: 100%;
  }

  .india_map {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .About_Banner {
    padding: 60px 0px;
  }

  .aboutbanner_content {
    flex-direction: column;
  }

  .aboutban_txt,
  .aboutban_img {
    width: 100%;
  }

  .aboutban_txt h2 {
    font-size: 30px;
  }

  .our_goals {
    padding: 60px 0px;
  }

  .goals_main {
    flex-direction: column;
    padding: 15px;
  }

  .goal_img,
  .goal_txt {
    width: 100%;
  }

  .goal_txt h4 {
    font-size: 28px;
    line-height: 30px;
  }

  .goal_txt h6 {
    font-size: 18px;
    line-height: 24px;
  }

  .goals_main {
    margin-bottom: 50px;
  }

  .goals_main:nth-child(2) {
    flex-direction: column-reverse;
  }

  .goal_txt p {
    text-align: left;
  }

  .director_box {
    flex-direction: column;
  }

  .our_director {
    padding: 60px 0px;
  }

  .director_text {
    padding: 0px !important;
  }

  .director_text h2 {
    position: unset;
    font-size: 32px;
    line-height: 36px;
    text-align: left;
    margin-bottom: 30px;
  }

  .director_text,
  .director_image {
    width: 100%;
  }


  .director_image img {
    box-shadow: 5px 5px 0px #05d3f376;
  }

  .director_text h5 {
    font-size: 30px;
    line-height: 36px;
  }

  .director_achievements {
    flex-direction: column;
  }

  .achieve_row {
    padding-right: 10px;
    align-items: center;
    width: 100%;
  }

  .achieve_txt h4 {
    font-size: 14px;
    margin-left: -20px;
  }

  .director_two {
    padding: 80px 0px;
  }


  .director_box2 .director_image img {
    height: 400px;
    object-position: top center;
  }

  .memberships {
    padding: 60px 0px;
  }


  .members_row {
    flex-direction: column;
    gap: 50px;
  }

  .partners_col {
    width: 100%;
  }

  .members_row::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--green);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .memberships .servheading h1 {
    font-size: 28px;
    text-align: center;
    line-height: 36px;
  }

  .representing {
    padding: 60px 0px;
  }


  .represting_colleges h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .Change_course {
    padding: 60px 0px;
  }

  .Cchange_main {
    flex-direction: column-reverse;
  }

  .Cchange_img,
  .Cchange_txt {
    width: 100%;
  }

  .underline {
    width: 100%;
  }

  .Cchange_txt h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .Cchange_img img {
    height: 350px;
  }

  .Acea_changes {
    padding: 60px 0px;
  }


  .aceachange_head h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .aceachange-boxes {
    flex-direction: column;
  }

  .aceachange-box {
    width: 100%;
  }

  .courses_heading h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .goals_main.trade_main {
    flex-direction: column;
  }

  .trade_main .goal_txt h5 {
    font-size: 16px;
    line-height: 26px;
  }

  .course_listing li,
  .experiences li {
    font-size: 14px;
  }

  .Visamain {
    padding: 60px 0px;
  }

  .visamainhead h2 {
    font-size: 28px;
    line-height: 36px;
  }

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

  .visarowssechead h5 {
    font-size: 20px;
    line-height: 30px;
  }

  .skilled_migration {
    padding: 60px 0px;
  }

  .skilled_head h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .healthcover2 h4 {
    font-size: 20px;
    line-height: 30px;
    margin-top: 30px;
  }

  .healthcover_row {
    flex-direction: column;
  }

  .healthcover_row .healthcovercol {
    width: 100%;
    padding: 25px 15px;
  }

  .healthcover h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .pyp_row ul {
    flex-wrap: wrap;
  }

  .eligibility_row {
    flex-direction: column;
  }

  .elib_col {
    width: 100%;
  }

  .streams_row {
    flex-direction: column;
  }

  .stream_col {
    width: 100%;
  }

  .contact_form {
    flex-direction: column;
  }

  .pr_form {
    flex-direction: column;
  }

  .pr_form_left {
    width: 100%;
  }

  .pr_form_Right {
    width: 100%;
  }

  .pointscalc_header h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .points_calc {
    padding: 60px 0px;
  }

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

  .head_top {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
  }

  .headtopR {
    justify-content: center;
  }

  .siteheader {
    padding-top: 55px;
  }

  .visarowssecRow {
    flex-direction: column;
  }

  .visarowssecCol {
    width: 100% !important;
  }

  .checklist_txt ul {
    justify-content: start;
  }

  .price_head h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .price_row {
    flex-direction: column-reverse;
  }

  .price_box {
    width: 100% !important;
  }

  .skilled_head2 {
    margin-top: 20px;
  }

  .skilled_head ul li {
    flex-direction: column;
  }

  .Listno {
    width: 100%;
  }

  .listcontent {
    width: 100%;
  }

  .skilled_head2 h4 {
    font-size: 28px;
    line-height: 36px;
  }

  .skilled_head ul {
    margin-top: 20px;
  }

  .skilled_head h2 br {
    display: none;
  }


  .checklist_txt h3 {
    font-size: 20px;
    line-height: 36px;
  }

}

.navbtns {
  display: none;
}


@media (max-width:1099px) {
  .navgiation {
    position: fixed;
    top: -100%;
    transition: all 0.5s;
    background: #fff;
    z-index: 100;
    width: 100%;
    height: 100%;
    left: 0;
    padding: 30px;
  }

  .sitelogo img {
    max-width: 170px;
  }

  .headermain {
    padding: 10px 15px;
  }

  .navbtns {
    display: block;
  }

  .nav-close {
    display: none;
  }

  .headactive .nav-close {
    display: block;
  }

  .headactive .nav-open {
    display: none;
  }

  .headactive .head_top {
    display: none;
  }

  .headactive .navgiation {
    top: 0;
  }

  .headactive .navgiation ul {
    flex-direction: column;
  }

  .headactive .navbtns {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }

  .single-testimonial p {
    padding: 20px;
  }

  .testimonial-area .owl-carousel {
    margin: 0px 0px;
  }

  .testimonial-area .owl-stage-outer {
    padding: 30px 42px;
    margin-left: -34px;
    width: calc(100% + 100px);
  }


  .form-popup {
    margin: 0px 10px;
  }

  .Firstbox_labels {
    flex-wrap: wrap;
  }

  .prForm_stage.active {
    display: flex !important;
  }

}








body,
html {
  overflow-x: hidden;
}

.maraGuid a {
  color: #fff !important;
}

.wtsAppSec {
  position: fixed;
  width: max-content;
  right: 5px;
  bottom: 20px;
  z-index: 10000;
}

@media (min-width:767px) {
  .bkaptRespo {
    display: none;
  }


}

@media (max-width:767px) {
  .headtopR {
    display: none;
  }

  .navgiation ul a {
    white-space: nowrap;
  }

  .headtopL ul {
    flex-direction: column;
    gap: 0;
  }

  .siteheader {
    padding-top: 85px;
  }

  .col-md:nth-child(2) .countermd, 
  .col-md:nth-child(4) .countermd, 
  .col-md:nth-child(8) .countermd, 
  .col-md:nth-child(6) .countermd {
    border-right: 0px !important;
  }


  .col-md{
    width: calc(50% - 15px);
  background-color: #fff;
  }

  .ourpartners{
    margin-top: 0px !important;
    padding-top: 80px !important;
  }


  .counter_value_main{
    font-size: 30px !important;
    min-width: auto !important;
  }

  .countermd .counter_value_main{
    font-size: 40px !important;
  }


  .countermd h3{
    font-size: 15px;
  }


}

.bkaptRespo {
  position: fixed;
  width: max-content;
  right: 10px;
  bottom: 75px;
  z-index: 1000;
}


.bookactive .bkaptRespo {
  z-index: 0;
}

.bookactive .wtsAppSec {
  z-index: 0;
}

.headactive .bkaptRespo {
  z-index: 0;
}

.headactive .wtsAppSec {
  z-index: 0;
}

@media (min-width:768px) and (max-width:991px) {
  .head_top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.logos_main {
  margin: 50px 0px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logo_col {
  width: calc(16.6% - 15px);
}

.logo_col img {
  max-width: 140px;
}


@media (max-width:991px) {
  .logo_col {
    width: calc(33.3% - 0px);
    display: flex;
    justify-content: center;
  }


  .logo_col img {
    max-width: 180px;
  }

}


@media (min-width:992px) and (max-width:1024px) {
  .logo_col {
    width: calc(33.3% - 20px);
    text-align: center;
    display: flex;
    justify-content: center;
  }
}</pre></body></html>