@charset "UTF-8";
@import '../scss/vendors/swiper-bundle.min.css';
@import '../scss/vendors/datepicker.css';
@import '../scss/vendors/fancybox.min.css';

/* Scroll Animation Css Stat */
.animatable {
  opacity: 0;
  visibility: hidden;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.animated {
  opacity: 1;
  visibility: visible;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -ms-animation-duration: 0.8s;
  -o-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.animated.fade {
  -webkit-animation-name: fade;
  -moz-animation-name: fade;
  -o-animation-name: fade;
  animation-name: fade;
}

.animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.animated.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.animated.zoomIn {
  -webkit-animation-name: zoomIn;
  -moz-animation-name: zoomIn;
  -o-animation-name: zoomIn;
  animation-name: zoomIn;
}

[data-delay="100"].animated {
  animation-delay: 0.1s;
}

[data-delay="150"].animated {
  animation-delay: 0.15s;
}

[data-delay="200"].animated {
  animation-delay: 0.2s;
}

[data-delay="400"].animated {
  animation-delay: 0.4s;
}

[data-delay="600"].animated {
  animation-delay: 0.6s;
}

[data-delay="800"].animated {
  animation-delay: 0.8s;
}

[data-delay="1000"].animated {
  animation-delay: 1s;
}

[data-delay="1200"].animated {
  animation-delay: 1.2s;
}

[data-delay="1400"].animated {
  animation-delay: 1.4s;
}

[data-delay="1600"].animated {
  animation-delay: 1.6s;
}

[data-delay="1800"].animated {
  animation-delay: 1.8s;
}

[data-delay="2000"].animated {
  animation-delay: 2s;
}

/*** fadeInDown ***/
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*** fadeInDown ***/
/*** fadeInDown ***/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*** fadeInDown ***/
/*** fadeInUp ***/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*** fadeInUp ***/
/*** fadeInLeft ***/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

/*** fadeInLeft ***/
/*** fadeInRight ***/
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(100px);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*** fadeInRight ***/
/*** ZoomIn ***/
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes zoomIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }

  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}

@-o-keyframes zoomIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.8);
  }

  100% {
    opacity: 1;
    -o-transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*** ZoomIn ***/
/* Scroll Animation Css End */
@keyframes customMove {
  0% {
    transform: translate(0px, 0px);
  }

  20% {
    transform: translate(20px, -1px);
  }

  40% {
    transform: translate(40px, 30px);
  }

  60% {
    transform: translate(20px, 20px);
  }

  80% {
    transform: translate(-10px, 30px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes menu-slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes menu-slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.contact-section .contactImg.animated .mainImg {
  opacity: 1;
}

.contact-section .contactImg.animated .contactImg-elements li {
  opacity: 1;
  transform: scale(1);
  transition-delay: 300ms;
}

.contact-section .contactImg .contactImg-elements li.element2 {
  animation: customMove 38s 2s infinite linear;
}

.contact-section .contactImg .contactImg-elements li.element3 {
  animation: customMove 30s 2s infinite linear;
}

.contact-section .contactImg .contactImg-elements li.element4 {
  animation: customMove 27s 2s infinite linear;
}

.contact-section .contactImg .contactImg-elements li.element5 {
  animation: customMove 37s 2s infinite linear;
}

.contact-section .contactImg .contactImg-elements li.element6 {
  animation: customMove 45s 2s infinite linear;
}

.contact-section .contactImg .contactImg-elements li.element7 {
  animation: customMove 30s 2s infinite linear;
}

.contact-section .contactImg .contactImg-elements li.element8 {
  animation: customMove 33s 2s infinite linear;
}

.contact-section .contactImg .contactImg-elements li.element9 {
  animation: customMove 52s 2s infinite linear;
}

.rever-section.animated::after {
  width: 50%;
  transition-delay: 200ms;
}

/* Color */
/* Font Typo */
* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}

html,
body,
br,
hr,
div,
span,
a,
object,
iframe,
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
address,
small,
big,
cite,
dfn,
ins,
del,
i,
em,
b,
strong,
sup,
sub,
strike,
pre,
code,
samp,
kbd,
var,
tt,
form,
fieldset,
legend,
label,
input,
textarea,
option,
.nobox {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

blockquote,
q {
  quotes: none;
}

br {
  height: 0;
}

ul,
ol,
dl,
li {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Serif";
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #4370f5;
}

h1,
.h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 15px;
}

@media (max-width: 991px) {

  h1,
  .h1 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {

  h1,
  .h1 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {

  h1,
  .h1 {
    font-size: 28px;
  }
}

h2,
.h2 {
  font-size: 32px;
  color: #4370f5;
  margin-bottom: 20px;
}

@media (max-width: 767px) {

  h2,
  .h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {

  h2,
  .h2 {
    font-size: 24px;
  }
}

h3,
.h3 {
  font-size: 26px;
  color: #4370f5;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {

  h3,
  .h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {

  h3,
  .h3 {
    font-size: 20px;
  }
}

h4,
.h4 {
  color: #151e28;
  font-size: 21px;
  margin-bottom: 5px;
}

@media (max-width: 767px) {

  h4,
  .h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

h5,
.h5 {
  font-size: 20px;
}

@media (max-width: 767px) {

  h5,
  .h5 {
    font-size: 16px;
  }
}

h6,
.h6 {
  font-size: 16px;
}

.container {
  max-width: 970px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.container-small {
  max-width: 920px;
}

.container-left {
  padding-right: 0;
}

.container-right {
  padding-left: 0;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.justify-content-start {
  justify-content: flex-start;
}

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

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

.justify-content-between {
  justify-content: space-between;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

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

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-12,
.col {
  max-width: 100%;
}

.col-11 {
  max-width: 91.66666667%;
}

.col-10 {
  max-width: 83.33333333%;
}

.col-9 {
  max-width: 75%;
}

.col-8 {
  max-width: 66.66666667%;
}

.col-7 {
  max-width: 58.33333333%;
}

.col-6 {
  max-width: 50%;
}

.col-5 {
  max-width: 41.66666667%;
}

.col-4 {
  max-width: 33.33333333%;
}

.col-3 {
  max-width: 25%;
}

.col-2 {
  max-width: 16.66666667%;
}

.col-1 {
  max-width: 8.33333333%;
}

.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1,
.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 767px) {

  .col-12,
  .col-11,
  .col-10,
  .col-9,
  .col-8,
  .col-7,
  .col-6,
  .col-5,
  .col-4,
  .col-3,
  .col-2,
  .col-1,
  .col {
    max-width: 100%;
  }
}

.m-auto {
  margin: 0 auto;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #151e28;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #4370f5;
  border-radius: 20px;
}

section {
  padding: 40px 0;
}

svg {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  border: 0;
  border-style: none;
}

a {
  text-decoration: none;
  transition: 0.5s;
  display: inline-block;
}

:-webkit-any-link {
  color: inherit;
}

p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  p {
    margin-bottom: 15px;
  }
}

.unlisted {
  list-style: none;
}

.bg-primary {
  background-color: #EDF4FE;
}

.dark-grey {
  color: #D7D7D7;
}

.bg-set {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.loader {
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: 0.5s ease;
}

@media (max-width: 991px) {
  .loader {
    display: none;
  }
}

.loader.move-up {
  background-color: transparent;
}

.loader.move-up .loader-logo>div {
  width: 100px;
}

.loader.move-up .container {
  top: 36px;
}

.loader .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.loader .loader-logo {
  opacity: 0;
  transition: 0.5s;
  text-align: left;
  margin-top: 4px;
  animation: fadeIn 1.2s 1s linear;
}

.loader .loader-logo img {
  width: 250px;
}

.loader .loader-logo>div {
  transition: 0.5s;
  text-align: center;
  display: inline-block;
  width: 100%;
  line-height: 0;
}

.loader .loader-wrapper {
  position: relative;
  left: 21px;
  top: 16px;
}

.loader .loader-wrapper.active .loader-outer-circle,
.loader .loader-wrapper.active .loader-inner-circle {
  opacity: 1;
}

.loader .loader-wrapper .loader-outer-circle {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  background: rgb(67 112 245 / 70%);
  transition: 1s;
  transform: scale(0);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  animation: zoomOut 1.2s 0.5s linear;
  transition-delay: 2s;
  overflow: hidden;
}

.loader .loader-wrapper .loader-inner-circle {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  background: #4370f5;
  transition: 1s;
  transform: scale(0);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  animation: zoomOut 1s 0.5s linear;
  z-index: 1;
  overflow: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

/*** zoomOut ***/
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(2000);
    -moz-border-radius: 100%;
  }

  100% {
    -webkit-transform: scale(0);
    -moz-border-radius: 100%;
  }
}

@-moz-keyframes zoomOut {
  0% {
    -moz-transform: scale(2000);
    -moz-border-radius: 100%;
  }

  100% {
    -moz-transform: scale(0);
    -moz-border-radius: 100%;
  }
}

@-o-keyframes zoomOut {
  0% {
    -o-transform: scale(2000);
    -o-border-radius: 100%;
  }

  100% {
    -o-transform: scale(0);
    -o-border-radius: 100%;
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(2000);
    border-radius: 100%;
  }

  100% {
    transform: scale(0);
    border-radius: 100%;
  }
}

/*** zoomOut ***/
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 800;
  }

  80% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }

  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

@-moz-keyframes dash {
  0% {
    stroke-dashoffset: 800;
  }

  80% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }

  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

@keyframes blink {

  from,
  to {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.btn {
  font-size: 14px;
  font-weight: 600;
  padding: 11px 25px;
  background-color: #4370f5;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  transition: 0.5s;
  cursor: pointer;
}

@media (max-width: 575px) {
  .btn {
    padding: 10px 20px;
  }
}

.btn:hover {
  color: #ffffff;
  background-color: #151e28;
}

.btn.white {
  background-color: #ffffff;
  color: #4370f5;
}

.btn.white:hover {
  color: #ffffff;
  background-color: #151e28;
}

.btn.btn-bdr:not(:hover) {
  border-color: #ffffff;
  background-color: transparent;
}

.btn.btn-icon {
  position: relative;
  padding-left: 55px;
}

.btn.btn-icon .speak-icon {
  position: absolute;
  top: -2px;
  left: -2px;
  background-color: #ffffff;
  border-radius: 100%;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.blue-btn-bdr {
  color: #4370f5;
}

.btn.blue-btn-bdr:not(:hover) {
  border-color: #4370f5;
}

.btn.blue-btn-bdr.btn-icon .speak-icon {
  background-color: #4370f5;
}

.btn.blue-btn-bdr.btn-icon .speak-icon img {
  filter: invert(1) brightness(8);
}

.btn.blue-btn-bdr:hover {
  color: #ffffff;
}

.title {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .title {
    margin-bottom: 25px;
  }
}

.title h2,
.title .h2 {
  font-style: italic;
}

.title h2 strong,
.title .h2 strong {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #151e28;
}

.title p {
  color: #151e28;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .title p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .title p {
    font-size: 14px;
  }
}

.title p strong {
  color: #151e28;
}

.hyper-link {
  font-size: 16px;
  font-weight: 500;
  color: #151e28;
  display: flex;
  align-items: center;
  max-width: max-content;
}

@media (max-width: 575px) {
  .hyper-link {
    font-size: 14px;
  }
}

.hyper-link:hover {
  color: #4370f5;
}

.hyper-link:hover img {
  transform: translateX(10px);
}

.hyper-link img {
  transition: 0.5s;
  margin-left: 15px;
  max-width: 35px;
}

.swiper-arrow .swiper-btn {
  cursor: pointer;
  line-height: 0;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #F9FCFF;
}

@media (max-width: 575px) {
  .swiper-arrow .swiper-btn {
    width: 40px;
    height: 40px;
  }
}

.swiper-arrow .swiper-btn:hover {
  background-color: #4370f5;
}

.swiper-arrow .swiper-btn:hover .svg path {
  fill: #ffffff;
}

.swiper-arrow .swiper-btn:last-child {
  transform: rotate(180deg);
  margin-left: 10px;
}

.swiper-arrow .swiper-btn .svg {
  max-width: 100%;
  max-height: 100%;
}

.swiper-arrow .swiper-btn .svg path {
  transition: 0.5s;
}

/* filed required css */
.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.wpcf7-response-output {
  font-size: 14px;
  font-weight: 600;
  color: #FFA6A6;
  margin: 10px 0;
  opacity: 0;
}

.wpcf7-response-output:empty {
  display: none;
}

.invalid .wpcf7-response-output {
  opacity: 1;
}

.wpcf7-not-valid-tip,
.screen-reader-response {
  display: none;
}

.header-main {
  padding: 22px 0;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 111;
}

.header-main.header-fixed {
  box-shadow: 0 2px 14px 0 rgba(165, 144, 121, 0.3);
}

.header-main+main.site-main {
  padding-top: 72px;
}

@media (max-width: 991px) {
  .header-main {
    padding: 15px 0;
  }
}

.header-main .header-inner {
  display: flex;
  justify-content: space-between;
}

.header-main .header-inner .logo {
  line-height: normal;
  display: inline-block;
  max-width: 100px;
}

.header-main .header-inner .logo img {
  display: block;
}

@media (min-width: 992px) {
  .header-main .header-inner .loader+.logo {
    opacity: 0;
  }
}

.header-main .header-inner .main-menu {
  margin-top: 9px;
}

@media (max-width: 991px) {
  .header-main .header-inner .main-menu {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 99;
    width: 280px;
    box-shadow: -10px 30px 50px rgba(0, 0, 0, 0.1019607843);
    height: calc(100vh - 70px);
    padding: 25px;
    background-color: #ffffff;
    transform: translateX(-100%);
    transition: 0.5s;
    overflow-y: auto;
  }
}

.header-main .header-inner .main-menu ul.nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  list-style: none;
}

@media (max-width: 991px) {
  .header-main .header-inner .main-menu ul.nav {
    flex-direction: column;
  }
}

.header-main .header-inner .main-menu ul.nav>li {
  padding: 0 25px;
}

@media (max-width: 1199px) {
  .header-main .header-inner .main-menu ul.nav>li {
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .header-main .header-inner .main-menu ul.nav>li {
    margin: 0 0 25px;
    width: 100%;
    padding-left: 15px;
    padding-right: 0;
  }
}

.header-main .header-inner .main-menu ul.nav>li>a {
  color: #151e28;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-main .header-inner .main-menu ul.nav>li>a:hover {
  color: #4370f5;
}

.header-main .header-inner .main-menu ul.nav>li.current_page_item>a {
  position: relative;
}

.header-main .header-inner .main-menu ul.nav>li.current_page_item>a::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #A2C7FC;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .header-main .header-inner .main-menu ul.nav>li.current_page_item>a::after {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 991px) {
  .header-main .header-inner .main-menu ul.nav>li.current_page_item>a::after {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    right: auto;
    left: -15px;
  }
}

@media (min-width: 992px) {
  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children {
    position: relative;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children>a {
    padding-right: 22px;
    position: relative;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children>a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    width: 13px;
    height: 8px;
    background-image: url("../images/dropdown-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: 0.5s;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children>a:not(:hover)::before {
    filter: brightness(0.1);
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children>a:hover::before {
    transform: scaleY(-1);
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children.hover .sub-menu,
  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    position: relative;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 400px;
    transition: max-height ease 0.5s, transform ease 0.5s;
    transform-origin: top center;
    transform: scaleY(0.5);
    margin-right: -100px;
    margin-top: 25px;
    z-index: 11;
    list-style: none;
    padding: 25px 0;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
    height: 30px;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu li {
    margin-bottom: 20px;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu li.current_page_item a {
    color: #000000;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu li a {
    color: #676D73;
    font-weight: 600;
    font-size: 15px;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu li a:hover {
    color: #000000;
  }
}

@media (max-width: 991px) {
  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children>a {
    padding-right: 25px;
    position: relative;
    display: block;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children>a::before {
    content: "";
    position: absolute;
    right: 4px;
    top: 3px;
    width: 16px;
    height: 10px;
    background-image: url("../images/dropdown-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: 0.5s;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children>a:not(:hover)::before {
    filter: brightness(0.1);
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu {
    display: none;
    list-style: none;
    padding: 20px 15px 0;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu li:not(:last-child) {
    margin-bottom: 15px;
  }

  .header-main .header-inner .main-menu ul.nav>li.menu-item-has-children .sub-menu li.current_page_item a {
    color: #4370f5;
    text-shadow: 0 0 1px #4370f5;
  }
}

.header-main .header-inner .call-info {
  margin-top: 9px;
}

.header-main .header-inner .call-info a {
  color: #4370f5;
  display: flex;
  align-items: center;
  font-weight: 500;
}

@media (max-width: 991px) {
  .header-main .header-inner .call-info a {
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #4370f5;
    border-radius: 100%;
  }
}

.header-main .header-inner .call-info a:hover {
  color: #151e28;
}

.header-main .header-inner .call-info a img {
  margin-right: 5px;
  max-width: 15px;
}

@media (max-width: 991px) {
  .header-main .header-inner .call-info a img {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .header-main .header-inner .call-info a span {
    display: none;
  }
}

.header-main::after {
  content: "";
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  min-height: calc(100vh - 70px);
  background-color: rgba(255, 255, 255, 0.1);
  transform: scaleY(0);
  transform-origin: top center;
  backdrop-filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

.header-main.overlay-open {
  background-color: transparent;
}

.header-main.overlay-open .header-overlay {
  transform: none;
}

.header-main.overlay-open::after {
  transform: none;
  transition: transform ease 0.5s;
}

.header-main.overlay-open .header-inner .main-menu ul.nav>li.menu-item-has-children:hover .sub-menu {
  position: relative;
}

.header-main .header-overlay {
  content: "";
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  height: calc(100% - 70px);
  background-color: #ffffff;
  transition: transform ease 0.5s;
  transform: scaleY(0);
  transform-origin: top center;
  z-index: 2;
}

.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #4370f5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 5px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 25px;
  height: 2px;
  border-radius: 3px;
  background-color: #4370f5;
  position: relative;
  transition: 0.4s;
}

.hamburger span:nth-child(2) {
  width: 15px;
}

.hamburger span+span {
  margin-top: 4px;
}

.menu-open {
  overflow: hidden;
}

.menu-open .header-main .header-inner .main-menu {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.menu-open .hamburger span:first-child {
  transform: rotate(45deg) translateX(4px) translateY(4px);
  -webkit-transform: rotate(45deg) translateX(4px) translateY(4px);
  -moz-transform: rotate(45deg) translateX(4px) translateY(4px);
  -ms-transform: rotate(45deg) translateX(4px) translateY(4px);
  -o-transform: rotate(45deg) translateX(4px) translateY(4px);
}

.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.menu-open .hamburger span:last-child {
  transform: rotate(-45deg) translatex(4px) translateY(-4px);
  -webkit-transform: rotate(-45deg) translatex(4px) translateY(-4px);
  -moz-transform: rotate(-45deg) translatex(4px) translateY(-4px);
  -ms-transform: rotate(-45deg) translatex(4px) translateY(-4px);
  -o-transform: rotate(-45deg) translatex(4px) translateY(-4px);
}

footer {
  padding-top: 55px;
}

@media (max-width: 767px) {
  footer {
    /* padding-bottom: 55px; */
  }
}

footer .mobile_call {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0;
  font-size: 18px;
  z-index: 9991;
  padding: 15px 0px;
  background-color: #4370f5;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  footer .mobile_call {
    display: none;
  }
}

@media (max-width: 767px) {
  footer .logo-col {
    margin-bottom: 30px;
    max-width: 100%;
  }
}

footer .logo-col .footer-logo {
  max-width: 140px;
}

footer .logo-col .contact-footer-social {
  margin-top: 20px;
}

footer .logo-col .contact-footer-social>div {
  margin-bottom: 10px;
}

footer .logo-col .contact-footer-social>div img {
  display: inline-block;
  vertical-align: top;
  max-width: 20px;
}

footer .logo-col .contact-footer-social>div span {
  width: calc(100% - 30px);
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}

@media (max-width: 767px) {
  footer .menu-col {
    order: 3;
  }
}

@media (max-width: 767px) {
  footer .menu-col [class*=col-] {
    max-width: 33.33%;
  }
}

@media (max-width: 575px) {
  footer .menu-col [class*=col-]:not(:last-child) {
    max-width: 50%;
  }
}

footer .menu-col .navAdd {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  footer .menu-col .navAdd {
    margin-bottom: 30px;
  }
}

footer .menu-col .navAdd h3 {
  color: #4A4747;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  footer .menu-col .navAdd h3 {
    margin-bottom: 15px;
  }
}

footer .menu-col .navAdd h3 img {
  margin-right: 10px;
  max-width: 25px;
  max-height: 25px;
}

footer .menu-col .navAdd ul li {
  margin-bottom: 10px;
}

footer .menu-col .navAdd ul li a {
  font-size: 16px;
  color: #4A4747;
  font-weight: 500;
}

@media (max-width: 575px) {
  footer .menu-col .navAdd ul li a {
    font-size: 14px;
  }
}

footer .menu-col .navAdd ul li a:hover {
  color: #4370f5;
}

footer .footer-accreditation {
  border-top: 1px solid rgb(67 112 245 / 70%);
  padding: 30px 0 20px;
}

@media (max-width: 767px) {
  footer .footer-accreditation [class*=col-]:not(:last-child) {
    margin-bottom: 20px;
  }
}

footer .footer-accreditation .accreditation-logo {
  height: 40px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  footer .footer-accreditation .accreditation-logo:empty {
    display: none;
  }
}

footer .footer-accreditation .accreditation-logo a {
  max-width: 100px;
  height: 100%;
  display: flex;
  align-items: center;
}

footer .footer-accreditation .accreditation-logo a img {
  max-height: 100%;
}

footer .footer-accreditation .accreditation-text p {
  font-size: 12px;
}

footer .footer-accreditation .accreditation-text p:not(:last-child) {
  margin-bottom: 10px;
}

footer .footer-accreditation .accreditation-text a:hover {
  color: #4370f5;
}

footer .footer-copyright {
  background-color: #4370f5;
  padding: 20px 0;
}

@media (max-width: 767px) {
  footer .footer-copyright [class*=col-] {
    text-align: center;
  }
}

@media (max-width: 767px) {
  footer .footer-copyright .copyRight {
    margin-bottom: 5px;
  }
}

footer .footer-copyright .copyRight p {
  color: #ffffff;
  margin-bottom: 0;
}

footer .footer-copyright .copy-links a {
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 575px) {
  footer .footer-copyright .copy-links a {
    font-size: 14px;
  }
}

/* footer .footer-copyright .copy-links a:hover {
  color: #fff;
} */

.hero-section {
  padding: 160px 0;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #4370f5;
}

@media (max-width: 1366px) {
  .hero-section {
    padding: 150px 0;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 100px 0;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 55px 0;
    min-height: 400px;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 575px) {
  .hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(43, 44, 62, 0.2);
    z-index: -1;
  }
}

.hero-section.hero-center-section .banner-content {
  margin: 0 auto;
  text-align: center;
}

.hero-section.hero-center-section .banner-content .banner-logo {
  margin: 0 auto;
}

.hero-section .banner-content {
  max-width: 50%;
}

@media (max-width: 991px) {
  .hero-section .banner-content {
    max-width: 60%;
  }
}

@media (max-width: 767px) {
  .hero-section .banner-content {
    max-width: 100%;
  }
}

.hero-section .banner-content .banner-logo {
  max-width: 250px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .hero-section .banner-content .banner-logo {
    max-width: 180px;
    margin-bottom: 5px;
  }
}

.hero-section .banner-content h1 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-section .banner-content p {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
  .hero-section .banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .hero-section .banner-content .btns {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .hero-section .banner-content .btns li {
    max-width: 270px;
    width: 100%;
  }
}

.hero-section .banner-content .btns li:not(:last-child) {
  margin-right: 20px;
}

@media (max-width: 575px) {
  .hero-section .banner-content .btns li:not(:last-child) {
    margin: 0 0 10px;
  }
}

.hero-section .banner-content .btns li a {
  width: 100%;
}

.hero-section .banner-content .banner-video-popup-button .modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.hero-section .banner-content .banner-video-popup-button .modal-button img {
  margin-right: 10px;
}

.hero-section .banner-content .banner-video-popup {
  display: none;
}

.destinations-section {
  position: relative;
}

.destinations-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #EDF4FE;
  height: 50%;
}

@media (max-width: 767px) {
  .destinations-section::before {
    height: 48%;
  }
}

.destinations-section .title {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

.destinations-section .title p:last-child {
  margin-bottom: 0;
}

.destinations-section .destinationsSlider {
  position: relative;
}

@media (max-width: 575px) {
  .destinations-section .destinationsSlider {
    padding-right: 15px;
  }
}

.destinations-section .destinationsSlider::after {
  content: "";
  position: absolute;
  top: 55px;
  right: 0;
  height: 100%;
  width: 155px;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0.62) 49.52%, rgba(255, 255, 255, 0) 93.21%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 575px) {
  .destinations-section .destinationsSlider::after {
    display: none;
  }
}

.destinations-section .destinationsSlider .swiper-arrow {
  padding: 0 30px;
  margin-bottom: -30px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .destinations-section .destinationsSlider .swiper-arrow {
    margin-top: 30px;
    margin-bottom: 0;
  }
}

.destinations-section .destinationsSlider .swiper-arrow.des-arrow {
  min-height: 48px;
}

@media (max-width: 767px) {
  .destinations-section .destinationsSlider .swiper-arrow.des-arrow {
    display: none;
  }
}

@media (min-width: 768px) {
  .destinations-section .destinationsSlider .swiper-arrow.mob-arrow {
    display: none;
  }
}

.destinations-section .destinationsSlider .swiper-slide {
  transition: 0.5s;
  transform: scale(0.92) translatex(20px);
}

@media (max-width: 575px) {
  .destinations-section .destinationsSlider .swiper-slide {
    transform: none;
  }
}

@media (min-width: 768px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active {
    transform: scale(1.04) translatex(10px) translateY(-0.7vw);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active {
    transform: scale(1.04) translatex(10px) translateY(-0.2vw);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active {
    transform: scale(1.04) translatex(10px) translateY(0);
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active {
    transform: none;
  }
}

@media (min-width: 768px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active .divImg {
    margin-bottom: 20px;
  }

  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active .divImg a {
    height: 21vw;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active .divImg a {
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 575px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active .divImg a {
    height: 80vw;
  }
}

@media (min-width: 768px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active .destinations-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }

  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active .destinations-content p {
    font-size: 14.7px;
    margin-bottom: 33px;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active .destinations-content p {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-active .destinations-content .hyper-link {
    font-size: 14px;
  }
}

.destinations-section .destinationsSlider .swiper-slide.swiper-slide-prev {
  opacity: 0;
}

@media (min-width: 768px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-next {
    transform: scale(0.92) translatex(32px);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-next {
    transform: scale(0.92) translatex(28px);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .destinations-section .destinationsSlider .swiper-slide.swiper-slide-next {
    transform: scale(0.92) translatex(15px);
  }
}

.destinations-section .destinationsSlider .destinations-list .divImg {
  margin-bottom: 22px;
  height: 23vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 767px) {
  .destinations-section .destinationsSlider .destinations-list .divImg {
    height: auto;
    line-height: 0;
  }
}

.destinations-section .destinationsSlider .destinations-list .divImg a {
  display: block;
  height: 20.5vw;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background-color: #D7D7D7;
}

@media (max-width: 767px) {
  .destinations-section .destinationsSlider .destinations-list .divImg a {
    height: 45vw;
  }
}

@media (max-width: 575px) {
  .destinations-section .destinationsSlider .destinations-list .divImg a {
    height: 80vw;
  }
}

.destinations-section .destinationsSlider .destinations-list .divImg a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.5s;
}

.destinations-section .destinationsSlider .destinations-list .divImg a:hover img {
  transform: scale(1.05);
}

.destinations-section .destinationsSlider .destinations-list .destinations-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .destinations-section .destinationsSlider .destinations-list .destinations-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
  }
}

.destinations-section .destinationsSlider .destinations-list .destinations-content h3 a:hover {
  color: #151e28;
}

.destinations-section .destinationsSlider .destinations-list .destinations-content p {
  color: rgba(11, 11, 11, 0.7);
  font-size: 16px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .destinations-section .destinationsSlider .destinations-list .destinations-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.lines-section .title {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.lines-section .lines-row {
  position: relative;
}

@media (max-width: 575px) {
  .lines-section .lines-row::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-right: 1px solid #151e28;
  }
}

.lines-section .lines-row .logo-box {
  width: 20%;
  height: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lines-section .lines-row .logo-box:not(:nth-child(5n+5)) {
    border-right: 1px solid #151e28;
  }

  .lines-section .lines-row .logo-box:not(:nth-last-child(-n+5)) {
    border-bottom: 1px solid #151e28;
  }
}

@media (min-width: 767px) and (max-width: 576px) {
  .lines-section .lines-row .logo-box {
    width: 33.33%;
  }

  .lines-section .lines-row .logo-box:not(:nth-child(3n+3)) {
    border-right: 1px solid #151e28;
  }

  .lines-section .lines-row .logo-box:not(:nth-last-child(-n+3)) {
    border-bottom: 1px solid #151e28;
  }
}

@media (max-width: 575px) {
  .lines-section .lines-row .logo-box {
    width: 50%;
  }

  .lines-section .lines-row .logo-box:nth-child(even) {
    display: none;
  }

  .lines-section .lines-row .logo-box:not(:nth-last-child(-n+3)) {
    border-bottom: 1px solid #151e28;
  }

  .lines-section .lines-row .logo-box:nth-last-child(4) {
    border-bottom: 0;
  }
}

.lines-section .lines-row .logo-box img {
  max-height: 100%;
}

.holiday-section {
  padding: 75px 0;
  position: relative;
  z-index: 1;
  background-color: #4370f5;
}

@media (max-width: 575px) {
  .holiday-section {
    padding: 55px 0;
  }
}

.holiday-section .holiday-bgImg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .holiday-section .holiday-bgImg .image-main.dec-image-main {
    display: none;
  }
}

@media (min-width: 768px) {
  .holiday-section .holiday-bgImg .image-main.mobile-image-main {
    display: none;
  }
}

.holiday-section .holiday-element {
  position: absolute;
  bottom: -68px;
  right: 105px;
  padding: 13px;
  background-color: #ffffff;
  width: 136px;
  height: 136px;
  border-radius: 100%;
}

@media (max-width: 1660px) {
  .holiday-section .holiday-element {
    width: 9vw;
    height: 9vw;
    bottom: -4vw;
    right: 5vw;
  }
}

@media (max-width: 767px) {
  .holiday-section .holiday-element {
    width: 14vw;
    height: 14vw;
    bottom: -7vw;
    padding: 7px;
  }
}

@media (max-width: 575px) {
  .holiday-section .holiday-element {
    width: 24vw;
    height: 24vw;
    bottom: -12vw;
  }
}

.holiday-section .holiday-row .title {
  margin-bottom: 0;
}

.holiday-section .holiday-row .title h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.holiday-section .holiday-row .title h2 strong {
  color: #ffffff;
}

.holiday-section .holiday-row .title p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .holiday-section .holiday-row>[class*=col-]:first-child {
    margin-bottom: 30px;
  }
}

.holiday-section .holiday-row .holiday-content h2 {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.holiday-section .holiday-row .holiday-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: #ffffff;
}

.holiday-section .holiday-row .holiday-content p {
  color: #ffffff;
  font-size: 14px;
}

.deals-section {
  padding-top: 70px;
}

.deals-section .title {
  margin-bottom: 30px;
}

.deals-section .title .title-left {
  width: calc(100% - 110px);
}

@media (max-width: 575px) {
  .deals-section .title .title-left {
    width: calc(100% - 95px);
    margin-bottom: 10px;
  }
}

.deals-section .title .title-arrow {
  width: 110px;
}

@media (max-width: 575px) {
  .deals-section .title .title-arrow {
    width: 95px;
  }
}

.deals-section .title h2 {
  margin-bottom: 15px;
}

.deals-section .title p {
  margin-bottom: 0;
}

.deals-section .dealSlider {
  padding-left: 20px;
  margin-left: -20px;
}

.deals-section .dealSlider .deals-by-main {
  position: absolute;
  top: 20px;
  left: -18px;
  width: 256px;
}

@media (max-width: 767px) {
  .deals-section .dealSlider .deals-by-main {
    top: 1px;
    left: -12px;
    width: 240px;
  }
}

.deals-section .dealSlider .deals-by-main .deals-by-logo {
  font-size: 14px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 4px;
  padding: 5px 18px;
  display: flex;
  align-items: center;
  height: 50px;
}

@media (max-width: 767px) {
  .deals-section .dealSlider .deals-by-main .deals-by-logo {
    padding: 3px 10px;
    height: 30px;
    margin-top: 1px;
    font-size: 10px;
  }
}

.deals-section .dealSlider .deals-by-main .deals-by-logo .span-logo {
  width: calc(100% - 60px);
  line-height: 0;
  padding-left: 10px;
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .deals-section .dealSlider .deals-by-main .deals-by-logo .span-logo {
    width: calc(100% - 40px);
    padding-left: 2px;
  }
}

.deals-section .dealSlider .deals-by-main .deals-by-logo .span-logo img {
  max-height: 100%;
}

.deals-section .dealSlider .divImg {
  width: 100%;
  height: 290px;
  min-height: 290px;
  display: block;
  background-color: #D7D7D7;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .deals-section .dealSlider .divImg {
    height: 35vw;
    min-height: 35vw;
  }
}

@media (max-width: 767px) {
  .deals-section .dealSlider .divImg {
    height: 50vw;
    min-height: 50vw;
    border-radius: 10px;
  }
}

.deals-section .dealSlider .deals-list {
  display: flex;
  justify-content: center;
  margin: -29px 0 25px;
}

@media (max-width: 767px) {
  .deals-section .dealSlider .deals-list {
    flex-direction: column;
    margin: -10px 0 15px;
  }
}

.deals-section .dealSlider .deals-list li {
  background-color: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  min-width: 240px;
  text-align: center;
  padding: 10px;
  margin: 0 15px;
}

@media (max-width: 991px) {
  .deals-section .dealSlider .deals-list li {
    min-width: 220px;
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .deals-section .dealSlider .deals-list li {
    margin: 0 15px 10px;
    padding: 10px 30px;
    justify-content: left;
    text-align: left;
  }
}

.deals-section .dealSlider .deals-list li .icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  padding: 5px;
  background-color: #4370f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deals-section .dealSlider .deals-list li .text {
  padding-left: 10px;
}

.deals-section .dealSlider .deals-list li .text * {
  margin-bottom: 0;
}

.deals-section .dealSlider .deals-list li .text .deals-count {
  margin-right: 5px;
  font-size: 22px;
}

@media (max-width: 767px) {
  .deals-section .dealSlider .deals-list li .text .deals-count {
    font-size: 20px;
  }
}

.deals-section .dealSlider .deals-list li .text p {
  color: #151e28;
  font-weight: 500;
  line-height: 1.2;
}

.deals-section .dealSlider .deals-content h3 {
  margin-bottom: 5px;
}

.deals-section .dealSlider .deals-content h3 a:hover {
  color: #151e28;
}

.deals-section .dealSlider .deals-content-main .deals-map {
  width: 100%;
  min-height: 155px;
  height: 100%;
  background-color: #D7D7D7;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

@media (max-width: 767px) {
  .deals-section .dealSlider .deals-content-main .deals-map {
    margin-bottom: 30px;
    height: auto;
  }
}

.deals-section .dealSlider .deals-content-main .deals-date-time li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.deals-section .dealSlider .deals-content-main .deals-date-time li .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 5px;
  background-color: #4370f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.deals-section .dealSlider .deals-content-main .deals-date-time li a:not(:hover) {
  color: #4370f5;
}

.deals-section .dealSlider .deals-content-main .price-wrap {
  margin-top: 25px;
}

@media (max-width: 991px) {
  .deals-section .dealSlider .deals-content-main .price-wrap {
    flex-wrap: wrap;
  }
}

.deals-section .dealSlider .deals-content-main .price-wrap .price {
  font-family: "PT Serif";
  font-size: 32px;
  font-weight: bold;
  color: #4370f5;
  margin-right: 20px;
}

@media (max-width: 991px) {
  .deals-section .dealSlider .deals-content-main .price-wrap .price {
    margin: 0 0 15px;
    width: 100%;
  }
}

.deals-section .dealSlider .deals-content-main .price-wrap .price-btns {
  margin: 0 -7.5px;
}

.deals-section .dealSlider .deals-content-main .price-wrap .price-btns li {
  padding: 0 7.5px;
}

.deals-section .dealSlider .deals-content-main .price-wrap .price-btns li .btn {
  min-width: 135px;
}

.deals-section .dealSlider .deals-content-main .price-wrap .price-btns li .btn.view-deal:not(:hover) {
  background-color: transparent;
  border-color: #4370f5;
  color: #4370f5;
}

.deals-section .dealSlider .slider-pagination {
  padding: 30px 0 5px;
}

.deals-section .dealSlider .slider-pagination .swiper-pagination-bullet {
  background-color: #656565;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  opacity: 1;
}

.deals-section .dealSlider .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4370f5;
  position: relative;
}

.deals-section .dealSlider .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #151e28;
  box-sizing: border-box;
  border-radius: 100%;
  transform: scale(1.7);
}

.deals-section-new {
  padding-top: 70px;
}

.deals-section-new .title {
  margin-bottom: 30px;
}

.deals-section-new .title h2 {
  margin-bottom: 15px;
}

.deals-section-new .title p {
  margin-bottom: 0;
}

.deals-section-new .deal-main .deal-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  box-shadow: 0 0 24px rgba(43, 44, 62, 0.09);
  position: relative;
  min-height: 225px;
}

.deals-section-new .deal-main .deal-list:hover::before {
  opacity: 1;
}

.deals-section-new .deal-main .deal-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: #4370f5;
  transition: 0.4s;
  opacity: 0;
  z-index: 2;
}

.deals-section-new .deal-main .deal-list .divImg {
  width: 26%;
  background-color: #D7D7D7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 20px 15px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .deals-section-new .deal-main .deal-list .divImg {
    width: 33.33%;
  }
}

@media (max-width: 575px) {
  .deals-section-new .deal-main .deal-list .divImg {
    width: 100%;
  }
}

.deals-section-new .deal-main .deal-list .divImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(43, 44, 62, 0.2);
  z-index: -1;
  pointer-events: none;
}

.deals-section-new .deal-main .deal-list .divImg .trip-days {
  font-weight: 700;
  color: #ffffff;
}

.deals-section-new .deal-main .deal-list .divImg .date-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-width: 30%;
}

@media (max-width: 575px) {
  .deals-section-new .deal-main .deal-list .divImg .date-range {
    margin-top: 70px;
  }
}

.deals-section-new .deal-main .deal-list .divImg .date-range::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 16px;
  right: 31px;
  height: 1px;
  background-color: #ffffff;
}

.deals-section-new .deal-main .deal-list .divImg .date-range strong {
  font-size: 20px;
  position: relative;
}

.deals-section-new .deal-main .deal-list .divImg .date-range strong::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 100%;
}

.deals-section-new .deal-main .deal-list .divImg .date-range strong::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -1px;
  right: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #ffffff;
  border-radius: 100%;
  box-sizing: border-box;
}

.deals-section-new .deal-main .deal-list .divImg .date-range strong:last-child::before {
  width: 5px;
  border-radius: 100% 0 0 100%;
}

.deals-section-new .deal-main .deal-list .divImg .date-range strong span {
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.deals-section-new .deal-main .deal-list .deals-content {
  width: 74%;
  padding: 20px;
}

@media (max-width: 991px) {
  .deals-section-new .deal-main .deal-list .deals-content {
    width: 66.66%;
  }
}

@media (max-width: 575px) {
  .deals-section-new .deal-main .deal-list .deals-content {
    width: 100%;
    padding: 20px 15px;
  }
}

.deals-section-new .deal-main .deal-list .deals-content h4 {
  margin-bottom: 10px;
}

.deals-section-new .deal-main .deal-list .deals-content h4 a {
  color: #151e28;
}

.deals-section-new .deal-main .deal-list .deals-content h4 a:hover {
  color: #4370f5;
}

.deals-section-new .deal-main .deal-list .deals-content .countries-list {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deal-list .deals-content .countries-list {
    margin-bottom: 20px;
  }
}

.deals-section-new .deal-main .deal-list .deals-content .countries-list li {
  position: relative;
  font-size: 12px;
}

.deals-section-new .deal-main .deal-list .deals-content .countries-list li:not(:last-child) {
  margin-right: 8px;
  padding-right: 8px;
}

.deals-section-new .deal-main .deal-list .deals-content .countries-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  width: 2px;
  height: 2px;
  background-color: #4370f5;
  border-radius: 100%;
}

.deals-section-new .deal-main .deal-list .deals-content .deals-by-logo {
  display: flex;
  align-items: center;
  max-height: 35px;
  max-width: 130px;
  margin-bottom: 20px;
  margin-top: auto;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deal-list .deals-content .deals-by-logo {
    margin-bottom: 15px;
    max-height: 25px;
  }
}

.deals-section-new .deal-main .deal-list .deals-content .deals-by-logo img {
  max-height: 100%;
  filter: brightness(0.2);
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deal-list .deals-content .view-links {
    margin-bottom: 15px;
  }
}

.deals-section-new .deal-main .deal-list .deals-content .view-links a {
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  max-width: max-content;
}

.deals-section-new .deal-main .deal-list .deals-content .view-links a:hover {
  color: #4370f5;
}

.deals-section-new .deal-main .deal-list .deals-content .view-links a u {
  margin-right: 7px;
}

.deals-section-new .deal-main .deal-list .deals-content>.row {
  height: 100%;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deal-list .deals-content>.row {
    height: auto;
  }
}

.deals-section-new .deal-main .deal-list .deals-content .col-left {
  height: 100%;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deal-list .deals-content .col-left {
    height: auto;
  }
}

.deals-section-new .deal-main .deal-list .deals-content .col-right {
  height: 100%;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deal-list .deals-content .col-right {
    flex-direction: column-reverse;
    height: auto;
  }
}

.deals-section-new .deal-main .deal-list .deals-content .price-wrap {
  justify-content: space-between;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .deals-section-new .deal-main .deal-list .deals-content .price-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deal-list .deals-content .price-wrap {
    margin-bottom: 0;
  }
}

.deals-section-new .deal-main .deal-list .deals-content .price-wrap .price-list .price {
  font-family: "PT Serif";
  font-size: 24px;
  font-weight: bold;
  color: #4370f5;
  margin-bottom: 5px;
}

.deals-section-new .deal-main .deal-list .deals-content .price-wrap .price-list span {
  display: block;
  font-size: 10px;
}

.deals-section-new .deal-main .deal-list .deals-content .price-wrap .price-btns li .btn {
  font-weight: 500;
}

.deals-section-new .deal-main .deal-list .deals-content .deals-content-main {
  align-items: flex-end;
  margin-top: auto;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deal-list .deals-content .deals-content-main {
    margin-bottom: 20px;
  }
}

.deals-section-new .deal-main .deal-list .deals-content .deals-content-main .deals-date-time:not(:last-child) {
  margin-bottom: 10px;
}

.deals-section-new .deal-main .deal-list .deals-content .deals-content-main .deals-date-time li {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
}

.deals-section-new .deal-main .deal-list .deals-content .deals-content-main .deals-date-time li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-right: 7px;
}

.deals-section-new .deal-main .deal-list .deals-content .deals-content-main .deals-date-time li .icon img {
  filter: brightness(0.2);
}

.deals-section-new .deal-main .deal-list .deals-content .deals-content-main .deals-date-time li a:not(:hover) {
  color: #4370f5;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share p {
  font-size: 10px;
  margin-bottom: 0;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share .deal-share {
  position: relative;
  margin-left: auto;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share .deal-share .share-icon {
  line-height: 0;
  display: inline-block;
  cursor: pointer;
  width: 20px;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share .deal-share .share-list {
  display: none;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 100%;
  box-shadow: 0 0 6px rgba(43, 44, 62, 0.14);
  background-color: #ffffff;
  padding: 10px;
  margin-bottom: 10px;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share .deal-share .share-list strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 5px;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share .deal-share .share-list ul li {
  margin: 0 4px;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share .deal-share .share-list ul li a {
  width: 20px;
  height: 20px;
  padding: 4px;
  background-color: #EDEDED;
  border-radius: 100%;
  display: flex;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share .deal-share .share-list ul li a:hover {
  background-color: #4370f5;
}

.deals-section-new .deal-main .deal-list .deals-content .discount-share .deal-share .share-list ul li a:hover img {
  filter: brightness(1000);
}

.deals-section-new .deal-main .deals-list {
  display: flex;
  justify-content: center;
  margin: -29px 0 25px;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deals-list {
    flex-direction: column;
    margin: -10px 0 15px;
  }
}

.deals-section-new .deal-main .deals-list li {
  background-color: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  min-width: 240px;
  text-align: center;
  padding: 10px;
  margin: 0 15px;
}

@media (max-width: 991px) {
  .deals-section-new .deal-main .deals-list li {
    min-width: 220px;
    margin: 0 10px;
  }
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deals-list li {
    margin: 0 15px 10px;
    padding: 10px 30px;
    justify-content: left;
    text-align: left;
  }
}

.deals-section-new .deal-main .deals-list li .icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  padding: 5px;
  background-color: #4370f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deals-section-new .deal-main .deals-list li .text {
  padding-left: 10px;
}

.deals-section-new .deal-main .deals-list li .text * {
  margin-bottom: 0;
}

.deals-section-new .deal-main .deals-list li .text .deals-count {
  margin-right: 5px;
  font-size: 22px;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .deals-list li .text .deals-count {
    font-size: 20px;
  }
}

.deals-section-new .deal-main .deals-list li .text p {
  color: #151e28;
  font-weight: 500;
  line-height: 1.2;
}

.deals-section-new .deal-main .slider-pagination {
  padding: 30px 0 5px;
}

.deals-section-new .deal-main .slider-pagination .swiper-pagination-bullet {
  background-color: #656565;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  opacity: 1;
}

@media (max-width: 767px) {
  .deals-section-new .deal-main .slider-pagination .swiper-pagination-bullet {
    margin: 0 4px;
    width: 12px;
    height: 12px;
  }
}

.deals-section-new .deal-main .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4370f5;
  position: relative;
}

.deals-section-new .deal-main .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #151e28;
  box-sizing: border-box;
  border-radius: 100%;
  transform: scale(1.7);
}

.team-experience-section .team-experience-list .experience-pic {
  line-height: 0;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .team-experience-section .team-experience-list .experience-pic {
    margin-bottom: 0;
  }
}

.team-experience-section .team-experience-list .experience-pic img {
  width: 100%;
}

@media (max-width: 767px) {
  .team-experience-section .team-experience-list .experience-info {
    background-color: #ffffff;
    padding: 10px 30px;
    display: block;
    margin: -35px 0 0 auto;
    width: max-content;
    position: relative;
    z-index: 1;
  }
}

.team-experience-section .team-experience-list .experience-info p {
  font-family: "PT Serif";
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.2;
  color: #4370f5;
}

@media (max-width: 767px) {
  .team-experience-section .team-experience-list .experience-info p {
    margin-bottom: 0;
  }
}

.team-experience-section .team-experience-list .experience-info p strong {
  display: block;
  color: #151e28;
}

@media (max-width: 767px) {
  .team-experience-section .team-experience-list .experience-content {
    padding-top: 30px;
  }
}

@media (max-width: 1366px) {
  .reviews-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575px) {
  .reviews-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.reviews-section .reviews-box {
  border: 1px solid #4370f5;
  margin: 28px 0;
}

@media (max-width: 767px) {
  .reviews-section .reviews-box {
    margin-bottom: 0;
  }
}

.reviews-section .reviews-box .title {
  margin-top: -23px;
}

.reviews-section .reviews-box .title h2 {
  background-color: #ffffff;
  display: inline-block;
  padding: 0 25px;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .reviews-section .reviews-box .title h2 {
    margin: 0 15px;
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .reviews-section .reviews-box .title h2 br {
    display: none;
  }
}

.reviews-section .reviews-box .reviewsSlider {
  padding: 0 70px 60px;
  position: relative;
}

@media (max-width: 991px) {
  .reviews-section .reviews-box .reviewsSlider {
    padding: 0 50px 50px;
  }
}

@media (max-width: 575px) {
  .reviews-section .reviews-box .reviewsSlider {
    padding: 0 10px 30px;
  }
}

.reviews-section .reviews-box .reviewsSlider .swiper-btn {
  position: absolute;
  left: -24px;
  bottom: 50%;
  margin-bottom: 10px;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  line-height: 0;
  border-radius: 100%;
  cursor: pointer;
  z-index: 11;
}

@media (max-width: 575px) {
  .reviews-section .reviews-box .reviewsSlider .swiper-btn {
    width: 30px;
    height: 30px;
    left: -15px;
  }
}

.reviews-section .reviews-box .reviewsSlider .swiper-btn:hover {
  background-color: #4370f5;
}

.reviews-section .reviews-box .reviewsSlider .swiper-btn:hover .svg path {
  fill: #ffffff;
}

.reviews-section .reviews-box .reviewsSlider .swiper-btn.swiper-next {
  left: auto;
  right: -24px;
  transform: rotate(180deg);
}

@media (max-width: 575px) {
  .reviews-section .reviews-box .reviewsSlider .swiper-btn.swiper-next {
    right: -20px;
  }
}

.reviews-section .reviews-box .reviewsSlider .swiper-btn .svg {
  max-width: 100%;
  max-height: 100%;
}

.reviews-section .reviews-box .reviewsSlider .swiper-btn .svg path {
  transition: 0.5s;
}

.reviews-section .reviews-box .reviewsSlider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.reviews-section .reviews-box .reviewsSlider .swiper-slide .reviews-content h3 {
  color: #151e28;
}

.reviews-section .reviews-box .reviewsSlider .swiper-slide .reviews-content .review-adder-info {
  font-size: 18px;
  font-weight: bold;
  color: #4370f5;
}

@media (max-width: 1199px) {
  .reviews-section .reviews-box .reviewsSlider .swiper-slide .reviews-content .review-adder-info {
    font-size: 15px;
  }
}

.faq-section .title {
  margin-bottom: 0;
}

.faq-section .faq-accordion .accordion-list {
  border-bottom: 1px solid #4370f5;
  padding: 12px;
}

@media (max-width: 575px) {
  .faq-section .faq-accordion .accordion-list {
    padding: 10px 0;
  }
}

.faq-section .faq-accordion .accordion-list .accordion-title {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 15px;
}

.faq-section .faq-accordion .accordion-list .accordion-title::after {
  content: "-";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 500;
}

.faq-section .faq-accordion .accordion-list .accordion-title:not(.active)::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 500;
}

.faq-section .faq-accordion .accordion-list .accordion-title .divIcon {
  min-width: 70px;
  width: 70px;
  height: 65px;
  margin-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .faq-section .faq-accordion .accordion-list .accordion-title .divIcon {
    min-width: 60px;
    width: 60px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .faq-section .faq-accordion .accordion-list .accordion-title .divIcon {
    min-width: 50px;
    width: 50px;
    height: 30px;
    margin-right: 10px;
  }
}

.faq-section .faq-accordion .accordion-list .accordion-title .divIcon img {
  max-height: 100%;
}

.faq-section .faq-accordion .accordion-list .accordion-title h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .faq-section .faq-accordion .accordion-list .accordion-title h4 {
    font-size: 15px;
  }
}

.faq-section .faq-accordion .accordion-list .accordion-content {
  width: calc(100% - 95px);
  margin-left: auto;
  font-size: 14px;
  display: none;
}

@media (max-width: 991px) {
  .faq-section .faq-accordion .accordion-list .accordion-content {
    width: calc(100% - 75px);
  }
}

@media (max-width: 575px) {
  .faq-section .faq-accordion .accordion-list .accordion-content {
    width: calc(100% - 60px);
    margin-top: 10px;
  }
}

.faq-section .faq-accordion .accordion-list .accordion-content p:last-child {
  margin-bottom: 0;
}

.faq-section .faq-accordion .accordion-list .accordion-content p a {
  text-decoration: underline;
  color: #4370f5;
}

.confidence-section {
  position: relative;
  z-index: 1;
  padding: 75px 0;
  background-color: #4370f5;
}

.confidence-section .title h2 {
  color: #ffffff;
}

.confidence-section .title h2 strong {
  color: #ffffff;
}

.confidence-section .title p {
  color: #ffffff;
}

.confidence-section .confidence-bgImg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .confidence-section .confidence-bgImg .image-main.dec-image-main {
    display: none;
  }
}

@media (min-width: 768px) {
  .confidence-section .confidence-bgImg .image-main.mobile-image-main {
    display: none;
  }
}

@media (max-width: 767px) {
  .confidence-section .confidence-row [class*=col-] {
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .confidence-section .confidence-row [class*=col-] {
    max-width: 100%;
  }
}

.confidence-section .confidence-row .confidence-list {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.confidence-section .confidence-row .confidence-list .icon {
  min-width: 80px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  background-color: #ffffff;
  box-shadow: 0px 1px 17px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

@media (max-width: 1199px) {
  .confidence-section .confidence-row .confidence-list .icon {
    min-width: 80px;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .confidence-section .confidence-row .confidence-list .icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    padding: 7px;
  }
}

.confidence-section .confidence-row .confidence-list .content {
  padding-left: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.confidence-section .confidence-row .confidence-list .content p {
  margin-bottom: 0;
}

.specialist-site-section .specialist-wrap .specialist-row:nth-child(even) {
  flex-direction: row-reverse;
}

.specialist-site-section .specialist-wrap .specialist-row:not(:last-child) {
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .specialist-site-section .specialist-wrap .specialist-row:not(:last-child) {
    margin-bottom: 30px;
  }
}

.specialist-site-section .specialist-wrap .specialist-row .divImg {
  border: 1px solid #4370f5;
  padding: 15px;
  line-height: 0;
}

@media (max-width: 767px) {
  .specialist-site-section .specialist-wrap .specialist-row .divImg {
    margin-bottom: 20px;
  }
}

.specialist-site-section .specialist-wrap .specialist-row .divImg img {
  width: 100%;
}

.specialist-site-section .specialist-wrap .specialist-row .divContent h2 {
  font-style: italic;
}

.specialist-site-section .specialist-wrap .specialist-row .divContent h2 strong {
  font-family: "Poppins", sans-serif;
  color: #151e28;
  font-style: normal;
}

.specialist-site-section .specialist-wrap .specialist-row .divContent ul li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 17px;
  font-weight: 500;
}

.specialist-site-section .specialist-wrap .specialist-row .divContent ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #EDF4FE;
  border: 2px solid #4370f5;
}

.our-story-section {
  position: relative;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .our-story-section {
    padding-bottom: 80px;
  }
}

.our-story-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 430px;
  background: linear-gradient(360deg, #ffffff 20.17%, rgba(255, 255, 255, 0) 65.24%);
  z-index: 11;
  pointer-events: none;
}

@media (max-width: 767px) {
  .our-story-section::before {
    height: 160px;
  }
}

@media (max-width: 767px) {
  .our-story-section .title {
    margin-bottom: 50px;
  }
}

.our-story-section .timeline-tab-menu {
  margin-bottom: 55px;
}

.our-story-section .timeline-tab-menu ul li {
  margin: 0 10px 15px;
}

.our-story-section .timeline-tab-menu ul li a {
  border-color: #4370f5;
  border-width: 1px;
}

.our-story-section .timeline-tab-menu ul li a:not(.active) {
  color: #4370f5;
  background-color: transparent;
}

.our-story-section .timeline-tab-menu ul li a:hover,
.our-story-section .timeline-tab-menu ul li a.active {
  box-shadow: 0px 6px 6px rgba(67, 112, 245, 0.34);
  background-color: #4370f5;
  color: #ffffff;
}

.our-story-section .timeline-tab-content {
  display: none;
}

.our-story-section .timeline-main {
  padding: 120px 0 150px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .our-story-section .timeline-main {
    padding: 50px 0 0;
  }
}

.our-story-section .timeline-main .timeline-img {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%);
  pointer-events: none;
  height: 8060px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .our-story-section .timeline-main .timeline-img {
    top: -15px;
    height: 7580px;
  }
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-img {
    transform: none;
    left: 96px;
    height: 100%;
  }
}

@media (max-width: 575px) {
  .our-story-section .timeline-main .timeline-img {
    left: 86px;
  }
}

.our-story-section .timeline-main .timeline-img svg,
.our-story-section .timeline-main .timeline-img img {
  height: 100%;
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-img .dec-svg {
    display: none;
  }
}

@media (min-width: 768px) {
  .our-story-section .timeline-main .timeline-img .mob-svg {
    display: none;
  }
}

.our-story-section .timeline-main .timeline-img #path-svg {
  position: absolute;
  left: 0;
  top: 0;
}

.our-story-section .timeline-main .timeline-ship {
  position: absolute;
  height: auto;
  left: 0;
  top: 0;
  z-index: 9;
  opacity: 0;
  width: 75px;
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-ship.dec-ship {
    display: none;
  }
}

@media (min-width: 768px) {
  .our-story-section .timeline-main .timeline-ship.mob-ship {
    display: none;
  }
}

.our-story-section .timeline-main .timeline-row {
  padding: 16px 0;
  align-items: start;
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-row {
    padding: 10px 0;
  }
}

.our-story-section .timeline-main .timeline-row .timeline-years {
  position: relative;
  max-width: 45.5%;
}

@media (max-width: 991px) {
  .our-story-section .timeline-main .timeline-row .timeline-years {
    max-width: 44%;
  }
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-row .timeline-years {
    max-width: 120px;
    margin-top: 5px;
  }
}

@media (max-width: 575px) {
  .our-story-section .timeline-main .timeline-row .timeline-years {
    max-width: 110px;
    margin-top: 2px;
  }
}

.our-story-section .timeline-main .timeline-row .timeline-years .year {
  font-family: "PT Serif";
  font-size: 30px;
  font-weight: bold;
  color: #4370f5;
  letter-spacing: 0.11em;
  opacity: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .our-story-section .timeline-main .timeline-row .timeline-years .year {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-row .timeline-years .year {
    font-size: 22px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  .our-story-section .timeline-main .timeline-row .timeline-years .year {
    font-size: 16px;
  }
}

.our-story-section .timeline-main .timeline-row .timeline-years::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #151e28;
  width: 0;
  height: 1px;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .our-story-section .timeline-main .timeline-row .timeline-years::before {
    width: 75px;
  }
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-row .timeline-years::before {
    right: 23px;
    width: 20px;
  }
}

.our-story-section .timeline-main .timeline-row .timeline-years::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  background-color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 3px solid rgba(43, 44, 62, 0.46);
  box-sizing: border-box;
  transition: 0.5s;
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-row .timeline-years::after {
    width: 16px;
    height: 16px;
    border-width: 2px;
    right: 0;
  }
}

.our-story-section .timeline-main .timeline-row.animated .timeline-years::after {
  transform: translateY(-50%) scale(1);
  border-color: #000000;
}

.our-story-section .timeline-main .timeline-row.animated .timeline-years::before {
  width: 50px;
  transition-delay: 500ms;
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-row.animated .timeline-years::before {
    width: 12px;
  }
}

.our-story-section .timeline-main .timeline-row.animated .timeline-years .year {
  opacity: 1;
  transition-delay: 1s;
}

.our-story-section .timeline-main .timeline-row .timeline-content {
  max-width: calc(53% - 80px);
  font-size: 15px;
  margin-top: 20px;
  min-height: 200px;
  max-height: 200px;
  overflow-y: auto;
}

.our-story-section .timeline-main .timeline-row .timeline-content::-webkit-scrollbar {
  width: 8px;
}

.our-story-section .timeline-main .timeline-row .timeline-content::-webkit-scrollbar-thumb {
  background-color: #4370f5;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .our-story-section .timeline-main .timeline-row .timeline-content {
    max-width: 44%;
    margin-top: 5px;
  }
}

@media (max-width: 767px) {
  .our-story-section .timeline-main .timeline-row .timeline-content {
    max-width: calc(100% - 120px);
    margin-top: 0;
    min-height: 100%;
    max-height: 100%;
  }
}

@media (max-width: 575px) {
  .our-story-section .timeline-main .timeline-row .timeline-content {
    max-width: calc(100% - 110px);
  }
}

.our-story-section .timeline-main .timeline-row .timeline-content h4 {
  color: #4370f5;
  font-size: 26px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .our-story-section .timeline-main .timeline-row .timeline-content h4 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .our-story-section .timeline-main .timeline-row .timeline-content h4 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .our-story-section .timeline-main .timeline-row .timeline-content p {
    margin-bottom: 10px;
  }
}

.our-story-section .timeline-main .timeline-row .timeline-content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .our-story-section .timeline-main .timeline-row:nth-child(odd) .timeline-years {
    padding-right: 60px;
    text-align: right;
  }

  .our-story-section .timeline-main .timeline-row:nth-child(odd) .timeline-years::before {
    right: 5px;
  }

  .our-story-section .timeline-main .timeline-row:nth-child(odd) .timeline-years::after {
    right: -21px;
  }

  .our-story-section .timeline-main .timeline-row:nth-child(odd) .timeline-content {
    margin-left: 80px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .our-story-section .timeline-main .timeline-row:nth-child(odd) .timeline-content {
    margin-left: 60px;
  }
}

@media (min-width: 768px) {
  .our-story-section .timeline-main .timeline-row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .our-story-section .timeline-main .timeline-row:nth-child(even) .timeline-years {
    padding-left: 60px;
  }

  .our-story-section .timeline-main .timeline-row:nth-child(even) .timeline-years::before {
    left: 5px;
  }

  .our-story-section .timeline-main .timeline-row:nth-child(even) .timeline-years::after {
    left: -21px;
  }

  .our-story-section .timeline-main .timeline-row:nth-child(even) .timeline-content {
    margin-right: 60px;
    text-align: right;
  }
}

.contact-section {
  padding: 100px 0;
  box-shadow: inset 4px 0px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .contact-section {
    padding: 30px 0;
    box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.12);
  }
}

.contact-section .title {
  margin-bottom: 20px;
}

.contact-section .title h1 {
  margin-bottom: 12px;
}

.contact-section .title p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .contact-section .row>[class*=col-] {
    max-width: 100%;
  }
}

.contact-section .contactImg {
  padding: 120px 0;
  max-width: 300px;
  position: relative;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .contact-section .contactImg {
    margin-bottom: 0px;
    margin-top: 20px;
    padding: 26vw 0;
    max-width: 100%;
  }
}

.contact-section .contactImg .mainImg {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  object-fit: cover;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.41);
  opacity: 0;
  transition: all 1s;
}

@media (max-width: 991px) {
  .contact-section .contactImg .mainImg {
    width: 50vw;
    height: 50vw;
  }
}

.contact-section .contactImg .contactImg-elements li {
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 100%;
  overflow: hidden;
  transform: scale(0);
  opacity: 0;
  transition: 1s;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li {
    width: 22vw;
    height: 22vw;
  }
}

.contact-section .contactImg .contactImg-elements li.element1 {
  top: 150px;
  left: -10px;
  width: 80px;
  height: 80px;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element1 {
    top: 32vw;
    left: 18vw;
    width: 15vw;
    height: 15vw;
  }
}

.contact-section .contactImg .contactImg-elements li.element2 {
  top: 45px;
  left: -60px;
  width: 85px;
  height: 85px;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element2 {
    top: 12vw;
    left: 4vw;
    width: 14vw;
    height: 14vw;
  }
}

.contact-section .contactImg .contactImg-elements li.element3 {
  top: 0;
  left: 75px;
  width: 85px;
  height: 85px;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element3 {
    top: 0vw;
    left: 31vw;
    width: 18vw;
    height: 18vw;
  }
}

.contact-section .contactImg .contactImg-elements li.element4 {
  top: 50px;
  right: 15px;
  width: 55px;
  height: 55px;
}

.contact-section .contactImg .contactImg-elements li.element5 {
  top: 140px;
  right: -75px;
  width: 75px;
  height: 75px;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element5 {
    top: 30vw;
    right: 9vw;
    width: 14vw;
    height: 14vw;
  }
}

.contact-section .contactImg .contactImg-elements li.element6 {
  bottom: 140px;
  right: -70px;
  width: 75px;
  height: 75px;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element6 {
    bottom: 34vw;
    right: 9vw;
    width: 11vw;
    height: 11vw;
  }
}

.contact-section .contactImg .contactImg-elements li.element7 {
  bottom: 15px;
  right: 60px;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element7 {
    bottom: 5vw;
    right: 30vw;
    width: 20vw;
    height: 20vw;
  }
}

.contact-section .contactImg .contactImg-elements li.element8 {
  bottom: 80px;
  left: 5px;
  width: 50px;
  height: 50px;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element8 {
    bottom: 20vw;
    left: 16vw;
    width: 12vw;
    height: 12vw;
  }
}

.contact-section .contactImg .contactImg-elements li.element9 {
  bottom: 180px;
  left: -75px;
  width: 70px;
  height: 70px;
}

@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element9 {
    bottom: 45vw;
    left: 0vw;
    width: 16vw;
    height: 16vw;
  }
}
@media (max-width: 991px) {
  .contact-section .contactImg .contactImg-elements li.element4 {
    top: 12vw;
    left: 60vw;
    width: 12vw;
    height: 12vw;
  }
}
@media (max-width: 767px) {
  .contact-section .contactImg {
    padding: 26vw 0;
    margin-bottom: 30px;
    max-width: 100%;
  }
  .contact-section .contactImg .mainImg {
    width: 60vw;
    height: 60vw;
  }
  .contact-section .contactImg .contactImg-elements li.element1 {
    top: 31vw;
    left: 16vw;
    width: 17vw;
    height: 17vw;
  }
  .contact-section .contactImg .contactImg-elements li.element2 {
    top: 6vw;
    left: -3vw;
    width: 18vw;
    height: 18vw;
  }
  .contact-section .contactImg .contactImg-elements li.element4 {
    top: 17vw;
    left: 69vw;
    width: 10vw;
    height: 10vw;
  }
  .contact-section .contactImg .contactImg-elements li.element5 {
    top: 37vw;
    right: 0vw;
    width: 14vw;
    height: 14vw;
  }
  .contact-section .contactImg .contactImg-elements li.element9 {
    bottom: 45vw;
    left: -6vw;
    width: 16vw;
    height: 16vw;
  }
  .contact-section .contactImg .contactImg-elements li.element8 {
    bottom: 26vw;
    left: 4vw;
    width: 10vw;
    height: 10vw;
  }
  .contact-section .contactImg .contactImg-elements li.element7 {
    bottom: 8vw;
    right: 30vw;
    width: 20vw;
    height: 20vw;
  }
}
.contact-section .contactImg .contactImg-elements li img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  transition: 0.5s;
}

.contact-section form .form-group {
  position: relative;
  margin-bottom: 22px;
}

@media (max-width: 767px) {
  .contact-section form .form-group {
    margin-bottom: 15px;
  }
}

.contact-section form .form-group .icon {
  position: absolute;
  top: 20px;
  left: 28px;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .contact-section form .form-group .icon {
    top: 15px;
    left: 15px;
    width: 25px;
    height: 22px;
  }
}

.contact-section form .form-group .icon img {
  max-height: 100%;
}

.contact-section form .form-group textarea.form-control {
  padding: 19px 25px;
}

@media (max-width: 767px) {
  .contact-section form .form-group textarea.form-control {
    padding: 13px 15px;
  }
}

.contact-section form .form-group .form-control {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #151e28;
  border: 1px solid #D7D7D7;
  border-radius: 3px;
  padding: 28px 15px 10px 77px;
  width: 100%;
  resize: none;
}

.contact-section form .form-group .form-control::placeholder {
  font-weight: 500;
  color: #B7B5B5;
}

@media (max-width: 767px) {
  .contact-section form .form-group .form-control {
    font-size: 16px;
    padding: 20px 15px 8px 50px;
  }
}

.contact-section form .form-group .form-control[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.contact-section form .form-group .form-control::-webkit-outer-spin-button,
.contact-section form .form-group .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact-section form .form-group .form-control.empty+label {
  transform: translateY(-10px);
  font-size: 14px;
}

.contact-section form .form-group .form-control:focus {
  border-color: #4370f5;
  box-shadow: 0 0 0 1px #4370f5;
}

.contact-section form .form-group .form-control:focus+label {
  transform: translateY(-10px);
  font-size: 14px;
}

.contact-section form .form-group .form-control.wpcf7-not-valid {
  border-color: #FFA6A6;
}

.contact-section form .form-group label {
  position: absolute;
  top: 23px;
  left: 77px;
  font-size: 17px;
  font-weight: 500;
  color: #B7B5B5;
  transition: 0.5s;
  pointer-events: none;
}

@media (max-width: 767px) {
  .contact-section form .form-group label {
    font-size: 16px;
    top: 18px;
    left: 50px;
  }
}

.contact-section form .form-group .btn[type=submit] {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  width: 100%;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .contact-section form .form-group .btn[type=submit] {
    font-size: 18px;
  }
}

.contact-section form .cf7ascaptcha {
  display: flex;
  align-items: center;
}

.contact-section form .cf7ascaptcha .cf7as-firstAct {
  padding: 0 3px;
  font-weight: bold;
}

.contact-section form .cf7ascaptcha .cf7as-captchcode::before {
  content: "=";
}

.contact-section form .cf7ascaptcha .cf7as-captchcode input {
  font-family: "Poppins", sans-serif;
  color: #151e28;
  border: 1px solid #D7D7D7;
  text-align: center;
  margin: 0 !important;
  width: 50px !important;
  padding: 10px;
  border-radius: 3px;
  font-weight: bold;
}

.contact-section form .cf7ascaptcha .cf7as-captchcode input.wpcf7-not-valid {
  border-color: #FFA6A6;
}

.contact-section .follow-us h3 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0;
  font-size: 20px;
  color: #151e28;
}

.contact-section .follow-us ul li {
  margin-left: 23px;
  line-height: 0;
}

@media (max-width: 767px) {
  .contact-section .follow-us ul li {
    margin-left: 15px;
  }
}

.contact-section .follow-us ul li a:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .weather-section {
    padding-top: 5px;
  }
}

.weather-section .title {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .weather-section .title {
    margin-bottom: 30px;
  }
}

.weather-section .weather-inner-wrap {
  height: 600px;
  padding: 40px 0 0;
  overflow: hidden;
  position: relative;
  background-color: #151e28;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap {
    height: 550px;
  }
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap {
    height: 450px;
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap {
    height: 300px;
    padding: 20px 0;
  }
}

.weather-section .weather-inner-wrap .back-images {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform-origin: center center;
  transition: 3s all ease;
  -webkit-transition: 3s all ease;
  -moz-transition: 3s all ease;
  -moz-transition: 3s all ease;
  opacity: 0;
  transition-delay: 0.3s;
}

.weather-section .weather-inner-wrap .back-images:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 90, 254, 0.6);
  mix-blend-mode: multiply;
}

.weather-section .weather-inner-wrap .back-images.come-in {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
}

.weather-section .weather-inner-wrap .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 550px;
  margin-left: 11vw;
}

@media (max-width: 1600px) {
  .weather-section .weather-inner-wrap .swiper-container {
    max-width: 480px;
  }
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .swiper-container {
    margin-left: 2vw;
  }
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap .swiper-container {
    margin-left: 0;
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .swiper-container {
    max-width: 290px;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .swiper-container {
    max-width: 180px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .swiper-container {
    max-width: 100px;
  }
}

.weather-section .weather-inner-wrap .swiper-container .swiper-slide-container {
  text-align: center;
  height: 100%;
  max-width: 150px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap .swiper-container .swiper-slide-container {
    max-width: 120px;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .swiper-container .swiper-slide-container {
    max-width: 80px;
  }
}

@media (max-width: 576px) {
  .weather-section .weather-inner-wrap .swiper-container .swiper-slide-container {
    max-width: 60px;
  }
}

.weather-section .weather-inner-wrap .swiper-container .swiper-slide-container .month-name {
  color: #FFFFFF;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 38px;
  position: absolute;
  right: -60px;
  top: 0;
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap .swiper-container .swiper-slide-container .month-name {
    font-size: 18px;
    line-height: normal;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .swiper-container .swiper-slide-container .month-name {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .swiper-container .swiper-slide-container .month-name {
    font-size: 14px;
    right: -30px;
  }
}

.weather-section .weather-inner-wrap .swiper-slide {
  transition: 0.7s all ease;
  -webkit-transition: 0.7s all ease;
  -moz-transition: 0.7s all ease;
  -o-transition: 0.7s all ease;
  transform: translateX(0px) scale(0.8);
}

.weather-section .weather-inner-wrap .swiper-slide.swiper-slide-active {
  transform: translateX(-80px) scale(1);
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .swiper-slide.swiper-slide-active {
    transform: translateX(-40px) scale(1);
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .swiper-slide.swiper-slide-active {
    transform: translateX(-20px) scale(0.9);
  }
}

.weather-section .weather-inner-wrap .outer-circle {
  width: 73vw;
  height: 73vw;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  right: 0;
  bottom: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .outer-circle {
    width: 85vw;
    height: 85vw;
  }
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap .outer-circle {
    width: 90vw;
    height: 90vw;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .outer-circle {
    width: 100vw;
    height: 100vw;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .outer-circle {
    width: 110vw;
    height: 110vw;
    left: -5vw;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .outer-circle {
    width: 120vw;
    height: 120vw;
    left: -10vw;
  }
}

.weather-section .weather-inner-wrap .inner-circle {
  width: 55vw;
  height: 55vw;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  right: 0;
  bottom: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .inner-circle {
    width: 65vw;
    height: 65vw;
  }
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap .inner-circle {
    width: 70vw;
    height: 70vw;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .inner-circle {
    width: 75vw;
    height: 75vw;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .inner-circle {
    width: 87vw;
    height: 87vw;
  }
}

.weather-section .weather-inner-wrap .navigation-swiper {
  position: absolute;
  width: 100px;
  height: 50px;
  bottom: 10px;
  left: 30px;
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .navigation-swiper {
    height: 30px;
    left: 5px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .navigation-swiper {
    width: 75px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .navigation-swiper>div {
    width: 18px;
  }
}

.weather-section .weather-inner-wrap .navigation-swiper .swiper-button-next::after,
.weather-section .weather-inner-wrap .navigation-swiper .swiper-button-prev::after {
  display: none;
}

.weather-section .weather-inner-wrap .swiper-pagination {
  position: absolute;
  z-index: 99;
  right: 9.9vw;
  left: auto;
  width: 90px;
  top: 0;
  bottom: 0;
  height: 50px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  font-size: 0;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .swiper-pagination {
    right: 4vw;
  }
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap .swiper-pagination {
    right: 0.5vw;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .swiper-pagination {
    width: 50px;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .swiper-pagination {
    top: auto;
    height: auto;
    bottom: 15px;
  }
}

.weather-section .weather-inner-wrap .swiper-pagination .swiper-pagination-current {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 41px;
  line-height: 38px;
  width: 60%;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
    line-height: 1;
    width: 70%;
  }
}

.weather-section .weather-inner-wrap .swiper-pagination .swiper-pagination-total {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 38px;
  margin-top: -6px;
  width: 40%;
  text-align: left;
  padding-left: 10px;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .swiper-pagination .swiper-pagination-total {
    font-size: 16px;
    line-height: 1;
    padding-left: 5px;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .swiper-pagination .swiper-pagination-total {
    font-size: 12px;
    padding-left: 0;
    margin-top: -2px;
  }
}

.weather-section .weather-inner-wrap .middle-info-circle {
  position: absolute;
  width: 100%;
  max-width: 350px;
  max-height: 350px;
  left: 0;
  top: 0;
  margin: auto;
  right: 0;
  bottom: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  opacity: 0;
  transition-delay: 1s;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .middle-info-circle {
    max-width: 415px;
    max-height: 415px;
  }
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap .middle-info-circle {
    max-width: 360px;
    max-height: 360px;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .middle-info-circle {
    max-width: 260px;
    max-height: 260px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .middle-info-circle {
    max-width: 140px;
    max-height: 140px;
  }
}

.weather-section .weather-inner-wrap .middle-info-circle.come-in {
  transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
}

.weather-section .weather-inner-wrap .middle-info-circle .middle-info-content {
  margin: auto;
  text-align: center;
}

.weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h3 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 100px;
  line-height: 100px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 1600px) {
  .weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h3 {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h3 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h3 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h3 {
    font-size: 24px;
  }
}

.weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h3 span sup {
  line-height: normal;
  line-height: 1;
  font-size: 36px;
  vertical-align: inherit;
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h3 span sup {
    font-size: 20px;
  }
}

.weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h6 {
  color: #FFFFFF;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  margin-bottom: 0;
  display: block;
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h6 {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .middle-info-circle .middle-info-content h6 {
    font-size: 13px;
  }
}

.weather-section .weather-inner-wrap .middle-info-circle .middle-info-content .text-show {
  overflow: hidden;
}

.weather-section .weather-inner-wrap .middle-info-circle .dot {
  animation: orbit-animation__1 60s linear infinite;
  width: 15px;
  height: 15px;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.weather-section .weather-inner-wrap .location-address {
  position: absolute;
  right: 18.5vw;
  top: 0;
  display: flex;
  align-items: center;
  bottom: 0;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  opacity: 0;
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -o-transform: translateX(50px);
  transition-delay: 1s;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .location-address {
    right: 11.5vw;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .location-address {
    right: 8.5vw;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .location-address {
    right: 2vw;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .location-address {
    right: 0;
    flex-direction: column-reverse;
    justify-content: center;
  }
}

.weather-section .weather-inner-wrap .location-address h2 {
  max-width: 220px;
  text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.8);
  color: #F0F5FF;
  font-family: "PT Serif";
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 0;
}

@media (max-width: 1600px) {
  .weather-section .weather-inner-wrap .location-address h2 {
    max-width: 140px;
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .location-address h2 {
    max-width: 110px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .location-address h2 {
    max-width: 65px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .location-address h2 {
    text-align: center;
    margin-top: 20px;
  }
}

.weather-section .weather-inner-wrap .location-address .map-img {
  width: 115px;
  height: 115px;
  position: relative;
}

@media (max-width: 1199px) {
  .weather-section .weather-inner-wrap .location-address .map-img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .location-address .map-img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .location-address .map-img {
    width: 50px;
    height: 50px;
  }
}

.weather-section .weather-inner-wrap .location-address .map-img::after {
  position: absolute;
  content: "";
  width: 110px;
  height: 2px;
  background-color: #ffffff;
  right: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 1440px) {
  .weather-section .weather-inner-wrap .location-address .map-img::after {
    width: 80px;
  }
}

@media (max-width: 991px) {
  .weather-section .weather-inner-wrap .location-address .map-img::after {
    width: 55px;
  }
}

@media (max-width: 767px) {
  .weather-section .weather-inner-wrap .location-address .map-img::after {
    width: 35px;
  }
}

@media (max-width: 575px) {
  .weather-section .weather-inner-wrap .location-address .map-img::after {
    width: 2px;
    height: 45px;
    right: 0;
    left: 0;
    top: 50%;
    margin: 0 auto;
  }
}

.weather-section .weather-inner-wrap .location-address .map-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.weather-section .weather-inner-wrap .location-address.come-in {
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
}

@keyframes orbit-animation__1 {
  from {
    transform: rotate(0deg) translateX(175px);
  }

  to {
    transform: rotate(360deg) translateX(175px);
  }
}

@-webkit-keyframes orbit-animation__1 {
  from {
    transform: rotate(0deg) translateX(175px);
  }

  to {
    transform: rotate(360deg) translateX(175px);
  }
}

@-moz-keyframes orbit-animation__1 {
  from {
    transform: rotate(0deg) translateX(175px);
  }

  to {
    transform: rotate(360deg) translateX(175px);
  }
}

@media (max-width: 1440px) {
  @keyframes orbit-animation__1 {
    from {
      transform: rotate(0deg) translateX(207px);
    }

    to {
      transform: rotate(360deg) translateX(207px);
    }
  }

  @-webkit-keyframes orbit-animation__1 {
    from {
      transform: rotate(0deg) translateX(207px);
    }

    to {
      transform: rotate(360deg) translateX(207px);
    }
  }

  @-moz-keyframes orbit-animation__1 {
    from {
      transform: rotate(0deg) translateX(207px);
    }

    to {
      transform: rotate(360deg) translateX(207px);
    }
  }
}

.weather-section .swiper-container .swiper-slide-container {
  opacity: 0;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
}

.weather-section .swiper-container .swiper-slide-container.come-in {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.weather-section .outer-circle,
.weather-section .inner-circle {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  opacity: 0;
  transition-delay: 0.3s;
}

.weather-section .outer-circle.come-in,
.weather-section .inner-circle.come-in {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  opacity: 1;
}

.weather-section .outer-circle {
  transition-delay: 0.7s;
}

.weather-section .swiper-container {
  opacity: 0;
  transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition-delay: 1.1s;
}

.weather-section .swiper-container.come-in {
  opacity: 1;
}

.error-section {
  box-shadow: inset 4px 0px 18px rgba(0, 0, 0, 0.12);
}

.error-section .error-area {
  position: relative;
  width: 100%;
  height: 435px;
  background-image: url("/assets/images/error_bg.png");
  overflow: hidden;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
}

@media (max-width: 767px) {
  .error-section .error-area {
    height: 60vw;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
}

.error-section .error-area .error-text-box-area {
  position: absolute;
  z-index: 1;
  bottom: -5px;
  left: 0;
  right: 0;
}

.error-section .error-area .error-text-box-area .error-text-box {
  margin-bottom: -20px;
}

.error-section .error-area .error-text-box-area .error-text-box .text {
  z-index: -1;
}

.error-section .error-area .error-text-box-area .error-text-box .zero-with-flag {
  max-width: 140px;
  animation: double-rotate 2s 2s linear infinite alternate;
  -webkit-animation: double-rotate 2s 2s linear infinite alternate;
}

@media (max-width: 767px) {
  .error-section .error-area .error-text-box-area .error-text-box .zero-with-flag {
    max-width: 24vw;
  }
}

@keyframes double-rotate {
  0% {
    transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -o-transform: rotate(3deg);
  }

  100% {
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
  }
}

.error-section .error-area .error-text-box-area .error-text-box .four-no {
  max-width: 120px;
  animation: double-rotate2 2.5s 2.5s linear infinite alternate;
  -webkit-animation: double-rotate2 2.5s 2.5s linear infinite alternate;
}

@media (max-width: 767px) {
  .error-section .error-area .error-text-box-area .error-text-box .four-no {
    max-width: 23vw;
  }
}

@keyframes double-rotate2 {
  0% {
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
  }

  100% {
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
  }
}

.error-section .error-area .error-text-box-area .error-text-box .four-with-man {
  max-width: 160px;
  animation: simple-rotate 2s 2s linear infinite alternate;
}

@media (max-width: 767px) {
  .error-section .error-area .error-text-box-area .error-text-box .four-with-man {
    max-width: 26vw;
  }
}

@keyframes simple-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    transform: rotate(12deg);
    -webkit-transform: rotate(12deg);
    -moz-transform: rotate(12deg);
    -ms-transform: rotate(12deg);
    -o-transform: rotate(12deg);
  }
}

.error-section .error-area .cloud-area .cloud {
  position: absolute;
  top: 45px;
}

@media (max-width: 767px) {
  .error-section .error-area .cloud-area .cloud {
    top: 1vw;
  }
}

.error-section .error-area .cloud-area .cloud svg {
  width: 100%;
}

.error-section .error-area .cloud-area .cloud-1 {
  right: -5%;
  max-width: 110px;
}

@media (max-width: 767px) {
  .error-section .error-area .cloud-area .cloud-1 {
    right: -9vw;
    max-width: 21vw;
  }
}

.error-section .error-area .cloud-area .cloud-2 {
  right: 25%;
  top: 25%;
  max-width: 170px;
}

@media (max-width: 767px) {
  .error-section .error-area .cloud-area .cloud-2 {
    right: 20vw;
    top: 8vw;
    max-width: 22vw;
  }
}

.error-section .error-area .cloud-area .cloud-3 {
  left: 25%;
  max-width: 170px;
  top: 25%;
}

@media (max-width: 767px) {
  .error-section .error-area .cloud-area .cloud-3 {
    left: 13vw;
    max-width: 22vw;
    top: 10vw;
  }
}

.error-section .error-area .cloud-area .cloud-4 {
  left: 50px;
  max-width: 90px;
  top: 70px;
}

@media (max-width: 767px) {
  .error-section .error-area .cloud-area .cloud-4 {
    left: 6vw;
    max-width: 12vw;
    top: 6vw;
  }
}

.error-section .error-area .cloud-area .cloud-5 {
  left: -4%;
  max-width: 120px;
}

@media (max-width: 767px) {
  .error-section .error-area .cloud-area .cloud-5 {
    left: -6vw;
    max-width: 15vw;
  }
}

@keyframes moveclouds {
  0% {
    margin-left: 1000px;
  }

  100% {
    margin-left: -1000px;
  }
}

@keyframes movecloudsReverse {
  0% {
    margin-right: 1000px;
  }

  100% {
    margin-right: -1000px;
  }
}

.error-section .error-content-box {
  padding-top: 40px;
}

@media (max-width: 767px) {
  .error-section .error-content-box {
    padding-top: 20px;
  }
}

.error-section .error-content-box .error-top-detail {
  padding-bottom: 30px;
}

.error-section .error-content-box .error-top-detail .error-title {
  text-align: right;
}

@media (max-width: 767px) {
  .error-section .error-content-box .error-top-detail .error-title {
    text-align: left;
  }
}

.error-section .error-content-box .error-top-detail .title {
  padding-right: 15px;
  display: inline-block;
}

@media (max-width: 767px) {
  .error-section .error-content-box .error-top-detail .title {
    margin-bottom: 5px;
  }
}

.error-section .error-content-box .error-top-detail .title h1 {
  font-size: 56px;
  color: #4370f5;
  font-style: italic;
}

@media (max-width: 991px) {
  .error-section .error-content-box .error-top-detail .title h1 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .error-section .error-content-box .error-top-detail .title h1 {
    font-size: 35px;
  }
}

.error-section .error-content-box .error-top-detail .title h1 strong {
  font-weight: 700;
  color: #151e28;
  font-style: normal;
  font-family: "Poppins", sans-serif;
}

.error-section .error-content-box .error-top-detail .error-list {
  padding-left: 15px;
}

@media (max-width: 991px) {
  .error-section .error-content-box .error-top-detail .error-list {
    padding-left: 0;
  }
}

.error-section .error-content-box .error-top-detail .error-list h3 {
  font-family: "Poppins", sans-serif;
  color: #151e28;
}

.error-section .error-content-box .error-top-detail .error-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.error-section .error-content-box .error-top-detail .error-list ul li {
  position: relative;
  padding-left: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.error-section .error-content-box .error-top-detail .error-list ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid #4370f5;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.siteMap-section {
  box-shadow: inset 4px 0px 18px rgba(0, 0, 0, 0.12);
}

.siteMap-section .title {
  padding-right: 15px;
  display: inline-block;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .siteMap-section .title {
    margin-bottom: 5px;
  }
}

.siteMap-section .title h1 {
  font-size: 56px;
  color: #4370f5;
}

@media (max-width: 991px) {
  .siteMap-section .title h1 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .siteMap-section .title h1 {
    font-size: 35px;
  }
}

.siteMap-section .title h1 strong {
  font-weight: 700;
  color: #151e28;
  font-family: "Poppins", sans-serif;
}

.siteMap-section .sitemap-title h2 {
  font-size: 48px;
  font-style: normal;
}

@media (max-width: 767px) {
  .siteMap-section .sitemap-title h2 {
    font-size: 35px;
  }
}

.siteMap-section .sitemap-title h2 strong {
  font-weight: 700;
}

.siteMap-section .page-name-list .page-name-box:not(:last-child) {
  margin-bottom: 33px;
}

@media (max-width: 575px) {
  .siteMap-section .page-name-list .page-name-box:not(:last-child) {
    margin-bottom: 20px;
  }
}

.siteMap-section .page-name-list .page-name-box h3 {
  font-family: "Poppins", sans-serif;
  color: #151e28;
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #151e28;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .siteMap-section .page-name-list .page-name-box h3 {
    padding-bottom: 10px;
  }
}

.siteMap-section .page-name-list .page-name-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.siteMap-section .page-name-list .page-name-box ul li {
  display: inline-block;
}

.siteMap-section .page-name-list .page-name-box ul li a {
  font-weight: 500;
  text-transform: uppercase;
  line-height: 0.8;
}

.siteMap-section .page-name-list .page-name-box ul li a:hover {
  color: #4370f5;
}

@media (max-width: 575px) {
  .siteMap-section .page-name-list .page-name-box ul li a {
    font-size: 14px;
  }
}

.siteMap-section .page-name-list .page-name-box ul li:not(:last-child) {
  padding-right: 15px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-right: 1px solid #151e28;
}

@media (max-width: 575px) {
  .siteMap-section .page-name-list .page-name-box ul li:not(:last-child) {
    padding-right: 10px;
    margin: 0 7px 8px 0;
  }
}

.amenities-section {
  margin-top: -40px;
}

@media (max-width: 767px) {
  .amenities-section {
    margin-top: -20px;
    position: relative;
    z-index: 1;
  }
}

.amenities-section .amenities-inner {
  background-color: #ffffff;
  padding: 18px 45px;
  border-radius: 13px;
  box-shadow: 0 0 30px rgba(43, 44, 62, 0.11);
}

@media (max-width: 767px) {
  .amenities-section .amenities-inner {
    padding: 18px 25px;
  }
}

@media (min-width: 768px) {
  .amenities-section .amenities-inner>.row {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.amenities-section .amenities-inner .amenities-list {
  display: flex;
  align-items: center;
  font-weight: 600;
}

@media (min-width: 768px) {
  .amenities-section .amenities-inner .amenities-list {
    max-width: inherit;
    width: auto;
  }
}

@media (max-width: 767px) {
  .amenities-section .amenities-inner .amenities-list:not(:last-child) {
    margin-bottom: 15px;
  }
}

.amenities-section .amenities-inner .amenities-list .icon {
  min-width: 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 8px;
  background-color: #4370f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.ships-destinations-section .ships-swiper {
  padding-left: 20px;
  margin-left: -20px;
}

.ships-destinations-section .ships-swiper .title {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .ships-destinations-section .ships-swiper .title {
    flex-wrap: wrap;
  }
}

.ships-destinations-section .ships-swiper .title .title-left:not(:last-child) {
  width: calc(100% - 110px);
  padding-right: 30px;
}

@media (max-width: 575px) {
  .ships-destinations-section .ships-swiper .title .title-left:not(:last-child) {
    width: 100%;
    margin-bottom: 10px;
    padding-right: 0;
  }
}

.ships-destinations-section .ships-swiper .title .title-left p:last-child {
  margin-bottom: 0;
}

.ships-destinations-section .ships-swiper .title .title-arrow {
  width: 110px;
}

@media (max-width: 575px) {
  .ships-destinations-section .ships-swiper .title .title-arrow {
    width: 95px;
    width: 100%;
  }
}

.ships-destinations-section .ships-swiper .divImg {
  width: 100%;
  height: 290px;
  min-height: 290px;
  display: block;
  background-color: #D7D7D7;
  border-radius: 20px;
  position: relative;
}

@media (max-width: 1199px) {
  .ships-destinations-section .ships-swiper .divImg {
    height: 35vw;
    min-height: 35vw;
  }
}

@media (max-width: 767px) {
  .ships-destinations-section .ships-swiper .divImg {
    height: 50vw;
    min-height: 50vw;
    border-radius: 10px;
  }
}

.ships-destinations-section .ships-swiper .divImg .ships-by-main {
  position: absolute;
  top: 20px;
  left: -18px;
  width: 256px;
}

@media (max-width: 767px) {
  .ships-destinations-section .ships-swiper .divImg .ships-by-main {
    top: 1px;
    left: -12px;
    width: 180px;
  }
}

.ships-destinations-section .ships-swiper .divImg .ships-by-main .ships-by-logo {
  font-size: 12px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 4px;
  padding: 5px 18px;
  display: flex;
  align-items: center;
  width: 100%;
}

@media (max-width: 767px) {
  .ships-destinations-section .ships-swiper .divImg .ships-by-main .ships-by-logo {
    padding: 3px 10px;
    margin-top: 1px;
    font-size: 10px;
  }
}

.ships-destinations-section .ships-swiper .divImg .ships-by-main .ships-by-logo .span-logo {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  padding-left: 10px;
}

@media (max-width: 767px) {
  .ships-destinations-section .ships-swiper .divImg .ships-by-main .ships-by-logo .span-logo {
    padding-left: 5px;
    letter-spacing: 2px;
  }
}

.ships-destinations-section .ships-swiper .divImg+.ships-destinations-tab-menu {
  margin-top: -21px;
}

.ships-destinations-section .ships-swiper .divImg+.ships-destinations-tab-menu ul li .btn:not(.active) {
  background-color: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.ships-destinations-section .ships-swiper .divImg+.ships-destinations-tab-menu ul li .btn:hover {
  background-color: #4370f5;
  color: #ffffff;
}

.ships-destinations-section .ships-destinations-tab-menu {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.ships-destinations-section .ships-destinations-tab-menu ul li {
  margin: 0 11px 11px;
}

@media (max-width: 767px) {
  .ships-destinations-section .ships-destinations-tab-menu ul li {
    margin: 0 2px 10px;
  }
}

.ships-destinations-section .ships-destinations-tab-menu ul li .btn:not(.active) {
  background-color: #F3F3F3;
  color: #151e28;
}

.ships-destinations-section .ships-destinations-tab-menu ul li .btn:hover {
  background-color: #4370f5;
  color: #ffffff;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-img {
  background-color: #4370f5;
  height: 235px;
  margin-bottom: 22px;
  display: block;
  overflow: hidden;
  position: relative;
}

@media (max-width: 991px) {
  .ships-destinations-section .shipsdestinationsSlider .ships-post-img {
    height: 25vw;
  }
}

@media (max-width: 767px) {
  .ships-destinations-section .shipsdestinationsSlider .ships-post-img {
    height: 45vw;
  }
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-img a {
  width: 100%;
  height: 100%;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-img a:hover {
  transform: scale(1.05);
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-img .flagIcon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background-color: #ffffff;
  border-radius: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .ships-destinations-section .shipsdestinationsSlider .ships-post-img .flagIcon {
    width: 50px;
    height: 50px;
    padding: 8px;
  }
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-img .flagIcon img {
  width: 100%;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content h3 {
  margin-bottom: 10px;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .read-more-content {
  margin-bottom: 10px;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .read-more-content:not(.open) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .read-more-content p {
  margin-bottom: 0;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .hyper-link {
  color: #4370f5;
  font-weight: bold;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .hyper-link:hover {
  color: #151e28;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .hyper-link.active .more {
  display: none;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .hyper-link:not(.active) .less {
  display: none;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name+.rivers-name {
    align-items: flex-start;
  }
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name .rivers-icon {
  line-height: 0;
  margin-right: 14px;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name h6 {
  display: flex;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name h6 {
    width: 80%;
  }
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name h6 .links {
  font-family: "Poppins", sans-serif;
  color: #151e28;
  padding-left: 3px;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name h6 .links a {
  text-transform: uppercase;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name h6 .links a:last-child span {
  display: none;
}

.ships-destinations-section .shipsdestinationsSlider .ships-post-content .rivers-name h6 .links a:hover {
  color: #4370f5;
}

@media (max-width: 767px) {
  .ships-destinations-section .shipsdestinationsSlider.grand-tab-content .slide-box .ships-post-img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .ships-destinations-section .shipsdestinationsSlider.grand-tab-content .slide-box .ships-post-img {
    width: 50%;
    margin-bottom: 0;
    height: 265px;
  }
}

@media (min-width: 768px) {
  .ships-destinations-section .shipsdestinationsSlider.grand-tab-content .slide-box .ships-post-content {
    width: 50%;
    padding-left: 30px;
  }
}

.ships-destinations-section #ajax_response_blogs .swiper-arrow,
.ships-destinations-section.without-tab-section .swiper-arrow {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .cruise-videos-section .videos-row .title .swiper-arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .cruise-videos-section .videos-row [class*=col-] {
    max-width: 100%;
  }
}

.cruise-videos-section .videoSlider::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -135px;
  bottom: -80px;
  width: 210px;
  z-index: 2;
  border-radius: 100%;
  pointer-events: none;
  background: #ffffff;
  background: radial-gradient(circle, white 0%, rgba(255, 255, 255, 0) 100%);
  filter: blur(60px);
}

.cruise-videos-section .videoSlider .swiper-slide .video-main {
  position: relative;
  line-height: 0;
  margin-bottom: 15px;
  height: 16vw;
  background-color: #4370f5;
}

@media (min-width: 2000px) {
  .cruise-videos-section .videoSlider .swiper-slide .video-main {
    height: 15vw;
  }
}

@media (max-width: 1460px) {
  .cruise-videos-section .videoSlider .swiper-slide .video-main {
    height: 18vw;
  }
}

@media (max-width: 1199px) {
  .cruise-videos-section .videoSlider .swiper-slide .video-main {
    height: 20vw;
  }
}

@media (max-width: 991px) {
  .cruise-videos-section .videoSlider .swiper-slide .video-main {
    height: 28vw;
  }
}

@media (max-width: 767px) {
  .cruise-videos-section .videoSlider .swiper-slide .video-main {
    height: 41vw;
  }
}

.cruise-videos-section .videoSlider .swiper-slide .video-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(67, 112, 245, 0.6);
}

.cruise-videos-section .videoSlider .swiper-slide .video-main .bannerVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cruise-videos-section .videoSlider .swiper-slide .video-main .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .cruise-videos-section .videoSlider .swiper-slide .video-main .play-button {
    width: 40px;
  }
}

.cruise-videos-section .videoSlider .swiper-slide .video-content h3 {
  margin-bottom: 5px;
}

@media (min-width: 992px) {
  .cruise-videos-section .videoSlider .swiper-arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .cruise-videos-section .videoSlider .swiper-arrow {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .cruise-gallery-section .main-row>[class*=col-]:first-child {
    margin-bottom: 15px;
  }
}

.cruise-gallery-section .main-row>[class*=col-]:first-child a {
  border-radius: 20px 0 0 20px;
  height: 350px;
}

@media (max-width: 767px) {
  .cruise-gallery-section .main-row>[class*=col-]:first-child a {
    border-radius: 10px 10px 0 0;
    height: 250px;
  }
}

.cruise-gallery-section .main-row a {
  display: block;
  overflow: hidden;
}

.cruise-gallery-section .main-row a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .cruise-gallery-section .gallery-row {
    margin: 0 -7.5px;
  }
}

@media (max-width: 767px) {
  .cruise-gallery-section .gallery-row [class*=col-] {
    max-width: 50%;
    padding: 0 7.5px;
  }
}

.cruise-gallery-section .gallery-row [class*=col-]:first-child,
.cruise-gallery-section .gallery-row [class*=col-]:nth-child(2) {
  margin-bottom: 30px;
}

@media (max-width: 767px) {

  .cruise-gallery-section .gallery-row [class*=col-]:first-child,
  .cruise-gallery-section .gallery-row [class*=col-]:nth-child(2) {
    margin-bottom: 15px;
  }
}

.cruise-gallery-section .gallery-row [class*=col-]:nth-child(2) a {
  border-radius: 0 20px 0 0;
}

@media (max-width: 767px) {
  .cruise-gallery-section .gallery-row [class*=col-]:nth-child(2) a {
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  .cruise-gallery-section .gallery-row [class*=col-]:nth-child(3) a {
    border-radius: 0 0 0 10px;
  }
}

.cruise-gallery-section .gallery-row [class*=col-]:nth-child(4) a {
  border-radius: 0 0 20px 0;
}

@media (max-width: 767px) {
  .cruise-gallery-section .gallery-row [class*=col-]:nth-child(4) a {
    border-radius: 0 0 10px 0;
  }
}

.cruise-gallery-section .gallery-row [class*=col-] a {
  height: 160px;
}

@media (max-width: 767px) {
  .cruise-gallery-section .gallery-row [class*=col-] a {
    height: 125px;
  }
}

.cruise-gallery-section .gallery-row [class*=col-].hide-gallery {
  display: none;
}

.cruise-gallery-section .container {
  position: relative;
}

.cruise-gallery-section .container .more-gallery-btn {
  position: absolute;
  right: 30px;
  bottom: 15px;
}

@media (max-width: 767px) {
  .cruise-gallery-section .container .more-gallery-btn {
    position: static;
    text-align: center;
    margin-top: 20px;
  }
}

.cruise-gallery-section .container .more-gallery-btn a {
  font-size: 12px;
}

.cruise-gallery-section .container .more-gallery-btn a img {
  vertical-align: middle;
  margin-right: 5px;
}

.cruise-line-review-section h2 {
  font-style: italic;
}

.cruise-line-review-section h2 strong {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #151e28;
}

@media (max-width: 767px) {
  .cruise-line-review-section .row>[class*=col-]:first-child {
    margin-bottom: 30px;
  }
}

.cruise-line-review-section .line-review-box {
  background-color: #4370f5;
  height: 100%;
  padding: 40px 50px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .cruise-line-review-section .line-review-box {
    padding: 30px 20px;
  }
}

.cruise-line-review-section .line-review-box .line-review-top {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .cruise-line-review-section .line-review-box .line-review-top {
    margin-bottom: 20px;
  }
}

.cruise-line-review-section .line-review-box .line-review-top .review-count {
  font-family: "PT Serif";
  font-size: 30px;
  font-weight: bold;
  margin-right: 13px;
}

@media (max-width: 767px) {
  .cruise-line-review-section .line-review-box .line-review-top .review-count {
    font-size: 24px;
  }
}

.cruise-line-review-section .line-review-box .line-review-top .review-right .divImg {
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .cruise-line-review-section .line-review-box .line-review-top .review-right .divImg {
    max-width: 100px;
    margin: 0 auto 5px;
  }
}

.cruise-line-review-section .line-review-box .line-review-list {
  max-width: max-content;
  margin: 0 auto 20px;
}

.cruise-line-review-section .line-review-box .line-review-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.cruise-line-review-section .line-review-box .line-review-list li .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .cruise-line-review-section .line-review-box .line-review-list li .icon {
    margin-right: 10px;
  }
}

.cruise-line-review-section .line-review-box .price-wrap .price {
  font-family: "PT Serif";
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .cruise-line-review-section .line-review-box .price-wrap .price {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.inclusions-section .inclusions-row [class*=col-] {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .inclusions-section .inclusions-row [class*=col-] {
    max-width: 33.33%;
  }
}

@media (max-width: 767px) {
  .inclusions-section .inclusions-row [class*=col-] {
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .inclusions-section .inclusions-row [class*=col-] {
    max-width: 100%;
    margin-bottom: 15px;
  }
}

.inclusions-section .inclusions-row .inclusions-list {
  height: 212px;
  padding: 13px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inclusions-section .inclusions-row .inclusions-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: -1;
}

.inclusions-section .inclusions-row .inclusions-list:hover::before {
  top: 13px;
  left: 13px;
  right: 13px;
  bottom: 13px;
  background-color: rgba(67, 112, 245, 0.65);
  backdrop-filter: blur(6px);
}

.inclusions-section .inclusions-row .inclusions-list .inclusions-inner {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  padding: 10px;
}

.inclusions-section .inclusions-row .inclusions-list .inclusions-inner h6 {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  margin-bottom: 0;
}

.inclusions-section .inclusions-row .inclusions-list .inclusions-inner .inclusions-content {
  display: none;
  margin-top: 10px;
}

.inclusions-section .inclusions-row .inclusions-list .inclusions-inner .inclusions-content p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  transition: 0.5s;
}

@media (max-width: 767px) {
  .ship-types-section {
    padding-bottom: 20px;
  }
}

.ship-types-section .title {
  margin-bottom: 30px;
  padding-right: 30px;
}

@media (max-width: 575px) {
  .ship-types-section .title {
    flex-wrap: wrap;
    padding-right: 15px;
  }
}

.ship-types-section .title .title-left:not(:last-child) {
  width: calc(100% - 110px);
  padding-right: 30px;
}

@media (max-width: 575px) {
  .ship-types-section .title .title-left:not(:last-child) {
    width: 100%;
    margin-bottom: 10px;
    padding-right: 0;
  }
}

.ship-types-section .title .title-left h2 {
  margin-bottom: 10px;
}

.ship-types-section .title .title-left p:last-child {
  margin-bottom: 0;
}

.ship-types-section .title .title-arrow {
  width: 110px;
}

@media (max-width: 575px) {
  .ship-types-section .title .title-arrow {
    width: 95px;
    width: 100%;
  }
}

.ship-types-section .ships-swiper .swiper-slide {
  margin-bottom: 30px;
}

.ship-types-section .ships-swiper .ship-types-list {
  border-radius: 15px;
  height: 25vw;
  background-color: #D7D7D7;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1366px) {
  .ship-types-section .ships-swiper .ship-types-list {
    height: 30vw;
  }
}

@media (max-width: 1199px) {
  .ship-types-section .ships-swiper .ship-types-list {
    height: 47vw;
  }
}

@media (max-width: 767px) {
  .ship-types-section .ships-swiper .ship-types-list {
    height: 72vw;
  }
}

@media (max-width: 575px) {
  .ship-types-section .ships-swiper .ship-types-list {
    height: 100vw;
  }
}

.ship-types-section .ships-swiper .ship-types-list:hover {
  box-shadow: 0px 9px 14px rgba(0, 0, 0, 0.25);
}

.ship-types-section .ships-swiper .ship-types-list:hover::before {
  background: rgba(67, 112, 245, 0.5);
  background: linear-gradient(0, rgba(67, 112, 245) 0%, rgba(67, 112, 245, 0.82) 48%, rgba(67, 112, 245, 0) 100%);
  height: 100%;
}

.ship-types-section .ships-swiper .ship-types-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: -1;
  transition: 0.5s;
}

.ship-types-section .ships-swiper .ship-types-list:not(:hover) .inclusions-content {
  opacity: 0;
}

.ship-types-section .ships-swiper .ship-types-list:not(:hover) .ship-types-inner {
  transform: translateY(calc(100% - 80px));
}

@media (max-width: 575px) {
  .ship-types-section .ships-swiper .ship-types-list:not(:hover) .ship-types-inner {
    transform: translateY(calc(100% - 60px));
  }
}

.ship-types-section .ships-swiper .ship-types-list .ship-types-inner {
  padding: 0 30px 30px;
  transition: 0.5s;
}

@media (max-width: 575px) {
  .ship-types-section .ships-swiper .ship-types-list .ship-types-inner {
    padding: 0 20px 20px;
  }
}

.ship-types-section .ships-swiper .ship-types-list .ship-types-inner h4 {
  color: #ffffff;
  margin-bottom: 5px;
}

.ship-types-section .ships-swiper .ship-types-list .ship-types-inner .inclusions-content {
  font-size: 14px;
  color: #ffffff;
  transition: 0.5s;
}

@media (max-width: 575px) {
  .ship-types-section .ships-swiper .ship-types-list .ship-types-inner .inclusions-content {
    font-size: 12px;
  }
}

.ship-types-section .ships-swiper .ship-types-list .ship-types-inner .inclusions-content p {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.ship-types-section .ships-swiper .ship-types-list .ship-types-inner .inclusions-content .ship-types-list-info {
  margin-bottom: 20px;
}

.ship-types-section .ships-swiper .ship-types-list .ship-types-inner .inclusions-content .ship-types-list-info li {
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .ship-types-section .ships-swiper .ship-types-list .ship-types-inner .inclusions-content .ship-types-list-info li {
    margin-bottom: 5px;
  }
}

.ship-types-section .ships-swiper .ship-types-list .ship-types-inner .inclusions-content .ship-types-list-info li .icon {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.navigator-deals-section {
  position: relative;
}

.navigator-deals-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #EDF4FE;
  height: 50%;
  z-index: -1;
  pointer-events: none;
}

.navigator-deals-section .navigatorSlider {
  display: flex;
}

@media (max-width: 767px) {
  .navigator-deals-section .navigatorSlider {
    flex-wrap: wrap;
  }
}

.navigator-deals-section .navigatorSlider .navigatorSliderImg {
  width: 55%;
  margin-right: -10%;
}

@media (max-width: 767px) {
  .navigator-deals-section .navigatorSlider .navigatorSliderImg {
    width: 100%;
    margin: 0;
    height: 70vw;
  }
}

.navigator-deals-section .navigatorSlider .navigatorSliderImg .swiper {
  height: 100%;
}

.navigator-deals-section .navigatorSlider .navigatorSliderImg .swiper .swiper-wrapper {
  height: 100%;
}

.navigator-deals-section .navigatorSlider .navigatorSliderImg .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .navigator-deals-section .navigatorSlider .navigatorSliderImg .swiper .swiper-wrapper .swiper-slide {
    border-radius: 10px;
  }
}

.navigator-deals-section .navigatorSlider .navigatorSliderContent {
  width: 55%;
  margin: 55px 0 55px auto;
  padding: 35px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 20px 0 rgba(141, 141, 141, 0.2);
  z-index: 1;
}

@media (max-width: 767px) {
  .navigator-deals-section .navigatorSlider .navigatorSliderContent {
    border-radius: 10px;
    width: calc(100% - 30px);
    margin: -50px 15px 20px;
    padding: 20px 15px;
  }
}

@media (max-width: 767px) {
  .navigator-deals-section .navigatorSlider .navigatorSliderContent h3 {
    margin-bottom: 10px;
  }
}

.navigator-deals-section .navigatorSlider .navigatorSliderContent p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

@media (max-width: 767px) {
  .navigator-deals-section .navigatorSlider .navigatorSliderContent p {
    font-size: 14px;
  }
}

.navigator-deals-section .swiper-arrow {
  margin-top: -45px;
}

@media (max-width: 767px) {
  .navigator-deals-section .swiper-arrow {
    margin: 0;
    justify-content: center;
  }
}

.pricing-section .pricing-tab-menu {
  margin-bottom: 55px;
}

.pricing-section .pricing-tab-menu ul li {
  margin: 0 10px 15px;
}

.pricing-section .pricing-tab-menu ul li a {
  border-color: #4370f5;
  border-width: 1px;
  min-width: 130px;
}

.pricing-section .pricing-tab-menu ul li a:not(.active) {
  color: #4370f5;
  background-color: transparent;
}

.pricing-section .pricing-tab-menu ul li a:hover,
.pricing-section .pricing-tab-menu ul li a.active {
  box-shadow: 0px 6px 6px rgba(67, 112, 245, 0.34);
  background-color: #4370f5;
  color: #ffffff;
}

.pricing-section .pricing-tab-main .pricing-tab-content {
  display: none;
  border: 1px solid #E1E1E1;
  border-radius: 15px;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-header {
  padding: 17px 35px;
  border-bottom: 1px solid #E1E1E1;
}

@media (max-width: 991px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-header {
    padding: 15px 35px 15px 15px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-header .col-head {
  font-size: 14px;
}

.pricing-section .pricing-tab-main .pricing-tab-content .col-head {
  padding: 0 15px;
  width: 17%;
}

@media (min-width: 768px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .col-head:first-child {
    width: 23%;
  }

  .pricing-section .pricing-tab-main .pricing-tab-content .col-head:nth-child(3) {
    width: 43%;
  }
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .col-head {
    width: 50%;
  }
}

@media (max-width: 767px) {

  .pricing-section .pricing-tab-main .pricing-tab-content .col-head:nth-child(2),
  .pricing-section .pricing-tab-main .pricing-tab-content .col-head:nth-child(3) {
    display: none;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list:not(:last-child) {
  border-bottom: 1px solid #E1E1E1;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-title {
  padding: 20px 50px 20px 35px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 991px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-title {
    padding: 15px 30px 15px 15px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-title::before {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 24px;
}

@media (max-width: 991px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-title::before {
    right: 15px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-title.active {
  background-color: #4370f5;
  color: #ffffff;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-title.active::before {
  content: "-";
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-title .col-head {
  font-weight: 500;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-title .col-head span {
  font-size: 14px;
  font-weight: 400;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body {
  display: none;
  border-top: 1px solid #E1E1E1;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .pricing-list-repeat:last-child {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .pricing-list-repeat:last-child {
    margin-bottom: 10px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .pricing-list-repeat .borderDiv {
  padding: 25px 35px 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .pricing-list-repeat .borderDiv {
    padding: 0 15px;
  }

  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .pricing-list-repeat .borderDiv.active {
    margin-top: 25px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .pricing-list-repeat .borderDiv hr {
  border-bottom: 1px solid #000;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .pricing-list-repeat:last-child .borderDiv {
  display: none;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top {
  padding: 20px 35px;
}

@media (max-width: 991px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top {
    position: relative;
  }

  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top::before {
    content: "+";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 500;
    font-size: 24px;
  }
}

@media (max-width: 767px) and (max-width: 991px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top::before {
    right: 15px;
  }
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top.open::before {
    content: "-";
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top .route-title {
  font-weight: 500;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top .route-dates {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top .route-dates {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top .route-dates {
    display: none;
    margin-top: 10px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top .route-dates strong {
  font-weight: 500;
  margin: 0 3px;
  color: #000000;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top .route-dates .icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-top .route-dates .icon img {
  max-height: 100%;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom {
  padding: 0 35px;
}

@media (max-width: 991px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom {
    display: none;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list {
  padding: 20px 25px;
  background-color: #F3F3F3;
  border-radius: 8px;
  position: relative;
}

@media (max-width: 991px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list {
    padding: 20px 15px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list:not(:last-child) {
  margin-bottom: 20px;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list.active {
  box-shadow: 0 0 0 2px #4370f5;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list.active .close {
  display: block;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .close {
  width: 21px;
  height: 21px;
  border-radius: 100%;
  border: none;
  position: absolute;
  background-color: #4370f5;
  cursor: pointer;
  top: -8px;
  right: -8px;
  box-shadow: 0 3px 5px rgba(43, 44, 62, 0.2);
  z-index: 1;
  display: none;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .close::before,
.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .close::after {
  content: "";
  width: 11px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .list-inner-left {
  display: flex;
  align-items: center;
  font-weight: 500;
  height: 100%;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .list-inner-left {
    margin-top: 0;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .list-inner-left .icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .list-inner-left .icon img {
  max-height: 100%;
}

@media (max-width: 767px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .list-inner-right {
    margin-top: 10px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list {
  align-items: center;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list:not(:first-child) {
  margin-top: 20px;
  display: none;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col {
  width: 38%;
  position: relative;
}

@media (max-width: 575px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col {
    width: 50%;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col.icon-label {
  width: 24%;
  font-weight: 600;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col.icon-label {
    width: 100%;
    margin-bottom: 10px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col.icon-label .icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col.icon-label .icon img {
  max-height: 100%;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col>input {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col>input:checked+.price-selector-main {
  box-shadow: 0 0 0 2px #4370f5;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col>input:checked+.price-selector-main::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: #4370f5;
  background-image: url(../images/check-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  border-radius: 100%;
  box-shadow: 0 6px 6px rgba(67, 112, 245, 0.34);
}

@media (max-width: 575px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .col>input:checked+.price-selector-main::before {
    width: 18px;
    height: 18px;
    left: -11px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .price-selector-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 10px 15px;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .price-selector-main:hover {
  box-shadow: 0 0 0 2px #4370f5;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .price-selector-main .selector-type {
  font-size: 14px;
}

@media (max-width: 575px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .price-selector-main .selector-type {
    font-size: 12px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .price-selector-main .selector-price {
  font-weight: 500;
  color: #000000;
}

@media (max-width: 575px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list .price-selector-main .selector-price {
    font-size: 13px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list ul.btns li {
  font-size: 14px;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list ul.btns li:not(:first-child) {
  margin-left: 30px;
}

@media (max-width: 575px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list ul.btns li:not(:first-child) {
    margin-left: 15px;
  }
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list ul.btns li .price {
  font-size: 16px;
  color: #4370f5;
}

.pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list ul.btns li .btn {
  min-width: 155px;
}

@media (max-width: 575px) {
  .pricing-section .pricing-tab-main .pricing-tab-content .pricing-list .pricing-list-body .row-bottom .price-ship-list .inner-right-list ul.btns li .btn {
    min-width: 135px;
    font-size: 12px;
  }
}

.port-guides-section .port-guides-tab-menu {
  margin-bottom: 55px;
}

@media (max-width: 767px) {
  .port-guides-section .port-guides-tab-menu {
    margin-bottom: 25px;
  }
}

.port-guides-section .port-guides-tab-menu ul {
  overflow-x: auto;
}

.port-guides-section .port-guides-tab-menu ul::-webkit-scrollbar {
  height: 10px;
}

@media (max-width: 767px) {
  .port-guides-section .port-guides-tab-menu ul::-webkit-scrollbar {
    height: 6px;
  }
}

.port-guides-section .port-guides-tab-menu ul::-webkit-scrollbar-track {
  border-radius: 20px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.port-guides-section .port-guides-tab-menu ul::-webkit-scrollbar-thumb {
  background-color: #4370f5;
  border-radius: 20px;
}

.port-guides-section .port-guides-tab-menu ul li {
  margin: 0 10px 15px;
}

.port-guides-section .port-guides-tab-menu ul li a {
  border-color: #4370f5;
  border-width: 1px;
  min-width: 130px;
  white-space: nowrap;
}

.port-guides-section .port-guides-tab-menu ul li a:not(.active) {
  color: #4370f5;
  background-color: transparent;
}

.port-guides-section .port-guides-tab-menu ul li a:hover,
.port-guides-section .port-guides-tab-menu ul li a.active {
  box-shadow: 0px 6px 6px rgba(67, 112, 245, 0.34);
  background-color: #4370f5;
  color: #ffffff;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content {
  display: none;
  border: 1px solid #E1E1E1;
  border-radius: 15px;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-header {
  padding: 17px 50px 17px 25px;
  border-bottom: 1px solid #E1E1E1;
}

@media (max-width: 991px) {
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-header {
    padding: 15px 35px 15px 15px;
  }
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head {
  font-size: 14px;
  padding: 0 15px;
  width: 17%;
}

@media (min-width: 768px) {
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:first-child {
    width: 16%;
  }

  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:nth-child(2) {
    width: 30%;
  }

  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:nth-child(3) {
    width: 15%;
  }

  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:nth-child(4) {
    width: 22%;
  }
}

@media (max-width: 767px) {

  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:nth-child(1),
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:nth-child(3),
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:nth-child(4) {
    display: none;
  }
}

@media (max-width: 767px) {
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:nth-child(2) {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .col-head:last-child {
    width: 40%;
  }
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title {
  padding: 20px 50px 20px 25px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 991px) {
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title {
    padding: 15px 30px 15px 15px;
  }
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title:not(:last-child) {
  border-bottom: 1px solid #E1E1E1;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title::before {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 20px;
}

@media (max-width: 991px) {
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title::before {
    right: 15px;
  }
}

@media (max-width: 767px) {
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title::before {
    right: 10px;
    font-size: 18px;
  }
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title.active {
  background-color: #4370f5;
  color: #ffffff;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title.active::before {
  content: "-";
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title.active .col-head .port-guides-enquire {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title .col-head {
  font-weight: 500;
  position: relative;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title .col-head span {
  font-size: 12px;
  font-weight: 400;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title .col-head .port-guides-enquire {
  position: absolute;
  top: 100%;
  right: -25px;
  background-color: #EDF4FE;
  border-radius: 10px;
  padding: 20px;
  white-space: nowrap;
  margin-top: 20px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.5s;
  cursor: default;
}

@media (max-width: 767px) {
  .port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title .col-head .port-guides-enquire {
    padding: 10px 15px;
  }
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-list .port-guides-list-title .col-head .port-guides-enquire::before {
  content: "";
  position: absolute;
  top: -15px;
  right: 16px;
  border-bottom: 15px solid #EDF4FE;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-footer {
  padding: 17px;
}

.port-guides-section .port-guides-tab-main .port-guides-tab-content .port-guides-footer .btn {
  min-width: 130px;
}

.rever-section {
  position: relative;
}

.rever-section::after {
  content: "";
  background: linear-gradient(90.03deg, #C5DBFB 6.01%, #EDF4FE 55.02%, rgba(233, 239, 247, 0.805419) 76.5%, rgba(217, 217, 217, 0) 96.48%);
  border-radius: 29px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  width: 50%;
  right: 50%;
  top: 50px;
  bottom: 50px;
  position: absolute;
  transition: 0.5s;
  z-index: -1;
}

@media (max-width: 991px) {
  .rever-section::after {
    display: none;
  }
}

.rever-section .reverSlider {
  padding: 50px 0;
  position: relative;
}

@media (max-width: 991px) {
  .rever-section .reverSlider {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .rever-section .reverSlider {
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .rever-section .reverSlider::after {
    content: "";
    background: linear-gradient(90.03deg, #C5DBFB 6.01%, #EDF4FE 55.02%, rgba(233, 239, 247, 0.805419) 76.5%, rgba(217, 217, 217, 0) 96.48%);
    border-radius: 29px 29px 0 0;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    width: 75%;
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
  }
}

@media (max-width: 767px) {
  .rever-section .reverSlider::after {
    background: linear-gradient(180deg, #C5DBFB 6.01%, #EDF4FE 55.02%, rgba(233, 239, 247, 0.805419) 76.5%, rgba(217, 217, 217, 0) 96.48%);
    width: 100%;
    border-radius: 15px 15px 0 0;
  }
}

@media (max-width: 767px) {
  .rever-section .reverSlider .row {
    flex-direction: column-reverse;
  }
}

.rever-section .reverSlider .reverSliderContent .reverContentItem {
  margin-top: 25px;
}

.rever-section .reverSlider .reverSliderContent .reverContentItem p {
  font-size: 14px;
}

.rever-section .reverSlider .reverSliderImg .reverItemImg {
  height: 400px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
}

@media (max-width: 767px) {
  .rever-section .reverSlider .reverSliderImg .reverItemImg {
    border-radius: 15px;
  }
}

@media (max-width: 576px) {
  .rever-section .reverSlider .reverSliderImg .reverItemImg {
    height: 300px;
  }
}

.rever-section .reverSlider .reverSliderImg .reverItemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rever-section .reverSlider .reverSliderContent .swiper {
  padding-bottom: 30px;
}

.rever-section .reverSlider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.rever-section .reverSlider .swiper-pagination {
  text-align: left;
}

.rever-section .reverSlider .swiper-pagination .swiper-pagination-bullet {
  background-color: #656565;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  opacity: 1;
}

.rever-section .reverSlider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4370f5;
  position: relative;
}

.rever-section .reverSlider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #151e28;
  box-sizing: border-box;
  border-radius: 100%;
  transform: scale(1.7);
}

.rever-section .rever-content {
  padding: 50px 0;
}

@media (max-width: 991px) {
  .rever-section .rever-content {
    padding-top: 0;
    padding-bottom: 20px;
  }
}

.rever-section .rever-content .title {
  margin-bottom: 0;
}

.rever-section .rever-content p {
  font-size: 14px;
}

.rever-section .rever-content ul.btns li:not(:last-child) {
  margin-bottom: 10px;
}

.rever-section .rever-content ul.btns li .btn {
  font-size: 14px;
  padding: 13px 10px;
  width: 100%;
}

.rever-section .rever-content ul.btns li .btn.blue-btn-bdr {
  padding-left: 53px;
}

.rever-section .rever-content ul.btns li .btn.blue-btn-bdr.btn-icon .speak-icon {
  width: 46px;
  height: 46px;
}

@media (max-width: 991px) {
  .rever-section .rever-main-row {
    flex-direction: column-reverse;
  }

  .rever-section .rever-main-row [class*=col-] {
    max-width: 100%;
  }
}

.itinerary-section {
  padding-bottom: 0;
}

.itinerary-section .title p {
  font-size: 16px;
}

.itinerary-section .itinerary-tab-menu {
  margin-bottom: 25px;
}

.itinerary-section .itinerary-tab-menu ul li {
  margin: 0 10px 15px;
}

.itinerary-section .itinerary-tab-menu ul li a {
  border-color: #4370f5;
  border-width: 1px;
  min-width: 140px;
}

.itinerary-section .itinerary-tab-menu ul li a:not(.active) {
  color: #4370f5;
  background-color: transparent;
}

.itinerary-section .itinerary-tab-menu ul li a.active {
  box-shadow: 0px 6px 6px rgba(67, 112, 245, 0.34);
}

.itinerary-section .itinerary-tab-menu ul li a:hover {
  box-shadow: 0px 6px 6px rgba(67, 112, 245, 0.34);
  background-color: #4370f5;
  color: #ffffff;
}

.itinerary-section .itinerary-tab-content {
  display: none;
}

.itinerary-section .itinerary-main {
  display: flex;
  flex-wrap: wrap;
}

.itinerary-section .itinerary-main .itinerary-preview {
  width: 50%;
  position: relative;
  padding: 50px 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .itinerary-section .itinerary-main .itinerary-preview {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .itinerary-section .itinerary-main .itinerary-preview {
    padding: 30px 40px;
  }
}

@media (max-width: 767px) {
  .itinerary-section .itinerary-main .itinerary-preview {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-preview {
    padding: 20px 15px;
  }
}

.itinerary-section .itinerary-main .itinerary-preview .divImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.itinerary-section .itinerary-main .itinerary-preview .divImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(47.65deg, rgba(0, 0, 0, 0.75) 26.17%, rgba(0, 0, 0, 0) 71.51%, rgba(0, 0, 0, 0) 71.52%, rgba(0, 0, 0, 0) 95.98%);
  z-index: -1;
}

.itinerary-section .itinerary-main .itinerary-preview .day {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.itinerary-section .itinerary-main .itinerary-preview .day i {
  max-width: 25px;
  display: inline-block;
}

@media (max-width: 1440px) {
  .itinerary-section .itinerary-main .itinerary-preview .day i {
    max-width: 20px;
  }
}

@media (max-width: 1440px) {
  .itinerary-section .itinerary-main .itinerary-preview .day i {
    max-width: 15px;
  }
}

@media (max-width: 1440px) {
  .itinerary-section .itinerary-main .itinerary-preview .day {
    font-size: 25px;
  }
}

@media (max-width: 1440px) {
  .itinerary-section .itinerary-main .itinerary-preview .day {
    font-size: 20px;
  }
}

@media (max-width: 1440px) {
  .itinerary-section .itinerary-main .itinerary-preview .day {
    font-size: 15px;
  }
}

.itinerary-section .itinerary-main .itinerary-preview h3 {
  font-size: 55px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

@media (max-width: 1600px) {
  .itinerary-section .itinerary-main .itinerary-preview h3 {
    font-size: 45px;
  }
}

@media (max-width: 1440px) {
  .itinerary-section .itinerary-main .itinerary-preview h3 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .itinerary-section .itinerary-main .itinerary-preview h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .itinerary-section .itinerary-main .itinerary-preview h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.itinerary-section .itinerary-main .itinerary-preview .itinerary-content {
  padding: 40px 50px;
  background-color: rgba(67, 112, 245, 0.65);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

@media (max-width: 1440px) {
  .itinerary-section .itinerary-main .itinerary-preview .itinerary-content {
    padding: 20px 30px;
  }
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-preview .itinerary-content {
    padding: 15px;
  }
}

.itinerary-section .itinerary-main .itinerary-preview .itinerary-content h4 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 15px;
}

@media (max-width: 1440px) {
  .itinerary-section .itinerary-main .itinerary-preview .itinerary-content h4 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-preview .itinerary-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

.itinerary-section .itinerary-main .itinerary-preview .itinerary-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-preview .itinerary-content p {
    font-size: 14px;
  }
}

.itinerary-section .itinerary-main .itinerary-right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

@media (max-width: 1199px) {
  .itinerary-section .itinerary-main .itinerary-right {
    width: 100%;
    flex-direction: column-reverse;
  }
}

.itinerary-section .itinerary-main .itinerary-right .google-map-section {
  pointer-events: none;
  background-color: #D7D7D7;
  width: 100%;
}

.itinerary-section .itinerary-main .itinerary-right .google-map-section>div {
  width: 100%;
  height: 460px;
}

.itinerary-section .itinerary-main .itinerary-right .marker-position {
  transform: translate(-10px, 15px);
  -webkit-transform: translate(-10px, 15px);
  -moz-transform: translate(-10px, 15px);
  -o-transform: translate(-10px, 15px);
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider {
  width: 100%;
  padding: 25px 0;
  margin-left: 25px;
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-right .itinerarySlider {
    margin-left: 15px;
  }
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide {
  height: 240px;
  background-size: cover;
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide {
    height: 190px;
  }
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(67, 112, 245) 100%);
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide.swiper-slide-active,
.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide:hover {
  box-shadow: 0px 9px 14px rgba(0, 0, 0, 0.25);
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide.swiper-slide-active::before,
.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide:hover::before {
  opacity: 0.8;
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide .itinerary-item {
  width: 100%;
  height: 100%;
  padding: 20px;
  background: linear-gradient(47.65deg, rgba(0, 0, 0, 0.75) 26.17%, rgba(0, 0, 0, 0) 71.51%, rgba(0, 0, 0, 0) 71.52%, rgba(0, 0, 0, 0) 95.98%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  color: #ffffff;
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide .itinerary-item .itinerary-text {
  transition: all 0.5s;
  position: relative;
  top: 0;
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide .itinerary-item .itinerary-text {
    font-size: 14px;
  }
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide .itinerary-item:hover .itinerary-text {
  top: -20px;
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide .itinerary-item:hover .itinerary-text {
    top: -10px;
  }
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide .itinerary-item {
    padding: 10px;
  }
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-slide .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-arrow {
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .itinerary-section .itinerary-main .itinerary-right .itinerarySlider .swiper-arrow {
    margin-bottom: 15px;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.modal {
  z-index: 9999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 17px 30px 0;
  z-index: -1;
}

@media (max-width: 1440px) {
  .modal {
    overflow: hidden;
  }
}

@media (max-width: 1199px) {
  .modal {
    padding: 30px 15px;
  }
}

@media (max-width: 767px) {
  .modal {
    padding: 15px;
  }
}

.modal.modal-active {
  visibility: visible;
  opacity: 1;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -ms-transition: all 0.5s ease;
  z-index: 9999;
}

.modal .modal-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 47, 117, 0.4);
  backdrop-filter: blur(7px);
}

.modal .modal-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
  max-width: 881px;
  width: 100%;
  margin: auto;
  background-color: #ffffff;
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.16);
  position: relative;
}

@media (max-width: 1440px) {
  .modal .modal-wrapper {
    max-height: 520px;
    overflow: hidden;
    overflow-y: auto;
  }
}

@media (max-width: 767px) {
  .modal .modal-wrapper {
    max-height: 90vh;
  }
}

.modal .modal-wrapper::-webkit-scrollbar {
  width: 8px;
}

.modal .modal-wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}

.modal .modal-wrapper::-webkit-scrollbar-thumb {
  background-color: #4370f5;
  border-radius: 20px;
}

@media (max-width: 1440px) {
  .modal .modal-body {
    height: 100%;
  }
}

.modal .modal-body .modal-content {
  padding: 40px;
}

@media (max-width: 1199px) {
  .modal .modal-body .modal-content {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .modal .modal-body .modal-content {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .modal .modal-body .modal-content {
    padding: 15px;
  }
}

.modal .modal-body .modal-content em {
  font-family: "PT Serif";
  font-weight: 600;
  font-size: 17px;
  color: #4370f5;
}

@media (max-width: 767px) {
  .modal .modal-body .modal-content em {
    font-size: 15px;
  }
}

.modal .modal-body .modal-img {
  line-height: 0;
}

@media (max-width: 767px) {
  .modal .modal-body .modal-img .desktop-img {
    display: none;
  }
}

@media (min-width: 768px) {
  .modal .modal-body .modal-img .mobile-img {
    display: none;
  }
}

.modal .modal-body.with-bg {
  background-repeat: no-repeat;
  background-position: center left 115%;
  background-size: contain;
}

@media (max-width: 991px) {
  .modal .modal-body.with-bg {
    background-image: none !important;
  }
}

.modal .modal-body.with-bg .modal-content {
  width: 100%;
  max-width: 440px;
}

@media (max-width: 991px) {
  .modal .modal-body.with-bg .modal-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .modal .modal-body.with-bg .modal-content .choose-opstion .row [class*=col-] {
    max-width: 50%;
  }
}

.modal .modal-body.with-bg .modal-content form.sent .wpcf7-response-output {
  display: none !important;
}

.modal .modal-body.unlimited-deals-body {
  background-position: center right;
}

.modal .modal-body.unlimited-deals-body .modal-content {
  padding: 120px 40px;
}

@media (max-width: 767px) {
  .modal .modal-body.unlimited-deals-body .modal-content {
    padding: 30px;
  }
}

.modal .modal-body .title {
  margin-bottom: 0;
}

.modal .modal-close {
  width: 21px;
  height: 21px;
  border-radius: 100%;
  border: none;
  position: absolute;
  background-color: #4370f5;
  cursor: pointer;
  top: 11px;
  right: 11px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.modal .modal-close:before,
.modal .modal-close::after {
  content: "";
  width: 11px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal .modal-close.white-modal-close {
  background-color: #ffffff;
}

.modal .modal-close.white-modal-close:before,
.modal .modal-close.white-modal-close::after {
  background-color: #4370f5;
}

.modal#received-enquiry .modal-body,
.modal#btn-enquiry .modal-body {
  padding-bottom: 100px;
}

@media (max-width: 767px) {

  .modal#received-enquiry .modal-body,
  .modal#btn-enquiry .modal-body {
    padding: 18px 0;
  }
}

.modal#received-enquiry .modal-body.with-bg,
.modal#btn-enquiry .modal-body.with-bg {
  background-position: bottom center;
}

.modal#received-enquiry .modal-body.with-bg .modal-content,
.modal#btn-enquiry .modal-body.with-bg .modal-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.modal#received-enquiry .modal-body.with-bg .modal-content .title+p,
.modal#btn-enquiry .modal-body.with-bg .modal-content .title+p {
  margin-bottom: 5px;
}

.modal#received-enquiry .modal-body .title img,
.modal#btn-enquiry .modal-body .title img {
  margin-bottom: 20px;
}

.modal#video_popup .modal-wrapper {
  background-color: transparent;
}

.modal#video_popup .modal-body {
  line-height: 0;
}

.modal#video_popup .modal-body .bannerVideo {
  width: 100%;
  height: 495px;
  object-fit: cover;
  background-color: #4370f5;
}

@media (max-width: 767px) {
  .modal#video_popup .modal-body .bannerVideo {
    height: 55vw;
  }
}

.modal form .form-group {
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 767px) {
  .modal form .form-group {
    margin-bottom: 8px;
  }
}

.modal form .form-field-icon {
  position: absolute;
  bottom: 15px;
  left: 20px;
  width: 15px;
  display: flex;
}

.modal form .form-field-icon img {
  margin: auto;
  max-height: 20px;
}

.modal form .form-field-label {
  font-size: 17px;
  font-weight: 500;
  color: #151e28;
  margin-bottom: 10px;
  display: block;
}

@media (max-width: 767px) {
  .modal form .form-field-label {
    font-size: 15px;
  }
}

.modal form .form-control {
  border-radius: 40px;
  border: 1px solid #D7D7D7;
  width: 100%;
  padding: 10px;
  padding-left: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767px) {
  .modal form .form-control {
    font-size: 13px;
  }
}

.modal form .form-control.wpcf7-not-valid {
  border-color: #FFA6A6;
}

.modal form .choose-opstion .form-check-input {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .modal form .choose-opstion .form-check-input {
    margin: 0 -7px;
  }
}

.modal form .choose-opstion .form-check-input>span {
  position: relative;
  margin: 0 0 20px;
  padding: 0 15px;
  max-width: 33.33333333%;
  width: 100%;
}

@media (max-width: 767px) {
  .modal form .choose-opstion .form-check-input>span {
    padding: 0 7px;
    margin-bottom: 10px;
  }
}

.modal form .choose-opstion .form-check-input>span input[type=radio] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.modal form .choose-opstion .form-check-input>span input[type=radio]:checked+span {
  background-color: #4370f5;
  color: #ffffff;
}

.modal form .choose-opstion .form-check-input>span input[type=radio]+span {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 25px;
  background-color: #ffffff;
  color: #4370f5;
  border: 0;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  transition: 0.5s;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  width: 100%;
}

@media (max-width: 767px) {
  .modal form .choose-opstion .form-check-input>span input[type=radio]+span {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.modal form .choose-opstion .form-check-input>span input[type=radio]+span:hover {
  background-color: #4370f5;
  color: #ffffff;
}

.modal form .choose-opstion .form-check-input.wpcf7-not-valid>span input[type=radio]+span {
  border-color: #FFA6A6;
  box-shadow: 0 0 6px #FFA6A6;
}

.modal form .from-textarea .form-field-icon {
  top: 10px;
  bottom: auto;
}

.modal form .from-textarea .form-control {
  border-radius: 10px;
}

.modal form .from-checkbox {
  padding-left: 30px;
}

.modal form .from-checkbox .wpcf7-form-control-wrap {
  position: absolute;
  left: 0;
  top: 2px;
}

.modal form .from-checkbox .wpcf7-form-control-wrap input[type=checkbox] {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
}

.modal form .from-checkbox .wpcf7-form-control-wrap input[type=checkbox]:checked+.wpcf7-list-item-label {
  border-color: #4370f5;
  border-width: 5px;
}

.modal form .from-checkbox .wpcf7-form-control-wrap input[type=checkbox]+.wpcf7-list-item-label {
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  display: block;
  transition: 0.3s;
}

.modal form input[type=date] {
  position: relative;
}

.modal form input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.modal form input[type=submit] {
  min-width: 140px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .modal form input[type=submit] {
    margin-top: 8px;
  }
}

.modal form .cf7ascaptcha {
  display: flex;
  align-items: center;
}

.modal form .cf7ascaptcha .cf7as-firstAct {
  padding: 0 3px;
  font-weight: bold;
}

.modal form .cf7ascaptcha .cf7as-captchcode::before {
  content: "=";
}

.modal form .cf7ascaptcha .cf7as-captchcode input {
  font-family: "Poppins", sans-serif;
  color: #151e28;
  border: 1px solid #D7D7D7;
  text-align: center;
  margin: 0 !important;
  width: 50px !important;
  padding: 10px;
  border-radius: 3px;
  font-weight: bold;
}

.modal form .cf7ascaptcha .cf7as-captchcode input.wpcf7-not-valid {
  border-color: #FFA6A6;
}

.modal.pricing-modal .modal-content {
  padding: 30px 20px;
}

.modal.pricing-modal .pricing-modal-left {
  background-color: #EDF4FE;
  padding: 25px 20px;
  border-radius: 15px;
}

.modal.pricing-modal .pricing-modal-left .divImg {
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal.pricing-modal .pricing-modal-left .divImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal.pricing-modal .pricing-modal-left h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #151e28;
}

.modal.pricing-modal .pricing-modal-left h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #151e28;
}

.modal.pricing-modal .pricing-modal-left p {
  font-size: 12px;
  margin-bottom: 10px;
}

.modal.pricing-modal .pricing-modal-right h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #151e28;
}

.cmn-scroll {
  padding-right: 20px;
}

.cmn-scroll::-webkit-scrollbar {
  width: 4px;
}

.cmn-scroll::-webkit-scrollbar-track {
  background-color: #C5E4FF;
  border-radius: 3px;
}

.cmn-scroll::-webkit-scrollbar-thumb {
  background-color: #5594CB;
  border-radius: 3px;
}

.thankyou-section {
  padding: 100px 0;
  box-shadow: inset 4px 0px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .thankyou-section {
    padding: 50px 0;
    box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.12);
  }
}

.thankyou-section .thankyou-main {
  position: relative;
  border-radius: 18px;
}

.thankyou-section .thankyou-main::after,
.thankyou-section .thankyou-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: -35px;
  height: 100%;
  width: 100%;
  box-shadow: 4px 0px 18px rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  transform: scale(0.95);
  background-color: #ffffff;
}

@media (max-width: 767px) {

  .thankyou-section .thankyou-main::after,
  .thankyou-section .thankyou-main::before {
    top: -27px;
  }
}

.thankyou-section .thankyou-main::before {
  top: -72px;
  transform: scale(0.88);
}

@media (max-width: 767px) {
  .thankyou-section .thankyou-main::before {
    top: -58px;
  }
}

.thankyou-section .thankyou-main .thankyou-box {
  padding: 80px;
  background-color: #ffffff;
  border-radius: 18px;
  min-height: 500px;
  box-shadow: 4px 0px 18px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
}

@media (max-width: 767px) {
  .thankyou-section .thankyou-main .thankyou-box {
    min-height: auto;
  }
}

.thankyou-section .thankyou-main h1 {
  color: #151e28;
}

.thankyou-section .thankyou-main h1 strong {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #4370f5;
}

.terms-conditions-section {
  padding: 180px 0 100px;
  box-shadow: inset 4px 0px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .terms-conditions-section {
    box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.12);
  }
}

.terms-conditions-section h1 {
  color: #151e28;
  margin-bottom: 50px;
  font-family: "Poppins", sans-serif;
}

.terms-conditions-section h1 em {
  color: #4370f5;
  font-family: "PT Serif";
}

.terms-conditions-section h3 {
  font-family: "Poppins", sans-serif;
  color: #151e28;
  background-image: url("../images/boat.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 30px;
  padding-left: 35px;
}

.terms-conditions-section ul li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.terms-conditions-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #EDF4FE;
  border: 2px solid #4370f5;
}

.page-id-7540 .hero-section {
  max-width: 1040px;
  margin: 0 auto 15px;
  min-height: auto;
}

.page-id-7540 .hero-section .container {
  max-width: 900px;
}

.blog-section {
  box-shadow: inset 0 -15px 15px -15px rgba(0, 0, 0, 0.08);
}

.blog-section .title {
  margin-bottom: 0;
}

.blog-section .recent-blog {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-section .recent-blog {
    margin-bottom: 0;
  }
}

.blog-section .recent-blog .blogImg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .blog-section .recent-blog .blogImg {
    height: 55vw;
  }
}

.blog-section .recent-blog .blogImg:hover {
  opacity: 0.8;
}

.blog-section .recent-blog .recent-content {
  padding: 50px 0;
  position: relative;
}

@media (max-width: 767px) {
  .blog-section .recent-blog .recent-content {
    padding: 30px 0;
  }
}

.blog-section .recent-blog .recent-content h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #151e28;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-section .recent-blog .recent-content h6 {
    margin-bottom: 15px;
    font-size: 12px;
  }
}

.blog-section .recent-blog .recent-content h6::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  border-radius: 5px;
  background-color: #4370f5;
}

.blog-section .recent-blog .recent-content h2 {
  color: #151e28;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .blog-section .recent-blog .recent-content h2 {
    margin-bottom: 15px;
  }
}

.blog-section .recent-blog .recent-content h2:hover {
  color: #4370f5;
}

@media (max-width: 767px) {
  .blog-section .recent-blog .recent-content .date {
    margin-bottom: 15px;
  }
}

.blog-section .recent-blog .recent-content .more-link {
  font-weight: 500;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.blog-section .recent-blog .recent-content .more-link:hover {
  color: #4370f5;
}

@media (max-width: 767px) {
  .blog-section .recent-blog .recent-content .more-link {
    position: static;
  }
}

.blog-section .recent-blog .recent-content .more-link img {
  transform: scale(-1);
  margin-left: 10px;
}

.blog-section .blog-main .blog-list {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #151e28;
}

.blog-section .blog-main .blog-list:first-child {
  border-top: 1px solid #151e28;
}

.blog-section .blog-main .blog-list .blogImg {
  min-width: 180px;
  width: 180px;
}

@media (max-width: 767px) {
  .blog-section .blog-main .blog-list .blogImg {
    min-width: 105px;
    width: 105px;
    height: 60px;
  }
}

.blog-section .blog-main .blog-list .blogImg:hover {
  opacity: 0.8;
}

.blog-section .blog-main .blog-list .blog-content {
  width: calc(100% - 180px);
  padding: 10px 50px 10px 15px;
  position: relative;
  font-size: 14px;
}

@media (max-width: 767px) {
  .blog-section .blog-main .blog-list .blog-content {
    width: calc(100% - 105px);
    padding: 0 0 0 15px;
  }
}

.blog-section .blog-main .blog-list .blog-content h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #151e28;
}

@media (max-width: 767px) {
  .blog-section .blog-main .blog-list .blog-content h5 {
    margin-bottom: 10px;
  }
}

.blog-section .blog-main .blog-list .blog-content h5:hover {
  color: #4370f5;
}

.blog-section .blog-main .blog-list .blog-content .post-date-row {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .blog-section .blog-main .blog-list .blog-content .post-date-row {
    margin-bottom: 0;
  }
}

.blog-section .blog-main .blog-list .blog-content .post-date-row li {
  position: relative;
}

.blog-section .blog-main .blog-list .blog-content .post-date-row li:not(:last-child)::after {
  content: "•";
  margin: 0 5px;
}

.blog-section .blog-main .blog-list .blog-content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .blog-section .blog-main .blog-list .blog-content p {
    display: none;
  }
}

.blog-section .blog-main .blog-list .blog-content .more-link {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .blog-section .blog-main .blog-list .blog-content .more-link {
    display: none;
  }
}

.blog-section .blog-main .blog-list .blog-content .more-link img {
  transform: scale(-1);
}

.blog-details-section {
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.08);
}

.blog-details-section .back-btn {
  font-weight: 500;
}

.blog-details-section .back-btn img {
  margin-right: 13px;
}

.blog-details-section .top-part .top-title {
  padding: 30px 80px;
}

@media (max-width: 767px) {
  .blog-details-section .top-part .top-title {
    padding: 20px 30px;
  }
}

@media (max-width: 575px) {
  .blog-details-section .top-part .top-title {
    padding: 15px 0;
  }
}

.blog-details-section .top-part .top-title h1 {
  color: #151e28;
}

.blog-details-section .top-part .divImg {
  height: 415px;
}

@media (max-width: 991px) {
  .blog-details-section .top-part .divImg {
    height: 42vw;
  }
}

.blog-details-section .content-part {
  padding: 35px 80px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .blog-details-section .content-part {
    padding: 20px 30px;
  }
}

@media (max-width: 575px) {
  .blog-details-section .content-part {
    padding: 20px 0;
  }
}

.blog-details-section .content-part h3,
.blog-details-section .content-part h4,
.blog-details-section .content-part h5,
.blog-details-section .content-part h6 {
  margin-bottom: 10px;
  color: #151e28;
}

.blog-details-section .content-part p {
  font-weight: 400;
}

.blog-details-section .content-part p:last-child {
  margin-bottom: 0;
}

.blog-details-section .content-part ul {
  margin-bottom: 25px;
}

.blog-details-section .content-part ul li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.blog-details-section .content-part ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #EDF4FE;
  border: 2px solid #4370f5;
}

@media (max-width: 767px) {
  .blog-details-section .content-part ul li::before {
    top: 4px;
  }
}

.ship-details-section .ships-details-swiper.signal-details-swiper .swiper-slide .ship-details-list {
  width: 74%;
  border-radius: 10px 0 0 10px;
  position: relative;
  background-color: rgb(67 112 245 / 70%);
}

@media (max-width: 767px) {
  .ship-details-section .ships-details-swiper.signal-details-swiper .swiper-slide .ship-details-list {
    width: 100%;
    height: 55vw;
    border-radius: 10px 10px 0 0;
  }
}

@media (min-width: 768px) {
  .ship-details-section .ships-details-swiper.signal-details-swiper .swiper-slide .ship-details-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 25px);
    height: 100%;
    box-shadow: 4px 0px 8px rgba(0, 0, 0, 0.5);
    border-radius: 10px 0 0 10px;
    pointer-events: none;
    z-index: 2;
  }
}

.ship-details-section .ships-details-swiper.signal-details-swiper .swiper-slide .ship-details-info {
  width: calc(26% + 25px);
  margin: 15px 0 15px -25px;
  border-radius: 0 10px 10px 0;
}

@media (max-width: 767px) {
  .ship-details-section .ships-details-swiper.signal-details-swiper .swiper-slide .ship-details-info {
    width: 100%;
    margin: 0;
    border-radius: 0 0 10px 10px;
  }
}

@media (min-width: 768px) {
  .ship-details-section .ships-details-swiper.signal-details-swiper .swiper-slide .ship-details-info::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    border-top: 15px solid #ffffff;
    border-left: 25px solid transparent;
  }

  .ship-details-section .ships-details-swiper.signal-details-swiper .swiper-slide .ship-details-info::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    border-bottom: 15px solid #ffffff;
    border-left: 25px solid transparent;
  }
}

.ship-details-section .ships-details-swiper.multi-details-swiper {
  padding-bottom: 45px;
}

@media (max-width: 767px) {
  .ship-details-section .ships-details-swiper.multi-details-swiper {
    padding-left: 15px;
  }
}

.ship-details-section .ships-details-swiper.multi-details-swiper .swiper-slide {
  height: auto;
  border-radius: 10px;
  background-color: #4370f5;
}

.ship-details-section .ships-details-swiper.multi-details-swiper .swiper-slide .ship-details-list {
  width: 100%;
  height: 215px;
  border-radius: 10px 10px 0 0;
}

.ship-details-section .ships-details-swiper .swiper-slide .ship-details-list {
  position: relative;
  background-color: rgb(67 112 245 / 70%);
}

.ship-details-section .ships-details-swiper .swiper-slide .ship-details-info {
  background-color: #4370f5;
  color: #ffffff;
  position: relative;
  z-index: 1;
  border-radius: 0 0 10px 10px;
  padding: 30px 20px;
}

.ship-details-section .ships-details-swiper .swiper-slide .ship-details-info h4 {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}

.ship-details-section .ships-details-swiper .swiper-slide .ship-details-info p {
  font-size: 14px;
  font-weight: 400;
}

.ship-details-section .ships-details-swiper .swiper-slide .ship-details-info .ship-details-list-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.ship-details-section .ships-details-swiper .swiper-slide .ship-details-info .ship-details-list-info li .icon {
  width: 20px;
  margin-right: 10px;
}

.ship-details-section .ships-details-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #656565;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  opacity: 1;
}

.ship-details-section .ships-details-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4370f5;
  position: relative;
}

.ship-details-section .ships-details-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #151e28;
  box-sizing: border-box;
  border-radius: 100%;
  transform: scale(1.7);
}

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