* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3A3A3A;
  line-height: normal;
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1260px;
  }
}

/* BASIC TYPOGRAPHY
  ============================================= */
h1, h2, h3, h4, h5 {
  word-wrap: break-word;
  line-height: normal;
  font-family: "Ubuntu", sans-serif;
  margin: 0;
}

p {
  word-wrap: break-word;
  line-height: normal;
  margin: 0;
}

a {
  text-decoration: none;
  color: #3A3A3A;
}
a:hover {
  text-decoration: none;
  color: #3A3A3A;
}

.btn:not(.btn-outline-primary) {
  background-color: #004F9F;
  border-color: #004F9F;
}

.btn-outline-primary {
  color: #004F9F;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
  color: #ffffff;
  background-color: #004F9F !important;
}

.heading-shape {
  position: relative;
}
.heading-shape::after {
  content: "";
  background: url(../img/text-shadow-img.svg) no-repeat;
  width: 280px;
  height: 12px;
  position: absolute;
  left: 0;
  bottom: -15px;
}
@media (min-width: 768px) {
  .heading-shape::after {
    width: 336px;
    height: 50px;
    bottom: -55px;
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
}
.site-header.fixed-header {
  position: fixed;
}
.site-header.fixed-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(40px);
  z-index: -1;
}
.site-header.fixed-header .navbar {
  padding: 12px 0;
}
.site-header .navbar-brand img {
  max-width: 100px;
}
@media (min-width: 768px) {
  .site-header .navbar-brand img {
    max-width: 100%;
  }
}
.site-header .navbar-toggler {
  position: relative;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
  z-index: 11;
}
.site-header .navbar-toggler .navbar-toggler-icon {
  background: #000000;
  width: 24px;
  height: 2px;
}
.site-header .navbar-toggler::before, .site-header .navbar-toggler::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000000;
  left: 3px;
  transition: transform 0.3s ease;
}
.site-header .navbar-toggler::before {
  top: 6px;
}
.site-header .navbar-toggler::after {
  top: 22px;
}
.site-header .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  opacity: 0;
}
.site-header .navbar-toggler[aria-expanded=true]::before {
  transform: rotate(45deg) translate(6px, 5px);
}
.site-header .navbar-toggler[aria-expanded=true]::after {
  transform: rotate(-45deg) translate(6px, -5px);
}
.site-header .navbar {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .site-header .navbar {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .site-header .navbar {
    padding: 40px 0;
  }
}
.site-header .navbar-nav .nav-item {
  margin-left: 5px;
}
.site-header .navbar-nav .nav-link {
  color: #000000;
  font-size: 16px;
  line-height: normal;
  padding: 13px 15px;
}
.site-header .navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 4px 52px 0 rgba(0, 0, 0, 0.07);
  min-width: 225px;
  margin-top: 10px;
  padding: 20px 0;
  border-radius: 20px;
}
.site-header .navbar-nav .dropdown-item {
  padding: 10px 20px;
}
.site-header .navbar-nav .dropdown-item:focus, .site-header .navbar-nav .dropdown-item:active, .site-header .navbar-nav .dropdown-item.active {
  background-color: #004F9F;
}
.site-header .btn {
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 22.5px;
  border-color: #004F9F;
  line-height: normal;
}
@media (min-width: 992px) {
  .site-header .btn {
    margin-left: 35px;
    padding: 12px 30px;
    font-size: 16px;
  }
}
.site-header .cta-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .site-header .cta-buttons {
    margin-top: 0;
  }
}
.site-header .btn-primary {
  background-color: #004F9F;
}
.site-header .navbar-collapse {
  display: none;
}
@media (min-width: 992px) {
  .site-header .navbar-collapse {
    display: block;
  }
}
.site-header .navbar-collapse.show {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
}
.site-header .navbar-collapse.show .navbar-nav {
  width: 280px;
  background-color: #ffffff;
  padding: 40px 15px;
  height: 100%;
  margin-left: 0 !important;
}

.site-footer {
  background: rgba(0, 79, 159, 0.05);
  padding: 50px 0 40px;
}

.foot-link-wrapper {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
.foot-link-wrapper .foot-links {
  width: 50%;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .foot-link-wrapper .foot-links {
    width: auto;
    margin-top: 0;
  }
}
.foot-link-wrapper h5 {
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.foot-link-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot-link-wrapper ul li {
  font-size: 14px;
  line-height: 285.714%;
}

.copyright-text {
  background-color: #004F9F;
  padding: 12px 0;
}
@media (min-width: 992px) {
  .copyright-text {
    padding: 8px 0;
  }
}
.copyright-text .copy-text {
  color: #ffffff;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  max-width: 272px;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .copyright-text .copy-text {
    margin: 0;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .copyright-text .copy-text {
    font-size: 16px;
    text-align: left;
  }
}
.copyright-text .social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .copyright-text .social-links {
    justify-content: flex-end;
  }
}
.copyright-text .social-links li:not(:last-child) {
  margin-right: 16px;
}

.banner-section {
  padding-top: 106px;
  background: #f7f9fc url(../img/curved-bg-img.svg) top right no-repeat;
}
@media (min-width: 768px) {
  .banner-section {
    padding-top: 170px;
  }
}
.banner-section.white-bg {
  background: #ffffff;
}
@media (min-width: 1200px) {
  .banner-section.white-bg .banner-content {
    padding: 100px 0;
  }
}
.banner-section .banner-thumbnail {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.banner-content {
  max-width: 580px;
  padding: 26px 0 40px;
}
@media (min-width: 768px) {
  .banner-content {
    padding: 26px 0;
  }
}
.banner-content h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .banner-content h1 {
    font-size: 38px;
    margin-bottom: 48px;
    line-height: 111%;
  }
}
@media (min-width: 992px) {
  .banner-content h1 {
    font-size: 54px;
  }
}
.banner-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .banner-content p {
    font-size: 18px;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .banner-content p {
    font-size: 22px;
  }
}
.banner-content .btn-primary {
  border-radius: 34.5px;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 40px;
}
@media (min-width: 768px) {
  .banner-content .btn-primary {
    font-size: 20px;
    padding: 15px 60px;
  }
}
@media (min-width: 992px) {
  .banner-content .btn-primary {
    font-size: 22px;
    padding: 17px 75px;
  }
}

.trusted-by {
  margin-top: 30px;
}
.trusted-by .heading {
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.trusted-by ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.trusted-by ul li {
  font-size: 10px;
}
.trusted-by ul li:first-child {
  margin-right: 14px;
}
.trusted-by h6 {
  margin: 24px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.verified-candidate {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .verified-candidate {
    padding-top: 100px;
  }
}
.verified-candidate .section-head {
  max-width: 1022px;
  margin: 0 auto 30px;
  text-align: center;
}
.verified-candidate .section-head h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .verified-candidate .section-head h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .verified-candidate .section-head h2 {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .verified-candidate .section-head h2::after {
    left: 0;
    right: 0;
    margin-left: 436px;
    bottom: -50px;
  }
}
.verified-candidate .section-head p {
  font-size: 15px;
}
@media (min-width: 768px) {
  .verified-candidate .section-head p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .verified-candidate .section-head p {
    font-size: 18px;
  }
}
.verified-candidate .swiper {
  overflow: visible;
}
.verified-candidate .swiper-slide {
  max-width: 292px;
}
.verified-candidate .swiper-button-prev,
.verified-candidate .swiper-button-next {
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.07);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
}
.verified-candidate .swiper-button-prev::after,
.verified-candidate .swiper-button-next::after {
  font-size: 15px;
  font-weight: bold;
  color: #3A3A3A;
}
.verified-candidate .swiper-button-disabled {
  opacity: 0;
}

.search-skills {
  max-width: 488px;
  margin: 0 auto 20px;
  position: relative;
}
.search-skills .form-control {
  border-radius: 40px;
  border: 1px solid #6F6F6F;
  font-size: 16px;
  letter-spacing: 0.4px;
  padding: 15px 60px 15px 20px;
  box-shadow: none;
}
@media (min-width: 768px) {
  .search-skills .form-control {
    padding: 18px 90px 18px 32px;
    font-size: 20px;
  }
}
.search-skills button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #004F9F;
  position: absolute;
  border: none;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .search-skills button {
    width: 47px;
    height: 47px;
  }
}
.search-skills button img {
  max-width: 15px;
}
@media (min-width: 768px) {
  .search-skills button img {
    max-width: 100%;
  }
}

.searched-tags {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.searched-tags p {
  color: #6F6F6F;
  font-size: 16px;
  margin-right: 14px;
  padding: 12px 0;
}
.searched-tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
}
.searched-tags ul li a {
  color: #6F6F6F !important;
  font-size: 13px;
  border-radius: 40px;
  border: 1px solid #6F6F6F;
  padding: 10px 22px;
  margin: 5px 0;
  cursor: pointer;
  display: block;
}
.searched-tags ul li a:hover {
  background-color: #004F9F;
  border-color: #004F9F;
  color: #ffffff !important;
}
@media (min-width: 768px) {
  .searched-tags ul li a {
    font-size: 16px;
    padding: 12px 30px;
    margin: 0;
  }
}
.searched-tags ul li:not(:last-child) {
  margin-right: 14px;
}

.candidate-card {
  border-radius: 9px;
  border: 1px solid rgba(16, 90, 165, 0.21);
  overflow: hidden;
}
.candidate-card .user-thumb {
  max-width: 91px;
  margin: -50px auto 0;
  position: relative;
}
.candidate-card .verified-icon {
  position: absolute;
  bottom: 0;
  right: 5px;
}
.candidate-card .user-img {
  border-radius: 50%;
  object-fit: cover;
  width: 91px;
  height: 91px;
}
.candidate-card .user-info {
  text-align: center;
  line-height: 140%;
  padding-bottom: 15px;
}
.candidate-card .user-info h6 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.candidate-card .user-info p {
  font-size: 12px;
  margin-bottom: 0;
}

.why-choose-us {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .why-choose-us {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .why-choose-us .container {
    max-width: 930px;
  }
}
.why-choose-us .col-md-6 {
  margin-top: 40px;
}
.why-choose-us .section-head {
  text-align: center;
}
.why-choose-us .section-head h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .why-choose-us .section-head h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .why-choose-us .section-head h2 {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .why-choose-us .section-head h2::after {
    left: auto;
    right: 120px;
    bottom: -50px;
  }
}
.why-choose-us .section-head p {
  font-size: 15px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .why-choose-us .section-head p {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .why-choose-us .section-head p {
    font-size: 18px;
  }
}
.why-choose-us .item {
  border-radius: 9px;
  border: 1px solid rgba(16, 90, 165, 0.21);
  padding: 30px 22px 30px 58px;
  margin-left: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.why-choose-us .item .icon {
  background-color: #004F9F;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -40px;
}
.why-choose-us .item h6 {
  color: #004F9F;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
}
.why-choose-us .item p {
  font-size: 12px;
  line-height: 140%;
}

.how-it-work {
  background: #EBF1F7;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .how-it-work {
    padding: 100px 0;
  }
}
.how-it-work h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 66px;
}
@media (min-width: 768px) {
  .how-it-work h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .how-it-work h2 {
    font-size: 50px;
  }
}
.how-it-work h2::after {
  left: auto;
  right: 0;
}
.how-it-work .box-header {
  display: flex;
  align-items: center;
  padding-left: 25px;
}
.how-it-work .box-header h5 {
  display: flex;
  color: #004F9F;
  font-size: 45px;
  font-weight: 700;
  position: absolute;
  left: -25px;
}
.how-it-work .box-header h5 span {
  color: #ffffff;
}
.how-it-work .box-header h4 {
  color: #004F9F;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  max-width: 154px;
}
.how-it-work .icon-box {
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 130px;
  background-color: #004F9F;
  margin-right: 10px;
}
.how-it-work .item {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .how-it-work .item {
    margin-bottom: 0;
  }
}
.how-it-work .item p {
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  margin: 12px 0 0;
  max-width: 311px;
}

.success-story-section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .success-story-section {
    padding: 100px 0;
  }
}
.success-story-section h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .success-story-section h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .success-story-section h2 {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .success-story-section h2::after {
    left: 100px;
  }
}

.review-vertical-slider {
  max-width: 1000px;
  margin: 0 auto;
}
.review-vertical-slider .swiper-button-prev,
.review-vertical-slider .swiper-button-next {
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 4px 0px rgba(0, 0, 0, 0.07);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
}
.review-vertical-slider .swiper-button-prev::after,
.review-vertical-slider .swiper-button-next::after {
  font-size: 15px;
  font-weight: bold;
  color: #3A3A3A;
}
.review-vertical-slider .swiper-pagination-bullet-active {
  background-color: #004F9F;
}

.testimonial-item {
  padding: 0px 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .testimonial-item {
    padding: 20px 60px;
  }
}
.testimonial-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.testimonial-item h4::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/quotation-icon.svg) center no-repeat;
  margin: 0 auto 20px;
  background-size: contain !important;
}
.testimonial-item p {
  font-size: 14px;
  font-weight: 700;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .testimonial-item p {
    font-size: 16px;
    line-height: 200%;
  }
}

.help-to-hire {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .help-to-hire {
    padding-bottom: 100px;
  }
}
.help-to-hire h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .help-to-hire h2 {
    font-size: 38px;
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .help-to-hire h2 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .help-to-hire h2::after {
    left: auto;
    right: 150px;
  }
}

.query-form form {
  max-width: 604px;
}
.query-form .form-group {
  position: relative;
  margin-bottom: 30px;
}
.query-form .form-control {
  border-radius: 4px;
  border: 1px solid #000000;
  width: 100%;
  box-shadow: none;
  font-size: 12px;
}
.query-form textarea {
  resize: none;
}
.query-form .form-label {
  font-size: 14px;
  margin-bottom: 0;
  position: absolute;
  background-color: #ffffff;
  left: 10px;
  top: -10px;
  z-index: 1;
  display: inline-block;
  padding: 0 5px;
}
.query-form .iti {
  display: block;
}
.query-form .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}
.query-form .btn-primary {
  font-size: 16px;
  border-radius: 6px;
  padding: 12px 30px;
  line-height: normal;
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .query-form .btn-primary {
    padding: 12px 42px;
  }
}

@media (min-width: 768px) {
  .list-pg::after {
    left: auto;
    right: 80px;
  }
}

.hire-iit-heading {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 66px;
}
.hire-iit-heading h2 {
  margin-bottom: 25px;
}
.hire-iit-heading h2::after {
  right: 50px;
}

.connect-with-top-engineers {
  padding: 100px 0;
  overflow: initial;
}
.connect-with-top-engineers .section-head {
  margin-bottom: 50px;
}
.connect-with-top-engineers .section-head p {
  max-width: 536px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .connect-with-top-engineers .section-head h2::after {
    left: auto;
    right: 170px;
    bottom: -55px;
  }
}

.form-box {
  border: 1px solid #004F9F;
  border-radius: 9px;
  padding: 30px 15px;
  position: sticky;
  top: 114px;
}
.form-box h5 {
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  max-width: 145px;
  margin: 0 auto 5px;
}
.form-box p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 30px;
}

.candidate-info {
  border: 1px solid rgba(16, 90, 165, 0.21);
  border-radius: 9px;
  padding: 22px;
  text-align: center;
  margin-bottom: 24px;
}
.candidate-info .user-thumb {
  max-width: 91px;
  margin: 0 auto;
  position: relative;
}
.candidate-info .rating-info {
  display: flex;
  width: 124px;
  margin: 6px auto 20px;
  justify-content: center;
  border-bottom: 1px solid rgba(16, 90, 165, 0.21);
  padding-bottom: 10px;
}
.candidate-info .rating-info img {
  margin-right: 5px;
}
.candidate-info .verified-icon {
  position: absolute;
  bottom: 10px;
  right: 5px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  object-fit: cover;
}
.candidate-info .user-img {
  border-radius: 50%;
  object-fit: cover;
  width: 91px;
  height: 91px;
}
.candidate-info h6 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.candidate-info p {
  font-size: 12px;
  margin-bottom: 0;
}
.candidate-info .skills-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.candidate-info .skills-list li {
  margin-bottom: 6px;
}
.candidate-info .skills-list li a {
  border: 1px solid #004F9F;
  color: #004F9F;
  font-size: 16px;
  border-radius: 40px;
  padding: 12px 20px;
  display: inline-flex;
  line-height: normal;
  cursor: pointer;
}
.candidate-info .skills-list li a:hover {
  color: #004F9F;
}
.candidate-info .see-all-skills {
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
}
.candidate-info .see-all-skills:hover {
  text-decoration: none;
}

.see-more {
  padding: 10px 19px;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .see-more {
    margin-bottom: 0;
  }
}
.see-more img {
  margin-left: 8px;
}

.flex-end {
  justify-content: center;
}
@media (min-width: 768px) {
  .flex-end {
    justify-content: flex-end;
  }
}

.should-know-about {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .should-know-about {
    padding: 100px 0;
  }
}
.should-know-about .section-head h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .should-know-about .section-head h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .should-know-about .section-head h2 {
    font-size: 50px;
    max-width: 660px;
  }
}
@media (min-width: 768px) {
  .should-know-about .section-head h2::after {
    left: auto;
    right: 50px;
  }
}
.should-know-about .content-box {
  max-width: 710px;
}
.should-know-about .q-and-a-box {
  margin-bottom: 30px;
}
.should-know-about .q-and-a-box h6 {
  font-size: 22px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .should-know-about .q-and-a-box h6 {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .should-know-about .q-and-a-box h6 {
    font-size: 40px;
  }
}
.should-know-about .q-and-a-box p, .should-know-about .q-and-a-box li {
  font-size: 16px;
  line-height: 140%;
}
@media (min-width: 768px) {
  .should-know-about .q-and-a-box p, .should-know-about .q-and-a-box li {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .should-know-about .q-and-a-box p, .should-know-about .q-and-a-box li {
    font-size: 20px;
  }
}
.should-know-about h4 {
  font-size: 26px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .should-know-about h4 {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .should-know-about h4 {
    font-size: 40px;
  }
}
.should-know-about .accordion {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .should-know-about .accordion {
    margin-bottom: 0;
  }
}
.should-know-about .accordion-item {
  border-width: 0px 0px 1px;
}
.should-know-about .accordion-item:last-child {
  border: none;
}
.should-know-about .accordion-button {
  padding: 20px 0;
  background-color: transparent;
  box-shadow: none;
  font-size: 18px;
  color: #3A3A3A;
  line-height: 140%;
}
@media (min-width: 768px) {
  .should-know-about .accordion-button {
    font-size: 26px;
  }
}
.should-know-about .accordion-body {
  padding: 0 0 30px;
  font-size: 15px;
  line-height: 140%;
}
@media (min-width: 768px) {
  .should-know-about .accordion-body {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .should-know-about .accordion-body {
    font-size: 20px;
  }
}

.our-mission {
  background: #EBF1F7;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .our-mission {
    padding: 90px 0;
  }
}
.our-mission .content {
  max-width: 973px;
  margin: 0 auto;
  text-align: center;
}
.our-mission .content h6 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .our-mission .content h6 {
    font-size: 18px;
  }
}
.our-mission .content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .our-mission .content h2 {
    font-size: 38px;
  }
}
@media (min-width: 992px) {
  .our-mission .content h2 {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .our-mission .content h2::after {
    right: 0;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .our-mission .content h2::after {
    left: auto;
    right: -60px;
    bottom: 0;
  }
}
.our-mission .content p {
  font-size: 16px;
  line-height: 140%;
}
@media (min-width: 768px) {
  .our-mission .content p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .our-mission .content p {
    font-size: 22px;
  }
}

.our-story {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .our-story {
    padding: 90px 0;
  }
}
.our-story h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .our-story h2 {
    font-size: 38px;
    margin-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .our-story h2 {
    font-size: 50px;
    margin-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .our-story h2::after {
    right: 0;
    margin: 0 auto;
  }
}
.our-story .content h2 {
  text-align: left;
  margin: 50px 0 20px;
}
.our-story .content p {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .our-story .content p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .our-story .content p {
    font-size: 22px;
  }
}

.certified-talent {
  background: #EBF1F7;
  padding: 60px 0;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .certified-talent {
    padding: 90px 0;
    margin-bottom: 100px;
  }
}
.certified-talent h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}
@media (min-width: 768px) {
  .certified-talent h2 {
    font-size: 38px;
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .certified-talent h2 {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .certified-talent h2::after {
    right: 0;
    margin: 0 auto;
  }
}

.verified-profile {
  max-width: 470px;
  margin: 0 auto 40px;
}
.verified-profile .box-item {
  text-align: center;
  position: relative;
}
.verified-profile .box-item h6 {
  font-size: 20px;
  line-height: 140%;
  color: #004F9F;
  font-weight: 700;
  margin: 8px 0;
}
.verified-profile .box-item p {
  font-size: 12px;
  line-height: 140%;
}
.verified-profile .box-item.show-after {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .verified-profile .box-item.show-after {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .verified-profile .box-item.show-after::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: -22px;
    height: 60px;
    width: 1px;
    background-color: #3A3A3A;
  }
}

.profile-group {
  max-width: 668px;
  margin: 0 auto;
}
.profile-group .item-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.profile-group .item-box h6 {
  font-size: 15px;
  letter-spacing: 0.35px;
  line-height: 21px;
  color: #004F9F;
  margin: 15px 0 0;
}
.profile-group .img-group {
  display: inline-block;
}
.profile-group .img-group img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.profile-group .img-group img:not(:last-child) {
  margin-right: -15px;
}
.profile-group .col-6:nth-child(1), .profile-group .col-6:nth-child(2) {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .profile-group .col-6:nth-child(1), .profile-group .col-6:nth-child(2) {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=style.css.map */
