html,
body {
  width: 100%;
  height: 100%;
  background: white;
}

html {
  overflow-x: hidden;
}

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

html {
  overflow-x: hidden;
}

section {
  padding: 60px 0;
}

.sec-two {
  min-height: 100vh;
  background: #edffc4;
}

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

.container {
  max-width: 1200px;
}

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

p, span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.26px;
  line-height: 24px;
  color: #6b6f7f;
  margin-bottom: 10px;
}

span {
  margin-bottom: 0px;
}

h1 {
  text-transform: capitalize;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  color: black;
  font-family: "Lexend", sans-serif;
}

h2 {
  font-size: 44px;
  color: black;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
}

h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-family: "Lexend", sans-serif;
  color: black;
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 500;
}

a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin: 0px;
  color: #5a5a5a;
}

button {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  border: 0;
}

button:focus, .form-control:focus, .form-select:focus {
  outline: none;
  box-shadow: none;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.primary-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #3E5CB8;
  padding: 12px 26px;
  color: white;
  border-radius: 30px;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}
.primary-button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  border-radius: 70%;
  background: #E20935;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.primary-button:hover::before {
  opacity: 1;
  height: 100%;
  border-radius: 0px;
}

.highlight-title {
  font-size: 16px;
  font-weight: 600;
  color: #E20935;
  font-family: "Lexend", sans-serif;
  display: inline-block;
  margin-bottom: 20px;
}

.page-banner {
  background: skyblue;
  overflow: hidden;
}
.page-banner .banner-content a {
  color: black;
  margin-right: 4px;
  text-decoration: underline;
}
.page-banner .banner-content span {
  color: white;
}
.page-banner .banner-content-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-banner .banner-content-img .plane {
  position: absolute;
  width: 300px;
  animation: airplane 10s infinite linear;
}
@keyframes airplane {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.page-banner .banner-content-img .cloud-1 {
  position: absolute;
  height: 150px;
  top: 0;
}

.social {
  display: flex;
  gap: 10px;
}
.social li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid black;
  color: black;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.social li a:hover {
  border: 1px solid #E20935;
  color: white;
  background: #E20935;
}

.form-control {
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  color: #5a5a5a;
  width: 100%;
}
.form-control:focus {
  border-color: #3E5CB8;
  box-shadow: none;
}

/*====================================
		===[preloader Style ]===
======================================*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow: hidden;
  background: skyblue;
}

.loader {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .plane {
  position: absolute;
  animation: move-up-down 3s linear infinite;
}
@keyframes move-up-down {
  0% {
    -webkit-transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
  }
}
.loader .earth {
  position: absolute;
  bottom: -85%;
  width: 60%;
  animation: spin 25s linear infinite;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: black;
  z-index: 10;
}

.loaded #loader {
  opacity: 0;
  --ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease-out;
}

/*====================================
	===[End preloader Style ]===
======================================*/
.sticky-wrapper.is-sticky {
  position: relative;
  z-index: 999;
}
.sticky-wrapper.is-sticky .menu {
  box-shadow: 0px 8px 20px 0px rgba(45, 19, 106, 0.2);
  transition: all 0.3s ease-in-out;
  background: white;
  padding: 5px 0;
}

.menu {
  padding: 10px 0;
  background: transparent;
  box-shadow: 0px 0px 0px 0px;
  transition: all ease-in-out 0.3s;
  position: relative;
  z-index: 999;
}
.menu .navbar {
  padding: 5px 0px;
  transition: all 0.3s ease-in-out;
}
.menu .navbar .container-fluid {
  padding: 0;
}
.menu .navbar .container-fluid .navbar-brand img {
  height: 50px;
}
.menu .navbar .container-fluid .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
  color: white;
}
.menu .navbar .container-fluid .offcanvas-body {
  margin: 0px;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .nav-item {
  margin: 0 6px;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .nav-item .nav-link {
  color: black;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .nav-item .nav-link:hover {
  color: #3E5CB8;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .nav-item .active {
  color: #3E5CB8;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .dropdown .dropdown-menu {
  border-radius: 3px;
  padding: 0;
  transform: all 0.3s ease-in-out;
  padding: 5px;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .dropdown .dropdown-menu li {
  display: block;
  margin: 0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.3411764706);
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .dropdown .dropdown-menu li a {
  border-radius: 3px;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .dropdown .dropdown-menu li a:hover {
  background: #3E5CB8;
  color: white;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .dropdown-submenu {
  position: relative;
}
.menu .navbar .container-fluid .offcanvas-body .navbar-nav .dropdown-submenu .secondary-submenu {
  top: 0;
  left: 100%;
  margin-top: -5px;
}

.head-hero {
  padding-top: 70px;
}
.head-hero .head-hero-title {
  text-align: center;
}
.head-hero .head-hero-title h1 span {
  display: block;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  color: black;
  font-family: "Lexend", sans-serif;
}
.head-hero .head-sky {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head-hero .head-sky .sky {
  border-radius: 300px;
  width: 100%;
}
.head-hero .head-sky .airplane {
  position: absolute;
  bottom: 0;
  animation: AboutImageReveal linear;
  animation-timeline: view();
  animation-range: entry 0% cover 90%;
}
@keyframes AboutImageReveal {
  from {
    scale: 0.1;
    transform: translateY(0px);
  }
  to {
    scale: 1.2;
    transform: translateY(-100px);
  }
}
.head-hero .head-sky .cloud-1 {
  position: absolute;
  top: -100px;
  left: 0;
  scale: 1.2;
}

.filter-search-section {
  position: relative;
}
.filter-search-section .filter-search-tab {
  padding: 40px;
  background: #f1f5f5;
  border-radius: 10px;
}
.filter-search-section .filter-search-tab .nav-pills {
  justify-content: center;
}
.filter-search-section .filter-search-tab .nav-pills .nav-item .nav-link {
  border-radius: 30px;
  padding: 8px 20px;
  color: black;
}
.filter-search-section .filter-search-tab .nav-pills .nav-item .active {
  background: #3E5CB8;
  color: white;
}
.filter-search-section .filter-search-tab .tab-content {
  margin-top: 20px;
}
.filter-search-section .filter-search-tab .tab-content .tab-pane .input-group .form-control {
  border-radius: 5px 0 0 5px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: black;
  border: 1px solid #d1d1d1;
}
.filter-search-section .filter-search-tab .tab-content .tab-pane .input-group .form-control:focus {
  box-shadow: none;
  border-color: #3E5CB8;
}
.filter-search-section .filter-search-tab .tab-content .tab-pane .input-group .search-btn {
  border-radius: 0 5px 5px 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background: #3E5CB8;
  border: 1px solid #3E5CB8;
}
.filter-search-section .filter-search-tab .tab-content .tab-pane .input-group .search-btn:hover {
  background: #E20935;
}
.filter-search-section .plane-graphic {
  position: absolute;
  height: 100px;
  top: 0;
  right: 0;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
}

.about-us {
  position: relative;
}
.about-us .about-text {
  height: 100%;
}
.about-us .about-text h2 {
  font-size: 30px;
}
.about-us .about-text p {
  margin: 30px 0;
}
.about-us .about-img {
  border-radius: 20px;
}
.about-us .air-plane-animation {
  position: absolute;
  width: 40px;
  rotate: 40deg;
  opacity: 0.9;
  animation: plane 18s linear infinite;
}
@keyframes plane {
  0% {
    bottom: -20%;
    left: -5%;
    opacity: 0.1;
  }
  5% {
    opacity: 0.8;
  }
  95% {
    opacity: 0.8;
  }
  100% {
    bottom: 90%;
    left: 20%;
    opacity: 0;
  }
}

.visa-category {
  background: #f5f8fc;
}
.visa-category .visa-category-text {
  text-align: center;
  margin-bottom: 40px;
}
.visa-category .visa-category-item {
  background: white;
  border-radius: 10px;
  padding: 10px;
}
.visa-category .visa-category-item .image {
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
.visa-category .visa-category-item .image img {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.visa-category .visa-category-item a {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.visa-category .visa-category-item:hover .image img {
  transform: scale(1.2);
}
.visa-category .visa-category-item:hover a {
  color: #E20935;
}

.cu-offers {
  background: url("../images/world.png") no-repeat center top/cover;
}
.cu-offers .cu-offers-title {
  text-align: center;
}
.cu-offers .country-flag-slider {
  margin: 30px 0;
}
.cu-offers .country-flag-slider .country-wrapper {
  padding: 15px;
  background: #f1f5f5;
  border-radius: 10px;
  text-align: center;
}
.cu-offers .country-flag-slider .country-wrapper .country-flag {
  border-radius: 5px;
}
.cu-offers .country-flag-slider .country-wrapper .country-name {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 18px;
}
.cu-offers .university-slider {
  margin: 30px 0;
}
.cu-offers .university-slider .university {
  padding: 10px;
  background: white;
  border-radius: 5px;
}

.digital-services {
  overflow: hidden;
}
.digital-services .digital-service-title {
  text-align: center;
  margin-bottom: 40px;
}
.digital-services .digital-marketing-bg {
  background: url("../images/DM-course-bg.png") no-repeat center center/cover;
  border-radius: 10px;
}
.digital-services .visa-processing-bg {
  background: url("../images/VP-course-bg.png") no-repeat center center/cover;
  border-radius: 10px;
}
.digital-services .course-wrapper {
  padding: 40px;
  border-radius: 10px;
  position: relative;
}
.digital-services .course-wrapper .course-text h4 {
  color: #E20935;
  font-size: 16px;
  margin-bottom: 20px;
}
.digital-services .course-wrapper .course-text h3 {
  font-size: 25px;
}
.digital-services .course-wrapper .course-text p {
  margin: 30px 0;
  height: 45px;
}

.testimonial {
  position: relative;
  background: #f5f8fc;
}
.testimonial .testimonial-title {
  margin-bottom: 40px;
}
.testimonial .testimonial-slider .testimonial-wrapper {
  padding: 30px;
  border-radius: 10px;
  background: white;
}
.testimonial .testimonial-slider .testimonial-wrapper .rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 2px;
}
.testimonial .testimonial-slider .testimonial-wrapper .rating li span {
  color: #E20935;
  font-size: 16 px;
}
.testimonial .testimonial-slider .testimonial-wrapper .client-info {
  margin-top: 20px;
  align-items: center;
}
.testimonial .testimonial-slider .testimonial-wrapper .client-info .client-image {
  height: 60px;
  width: 60px;
  padding: 2px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #E20935;
}
.testimonial .testimonial-slider .testimonial-wrapper .client-info .client-image img {
  border-radius: 50%;
}
.testimonial .testimonial-slider .testimonial-wrapper .client-info .client-name {
  padding-left: 10px;
}
.testimonial .testimonial-slider .testimonial-wrapper .client-info .client-name h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
.testimonial .testimonial-slider .owl-dots {
  margin-top: 20px !important;
}
.testimonial .testimonial-slider .owl-dots .owl-dot span {
  position: relative;
  background: #E20935;
  height: 7px;
  width: 7px;
  margin: 5px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial .testimonial-slider .owl-dots .owl-dot span::before {
  position: absolute;
  content: "";
  height: 50%;
  width: 50%;
  border: 1px solid #E20935;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.testimonial .testimonial-slider .owl-dots .active span::before {
  height: 250%;
  width: 250%;
}
.testimonial .airplane-graphic {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.8;
}

.our-blog .our-blog-title {
  text-align: center;
  margin-bottom: 40px;
}
.our-blog .our-blog-title .blog-highlight-title {
  text-align: center;
}

.blog-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
  margin-bottom: 20px;
}
.blog-wrapper img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.blog-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}
.blog-wrapper .overlay .date {
  display: flex;
  align-items: center;
}
.blog-wrapper .overlay .date span {
  color: white;
  margin-right: 8px;
  transition: all 0.3s ease-in-out;
}
.blog-wrapper .overlay .date p {
  margin-bottom: 0;
  color: white;
  transition: all 0.3s ease-in-out;
}
.blog-wrapper .overlay .blog-title h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.blog-wrapper .overlay .blog-title p {
  color: #ddd;
  transition: all 0.3s ease-in-out;
}
.blog-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0a2474;
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.blog-wrapper:hover img {
  transform: scale(1.2);
}
.blog-wrapper:hover .overlay .date span {
  color: #E20935;
}
.blog-wrapper:hover .overlay .date p {
  color: #E20935;
}
.blog-wrapper:hover .overlay .blog-title h3 {
  color: #3E5CB8;
}
.blog-wrapper:hover .overlay .blog-title p {
  color: #5a5a5a;
}
.blog-wrapper:hover::before {
  background: white;
  opacity: 0.8;
}

.footer {
  padding-top: 60px;
  background: url("../images/footer1-bg-img.png") #224099;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.footer .footer-content img {
  height: 70px;
  margin-bottom: 20px;
}
.footer .footer-content h4 {
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
  margin-top: 30px;
}
.footer .footer-content p {
  color: #ddd;
}
.footer .footer-content .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-content .social-link li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.124);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease-in-out;
}
.footer .footer-content .social-link li a:hover {
  color: black;
}
.footer .footer-content .footer-links li {
  display: flex;
}
.footer .footer-content .footer-links li a {
  color: #ddd;
  margin-bottom: 5px;
}
.footer .footer-content .subscribe-form {
  background: white;
  margin-top: 20px;
}
.footer .footer-content .subscribe-form .input-group input {
  border: none;
  height: 50px;
  border-radius: 0;
  outline: none;
  width: auto;
}
.footer .footer-content .subscribe-form .input-group .sub-btn {
  color: white;
  background: #E20935;
  border-radius: 0;
}
.footer .copyright {
  margin-top: 60px;
  border-top: 1px solid rgba(221, 221, 221, 0.4117647059);
  text-align: center;
  padding: 15px 0;
}
.footer .copyright p {
  margin-bottom: 0;
}

.about-us .extra-wrapper {
  margin-top: 30px;
}
.about-us .extra-wrapper .number-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(226, 9, 52, 0.0470588235);
  padding: 50px;
}
.about-us .extra-wrapper .number-box h3 {
  color: #E20935;
  font-size: 40px;
  margin-bottom: 0;
}
.about-us .extra-wrapper .content h4 {
  font-size: 20px;
}

.about-us-section-two {
  background: #f5f8fc;
}
.about-us-section-two .content-wrapper {
  margin-bottom: 40px;
}
.about-us-section-two .content-wrapper h4 {
  font-size: 20px;
}
.about-us-section-two .content-wrapper h4 span {
  color: #E20935;
  margin-right: 10px;
}
.about-us-section-two .content-wrapper p {
  padding-left: 30px;
}

.choose .video-wrapper {
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.choose .video-wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #3E5CB8;
  opacity: 0.2;
  z-index: 1;
}
.choose .video-wrapper .video-thubnail {
  transition: all 0.3s ease-in-out;
}
.choose .video-wrapper .video-play {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 100px;
  font-size: 30px;
  color: #E20935;
  background: white;
  border-radius: 50%;
  z-index: 2;
}
.choose .video-wrapper:hover .video-thubnail {
  transform: scale(1.1);
}
.choose .choose-text .choose-highlight-text {
  margin-bottom: 10px;
}
.choose .choose-text h2 {
  margin-bottom: 20px;
}
.choose .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f8fc;
  padding: 30px;
  border-radius: 10px;
  margin: 10px 0;
  box-shadow: rgba(0, 0, 0, 0) 0 0 0 0;
  transition: all 0.3s ease-in-out;
}
.choose .inner-box .count-wrapper h3 {
  margin-bottom: 5px;
  font-size: 44px;
  color: black;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
}
.choose .inner-box .count-wrapper h3 .count {
  font-size: 44px;
  color: black;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
  transition: all 0.3s ease-in-out;
}
.choose .inner-box .count-wrapper p {
  margin-bottom: 0;
  color: black;
}
.choose .inner-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  background: rgba(226, 9, 52, 0.0470588235);
  border-radius: 50%;
}
.choose .inner-box .icon span {
  color: #E20935;
  font-size: 22px;
}
.choose .inner-box:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: white;
}
.choose .inner-box:hover .count-wrapper h3 .count {
  color: #3E5CB8;
}

.faq {
  background: #f5f8fc;
}
.faq .faq-title .faq-highlight-title {
  margin-bottom: 10px;
}
.faq .faq-title h2 {
  margin-bottom: 20px;
}
.faq .accordion {
  padding: 8px;
  border-radius: 8px;
  background: white;
}
.faq .accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  box-shadow: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin-top: 5px;
  border-radius: 6px 6px 0px 0px;
}
.faq .accordion .accordion-item .accordion-header .accordion-button .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  font-size: 12px;
  border-radius: 50%;
  background: #ECEEF2;
  color: black;
  transition: all 0.3s ease-in-out;
}
.faq .accordion .accordion-item .accordion-header .accordion-button .arrow .fa-angle-down {
  transform: translateY(1px);
}
.faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #E20935;
  background: #f5f8fc;
}
.faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .arrow {
  transform: rotate(-180deg);
}
.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.faq .accordion .accordion-item .accordion-body {
  margin-bottom: 5px;
  padding-top: 5px;
  border-radius: 0px 0px 6px 6px;
}
.faq .accordion .accordion-item .accordion-body p {
  margin-top: 10px;
  font-size: 14px;
}
.faq .accordion .accordion-item .show .accordion-body {
  background: #f5f8fc;
}
.faq .faq-btn-for-mobile {
  text-align: center;
  margin-top: 40px;
  display: none;
}

.contact-us .contact-info h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}
.contact-us .contact-info h3 span {
  color: #3E5CB8;
  font-size: 40px;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
}
.contact-us .contact-info .social {
  margin-bottom: 30px;
}
.contact-us .contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact-us .contact-info p span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  min-width: 50px;
  color: #E20935;
  font-weight: 600;
  background: rgba(226, 9, 52, 0.0470588235);
  border-radius: 50%;
  margin-right: 10px;
}
.contact-us .contact-form-wrapper {
  position: relative;
  padding: 30px 40px;
}
.contact-us .contact-form-wrapper .contact-form label {
  font-size: 16px;
  color: #3E5CB8;
  font-weight: 500;
  margin-bottom: 5px;
}

.blog-details-page .blog-details-wrapper .blog-details-img {
  position: relative;
}
.blog-details-page .blog-details-wrapper .blog-details-img img {
  border-radius: 10px;
}
.blog-details-page .blog-details-wrapper .blog-details-img .blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #E20935;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 16px;
}
.blog-details-page .blog-details-wrapper .blog-details-content {
  margin-top: 20px;
}
.blog-details-page .blog-details-wrapper .blog-details-content .blog-title {
  font-size: 30px;
  margin-bottom: 20px;
}
.blog-details-page .blog-details-wrapper .blog-details-content p {
  color: #5a5a5a;
}
.blog-details-page .blog-details-wrapper .blog-details-content .blog-content-list {
  list-style: disc;
  padding-left: 20px;
  color: #5a5a5a;
}
.blog-details-page .blog-share h4 {
  font-size: 20px;
  margin-right: 8px;
  margin-bottom: 0;
}
.blog-details-page .blog-share ul {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.blog-details-page .blog-share ul li a {
  font-size: 14px;
  color: black;
  margin-top: 2px;
}
.blog-details-page .n-p .primary-button {
  padding: 3px 10px;
}
.blog-details-page .n-p .primary-button i {
  margin: 0 2px;
}
.blog-details-page .blog-details-sidebar .text-title {
  color: #3E5CB8;
  font-size: 22px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d1d1d1;
}
.blog-details-page .blog-details-sidebar .small-side-blog {
  margin-bottom: 30px;
  display: flex;
}
.blog-details-page .blog-details-sidebar .small-side-blog img {
  border-radius: 5px;
  max-width: 90px;
  margin-right: 20px;
}
.blog-details-page .blog-details-sidebar .blog-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-details-page .blog-details-sidebar .blog-text h3 {
  font-size: 20px;
}
.blog-details-page .blog-details-sidebar .blog-text p {
  margin-bottom: 0;
}
.blog-details-page .blog-details-sidebar .blog-category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-details-page .blog-details-sidebar .blog-category li a {
  padding: 3px 10px;
  background: #f1f5f5;
}
.blog-details-page .blog-social-media {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
}

.our-service {
  background: #f5f8fc;
}

.visa-container .Visa-image-banner {
  border-radius: 5px;
  margin-bottom: 20px;
}
.visa-container .visa-title {
  font-size: 40px;
  margin-bottom: 20px;
}
.visa-container .p-text-highlight {
  color: #3E5CB8;
  font-size: 20px;
  font-weight: 600;
}

.student-visa {
  background: #f5f8fc;
}

.course-details .course-box .course-img {
  margin-bottom: 20px;
  border-radius: 10px;
}
.course-details .course-details-list {
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}
.course-details .course-details-list h4 {
  color: #E20935;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.course-details .course-details-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0;
}/*# sourceMappingURL=style.css.map */