.banner .banner-left-side {
  position: relative;
}
.banner .banner-left-side:after {
  content: "";
  position: absolute;
  top: 22%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}
.banner .banner-left-side .banner-image {
  min-height: 527px;
}
.banner .banner-content {
  padding: 50px;
}
.banner .banner-content .banner-title {
  font-size: 36px;
  color: #0a0909;
  font-weight: 700;
}
.banner .banner-content .banner-text {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.banner .banner-content .btn1 {
  background-color: #fdba13 !important;
  border-radius: 0 !important;
  border: 1px solid #fdba13 !important;
  color: #000 !important;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  padding: 25px;
  width: 100%;
}
.banner .banner-content .btn1:hover {
  background-color: #fff !important;
}
.banner .banner-content .btn2 {
  background-color: #6f2c92 !important;
  border-radius: 0 !important;
  border: 1px solid #6f2c92 !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  padding: 25px;
  width: 100% !important;
}
.banner .banner-content .btn2:hover {
  background-color: #fff !important;
  color: #6f2c92 !important;
}
.banner .banner-content .btn3 {
  background-color: #019cad !important;
  border-radius: 0 !important;
  border: 1px solid #019cad !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  padding: 25px;
  width: 100% !important;
}
.banner .banner-content .btn3:hover {
  background-color: #fff !important;
  color: #019cad !important;
}
.banner .banner-content .btn4 {
  background-color: #73bf45 !important;
  border-radius: 0 !important;
  border: 1px solid #73bf45 !important;
  color: #fff !important;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  padding: 25px;
  width: 100% !important;
}
.banner .banner-content .btn4:hover {
  background-color: #fff !important;
  color: #73bf45 !important;
}
.banner .banner-content .mainpara1 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.banner .banner-content .color_red {
  font-size: 18px;
  font-weight: 700;
  color: #bc2340;
}

.all-services-home .image-card {
  position: relative;
  width: 100%; /* Set your desired width */
  height: auto; /* Set your desired height */
  overflow: hidden;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.all-services-home .image-card .hover_icon {
  position: absolute;
  z-index: 1;
  font-size: 32px;
  color: #fff;
  border-radius: 50%;
  transform: scale(1);
  animation: ripple-animation 1.5s linear infinite;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.all-services-home .image-card img {
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.all-services-home .image-card .overlay {
  z-index: 2;
  position: absolute;
  top: 7%;
  width: 86%;
  height: 86%;
  background: rgba(0, 0, 0, 0.7); /* Adjust the overlay background color and transparency */
  display: flex;
  justify-content: center;
  align-items: center;
  left: -100%;
  transition: all 0.3s ease-in-out;
}
.all-services-home .image-card .overlay .ser-counseling-left {
  padding: 30px;
}
.all-services-home .image-card .overlay .ser-counseling-left .ser-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.all-services-home .image-card .overlay .ser-counseling-left .ser-text {
  font-size: 17px;
  font-weight: 600;
}
.all-services-home .image-card .overlay .ser-counseling-left .ser-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.all-services-home .image-card .overlay .ser-counseling-left .ser-tags li {
  margin: 5px;
  border: 1px solid #fff;
  padding: 11px 20px;
}
.all-services-home .image-card .overlay .ser-counseling-left .ser-tags li a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}
.all-services-home .image-card:hover img {
  transform: scale(1.1); /* Adjust the scale factor on hover */
}
.all-services-home .image-card:hover .overlay {
  left: 7%;
}
.all-services-home .image-card:hover .hover_icon {
  display: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.index-ser .image-container {
  position: relative;
  width: 100%;
}
.index-ser .image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}
.index-ser .image-container .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86%;
  height: 86%;
  background: rgba(0, 0, 0, 0.7); /* Adjust the overlay background color and transparency */
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  flex-direction: column;
}
.index-ser .image-container h2 {
  font-size: 36px;
  font-weight: 700;
}
.index-ser .image-container p {
  font-size: 17px;
  font-weight: 600;
}
.index-ser .image-container .is-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.index-ser .image-container .is-tags li {
  margin: 5px;
  border: 1px solid #fff;
  padding: 11px 20px;
}
.index-ser .image-container .is-tags li a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

@media screen and (max-width: 975px) {
  .banner-left-side {
    position: relative;
  }
  .banner-left-side:after {
    content: "";
    position: absolute;
    top: 100% !important;
    left: 75px !important;
    border-right: 120px solid #bc2340 !important;
    height: 15px !important;
  }
  .banner-left-side .banner-image {
    min-height: 100% !important;
  }
  .banner-content {
    padding: 30px !important;
    border: 1px solid #f3e2e2;
    margin-bottom: 30px;
  }
  .all-services-home .image-card {
    margin: 0px;
  }
  .all-services-home .image-card .overlay .ser-counseling-left {
    padding: 15px;
  }
  .all-services-home .image-card .overlay .ser-counseling-left .ser-mainheadding {
    font-size: 24px;
    font-weight: 600;
  }
  .all-services-home .image-card .overlay .ser-counseling-left .ser-text {
    font-size: 16px;
    font-weight: 500;
  }
  .all-services-home .image-card .overlay .ser-counseling-left .ser-tags li {
    padding: 4px 6px;
  }
  .all-services-home .image-card .overlay .ser-counseling-left .ser-tags li a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
  }
  .banner-content {
    padding: 40px;
  }
  .banner-content .banner-title {
    font-size: 24px !important;
    color: #0a0909;
    font-weight: 700;
  }
  .banner-content .banner-text {
    font-size: 17px !important;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .banner-content .color_red {
    font-size: 13px !important;
    font-weight: 700;
    color: #bc2340;
  }
  .banner-content .mainpara1 {
    font-size: 15px !important;
    font-weight: 700;
    margin-top: 20px;
  }
  .index-ser .image-container h2 {
    font-size: 24px;
    font-weight: 600;
  }
  .index-ser .image-container p {
    font-size: 16px;
    font-weight: 500;
  }
  .index-ser .image-container .is-tags li {
    padding: 4px 6px;
  }
  .index-ser .image-container .is-tags li a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
  }
}
/* Margin Classes */
.m-10 {
  margin: 10px !important;
}

.m-0 {
  margin: 0px !important;
}

.m-30 {
  margin: 30px !important;
}

.m-50 {
  margin: 50px !important;
}

.m-80 {
  margin: 80px !important;
}

.m-100 {
  margin: 100px !important;
}

/* Padding Classes */
.p-0 {
  padding: 0px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-100 {
  padding: 100px !important;
}

/* Separate Margin and Padding Classes */
/* Top */
.mt-0 {
  margin-top: 0px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

/* Left */
.ml-0 {
  margin-left: 0px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

/* Right */
.mr-0 {
  margin-right: 0px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

/* Bottom */
.mb-0 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

/* Horizontal (Left and Right) */
.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.mx-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.mx-100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

/* Vertical (Top and Bottom) */
.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

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

.pt-10 {
  padding-top: 10px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

/* Left */
.pl-0 {
  padding-left: 0px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

/* Right */
.pr-0 {
  padding-right: 0px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

/* Bottom */
.pb-0 {
  padding-bottom: 0px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

/* Horizontal (Left and Right) */
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.px-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

/* Vertical (Top and Bottom) */
.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.popular-visa {
  /* Add any additional styling as needed */
  /* Example hover effect */
}
.popular-visa .mainheadding {
  font-size: 36px;
  font-weight: 700;
  color: black;
}
.popular-visa .visatext {
  font-size: 18px;
  font-weight: 600;
}
.popular-visa .flip-container {
  perspective: 1000px;
  height: 260px;
  position: relative;
}
.popular-visa .flip-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in-out;
}
.popular-visa .flip-card.flip {
  transform: rotateY(180deg);
}
.popular-visa .flip-card-front,
.popular-visa .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.popular-visa .flip-card-front {
  background-color: #fff;
  overflow: hidden;
}
.popular-visa .flip-card-front .space {
  margin-top: 8px;
  margin-bottom: 8px;
}
.popular-visa .flip-card-front .space .card-ul {
  text-decoration: none;
  color: #0a0909;
}
.popular-visa .flip-card-back {
  background-color: #fff;
  transform: rotateY(180deg);
  overflow: auto;
}
.popular-visa .flip-card-back .space-back {
  margin-top: 8px;
  margin-bottom: 8px;
}
.popular-visa .flip-card-back .space-back .back-card-ul {
  text-decoration: none;
  color: #0a0909;
}
.popular-visa .flip-container:hover .flip-card {
  transform: rotateY(180deg);
}
.popular-visa .mobile-view li {
  margin-top: 8px;
  margin-bottom: 8px;
}
.popular-visa .mobile-view li a {
  text-decoration: none;
  color: #0a0909;
}

@media screen and (max-width: 975px) {
  .popular-visa .mainheadding {
    font-size: 24px;
    font-weight: 700;
  }
  .popular-visa .visatext {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
  }
}
.counseling .counseling-right {
  position: relative;
}
.counseling .counseling-right:after {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}
.counseling .counseling-left {
  background-color: #a62484;
}
.counseling .counseling-left .counselingmainheadding {
  font-size: 36px;
  font-weight: 700;
}
.counseling .counseling-left .counselingtext {
  font-size: 18px;
  font-weight: 600;
}
.counseling .counseling-left .counseling-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.counseling .counseling-left .counseling-tags li {
  margin: 5px;
  border: 1px solid #fff;
  padding: 11px 20px;
}
.counseling .counseling-left .counseling-tags li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.migrate .migrate-right {
  background-color: #6f2c92;
}
.migrate .migrate-right .migrate-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.migrate .migrate-right .migrate-text {
  font-size: 18px;
  font-weight: 600;
}
.migrate .migrate-right .migrate-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.migrate .migrate-right .migrate-tags li {
  margin: 5px;
  border: 1px solid #fff;
  padding: 11px 20px;
}
.migrate .migrate-right .migrate-tags li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.migrate .migrate-left {
  position: relative;
}
.migrate .migrate-left:before {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}

.study .study-right {
  position: relative;
}
.study .study-right:after {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}
.study .study-left {
  background-color: #fdba13;
}
.study .study-left .study-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.study .study-left .study-text {
  font-size: 18px;
  font-weight: 600;
}
.study .study-left .study-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.study .study-left .study-tags li {
  margin: 5px;
  border: 1px solid #0a0909;
  padding: 11px 20px;
}
.study .study-left .study-tags li a {
  text-decoration: none;
  color: #0a0909;
  font-size: 18px;
  font-weight: 600;
}

.work .work-right {
  background-color: #019cad;
}
.work .work-right .work-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.work .work-right .work-text {
  font-size: 18px;
  font-weight: 600;
}
.work .work-right .work-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.work .work-right .work-tags li {
  margin: 5px;
  border: 1px solid #fff;
  padding: 11px 20px;
}
.work .work-right .work-tags li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.work .work-left {
  position: relative;
}
.work .work-left:before {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}

.coaching .coaching-right {
  position: relative;
}
.coaching .coaching-right:after {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}
.coaching .coaching-left {
  background-color: #1455a6;
}
.coaching .coaching-left .coaching-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.coaching .coaching-left .coaching-text {
  font-size: 18px;
  font-weight: 600;
}
.coaching .coaching-left .coaching-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.coaching .coaching-left .coaching-tags li {
  margin: 5px;
  border: 1px solid #fff;
  padding: 13px 45px;
}
.coaching .coaching-left .coaching-tags li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.why-choose .choose-right {
  background-color: #fff;
}
.why-choose .choose-right .choose-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.why-choose .choose-right .click {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
.why-choose .choose-right .click:hover {
  background-color: #fff;
  color: #bc2340;
}
.why-choose .choose-left {
  position: relative;
}
.why-choose .choose-left:before {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 975px) {
  .counseling-left, .migrate-right, .study-left, .work-right, .coaching-left {
    padding: 30px;
  }
  .counseling-right, .study-right, .coaching-right {
    position: relative;
  }
  .counseling-right:after, .study-right:after, .coaching-right:after {
    content: "";
    position: absolute;
    top: 100% !important;
    left: 75px !important;
    border-right: 120px solid #bc2340 !important;
    height: 15px !important;
  }
  .migrate-left, .work-left, .choose-left {
    position: relative;
  }
  .migrate-left:before, .work-left:before, .choose-left:before {
    content: "";
    position: absolute;
    top: 100% !important;
    left: 75px !important;
    border-right: 120px solid #bc2340 !important;
    height: 15px !important;
  }
  .counseling .counseling-left .counseling-tags li {
    padding: 10px 9px;
  }
  .work .work-right .work-mainheadding {
    font-size: 24px;
    font-weight: 700;
  }
  .work .work-right .work-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-align: justify;
  }
  .why-choose .choose-right .choose-mainheadding {
    font-size: 24px;
    font-weight: 700;
  }
}
.update .main-title {
  font-size: 36px;
  font-weight: 700;
}
.update .update-click {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
.update .update-click:hover {
  background-color: #fff;
  color: #bc2340;
}

.immigration {
  background: url("../../assets/image/fixed.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 50px;
  background-attachment: fixed;
}
.immigration .immigration-title {
  font-size: 36px;
  font-weight: 700;
}
.immigration .immigration-text {
  font-weight: 600;
  line-height: 26px;
  text-align: justify;
  font-size: 17px !important;
  margin-top: 19px;
}

.inspiration {
  background: url("../../assets/image/review.png") center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 50px 20px;
}
.inspiration .inspiration-title {
  font-size: 36px;
  font-weight: 700;
}
.inspiration .inspiration-text {
  font-size: 16px;
  font-weight: 600;
}
.inspiration .review {
  background-color: #bdbdbd;
  padding: 25px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  height: 200px;
  margin-top: 50px;
}
.inspiration .review img {
  width: 90px;
  border-radius: 50%;
  margin: -56px 0 0 -1px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.45);
}
.inspiration .review .icon {
  color: #bc2340;
}
.inspiration .review .testimonialsname {
  margin-top: -12px;
  font-size: 18px;
  font-weight: 600;
  margin-left: 15px;
}
.inspiration .inspiration-click {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
.inspiration .inspiration-click:hover {
  background-color: #fff;
  color: #bc2340;
}

.team .team-right {
  background-color: #fff;
}
.team .team-right .team-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.team .team-right .team-text {
  font-size: 18px;
  font-weight: 600;
}
.team .team-right .team-click {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
.team .team-right .team-click:hover {
  background-color: #fff;
  color: #bc2340;
}
.team .team-left {
  position: relative;
}
.team .team-left:before {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 975px) {
  .team-left {
    position: relative;
  }
  .team-left:before {
    content: "";
    position: absolute;
    top: 100% !important;
    left: 75px !important;
    border-right: 120px solid #bc2340 !important;
    height: 15px !important;
  }
  .immigration {
    padding: 30px;
  }
  .immigration .immigration-title {
    font-size: 24px;
    font-weight: 700;
  }
  .immigration .immigration-text {
    font-weight: 600;
    line-height: 26px;
    text-align: justify;
    font-size: 17px !important;
    margin-top: 19px;
  }
  .inspiration {
    padding: 0px;
  }
  .inspiration .inspiration-title {
    font-size: 24px;
    font-weight: 700;
  }
  .inspiration .review {
    height: 225px;
  }
  .team .team-right .team-mainheadding {
    font-size: 24px;
    font-weight: 700;
  }
  .team .team-right .team-text {
    font-size: 17px;
    font-weight: 600;
  }
}
.footer .footer-bg {
  background-color: #f2f2f2;
  padding: 50px;
}
.footer .footer-bg .footer-space {
  margin-bottom: 10px;
}
.footer .footer-bg .footer-space .country {
  margin-bottom: 0px;
  display: flex;
}
.footer .footer-bg .footer-space .country span {
  font-size: 15px;
  color: #303030;
  white-space: pre;
  margin-left: 5px;
}
.footer .footer-bg .footer-space .country img {
  width: 21px;
  height: 17px;
}
.footer .footer-bg .footer-space .footer-heading {
  font-size: 18px;
  color: #000;
  font-weight: 700;
  white-space: pre;
}
.footer .footer-bg .footer-space .footer-ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}
.footer .footer-bg .footer-space .footer-ul li a {
  color: #303030;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  font-weight: 600;
}
.footer .footer-bg .footer-space .footer-ul li a:hover {
  color: #bc2340;
}
.footer .footer-bg .social-icon {
  font-size: 15px;
  color: #000;
  white-space: pre;
}
.footer .footer-bg .newsl {
  margin-top: -12px;
  margin-left: 15px;
}
.footer .footer-bg .icons {
  margin-bottom: 5px;
  margin-top: 5px;
  margin-right: 35px;
  font-size: 30px;
}
.footer .footer-bg .icons a {
  text-decoration: none;
  color: #000;
  margin-right: 35px;
}
.footer .footer-bg .submit {
  background-color: #6c757d !important;
  color: #fff;
  pointer-events: none !important;
}
.footer .footer-bg .footer-input {
  height: 33px;
  padding: 0.5rem;
  outline: none;
  border: none;
  background-color: #fff !important;
}

.footer-mobile {
  background-color: #f2f2f2;
  padding: 10px 0px !important;
}
.footer-mobile .footerphn .accordion-item {
  border-bottom: 1px solid #b6b6b6;
}
.footer-mobile .footerphn .accordion-body {
  background-color: #f2f2f2;
}
.footer-mobile .footerphn .accordion-button {
  background-color: #f2f2f2;
  font-size: 15px !important;
  color: #000;
  font-weight: 700;
}
.footer-mobile .footerphn .footer-ul-phn li {
  margin-top: 5px;
  margin-bottom: 5px;
}
.footer-mobile .footerphn .footer-ul-phn li a {
  color: #303030;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  font-weight: 600;
}
.footer-mobile .footerphn .footer-ul-phn li a:hover {
  color: #bc2340;
}
.footer-mobile .links-phn {
  border-bottom: 1px solid #b6b6b6;
}
.footer-mobile .links-phn .follow-phn {
  margin-left: 8px;
  margin-top: 10px;
  padding-bottom: 10px;
}
.footer-mobile .links-phn .follow-phn .links-heading-phn {
  font-size: 15px !important;
  color: #000;
  font-weight: 700;
}
.footer-mobile .links-phn .follow-phn .all-phn-links a {
  text-decoration: none;
  color: #000;
  font-size: 24px;
}
.footer-mobile .phn-newsletter {
  margin-left: 5px;
  margin-top: 10px;
  padding-bottom: 10px;
}
.footer-mobile .phn-newsletter .newletter-heading-phn {
  font-size: 15px !important;
  color: #000;
  font-weight: 700;
}

.linksvisa a {
  text-decoration: none;
  color: #0a0909;
}
.linksvisa a:hover {
  color: #bc2340;
}

.footer-links .links {
  margin-bottom: 5px !important;
}
.footer-links .links li {
  padding-left: 5px;
  padding-right: 5px;
}
.footer-links .links a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #0a0909;
}
.footer-links .links a:hover {
  color: #bc2340;
}
.footer-links .copyr {
  padding-left: 5px;
  font-size: 14px;
  font-weight: 600;
}
.footer-links .copyr a {
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 975px) {
  .footer-bg {
    padding: 30px !important;
  }
  .links a {
    font-size: 12px !important;
  }
  .copyr {
    font-size: 12px !important;
  }
}
.contact .contact-image {
  position: relative;
}
.contact .contact-image:after {
  content: "";
  position: absolute;
  top: 25%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}
.contact .contact-text {
  padding: 12px 50px;
}
.contact .contact-text .contact-heading {
  font-size: 36px;
  font-weight: 700;
}
.contact .contact-text .contact-click {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.contact .contact-text .contact-click:hover {
  background-color: #fff;
  color: #bc2340;
}

.contact-info .info-heading {
  font-size: 36px;
  font-weight: 700;
}
.contact-info .info-text {
  font-size: 20px;
  font-weight: 600;
}
.contact-info .contact-content .contact-icon {
  color: #bc2340;
}
.contact-info .contact-content .title {
  font-size: 26px;
  font-weight: 700;
}
.contact-info .contact-content .contact-a {
  text-decoration: none;
  color: #212529;
}

.work .work-heading {
  font-size: 36px;
  font-weight: 700;
}
.work .main-size {
  font-size: 18px;
  font-weight: 600;
}
.work .choose {
  font-size: 36px;
  font-weight: 700;
}
.work .jobs {
  border: 1px solid #d8d9db;
  padding: 25px;
}
.work .jobs:hover {
  border: 1px solid #bc2340;
}
.work .jobs-ul {
  font-size: 18px;
  font-weight: 600;
}
.work .main-click {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 35px;
  padding-left: 35px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
.work .main-click:hover {
  background-color: #fff;
  color: #bc2340;
}

.invest .invest-right {
  position: relative;
}
.invest .invest-right:after {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}
.invest .invest-left {
  background-color: black;
}
.invest .invest-left .invest-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.invest .invest-left .invest-text {
  font-size: 18px;
  font-weight: 600;
}
.invest .invest-left .invest-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.invest .invest-left .invest-tags li {
  margin: 5px;
  border: 1px solid #fff;
  padding: 11px 20px;
}
.invest .invest-left .invest-tags li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.process .invest-process {
  display: flex;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 50px;
}
.process .back-green {
  background-color: black;
  padding: 100px;
}
.process .back-green .box {
  display: flex;
  align-items: center !important;
  padding: 30px;
  border: 1px solid #fff;
  justify-content: center;
  height: 95px;
}
.process .invest-btn {
  border: 1px solid #fff;
  background-color: black;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 35px;
  padding-left: 35px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
.process .invest-btn:hover {
  color: white;
}
.process .invest-heading {
  font-size: 36px;
  font-weight: 700;
}
.process .invest-content {
  font-size: 18px;
  font-weight: 600;
}

.coach-left {
  position: relative;
}
.coach-left:before {
  content: "";
  position: absolute;
  top: 50%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}

.coach-right {
  background-color: #1455a6;
}
.coach-right .coach-mainheadding {
  font-size: 36px;
  font-weight: 700;
}
.coach-right .coach-text {
  font-size: 18px;
  font-weight: 600;
}
.coach-right .coach-tags {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.coach-right .coach-tags li {
  margin: 5px;
  border: 1px solid #fff;
  padding: 11px 20px;
}
.coach-right .coach-tags li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 975px) {
  .contact-image {
    position: relative;
  }
  .contact-image:after {
    content: "";
    position: absolute;
    top: 100% !important;
    left: 75px !important;
    border-right: 120px solid #bc2340 !important;
    height: 15px !important;
  }
  .contact-text {
    padding: 50px !important;
  }
  .process .invest-process {
    display: flex;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: column !important;
    padding: 10px;
  }
  .process .process-img {
    transform: rotate(90deg);
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .invest-right {
    position: relative;
  }
  .invest-right:after {
    content: "";
    position: absolute;
    top: 100% !important;
    left: 75px !important;
    border-right: 120px solid #bc2340 !important;
    height: 15px !important;
  }
  .coach-left {
    position: relative;
  }
  .coach-left:before {
    content: "";
    position: absolute;
    top: 100% !important;
    left: 75px !important;
    border-right: 120px solid #bc2340 !important;
    height: 15px !important;
  }
  .process .invest-heading {
    font-size: 24px;
    font-weight: 700;
  }
  .process .invest-content {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-align: justify;
  }
  .work .work-heading {
    font-size: 24px;
    font-weight: 700;
  }
  .work .main-size {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-align: justify;
  }
  .work .choose {
    font-size: 24px;
    font-weight: 700;
  }
  .process .back-green {
    padding: 50px;
  }
}
.about .about-heading {
  font-size: 36px;
  font-weight: 700;
}
.about .about-text {
  font-size: 16px;
  font-weight: 600;
  text-align: justify;
}

@media screen and (max-width: 975px) {
  .about-heading {
    font-size: 24px;
    font-weight: 700;
  }
  .about-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    text-align: justify;
  }
}
.pages .pages-image {
  position: relative;
}
.pages .pages-image:after {
  content: "";
  position: absolute;
  top: 25%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}
.pages .pages-text {
  padding: 12px 50px;
}
.pages .pages-text .pages-content {
  font-size: 18px;
  font-weight: 600;
}
.pages .pages-text .pages-heading {
  font-size: 36px;
  font-weight: 700;
}
.pages .pages-text .pages-click {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.pages .pages-text .pages-click:hover {
  background-color: #fff;
  color: #bc2340;
}

.visa-solution .bg-vs {
  background-color: #9599a2;
  padding: 50px;
}
.visa-solution .bg-vs .vs-heading {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.visa-solution .all-countries {
  padding: 50px;
}
.visa-solution .all-countries .line {
  border-top: 12px solid #bc2340;
  width: 70px;
  margin-bottom: 0;
  margin-left: 11px;
  position: absolute;
  margin-top: 41px;
}
.visa-solution .all-countries .countries {
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: #0a0909;
}
.visa-solution .all-countries .countries:hover {
  color: #bc2340;
}
.visa-solution .all-countries .countries-box {
  border-top: 5px solid #bc2340;
  border: 1px solid #dadee8;
  padding: 30px;
  height: 370px;
  overflow: auto;
  margin-top: 10px !important;
}
.visa-solution .all-countries .countries-links li {
  margin-bottom: 18px !important;
  margin-top: 18px !important;
}
.visa-solution .all-countries .countries-links li a {
  text-decoration: none;
  color: #0a0909;
  font-size: 18px;
  font-weight: 600;
}
.visa-solution .all-countries .countries-links li a:hover {
  color: #bc2340;
}

.page-vp .vp-process {
  display: flex;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 50px;
}
.page-vp .vp-heading {
  font-size: 36px;
  font-weight: 700;
}
.page-vp .vp-content {
  font-size: 18px;
  font-weight: 600;
}

.shape-elg {
  background-color: #fff;
  padding: 20px;
}
.shape-elg a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
}
.shape-elg:hover {
  background-color: #bc2340;
}
.shape-elg:hover a {
  color: #fff;
}

.ht-list ul {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.ht-list ul li {
  margin: 4px;
  border: 1px solid #fff;
  padding: 10px 1px;
}
.ht-list ul li a {
  background-color: white;
  color: #bc2340;
  border: 1px solid #bc2340;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
}
.ht-list ul li a:hover {
  background-color: #bc2340;
  color: white;
}

.all-main-title {
  font-size: 32px;
  font-weight: 700;
}

.all-heading {
  font-size: 28px;
  font-weight: 600;
}

.all-content {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
  text-align: justify;
}

.btn-all {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.btn-all:hover {
  background-color: #fff;
  color: #bc2340;
}

.breadcrumb-section .breadcrumb-main {
  color: gery !important;
  text-decoration: none;
}

.all-pages .all-pages-text {
  position: relative;
  padding: 12px 50px;
}
.all-pages .all-pages-text .fixed-form {
  position: fixed;
  top: 220px;
  padding: 50px;
  width: 460px;
}
.all-pages .all-pages-text .fixed-form .all-pages-content {
  font-size: 18px;
  font-weight: 600;
}
.all-pages .all-pages-text .fixed-form .all-pages-heading {
  font-size: 36px;
  font-weight: 700;
}
.all-pages .all-pages-text .fixed-form .all-pages-click {
  border: 1px solid #bc2340;
  background-color: #bc2340;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.all-pages .all-pages-text .fixed-form .all-pages-click:hover {
  background-color: #fff;
  color: #bc2340;
}
.all-pages .engineering-box {
  border: 1px solid #cdcdcd;
  padding: 25px;
}
.all-pages .engineering-box:hover {
  border: 1px solid #bc2340;
}

.eligibility-all {
  background-color: #6f2c92;
  color: #fff;
  padding: 50px;
}
.eligibility-all .aus-visa {
  border: 1px solid #fff;
  height: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.denmark-all .denmark-all-right {
  position: relative;
}
.denmark-all .denmark-all-right:after {
  content: "";
  position: absolute;
  top: 25%;
  border-right: 20px solid #bc2340;
  height: 30%;
  transform: translate(-50%, -50%);
}

.accordion-button {
  font-size: 18px !important;
  font-weight: 700 !important;
}

@media screen and (max-width: 975px) {
  .page-vp .vp-process {
    display: flex;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: column !important;
    padding: 10px;
  }
  .page-vp .vp-img {
    transform: rotate(90deg);
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .pages-image {
    position: relative;
  }
  .pages-image:after {
    content: "";
    position: absolute;
    top: 100% !important;
    left: 75px !important;
    border-right: 120px solid #bc2340 !important;
    height: 15px !important;
  }
  .pages-text {
    padding: 30px !important;
  }
  .all-pages-text {
    padding: 0px 0px !important;
    margin-bottom: 30px;
  }
  .all-pages-text .fixed-form {
    position: static !important;
    top: 0px;
    padding: 40 !important;
    margin: auto;
    width: 100% !important;
  }
  .all-heading {
    font-size: 22px;
    font-weight: 600;
  }
  .all-content {
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
    text-align: justify;
  }
  .accordion-button {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2;
  }
  .all-main-title {
    font-size: 26px;
    font-weight: 700;
  }
  .ht-list ul {
    margin-top: 6px;
  }
  .ht-list ul li {
    margin: 4px;
    border: 1px solid #fff;
    padding: 7px 0px;
  }
  .ht-list ul li a {
    padding: 6px 10px;
  }
  .visa-solution .bg-vs {
    padding: 20px;
  }
  .visa-solution .bg-vs .vs-heading {
    font-size: 26px;
    font-weight: 600;
  }
  .pages .pages-text .pages-heading {
    font-size: 22px;
    font-weight: 700;
  }
  .pages .pages-text .pages-content {
    font-size: 15px;
    font-weight: 500;
  }
}
.about-2 .content-2 {
  font-size: 17px;
  line-height: 27px;
  padding: 0px 0px 10px 0px;
  text-align: justify;
}
.about-2 .list-style-three {
  margin-top: 30px;
  position: relative;
}
.about-2 .list-style-three li {
  font-weight: 700;
  margin-bottom: 5px;
  color: black;
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.about-2 .list-style-three li:before {
  color: #bc2340;
  content: "\f058";
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

.button {
  width: 170px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 0px;
  margin-bottom: 30px;
  cursor: pointer;
  display: inline-block;
}

.button-2 {
  color: #fff;
  border: 3px solid #b5223d;
  background-image: -webkit-linear-gradient(30deg, #b5223d 50%, transparent 50%);
  background-image: linear-gradient(30deg, #b5223d 50%, transparent 50%);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.button-2:hover {
  background-position: 100%;
  color: #b5223d;
}

.button-ser {
  width: 120px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  margin-left: 0px;
  margin-bottom: 30px;
  cursor: pointer;
  display: inline-block;
}

.button-2-ser {
  color: #fff;
  border: 3px solid #b5223d;
  background-image: -webkit-linear-gradient(30deg, #b5223d 50%, transparent 50%);
  background-image: linear-gradient(30deg, #b5223d 50%, transparent 50%);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.button-2-ser:hover {
  background-position: 100%;
  color: #b5223d;
}

.a-before-title {
  font-size: 14px;
  font-weight: 500;
  color: #bc2340;
  margin-bottom: 5px;
}

.a-title-2 {
  font-size: 32px;
  font-weight: 700;
}

.a-title-2-ser {
  font-size: 22px;
  font-weight: 700;
}

.collapse-ul {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.collapse-ul li {
  margin: 4px;
  border: 1px solid #fff;
  padding: 10px 1px;
}
.collapse-ul li a {
  background-color: white;
  color: #bc2340;
  border: 1px solid #bc2340;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 5px;
}
.collapse-ul li a:hover {
  background-color: #bc2340;
  color: white;
}

.country-2 {
  background: url(../../assets/image/fixed.jpg) center center;
  background-size: cover;
  position: relative;
  padding: 50px;
  background-attachment: fixed;
}
.country-2 .our-team {
  padding: 20px 10px;
  background: #fff;
  border-radius: 1rem;
  text-align: center;
  border: 0.5px solid #bc2340;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 10px 0px, rgba(0, 0, 0, 0.5) 0px 2px 25px 0px;
}
.country-2 .our-team .pic {
  display: inline-block;
  width: 200px;
  height: 100%;
  background: #fff;
  padding: 20px;
  margin-bottom: 8px;
  transition: all 0.5s ease 0s;
}
.country-2 .our-team .pic:hover {
  background: #bc2340;
  border-radius: 50%;
}
.country-2 .our-team .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.country-2 .our-team .title {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #bc2340;
  margin: 0 0 7px 0;
}
.country-2 .our-team .post {
  display: block;
  font-size: 1rem;
  color: black;
  margin-bottom: 1rem;
}

.country-new {
  padding-top: 100px;
  position: relative;
}
.country-new .bg_image {
  background: url(../../assets/image/index-2/country-bg.webp) center center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  z-index: 2;
  width: 100%;
  top: 0px;
  z-index: -1;
  height: 425px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5098039216);
  background-blend-mode: multiply;
}
.country-new .content {
  z-index: 1;
}
.country-new .card_image {
  position: relative;
}
.country-new .card_image:before {
  background-image: url(../../assets/image/index-2/download.png);
  background-position: 50%;
  bottom: 0;
  content: "";
  height: 20px;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.country-new .card_image .country_flag {
  position: absolute;
  left: 41%;
  bottom: -10px;
  z-index: 99;
  overflow: hidden;
  border-radius: 50%;
}

.services-2 {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: rgba(216, 217, 219, 0.3215686275);
}
.services-2 .idx-ser .number {
  position: relative;
  padding: 8px 11px 6px;
  border-radius: 30px;
  background: #bc2340;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 20px;
  transition: 0.5s ease-in-out !important;
}
.services-2 .idx-ser .idx-content {
  font-size: 17px;
  line-height: 27px;
  padding: 0px 0px 0px 0px;
  margin-left: 10px;
}

.idx-choose .why-2 {
  font-size: 17px;
  line-height: 27px;
  padding: 0px 0px 10px 0px;
}

.testimonial-2 {
  background-image: url(../../assets/image/testimonialbg.jpg);
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
.testimonial-2 .testi-img {
  padding: 5px 0px;
}
.testimonial-2 .testi-content {
  padding: 65px;
}
.testimonial-2 .testi-box .rating ul {
  margin: 0;
  padding: 6px 15px;
  background: #e4e7ee;
  border: 1px solid #e4e7ee;
  display: inline-block;
  border-radius: 30px;
}
.testimonial-2 .testi-box .rating ul li {
  list-style: none;
}
.testimonial-2 .testi-box .rating ul li span {
  margin: 0px 3px;
  color: #bc2340;
  font-size: 16px;
}
.testimonial-2 .testi-box .testi-text {
  color: #fff;
  font-size: 18px;
  text-align: justify;
}
.testimonial-2 .testi-box .testi-text i {
  color: #bc2340;
  font-size: 20px;
}

.idx-contact .idx-contact-box {
  background-color: rgba(216, 217, 219, 0.4);
  padding: 40px;
}
.idx-contact .idx-contact-box .c-icon {
  color: #bc2340;
}
.idx-contact .idx-contact-box .c-link {
  text-decoration: none;
  color: black;
}
.idx-contact .idx-contact-box .c-link:hover {
  color: #bc2340;
}

@media only screen and (max-width: 992px) {
  .our-team {
    margin-bottom: 2rem;
  }
  .a-before-title {
    font-size: 13px;
    font-weight: 500;
    color: #bc2340;
    margin-bottom: 5px;
  }
  .a-title-2 {
    font-size: 24px;
    font-weight: 700;
  }
  .country-2 {
    padding: 25px;
  }
  .testimonial-2 .testi-content {
    padding: 30px;
  }
}
.all-pages .all-pages-text {
  /* Fixed sidenav, full height */
  /* Style the sidenav links and the dropdown button */
  /* On mouse-over */
  /* Add an active class to the active dropdown button */
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
  /* Optional: Style the caret down icon */
  /* Some media queries for responsiveness */
}
.all-pages .all-pages-text .sidenav {
  height: 100%;
  width: 100%;
  /*  position: fixed;*/
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #f1f1f1;
  overflow-x: hidden;
  padding-top: 20px;
}
.all-pages .all-pages-text .sidenav a,
.all-pages .all-pages-text .dropdown-btn {
  padding: 10px 10px 10px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
.all-pages .all-pages-text .sidenav a:hover,
.all-pages .all-pages-text .dropdown-btn:hover {
  background-color: #bc2340;
  color: white;
}
.all-pages .all-pages-text .active {
  background-color: #bc2340;
  color: white;
}
.all-pages .all-pages-text .dropdown-container {
  display: none;
  background-color: rgba(188, 35, 64, 0.0901960784);
  padding-left: 0px;
}
.all-pages .all-pages-text .fa-caret-down {
  float: right;
  padding-right: 8px;
}
@media screen and (max-height: 450px) {
  .all-pages .all-pages-text .sidenav {
    padding-top: 15px;
  }
  .all-pages .all-pages-text .sidenav a {
    font-size: 18px;
  }
}

/*# sourceMappingURL=style.css.map */
