@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.white_color {
  color: #fff;
}

.black_color {
  color: #000;
}

.primary_color {
  color: #6D2B50;
}

.primaryBg_color {
  background-color: #6D2B50;
}

.whiteBg_color {
  background-color: #fff;
}

.lightBgColor {
  background-color: #F3F3FF;
}

html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #ccc;
}
html::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: #6D2B50;
  opacity: 1;
}

.modal {
  z-index: 9999;
}

.btn-close {
  box-shadow: none !important;
  outline: none !important;
  border: 0 !important;
}
.btn-close:hover {
  box-shadow: none !important;
  outline: none !important;
  border: 0 !important;
}

.position-relative {
  z-index: 1;
}
.galleryCard {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.galleryCard .imageBox img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.galleryCard h6 {
  text-align: center;
  font-weight: 700;
  margin-top: 15px;
}

@media (max-width: 991.98px) {
  .galleryCard .imageBox img {
    width: 100%;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 575px) {
  .galleryCard .imageBox img {
    width: 100%;
    height: 210px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
body {
  background: #fff;
  overflow-x: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.hide {
  display: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.shortDes {
  margin-top: 10px;
}
.shortDes p {
  color: #7C7C7C;
}

h1 {
  margin: 0;
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  color: #000;
}

h2 {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: 26px;
}

h4 {
  margin: 0;
  font-size: 24px;
}

h5 {
  margin: 0;
  font-size: 22px;
}

h6 {
  margin: 0;
  font-size: 20px;
}

.font55 {
  margin: 0;
  font-size: 50px;
  line-height: 60px;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #7C7C7C;
  text-decoration: none;
  list-style: none;
}

ol {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 17px;
}
ol li {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #7C7C7C;
  padding-left: 10px;
}

p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #7C7C7C;
}

i {
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

a {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  color: #7C7C7C;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  color: #000;
}
a:hover {
  color: #000;
}

button {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  text-decoration: none;
  color: #7C7C7C;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
button:hover {
  color: #6D2B50;
}

.textWrapper p {
  margin-bottom: 10px;
}
.textWrapper p a {
  color: #6D2B50;
}
.textWrapper p:last-child {
  margin-bottom: 0;
}
.textWrapper ul {
  margin-top: 5px;
  margin-bottom: 15px;
}
.textWrapper ul li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 30px;
}
.textWrapper ul li::before {
  width: 16px;
  height: 16px;
  content: "";
  display: block;
  position: absolute;
  background: url(../images/svg/listIcon.svg) center;
  background-size: 16px;
  left: 0;
  top: 6px;
}
.textWrapper ul li:last-child {
  margin-bottom: 0;
}
.textWrapper ol {
  margin-bottom: 7px;
}
.textWrapper h1, .textWrapper h2, .textWrapper h3, .textWrapper h4, .textWrapper h5, .textWrapper h6 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

form label {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}
form label span {
  color: red;
}
form .form-group {
  position: relative;
  margin-bottom: 25px;
}
form .form-group .error {
  color: red;
  text-align: left;
  font-size: 12px;
  margin-top: 5px;
}
form .form-group .form-control {
  margin-bottom: 0;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #E0E0E0;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding: 10px 20px;
}
form .form-group .form-control:focus {
  box-shadow: none;
}
form .form-group .form-control::-moz-placeholder {
  color: #7C7C7C;
  opacity: 1;
}
form .form-group .form-control::placeholder {
  color: #7C7C7C;
  opacity: 1;
}
form .form-group .form-control:-ms-input-placeholder {
  color: #7C7C7C;
}
form .form-group .form-control::-ms-input-placeholder {
  color: #7C7C7C;
}
form .form-group textarea.form-control {
  resize: none;
  height: 130px;
}
form .form-group .iti__selected-flag {
  padding: 0 20px;
  font-weight: 600;
}
form .form-group .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background: transparent;
}
form .form-group .iti__arrow {
  border: 0;
  width: 12px;
  height: 7px;
  background: url("../images/numberDownArrow.png") center no-repeat;
  background-size: 11px;
  margin-left: 10px;
}
form .form-group .iti__flag-box {
  display: flex;
  align-items: center;
}
form .form-group .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  position: relative;
}
form .form-group .iti--separate-dial-code .iti__selected-flag::after {
  position: absolute;
  right: 0;
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #6D2B50;
}
form .form-group .iti__active, form .form-group .iti__highlight {
  background-color: #6D2B50;
  color: #fff;
}
form .form-group .iti__active .iti__dial-code, form .form-group .iti__highlight .iti__dial-code {
  color: #fff;
}
form .form-group .iti--separate-dial-code .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 500;
  margin-left: 10px;
}
form .form-group .iti__country-name, form .form-group .iti__dial-code {
  font-size: 14px;
}
form .form-group .iti__country-list {
  scroll-behavior: smooth;
}
form .form-group .iti__country-list::-webkit-scrollbar {
  width: 5px;
}
form .form-group .iti__country-list::-webkit-scrollbar-track {
  border-radius: 6px;
  background: #CECEC5;
}
form .form-group .iti__country-list::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #6D2B50;
  opacity: 1;
}
form .form-group .iti__country {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1px;
}
form .form-group .iti {
  width: 100% !important;
}
form .form-group .select2-container--default .select2-selection--single {
  border: 0 !important;
  color: #7C7C7C;
  font-weight: 500;
  border-radius: 0;
  background: #fff;
}
form .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 500;
  padding-left: 0;
  font-size: 16px;
  line-height: 30px;
  color: #7C7C7C;
}
form .form-group .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #6D2B50;
}
form .form-group .select2-container {
  border: 0;
}
form .form-group .select2-results__option {
  padding: 5px 15px;
  font-size: 14px;
}
form .form-group .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0 transparent;
  width: 13px;
  height: 7px;
  background: url("../images/svg/downArrow.svg") center no-repeat;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 0;
}
form .form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: inherit !important;
  bottom: 15px !important;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
form .form-group .select2.select2-container.select2-container--default {
  padding: 14px 20px;
  border: 2px solid #E0E0E0 !important;
  position: inherit;
  border-radius: 5px;
  width: 100%;
}
form .form-group .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #f7f7f7;
  color: #6D2B50;
}
form .form-group .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #6D2B50;
  color: #fff;
}
form .form-group .select2-container--default .select2-selection--single {
  height: inherit !important;
}
form .form-group .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 7px;
}
form .form-group .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  border-radius: 0px;
  background: #000;
}
form .form-group .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background-color: #6D2B50;
  opacity: 1;
}
form textarea.form-control {
  resize: none;
  height: 64px;
}

.select2-position .position-relative {
  z-index: inherit !important;
}

.fw-Regular {
  font-weight: 400 !important;
}

.fw-Medium {
  font-weight: 500 !important;
}

.fw-SemiBold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-ExtraBold {
  font-weight: 800 !important;
}

.fw-Black {
  font-weight: 900 !important;
}

a {
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.primary_btn {
  margin: 0;
  background: #6D2B50;
  color: #fff;
  border-radius: 0px;
  overflow: hidden;
  font-weight: 600;
  color: #fff;
  border: 0;
  border-radius: 7px;
  overflow: hidden;
  padding: 12px 35px;
  border: 2px solid #6D2B50;
  line-height: 28px;
  box-shadow: none;
  outline: none;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.primary_btn:hover {
  background-color: transparent;
  color: #6D2B50;
}

.white_btn {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #163470;
}
.white_btn:hover {
  background-color: transparent !important;
  color: #fff;
}

.black_btn {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff;
}
.black_btn:hover {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #000;
}

.primary_btn_type_02 {
  background-color: transparent;
  color: #6D2B50;
  padding: 8px 30px;
}
.primary_btn_type_02:hover {
  background-color: #6D2B50;
  color: #fff;
}

.slick-track {
  margin-left: 0 !important;
  line-height: 0;
}

.slick-dots {
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: 0;
  grid-gap: 10px;
}
.slick-dots li {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  opacity: 0.5;
  width: 15px;
  height: 15px;
  margin: 0;
}
.slick-dots li button {
  padding: 0;
  width: 10px;
  height: 10px;
  display: none;
}
.slick-dots li button::before {
  display: none;
}
.slick-dots .slick-active {
  opacity: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.readMoreBtn {
  margin: 0;
  padding: 0;
  color: #6D2B50;
  font-weight: 600;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.readMoreBtn::before {
  width: 35px;
  height: 2px;
  background-color: #6D2B50;
  left: 0;
  content: "";
  display: block;
  transition: ease-in 0.2s;
}
.readMoreBtn::after {
  width: 0;
  height: 2px;
  background-color: #6D2B50;
  right: 0;
  content: "";
  display: block;
  transition: ease-in 0.2s;
}
.readMoreBtn:hover {
  color: #6D2B50;
}
.readMoreBtn:hover::before {
  width: 0px;
}
.readMoreBtn:hover::after {
  width: 35px;
}

@media (min-width: 1500px) {
  .container {
    max-width: 87%;
  }
}
@media (max-width: 1499.98px) {
  h1 {
    font-size: 55px;
    line-height: 65px;
  }
  .fontH1 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 1299.98px) {
  h1 {
    font-size: 45px;
    line-height: 55px;
  }
  .font55 {
    font-size: 35px;
    line-height: 45px;
  }
  .textWrapper h1, .textWrapper h2, .textWrapper h3, .textWrapper h4, .textWrapper h5, .textWrapper h6 {
    font-size: 18px;
  }
  .primary_btn {
    padding: 10px 30px;
  }
}
@media (max-width: 1199.98px) {
  h1 {
    font-size: 40px;
    line-height: 50px;
  }
  h2 {
    font-size: 35px;
    line-height: 45px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  .font55 {
    font-size: 30px;
    line-height: 40px;
  }
  .primary_btn {
    padding: 8px 25px;
  }
  p {
    font-size: 15px;
    line-height: 26px;
  }
  ul li, ol li {
    font-size: 15px;
    line-height: 26px;
  }
  a {
    font-size: 15px;
    line-height: 26px;
  }
  form .form-group .form-control {
    font-size: 15px;
    line-height: 26px;
  }
  form .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 15px;
    line-height: 26px;
  }
  .textWrapper ul li::before {
    width: 14px;
    height: 14px;
    background-size: 14px;
  }
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
  h2 {
    font-size: 27px;
    line-height: 37px;
  }
  h3 {
    font-size: 23px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 19px;
  }
  h6 {
    font-size: 17px;
  }
  .font55 {
    font-size: 27px;
    line-height: 37px;
  }
  .primary_btn {
    padding: 6px 20px;
  }
  .textWrapper h1, .textWrapper h2, .textWrapper h3, .textWrapper h4, .textWrapper h5, .textWrapper h6 {
    font-size: 16px;
  }
  .textWrapper ul li {
    padding-left: 25px;
  }
  .textWrapper ul li::before {
    width: 12px;
    height: 12px;
    background-size: 12px;
  }
  p {
    font-size: 14px;
    line-height: 24px;
  }
  ul li, ol li {
    font-size: 14px;
    line-height: 24px;
  }
  a {
    font-size: 14px;
    line-height: 24px;
  }
  form .form-group .form-control {
    font-size: 14px;
    line-height: 24px;
  }
  form .form-group .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 14px;
  }
  form .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
  h2 {
    font-size: 26px;
    line-height: 36px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  .font55 {
    font-size: 25px;
    line-height: 35px;
  }
  p {
    font-size: 13px;
    line-height: 22px;
  }
  ul li, ol li {
    font-size: 13px;
    line-height: 22px;
  }
  a {
    font-size: 13px;
    line-height: 22px;
  }
  form .form-group .form-control {
    font-size: 13px;
    line-height: 22px;
  }
  form .form-group .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 13px;
  }
  form .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 13px;
    line-height: 22px;
  }
  .primary_btn {
    padding: 6px 15px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 27px;
    line-height: 37px;
  }
  h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .iti__country-list {
    width: 290px !important;
  }
}
.mt-10 {
  margin-top: 10px !important;
}

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

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

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

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

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

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

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

.mb-100 {
  margin-bottom: 100px !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-60 {
  margin-bottom: 60px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199.98px) {
  .pt-100 {
    padding-top: 70px !important;
  }
  .pt-90 {
    padding-top: 60px !important;
  }
  .pt-80 {
    padding-top: 50px !important;
  }
  .pt-70 {
    padding-top: 40px !important;
  }
  .pt-60 {
    padding-top: 50px !important;
  }
  .pb-100 {
    padding-bottom: 70px !important;
  }
  .pb-90 {
    padding-bottom: 60px !important;
  }
  .pb-80 {
    padding-bottom: 50px !important;
  }
  .pb-70 {
    padding-bottom: 40px !important;
  }
  .pb-60 {
    padding-bottom: 50px !important;
  }
  .mt-30 {
    margin-top: 20px !important;
  }
  .mt-40 {
    margin-top: 30px !important;
  }
  .mt-50 {
    margin-top: 40px !important;
  }
  .mt-60 {
    margin-top: 50px !important;
  }
  .mb-30 {
    margin-bottom: 25px !important;
  }
  .mb-40 {
    margin-bottom: 30px !important;
  }
  .mb-50 {
    margin-bottom: 40px !important;
  }
  .mb-60 {
    margin-bottom: 50px !important;
  }
  .mb-70 {
    margin-bottom: 60px !important;
  }
  .mt-100 {
    margin-top: 70px !important;
  }
  .mb-100 {
    margin-bottom: 70px !important;
  }
}
@media (max-width: 991.98px) {
  .pt-100 {
    padding-top: 50px !important;
  }
  .pt-90 {
    padding-top: 40px !important;
  }
  .pt-80 {
    padding-top: 30px !important;
  }
  .pt-70, .pt-60, .pt-50 {
    padding-top: 40px !important;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .pb-90 {
    padding-bottom: 40px !important;
  }
  .pb-80 {
    padding-bottom: 30px !important;
  }
  .pb-70, .pb-60, .pb-50 {
    padding-bottom: 40px !important;
  }
  .mb-40 {
    margin-bottom: 20px !important;
  }
  .mt-100 {
    margin-top: 50px !important;
  }
  .mb-100 {
    margin-bottom: 50px !important;
  }
  .mb-70 {
    margin-bottom: 60px !important;
  }
  .mt-50 {
    margin-top: 30px !important;
  }
  .mb-50 {
    margin-bottom: 30px !important;
  }
  .mt-15 {
    margin-top: 10px !important;
  }
}
@Media (max-width: 767px) {
  .mt-60 {
    margin-top: 40px !important;
  }
}
header {
  position: sticky;
  z-index: 997;
  padding: 0px 0;
  background: #F3F3FF;
  top: -1px;
}
header .navbar {
  padding-top: 20px;
  padding-bottom: 20px;
  grid-gap: 40px;
}
header .navbar .navbar-brand {
  margin: 0;
  transition: ease-in 0.5s;
}
header .navbar .navbar-brand img {
  transition: ease-in 0.5s;
}
header .navbar .navbar-collapse .navbar-nav {
  grid-gap: 40px;
  padding-left: 40px;
  border-left: 1px solid #D2D2E4;
}
header .navbar .navbar-collapse .navbar-nav .nav-item {
  margin: 0;
  line-height: inherit;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-toggle::after {
  display: inline-block;
  vertical-align: inherit;
  content: "";
  border: 0;
  background: url("../images/svg/downArrow.svg") center;
  background-size: contain;
  width: 16px;
  height: 8px;
  margin-top: 2px;
  margin-left: 10px;
  display: none;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #000;
  padding: 23px 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: inherit;
  position: relative;
  display: flex;
  align-items: center;
  transition: ease all 0.3s;
  font-weight: 600;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link svg {
  margin-left: 10px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #6D2B50;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .current-menu {
  color: #6D2B50 !important;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  padding: 20px 0;
  border-radius: 0px;
  background: #fff;
  background: #F3F3FF;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.11);
  min-width: 230px;
  max-width: 310px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 5px 0;
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  background-color: #fff;
  background-color: #F3F3FF;
  color: #000;
  display: flex;
  align-items: center;
  white-space: inherit;
  grid-gap: 10px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .current-menu {
  color: #6D2B50 !important;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus,
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  color: #6D2B50;
  background-color: #fff;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu2 li {
  padding: 0 20px;
  margin-bottom: 5px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu3::-webkit-scrollbar {
  width: 5px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu3::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #ccc;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu3::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: #6D2B50;
  opacity: 1;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu[data-bs-popper] {
  left: inherit;
  margin-top: inherit;
}
header .navbar .navbar-toggler {
  box-shadow: none;
  padding: 0;
  margin-left: 20px;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .mobile_right {
  display: flex;
  grid-gap: 30px;
  align-items: center;
}
header .navbar .mobile_right .call {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
header .navbar .mobile_right .call span {
  color: #163470;
}
header .navbar .mobile_right .call:hover span {
  color: #6D2B50;
}
header .navbar .mobile_right .hamburgerMenu {
  display: none;
}
header .navbar .mobile_right .hamburgerMenu img {
  width: 30px;
}
header .navbar .mobile_right .hamburgerMenu:hover {
  cursor: pointer;
}

header.sticky {
  left: 0;
  width: 100%;
  animation: ease-in-out;
  animation-duration: 1s;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1599.98px) {
  header .navbar {
    grid-gap: 30px;
  }
  header .navbar .navbar-brand img {
    height: 60px;
  }
  header .navbar .navbar-collapse .navbar-nav {
    grid-gap: 30px;
    padding-left: 30px;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 15px;
  }
  header .navbar .mobile_right {
    grid-gap: 20px;
  }
  header .navbar .mobile_right a {
    font-size: 15px;
  }
  header .navbar .mobile_right .primary_btn {
    font-size: 15px;
  }
}
@media (max-width: 1299.98px) {
  header .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    grid-gap: 20px;
  }
  header .navbar .navbar-brand img {
    height: 50px;
  }
  header .navbar .navbar-collapse .navbar-nav {
    grid-gap: 25px;
    padding-left: 20px;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
  header .navbar .mobile_right a {
    font-size: 14px;
  }
  header .navbar .mobile_right .primary_btn {
    font-size: 14px;
  }
}
@media (max-width: 1199.98px) {
  header .navbar .navbar-collapse .navbar-nav {
    grid-gap: 20px;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 13px;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 13px;
    line-height: 24px;
  }
}
@media all and (min-width: 992px) {
  header .dropdown-menu > li:hover {
    background-color: #fff;
  }
  header .dropdown-menu > li:hover a.dropdown-itemSubmenu {
    color: #fff;
  }
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .nav-item.has-megamenu:hover .dropdown-menu2 {
    display: block !important;
    border: 0px;
  }
}
@media (max-width: 991.98px) {
  header .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .navbar .mobile_right .hamburgerMenu {
    display: block;
  }
}
@media (max-width: 767px) {
  header .navbar .mobile_right {
    grid-gap: 10px;
  }
}
@media (max-width: 575px) {
  header .navbar .mobile_right .call .icon {
    width: 43px;
    height: 43px;
    background-color: #6D2B50;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .navbar .mobile_right .call .icon svg path {
    fill: #fff;
  }
  header .navbar .mobile_right .call span {
    display: none;
  }
}
@media (max-width: 370px) {
  header .navbar .navbar-brand img {
    height: 40px;
  }
}
.mobileMenu {
  width: 500px;
  border-left: 0;
}
.mobileMenu .offcanvas-header {
  padding: 17px 25px;
  border-bottom: 1px solid #6D2B50;
}
.mobileMenu .offcanvas-header h5 {
  font-weight: 700;
  color: #6D2B50;
  display: flex;
  align-items: center;
  grid-gap: 15px;
  cursor: pointer;
}
.mobileMenu .offcanvas-body {
  padding: 25px;
}
.mobileMenu .offcanvas-body ul .nav-item .nav-link {
  padding: 0 0 10px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.mobileMenu .offcanvas-body ul .nav-item .nav-link img {
  width: 40px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  flex-shrink: 0 !important;
  border: 1px solid #eee;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.12);
}
.mobileMenu .offcanvas-body ul .nav-item .nav-link:hover {
  color: #6D2B50;
}
.mobileMenu .offcanvas-body ul .nav-item .nav-linkSub {
  justify-content: space-between;
}
.mobileMenu .offcanvas-body ul .nav-item .nav-linkSub svg {
  width: 25px;
  height: 25px;
}
.mobileMenu .offcanvas-body ul .nav-item .nav-linkSub svg path {
  fill: #000;
}
.mobileMenu .offcanvas-body ul .nav-item .nav-linkSub:hover svg path {
  fill: #6D2B50;
}
.mobileMenu .offcanvas-body ul .nav-item .current-menu {
  color: #6D2B50;
}
.mobileMenu .offcanvas-body ul .nav-item .current-menu svg path {
  fill: #6D2B50;
}
.mobileMenu .offcanvas-body .btnWrapper {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.mobileMenu .brand {
  height: 50px;
}

@media (max-width: 767px) {
  .mobileMenu .offcanvas-body {
    padding: 25px;
  }
  .mobileMenu .offcanvas-body ul .nav-item .nav-link {
    font-size: 15px;
  }
}
.bannerSlider .item {
  position: relative;
}
.bannerSlider .item .sliderImg {
  position: relative;
  z-index: 1;
}
.bannerSlider .item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(22, 52, 112, 0);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.bannerSlider .item .overlay .cntBox {
  padding-top: 20px;
  padding-bottom: 20px;
}
.bannerSlider .item .overlay .cntBox h1 {
  color: #fff;
}
.bannerSlider .item .overlay .cntBox p {
  margin-top: 25px;
  color: #fff;
}
.bannerSlider .item .overlay .cntBox .primary_btn {
  margin-top: 45px;
}
.bannerSlider .slick-prev {
  left: 25px;
  z-index: 999;
  background: url(../images//svg/sliderLeftArrow.svg) no-repeat center;
  background-size: 11px;
}
.bannerSlider .slick-next {
  right: 25px;
  z-index: 999;
  background: url(../images//svg/sliderRightArrow.svg) no-repeat center;
  background-size: 11px;
}
.bannerSlider .slick-arrow {
  width: 65px;
  height: 65px;
  background-color: rgba(109, 43, 80, 0.3);
  border-radius: 100%;
}
.bannerSlider .slick-arrow::before {
  display: none;
}
.bannerSlider .slick-arrow:hover {
  background-color: rgb(109, 43, 80);
}

@media (max-width: 1459.98px) {
  .bannerSlider .slick-prev {
    left: 15px;
    background-size: 8px;
  }
  .bannerSlider .slick-next {
    right: 15px;
    background-size: 8px;
  }
  .bannerSlider .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1399.98px) {
  .bannerSlider .item .overlay .cntBox .primary_btn {
    margin-top: 25px;
  }
}
@media (max-width: 1199.98px) {
  .bannerSlider .item .overlay .cntBox p {
    margin-top: 15px;
  }
}
@media (max-width: 991.98px) {
  .bannerSlider .item .overlay .cntBox p {
    display: none;
  }
}
@media (max-width: 767px) {
  .bannerSlider .sliderImg {
    min-height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right bottom;
       object-position: right bottom;
  }
  .bannerSlider .item .overlay .cntBox .primary_btn {
    margin-top: 20px;
  }
  .bannerSlider .slick-prev {
    left: 10px;
    background-size: 6px;
  }
  .bannerSlider .slick-next {
    right: 10px;
    background-size: 6px;
  }
  .bannerSlider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .bannerSlider h1 {
    font-size: 25px;
    line-height: 32px;
  }
}
.features {
  padding: 0;
  margin: -65px 0 0 0;
  position: relative;
  z-index: 99;
}
.features .featuresCard {
  padding: 40px;
  background-color: #fff;
  border: 1px solid #E7E7F1;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}
.features .featuresCard .featuresHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.features .featuresCard .featuresHead .icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0 !important;
}
.features .featuresCard .font55 {
  color: #163470;
  font-weight: 700;
  margin: 20px 0 0px;
  line-height: inherit;
}
.features .featuresCard .font55 span {
  line-height: inherit;
}
.features .featuresCard p {
  margin: -10px 0 0;
  padding: 0;
  line-height: inherit;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

@media (max-width: 1399.98px) {
  .features {
    padding: 0;
    margin: -45px 0 0 0;
  }
  .features .featuresCard {
    padding: 30px 20px;
  }
  .features .featuresCard .featuresHead .icon {
    width: 50px;
    height: 50px;
  }
  .features .featuresCard .featuresHead .num svg {
    height: 40px;
  }
  .features .featuresCard p {
    margin: -5px 0 0;
  }
}
@media (max-width: 991.98px) {
  .features .row .col-6.col-lg-3:nth-child(3), .features .row .col-6.col-lg-3:nth-child(4) {
    margin-top: 20px;
  }
  .features .featuresCard {
    padding: 25px 15px;
  }
}
@media (max-width: 767px) {
  .features {
    margin: 0;
    padding: 50px 0;
  }
  .features .row .col-6.col-lg-3:nth-child(2n+1) {
    padding-right: 6px;
  }
  .features .row .col-6.col-lg-3:nth-child(2n) {
    padding-left: 6px;
  }
  .features .featuresCard {
    border-radius: 15px;
  }
  .features .featuresCard .featuresHead .icon {
    width: 35px;
    height: 35px;
  }
  .features .featuresCard .featuresHead .num svg {
    height: 30px;
  }
  .features .featuresCard .font55 {
    margin: 15px 0 0px;
  }
}
@media (max-width: 575px) {
  .features {
    padding: 30px 0;
  }
  .features .featuresCard {
    padding: 20px 15px;
  }
}
.aboutUs {
  padding: 100px 0;
}
.aboutUs .aboutUsCnt {
  padding-top: 60px;
  padding-bottom: 60px;
}
.aboutUs .backImage {
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  z-index: 0;
}
.aboutUs .backImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.aboutUs .overLay {
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(-90deg, rgba(22, 52, 112, 0.7), rgba(22, 52, 112, 0.3) 87%);
}
.aboutUs .topImage {
  position: relative;
  right: 0;
  top: inherit;
  width: 70%;
  height: auto;
  display: flex;
  align-items: center;
  z-index: 2;
}
.aboutUs .topImage img {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .aboutUs .container {
    max-width: calc((100% - 960px) / 2 + 960px) !important;
    margin-right: 0;
    padding-right: 0;
  }
  .aboutUs .container .row {
    margin-right: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .aboutUs .container {
    max-width: calc((100% - 1140px) / 2 + 1140px) !important;
  }
}
@media (min-width: 1500px) {
  .aboutUs .container {
    max-width: 93.5% !important;
  }
}
@media (max-width: 1199.98px) {
  .aboutUs {
    padding: 70px 0;
  }
}
@media (max-width: 991.98px) {
  .aboutUs {
    padding: 50px 0;
  }
  .aboutUs .aboutUsCnt {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .aboutUs .align-items-center.position-relative {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .aboutUs .align-items-center.position-relative {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .aboutUs .align-items-center.position-relative {
    height: 400px;
  }
}
@media (max-width: 500px) {
  .aboutUs .align-items-center.position-relative {
    height: 350px;
  }
}
@media (max-width: 450px) {
  .aboutUs .align-items-center.position-relative {
    height: 300px;
  }
}
@media (max-width: 400px) {
  .aboutUs .align-items-center.position-relative {
    height: 270px;
  }
}
@media (max-width: 350px) {
  .aboutUs .align-items-center.position-relative {
    height: 250px;
  }
}
.servicesHome {
  padding: 100px 0;
  position: relative;
}
.servicesHome::before {
  width: 100%;
  height: 40%;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  background-color: #163470;
}
.servicesHome .shortDes {
  margin-top: 10px;
}
.servicesHome .shortDes p {
  color: #fff;
}
.servicesHome .container {
  position: relative;
  z-index: 3;
}
.servicesHome h2 {
  color: #fff;
}

@media (max-width: 1199.98px) {
  .servicesHome {
    padding: 70px 0;
  }
}
@media (max-width: 991.98px) {
  .servicesHome {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .servicesHome::before {
    height: 15%;
  }
  .servicesHome .servicesHomeRow .col-md-4 {
    margin-top: 25px;
  }
  .servicesHome .servicesHomeRow .col-md-4:first-child {
    margin-top: 0;
  }
}
.servicesCard {
  transition: ease-in 0.3s;
}
.servicesCard .imageBox {
  overflow: hidden;
}
.servicesCard .imageBox img {
  width: 100%;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.servicesCard .servicesCardDetails {
  padding: 20px;
}
.servicesCard .servicesCardDetails h4 {
  color: #000;
  margin-bottom: 10px;
  font-weight: 700;
}
.servicesCard .servicesCardDetails p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: none;
}
.servicesCard .servicesCardDetails p:first-child {
  display: -webkit-box;
}
.servicesCard .servicesCardDetails .readMoreBtn {
  margin-top: 20px;
}
.servicesCard:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
.servicesCard:hover .imageBox {
  overflow: hidden;
}
.servicesCard:hover .imageBox img {
  transform: scale(1.2) rotate(7deg);
}

@media (max-width: 991.98px) {
  .servicesCard .servicesCardDetails {
    padding: 20px 15px;
  }
  .servicesCard .servicesCardDetails p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: none;
  }
  .servicesCard .servicesCardDetails p:first-child {
    display: -webkit-box;
  }
}
@media (max-width: 767px) {
  .servicesCard {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  }
}
.homeVacancies {
  padding: 100px 0;
  background: url(../images/vacanciesBg.jpg) center;
  background-size: cover;
  position: relative;
}
.homeVacancies::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 52, 112, 0.8);
  z-index: 1;
}
.homeVacancies .container {
  position: relative;
  z-index: 2;
}
.homeVacancies h2 {
  color: #fff;
}
.homeVacancies .shortDes p {
  color: #fff;
}
.homeVacancies .btnBox {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (max-width: 1199.98px) {
  .homeVacancies {
    padding: 70px 0;
  }
}
@media (max-width: 991.98px) {
  .homeVacancies {
    padding: 50px 0;
  }
  .homeVacancies .btnBox {
    margin-top: 20px;
    justify-content: start;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .homeVacancies .vacanciesWrapperRow .col-sm-6.col-xl-3:nth-child(2n+1) {
    padding-right: 6px;
  }
  .homeVacancies .vacanciesWrapperRow .col-sm-6.col-xl-3:nth-child(2n) {
    padding-left: 6px;
  }
}
.vacanciesCard {
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #EAEAEA;
  transition: ease-in 0.3s;
}
.vacanciesCard .vacanciesCardHead {
  padding: 20px;
  border-bottom: 1px solid #E7E7F1;
}
.vacanciesCard .vacanciesCardHead h6 {
  font-weight: 600;
  margin-bottom: 10px;
}
.vacanciesCard .vacanciesCardHead p {
  font-weight: 400;
}
.vacanciesCard .vacanciesCardHead p svg {
  margin-right: 10px;
}
.vacanciesCard .vacanciesCardDetails {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(10px, auto);
  grid-gap: 15px;
}
.vacanciesCard .vacanciesCardDetails .item span {
  color: #7C7C7C;
  font-size: 13px;
  line-height: 13px;
}
.vacanciesCard .vacanciesCardDetails .item p {
  margin-top: 5px;
  color: #000;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}
.vacanciesCard .vacanciesCardDetails .item:nth-child(even) {
  text-align: end;
}
.vacanciesCard .btnBox {
  padding: 5px 20px 20px;
}
.vacanciesCard .btnBox .primary_btn_type_02 {
  width: 100%;
}
.vacanciesCard:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1399.98px) {
  .vacanciesCard .vacanciesCardHead h6 {
    font-size: 18px;
  }
  .vacanciesCard .vacanciesCardHead p {
    font-size: 14px;
  }
}
@media (max-width: 1199.98px) {
  .vacanciesCard .vacanciesCardHead h6 {
    font-size: 16px;
  }
}
.testimonial {
  background-color: #F3F3FF;
}
.testimonial .leftImage {
  position: relative;
}
.testimonial .leftImage img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonial .cntBox {
  padding: 100px 0;
}
.testimonial .testimonialSlider {
  margin-top: 40px;
}
.testimonial .testimonialSlider .slick-slide {
  margin-right: 10px;
}
.testimonial .testimonialSlider .item {
  width: 100%;
  height: 100%;
}
.testimonial .testimonialSlider .item .testimonialCard {
  width: 100%;
}
.testimonial .testimonialSlider .item .testimonialCard .prfDet {
  width: 100%;
  display: flex;
  grid-gap: 20px;
}
.testimonial .testimonialSlider .item .testimonialCard .prfDet .profile {
  flex-shrink: 0 !important;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
}
.testimonial .testimonialSlider .item .testimonialCard .prfDet .details p {
  padding-right: 10px;
  font-size: 20px;
  line-height: 2rem;
  font-weight: 500;
  color: #000;
  max-height: 128px;
  overflow: hidden;
  overflow-y: auto;
}
.testimonial .testimonialSlider .item .testimonialCard .prfDet .details p::-webkit-scrollbar {
  width: 4px;
}
.testimonial .testimonialSlider .item .testimonialCard .prfDet .details p::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #ccc;
}
.testimonial .testimonialSlider .item .testimonialCard .prfDet .details p::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #6D2B50;
  opacity: 1;
}
.testimonial .testimonialSlider .item .testimonialCard .testimonialFooter {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 20px;
  flex-wrap: wrap;
}
.testimonial .testimonialSlider .item .testimonialCard .testimonialFooter .namePos h6 {
  color: #6D2B50;
}
.testimonial .testimonialSlider .item .testimonialCard .testimonialFooter .namePos p {
  font-weight: 400;
}
.testimonial .testimonialSlider .item .testimonialCard .testimonialFooter .namePos .readMoreBtn {
  color: #000;
  margin-bottom: 15px;
}
.testimonial .testimonialSlider .item .testimonialCard .testimonialFooter .rating {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.testimonial .slick-arrow-test {
  margin-top: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  grid-gap: 15px;
}
.testimonial .slick-arrow-test .slick-arrow {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #6D2B50;
  top: inherit;
  webkit-transform: inherit;
  transform: inherit;
}
.testimonial .slick-arrow-test .slick-arrow::before {
  display: none;
}
.testimonial .slick-arrow-test .slick-prev {
  left: inherit;
  background: #6D2B50 url(../images/svg/sliderLeftArrow.svg) center no-repeat;
  background-size: 8px;
}
.testimonial .slick-arrow-test .slick-next {
  right: inherit;
  background: #6D2B50 url(../images/svg/sliderRightArrow.svg) center no-repeat;
  background-size: 8px;
}

@media (min-width: 992px) {
  .testimonial .container {
    /*max-width: calc((100% - 960px) / 2 + 960px) !important;*/
    /*margin-left: 0;*/
    /*padding-left: 0;*/
  }
  .testimonial .container .row {
    /*margin-left: 0;*/
    /*padding-left: 0;*/
  }
}
@media (min-width: 1200px) {
  .testimonial .container {
    /*max-width: calc((100% - 1140px) / 2 + 1140px) !important;*/
  }
}
@media (min-width: 1500px) {
  .testimonial .container {
    /*max-width: 93.5% !important;*/
  }
}
@media (max-width: 1199.98px) {
  .testimonial .cntBox {
    padding: 70px 0;
  }
  .testimonial .testimonialSlider .item .testimonialCard .prfDet .details p {
    font-size: 18px;
    max-height: 82px;
    line-height: 1.7rem;
  }
}
@media (max-width: 991.98px) {
  .testimonial {
    padding-top: 50px;
  }
  .testimonial .leftImage img {
    position: relative;
  }
  .testimonial .cntBox {
    padding: 30px 0 50px;
  }
  .testimonial .testimonialSlider {
    margin-top: 25px;
  }
  .testimonial .testimonialSlider .item .testimonialCard .prfDet .details p {
    font-size: 16px;
    max-height: 96px;
    line-height: 1.5rem;
  }
  .testimonial .testimonialSlider .item .testimonialCard .testimonialFooter {
    margin-top: 25px;
  }
}
@media (max-width: 450px) {
  .testimonial .testimonialSlider .item .testimonialCard .prfDet {
    flex-direction: column;
  }
}
.faq {
  padding: 100px 0;
}
.faq .accordion .accordion-item {
  border: 0;
  border-radius: 0;
}
.faq .accordion .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.faq .accordion .accordion-item .accordion-header .accordion-button {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
  outline: none;
}
.faq .accordion .accordion-item .accordion-header .accordion-button::after {
  width: 36px;
  height: 36px;
  background: #6D2B50 url(../images/svg/accordion-2.png) center;
  background-size: 36px;
  border-radius: 100%;
}
.faq .accordion .accordion-item .accordion-header .accordion-button h6 {
  padding-right: 10px;
  font-weight: 500;
  color: #000;
  line-height: 1.8rem;
}
.faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #000;
  background-color: #fff;
}
.faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background: #6D2B50 url(../images/svg/accordion-1.png) center;
  border-radius: 100%;
}
.faq .accordion .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
}

@media (max-width: 1199.98px) {
  .faq {
    padding: 70px 0;
  }
}
@media (max-width: 991.98px) {
  .faq {
    padding: 50px 0;
  }
  .faq .accordion .accordion-item .accordion-header .accordion-button::after {
    width: 25px;
    height: 25px;
    background-size: 25px;
  }
  .faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    width: 25px;
    height: 25px;
    background-size: 25px;
  }
}
footer {
  padding: 60px 0;
  background-color: #000;
  background-color: #6D2B50;
}
footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 35px;
}
footer .footerLogo {
  width: 170px;
}
footer .shortDes {
  margin-top: 25px;
}
footer .shortDes p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
footer ul.links {
  margin: 0 0 0 10px;
  padding: 0;
}
footer ul.links li {
  list-style: disc;
  color: #fff;
  padding-left: 10px;
}
footer ul.links li a {
  color: #fff;
  font-weight: 600;
}
footer ul.links li a:hover {
  color: #6D2B50;
  color: #000;
}
footer ul.links li .current-menu {
  color: #6D2B50;
  color: #000;
}
footer ul.info {
  margin: 0;
  padding: 0;
}
footer ul.info li {
  display: flex;
  align-items: start;
  grid-gap: 17px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
footer ul.info li .icon {
  flex-shrink: 0 !important;
}
footer ul.info li .icon svg {
  width: 25px;
  height: 25px;
}
footer ul.info li h6 {
  color: #fff;
  font-weight: 600;
}
footer ul.info li a {
  margin-top: 5px;
  color: #fff;
}
footer ul.info li:last-child {
  margin-bottom: 0;
}
footer ul.info li a:hover {
  color: #6D2B50;
  color: #000;
}
footer .social {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  flex-wrap: wrap;
}
footer .social .icon {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: ease-in 0.3s;
}
footer .social .icon:hover {
  background-color: #163470;
}
footer .social .icon:hover svg path {
  fill: #fff;
}

@media (max-width: 1399.98px) {
  footer ul li a, footer ul li p {
    font-size: 14px;
  }
}
@media (max-width: 1299.98px) {
  footer ul.info li {
    grid-gap: 10px;
  }
  footer ul.info li .icon {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  footer .footerLogo {
    width: 150px;
  }
}
@media (max-width: 991.98px) {
  footer {
    padding: 40px 0;
  }
  footer .footerLogo {
    width: 120px;
  }
  footer ul.info li {
    grid-gap: 10px;
  }
  footer ul.info li .icon {
    display: block;
  }
}
@media (max-width: 767px) {
  footer .footerLogo {
    width: 90px;
  }
}
.copy {
  padding: 15px 0;
  background-color: #163470;
}
.copy p {
  font-size: 14px;
  color: #fff;
}
.copy .right {
  text-align: end;
}
.copy .right a {
  color: #fff;
}
.copy .right a:hover {
  color: #6D2B50;
}

@media (max-width: 991.98px) {
  .copy .right {
    text-align: start;
  }
}
.madalPop .modal-content {
  border-radius: 20px;
}
.madalPop .modal-header {
  padding: 20px 30px;
}
.madalPop .modal-header h6 {
  font-weight: 700;
  color: #000;
}
.madalPop .modal-body {
  padding: 30px 30px 40px;
}
.madalPop .modal-body h5 {
  padding-bottom: 20px;
  font-weight: 700;
  color: #6D2B50;
  text-align: center;
  font-size: 22px;
}
.madalPop .form-group .iti {
  border-radius: 5px;
  background: #fff;
  border: 2px solid #E0E0E0;
  display: flex;
  align-items: center;
}
.madalPop .form-group .iti .iti__flag-container {
  position: relative;
}
.madalPop .form-group .iti .form-control {
  padding-left: 15px !important;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
.madalPop .form-group .iti__selected-flag {
  padding-right: 15px;
}
.madalPop .file-upload, .madalPop .file-upload02 {
  display: block;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.madalPop .file-upload .file-select, .madalPop .file-upload02 .file-select02 {
  display: flex;
  align-items: center;
  border: 2px solid #E0E0E0;
  border-radius: 5px;
  overflow: hidden;
  color: #34495e;
  cursor: pointer;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
  padding-right: 10px;
  grid-gap: 10px;
}
.madalPop .file-upload .file-select .file-select-button, .madalPop .file-upload02 .file-select02 .file-select-button02 {
  background: #6D2B50;
  color: #fff;
  padding: 0 10px;
  display: inline-block;
  line-height: 28px;
  font-weight: 500;
  padding: 12px 20px;
  font-size: 14px;
  flex-shrink: 0 !important;
}
.madalPop .file-upload .file-select .file-select-name, .madalPop .file-upload02 .file-select02 .file-select-name02 {
  line-height: 40px;
  display: inline-block;
  font-size: 14px;
  word-break: break-all;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.madalPop .file-upload .file-select:hover, .madalPop .file-upload02 .file-select02:hover {
  border-color: #E0E0E0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.madalPop .file-upload .file-select:hover .file-select-button, .madalPop .file-upload02 .file-select02:hover .file-select-button02 {
  background: #6D2B50;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.madalPop .file-upload.active .file-select, .madalPop .file-upload02.active .file-select02 {
  border-color: #6D2B50;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.madalPop .file-upload.active .file-select .file-select-button, .madalPop .file-upload02.active .file-select02 .file-select-button02 {
  background: #6D2B50;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.madalPop .file-upload .file-select input[type=file], .madalPop .file-upload02 .file-select02 input[type=file] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}
.madalPop .file-upload .file-select.file-select-disabled, .madalPop .file-upload02 .file-select02.file-select-disabled {
  opacity: 0.65;
}
.madalPop .file-upload .file-select.file-select-disabled:hover, .madalPop .file-upload02 .file-select02.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #E0E0E0;
  color: #34495e;
  cursor: pointer;
  line-height: 28px;
  font-weight: 500;
  padding: 12px 20px;
  margin-top: 5px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}
.madalPop .file-upload .file-select.file-select-disabled:hover .file-select-button, .madalPop .file-upload02 .file-select02.file-select-disabled:hover .file-select-button02 {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.madalPop .file-upload .file-select.file-select-disabled:hover .file-select-name, .madalPop .file-upload02 .file-select02.file-select-disabled:hover .file-select-name02 {
  line-height: 40px;
  display: inline-block;
}

@media (min-width: 992px) {
  .madalPop .modal-dialog {
    max-width: 650px;
  }
}
@media (max-width: 991.98px) {
  .madalPop .modal-header {
    padding: 20px 15px;
  }
  .madalPop .modal-body {
    padding: 20px 15px 30px;
  }
}
@media (max-width: 767px) {
  .madalPop .file-upload .file-select .file-select-button {
    padding: 12px 10px;
    font-size: 13px;
  }
}
.banner {
  position: relative;
  z-index: 0;
}
.banner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 52, 112, 0.8);
  z-index: 2;
}
.banner .innerBannerImage {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner .container {
  position: relative;
  z-index: 3;
}
.banner .cnt {
  padding: 140px 0;
}
.banner .cnt h2 {
  color: #fff;
}
.banner .cnt .breadcrumb {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
  margin-top: 20px;
}
.banner .cnt .breadcrumb .breadcrumb-item {
  margin: 0;
  padding: 0 20px 0 0;
  position: relative;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.banner .cnt .breadcrumb .breadcrumb-item a {
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.banner .cnt .breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}
.banner .cnt .breadcrumb .breadcrumb-item::after {
  position: absolute;
  right: 0;
  display: inline-block;
  color: #fff;
  content: var(--bs-breadcrumb-divider, "/");
}
.banner .cnt .breadcrumb .breadcrumb-item::before {
  display: none;
  float: inherit;
}
.banner .cnt .breadcrumb .breadcrumb-item:last-child {
  padding-right: 0;
}
.banner .cnt .breadcrumb .breadcrumb-item:last-child::after {
  display: none;
}

@media (max-width: 1199.98px) {
  .banner .cnt {
    padding: 120px 0;
  }
}
@media (max-width: 991.98px) {
  .banner .cnt {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .banner .cnt {
    padding: 70px 0;
  }
  .banner .cnt .breadcrumb {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .banner .cnt {
    padding: 50px 0;
  }
}
.misVis {
  padding: 100px 0;
  background-color: #163470;
  position: relative;
}
.misVis::before {
  position: absolute;
  width: 100%;
  height: 50%;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #F3F3FF;
  display: block;
  z-index: 1;
}
.misVis .container {
  position: relative;
  z-index: 3;
}
.misVis .misVisCard {
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  grid-gap: 20px;
  background-color: #fff;
  height: 100%;
}
.misVis .misVisCard .icon {
  flex-shrink: 0 !important;
  width: 80px;
  height: 80px;
}
.misVis .misVisCard h4 {
  margin-bottom: 20px;
  font-weight: 700;
}

.whyUs {
  padding: 0 0 100px 0;
  background-color: #F3F3FF;
}
.whyUs .whyCard {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 35px 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.whyUs .whyCard h4 {
  font-weight: 700;
  color: #000;
  margin: 15px 0 10px;
}
.whyUs .whyCard .textWrapper p {
  text-align: center;
}

.team {
  padding: 100px 0;
  background-color: #fff;
}
.team .teamSlider .slick-slide {
  margin: 0 10px;
}
.team .teamCard .imgBox {
  overflow: hidden;
}
.team .teamCard .imgBox img {
  transition: ease-in 0.3s;
}
.team .teamCard h6 {
  margin-top: 20px;
  font-weight: 700;
}
.team .teamCard p {
  text-transform: capitalize;
}
.team .teamCard:hover .imgBox img {
  transform: scale(1.2) rotate(7deg);
}
.team .slick-arrow-team {
  margin-top: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  grid-gap: 15px;
}
.team .slick-arrow-team .slick-arrow {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #6D2B50;
  top: inherit;
  webkit-transform: inherit;
  transform: inherit;
}
.team .slick-arrow-team .slick-arrow::before {
  display: none;
}
.team .slick-arrow-team .slick-prev {
  left: inherit;
  background: #6D2B50 url(../images/svg/sliderLeftArrow.svg) center no-repeat;
  background-size: 8px;
}
.team .slick-arrow-team .slick-next {
  right: inherit;
  background: #6D2B50 url(../images/svg/sliderRightArrow.svg) center no-repeat;
  background-size: 8px;
}

@media (max-width: 1199.98px) {
  .misVis {
    padding: 70px 0;
  }
  .misVis .misVisCard {
    padding: 30px 20px;
  }
  .whyUs {
    padding-bottom: 70px;
  }
  .team {
    padding: 70px 0;
  }
}
@media (max-width: 991.98px) {
  .misVis {
    padding: 50px 0;
  }
  .aboutUsPage .rowRev {
    flex-direction: column-reverse;
  }
  .whyUs {
    padding-bottom: 50px;
  }
  .team {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .misVis .misVisCard .icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 450px) {
  .misVis .misVisCard {
    padding: 20px 15px;
    flex-direction: column;
  }
  .misVis .misVisCard .icon {
    width: 40px;
    height: 40px;
  }
}
.servicesPage::before {
  display: none;
}
.servicesPage h2 {
  color: #000;
}
.servicesPage .shortDes p {
  color: #7C7C7C;
}

.cta {
  position: relative;
}
.cta .ctaImage {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.cta::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  display: block;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.cta .container {
  position: relative;
  z-index: 3;
}
.cta .cntWrap {
  padding: 80px 0;
}
.cta .cntWrap h2 {
  color: #fff;
}
.cta .cntWrap .primary_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  background-color: #163470;
  border-color: #163470;
}
.cta .cntWrap .primary_btn:hover {
  background-color: #6D2B50;
  border-color: #6D2B50;
  color: #fff;
}

@media (max-width: 1199.98px) {
  .cta .cntWrap {
    padding: 60px 0;
  }
}
@media (max-width: 991.98px) {
  .cta .cntWrap {
    padding: 40px 0;
  }
}
.common {
  padding: 100px 0;
}

@media (max-width: 1199.98px) {
  .common {
    padding: 70px 0;
  }
}
@media (max-width: 991.98px) {
  .common {
    padding: 50px 0;
  }
}
.vacanciesPage {
  padding: 100px 0;
}
.vacanciesPage .searchWrapper {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
  padding: 15px 30px;
}
.vacanciesPage .searchWrapper form {
  display: flex;
  align-items: center;
}
.vacanciesPage .searchWrapper form .form-group {
  margin: 0;
}
.vacanciesPage .searchWrapper form .form-group .select2.select2-container.select2-container--default {
  padding: 10px 20px;
}
.vacanciesPage .searchWrapper form .form-group .searchInput {
  background: url(../images/svg/search.svg) no-repeat;
  background-size: 20px;
  background-position: 15px center;
  padding-left: 50px;
}
.vacanciesPage .searchWrapper form .form-group .form-control {
  border: 0;
  border-radius: 0;
  border-right: 2px solid #E0E0E0;
  font-weight: 400;
}
.vacanciesPage .searchWrapper form .form-group .select2.select2-container.select2-container--default {
  border: 0 !important;
  border-radius: 0;
  border-right: 2px solid #E0E0E0 !important;
  font-weight: 400;
}
.vacanciesPage .searchWrapper form .form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 400 !important;
}
.vacanciesPage .searchWrapper form .form-group:nth-child(1) {
  width: 35%;
}
.vacanciesPage .searchWrapper form .form-group:nth-child(2) {
  width: 30%;
}
.vacanciesPage .searchWrapper form .form-group:nth-child(3) {
  width: 30%;
}
.vacanciesPage .searchWrapper form .form-group:nth-child(3) .form-control {
  border: 0 !important;
}
.vacanciesPage .searchWrapper form .primary_btn {
  flex-shrink: 0 !important;
}

@media (max-width: 1199.98px) {
  .vacanciesPage {
    padding: 70px 0;
  }
  .vacanciesPage .searchWrapper {
    padding: 10px 15px;
    border-radius: 7px;
  }
  .vacanciesPage .searchWrapper form .form-group .searchInput {
    background-size: 15px;
    background-position: 10px center;
    padding-left: 40px;
  }
}
@media (max-width: 991.98px) {
  .vacanciesPage {
    padding: 50px 0;
  }
  .vacanciesPage .searchWrapper {
    padding: 15px;
  }
  .vacanciesPage .searchWrapper form {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
  .vacanciesPage .searchWrapper form .form-group .form-control {
    border: 1px solid #E0E0E0 !important;
    border-radius: 5px;
  }
  .vacanciesPage .searchWrapper form .form-group:nth-child(1) {
    width: 100%;
  }
  .vacanciesPage .searchWrapper form .form-group:nth-child(2) {
    width: 100%;
  }
  .vacanciesPage .searchWrapper form .form-group:nth-child(2) .select2.select2-container.select2-container--default {
    border: 1px solid #E0E0E0 !important;
    font-weight: 400;
    border-radius: 5px;
  }
  .vacanciesPage .searchWrapper form .form-group:nth-child(3) {
    width: 100%;
  }
  .vacanciesPage .searchWrapper form .form-group:nth-child(3) .form-control {
    border: 1px solid #E0E0E0 !important;
    border-radius: 5px;
  }
  .vacanciesPage .searchWrapper form .primary_btn {
    margin-right: 0 !important;
    margin-left: auto;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .vacanciesPage .vacanciesWrapperRow .col-sm-6.col-xl-3:nth-child(2n+1) {
    padding-right: 6px;
  }
  .vacanciesPage .vacanciesWrapperRow .col-sm-6.col-xl-3:nth-child(2n) {
    padding-left: 6px;
  }
}
@media (max-width: 475px) {
  .vacanciesPage .searchWrapper {
    padding: 15px;
  }
  .vacanciesPage .searchWrapper form {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .vacanciesPage .searchWrapper form .primary_btn {
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: 100%;
  }
}
.vacanciesDestils {
  padding: 100px 0;
}
.vacanciesDestils .vacanciesDestilsHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 20px;
  flex-wrap: wrap;
}
.vacanciesDestils .vacanciesDestilsHead h2 {
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
}
.vacanciesDestils .vacanciesDestilsHead p {
  margin-top: 5px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.vacanciesDestils table, .vacanciesDestils tbody {
  margin-top: 30px;
  width: 100% !important;
}
.vacanciesDestils table th, .vacanciesDestils table td, .vacanciesDestils tbody th, .vacanciesDestils tbody td {
  padding: 15px;
}
.vacanciesDestils table th p, .vacanciesDestils table td p, .vacanciesDestils tbody th p, .vacanciesDestils tbody td p {
  font-weight: 400;
}
.vacanciesDestils table tr, .vacanciesDestils tbody tr {
  width: 100% !important;
  background-color: #F3F3FF;
}
.vacanciesDestils table tr th, .vacanciesDestils tbody tr th {
  width: 35%;
  font-weight: 400;
}
.vacanciesDestils table tr td, .vacanciesDestils tbody tr td {
  width: 65%;
  font-weight: 700;
}
.vacanciesDestils table tr td p, .vacanciesDestils tbody tr td p {
  font-weight: 700;
}
.vacanciesDestils table tr:nth-child(even), .vacanciesDestils tbody tr:nth-child(even) {
  background-color: #fff;
}
.vacanciesDestils .accordion {
  margin-top: 40px;
}
.vacanciesDestils .accordion .accordion-item .accordion-button {
  padding-top: 18px;
  padding-bottom: 18px;
  box-shadow: none;
  outline: none;
  background-color: #F3F3FF;
}
.vacanciesDestils .accordion .accordion-item .accordion-button:hover {
  color: #163470 !important;
}
.vacanciesDestils .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #163470;
  box-shadow: none;
}
.vacanciesDestils .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

@media (max-width: 1199.98px) {
  .vacanciesDestils {
    padding: 70px 0;
  }
}
@media (max-width: 991.98px) {
  .vacanciesDestils {
    padding: 50px 0;
  }
}
.contactPage {
  padding: 100px 0;
}
.contactPage .contactInfo {
  border: 2px solid #163470;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}
.contactPage .contactInfo .map {
  position: relative;
  height: 248px;
  width: 100%;
  overflow: hidden;
}
.contactPage .contactInfo .map iframe {
  position: absolute;
  top: 0;
  left: 0;
}
.contactPage .contactInfo .contactDetails {
  padding: 30px 20px;
}
.contactPage .contactInfo .contactDetails ul li {
  display: flex;
  align-items: flex-start;
  grid-gap: 12px;
}
.contactPage .contactInfo .contactDetails ul li .icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0 !important;
}
.contactPage .contactInfo .contactDetails ul li a {
  display: block;
}

.contactForm {
  margin: 0 0 100px;
  padding: 0 0 0px;
  position: relative;
}
.contactForm::before {
  position: absolute;
  width: 100%;
  height: 60%;
  background-color: #F3F3FF;
  top: 20%;
  content: "";
  display: block;
}
.contactForm .container {
  z-index: 2;
  position: relative;
}
.contactForm .call {
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #163470;
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.contactForm h5 {
  font-weight: 700;
  margin-bottom: 15px;
}
.contactForm .social {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  flex-wrap: wrap;
}
.contactForm .social .icon {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #163470;
  transition: ease-in 0.3s;
}
.contactForm .social .icon svg path {
  fill: #fff;
}
.contactForm .social .icon:hover {
  background-color: #6D2B50;
}
.contactForm .formWrapper {
  padding: 50px 40px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}

@media (max-width: 1399.98px) {
  .contactPage .contactInfo .contactDetails ul li p, .contactPage .contactInfo .contactDetails ul li a {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (max-width: 1199.98px) {
  .contactPage {
    padding: 70px 0;
  }
  .contactForm {
    margin: 0 0 70px;
  }
  .contactForm .formWrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 991.98px) {
  .contactPage {
    padding: 50px 0;
  }
  .contactPage .contactInfo .map {
    height: 200px;
  }
  .contactForm {
    margin: 0;
    padding: 50px 0 50px;
  }
  .contactForm::before {
    height: 100%;
    top: 0;
  }
  .contactForm .formWrapper {
    border-radius: 15px;
  }
}
@media (max-width: 767px) {
  .contactPage .contactInfo .map {
    height: 175px;
  }
  .contactPage .contactInfo .contactDetails {
    padding: 25px 15px;
  }
  .contactForm .formWrapper {
    padding: 30px 20px;
  }
}
.contactRight {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 9999;
}

.contactBox .btn {
  padding: 0;
  box-shadow: none;
  outline: none;
  border: 0;
}
.contactBox .dropdown-toggle img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.contactBox .dropdown-toggle:after {
  display: none;
}
.contactBox .dropdown-menu {
  background: #FFFFFF;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 30px 15px;
  border: 0;
  bottom: 50px !important;
  width: 330px;
}
.contactBox .dropdown-menu li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F4F4F4;
}
.contactBox .dropdown-menu li a {
  display: flex;
  grid-gap: 15px;
}
.contactBox .dropdown-menu li a span {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  line-height: 14px;
}
.contactBox .dropdown-menu li a p {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  line-height: 22px;
}
.contactBox .dropdown-menu li a:hover {
  background: transparent;
}
.contactBox .dropdown-menu li a:hover p {
  color: #6D2B50;
}
.contactBox .dropdown-menu li:hover {
  background: transparent;
}
.contactBox .dropdown-menu li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.contactBox .dropdown-menu.show {
  animation: ease-in-out;
  animation-name: fadeIn;
  animation-duration: 0.5s;
}

@media (max-width: 1399.98px) {
  .contactBox .dropdown-menu {
    bottom: 20px !important;
  }
}
@media (max-width: 1199.98px) {
  .contactBox {
    right: 10px;
  }
  .contactBox .dropdown-menu {
    width: 300px;
  }
  .contactBox .dropdown-menu li a span {
    font-size: 13px;
  }
  .contactBox .dropdown-menu li a p {
    font-size: 14px;
  }
  .contactBox .dropdown-menu li a img {
    width: 20px;
  }
}
@media (max-width: 575px) {
  .contactBox .dropdown-menu {
    border-radius: 7px;
    padding: 15px 10px;
    width: 230px;
  }
  .contactBox .dropdown-menu li {
    padding-bottom: 7px;
    margin-bottom: 7px;
  }
  .contactBox .dropdown-menu li a img {
    display: none;
  }
  .contactBox .dropdown-menu li a p {
    font-size: 12px;
    padding-bottom: 5px;
  }
  .contactBox .dropdown-toggle img {
    width: 40px;
    height: 40px;
  }
}
.homeBlog {
  padding: 100px 0;
}

.blogCard {
  padding: 0;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #EAEAEA;
  padding-bottom: 25px;
}
.blogCard .blogImage {
  overflow: hidden;
}
.blogCard .blogImage img {
  width: 100%;
  transition: ease-in 0.3s;
}
.blogCard .cnt {
  padding: 30px 20px 0;
  display: flex;
  flex-direction: column;
}
.blogCard .cnt h5 {
  font-weight: 600;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blogCard .cnt ul {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 25px;
  margin: 25px 0 15px;
}
.blogCard .cnt ul li {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-size: 14px;
}
.blogCard .readMoreBtn {
  margin-left: 20px;
}
.blogCard:hover .blogImage img {
  transform: rotate(-5deg) scale(1.3);
}

@media (max-width: 1199.98px) {
  .homeBlog {
    padding: 70px 0;
  }
  .blogCard .cnt {
    padding: 20px 10px 0;
  }
  .blogCard .cnt ul {
    margin: 15px 0;
  }
  .blogCard .readMoreBtn {
    margin-left: 10px;
  }
}
@media (max-width: 991.98px) {
  .homeBlog {
    padding: 50px 0;
  }
}
.blogDetails {
  padding: 100px 0;
}
.blogDetails .blogDetailWrap .articleCardImage {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.blogDetails .blogDetailWrap .tag {
  background-color: #002A84;
  padding: 4px 15px;
  font-size: 14px;
  line-height: inherit;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  margin-bottom: 20px;
}
.blogDetails .blogDetailWrap ul.blogInfo {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 25px;
  margin: 20px 0;
}
.blogDetails .blogDetailWrap ul.blogInfo li {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-size: 14px;
}
.blogDetails .blogDetailWrap .font-26 {
  font-size: 26px;
  line-height: 1.8rem;
}
.blogDetails .recentList .recentCard {
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  box-shadow: 0px 5px 40px 0px rgba(40, 40, 40, 0.12);
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.blogDetails .recentList .recentCard .imageBox {
  width: 100px;
  height: 100px;
  flex-shrink: 0 !important;
  border-radius: 5px;
  overflow: hidden;
}
.blogDetails .recentList .recentCard .imageBox img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.blogDetails .recentList .recentCard p {
  font-size: 12px;
}
.blogDetails .recentList .recentCard h6 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #000;
}
.blogDetails .recentList .recentCard:hover .imageBox img {
  transform: scale(1.2) rotate(5deg);
}
.blogDetails .recentList .recentCard:hover h6 {
  color: #6D2B50;
}
.blogDetails .recentList .recentCard:last-child {
  margin-bottom: 0;
}

@media (max-width: 1399.98px) {
  .blogDetails .recentList .recentCard {
    grid-gap: 15px;
  }
  .blogDetails .recentList .recentCard .imageBox {
    width: 70px;
    height: 70px;
  }
  .blogDetails .recentList .recentCard h6 {
    font-size: 15px;
  }
}
@media (max-width: 1199.98px) {
  .blogDetails {
    padding: 70px 0;
  }
  .blogDetails .blogDetailWrap .font-26 {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .blogDetails {
    padding: 50px 0;
  }
  .blogDetails .blogDetailWrap .font-26 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .blogDetails .blogDetailWrap .font-26 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .blogDetails .blogDetailWrap .font-26 {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */