@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap");

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

/****************************************
grid.css
****************************************/

.container,
.container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding-left: 16px;
  padding-right: 16px;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .col-sm,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 64em) {
  .col-md,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .col-lg,
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/****************************************
                        Global styles
****************************************/

/* Variables */
:root {
  --primary-color: #003455;
  --secondary-color: #67c1be;
  --text-primary-color: #212121;
  --text-secondary-color: #5c5c5c;
}

/* Common CSS */
body,
html,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

html,
body {
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Mulish", sans-serif;
}

html {
  overflow-x: hidden;
}

a {
  color: inherit;
  list-style: none;
  text-decoration: none;
}

li {
  list-style: none;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Utility Classes */
.custom-container {
  padding-left: 7.1875rem;
  padding-right: 7.1875rem;
  margin: 0 auto;
  width: 100%;
}

/* .content-container {
  max-width: 1583px;
  padding: 0 40px;
  margin: 0 auto;
} */
.content-container {
  padding-left: 13.625rem;
  padding-right: 13.625rem;
  margin: 0 auto;
  width: 100%;
}

.max-container {
  max-width: 1920px;
  margin: 0 auto;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.pt-5,
.py-5 {
  padding-top: 3rem;
}

.gap-20 {
  gap: 20px;
}

.j-between {
  justify-content: space-between;
}

.mx-auto {
  margin: 0 auto;
}

.p-0 {
  padding: 0;
}

.align-center {
  align-items: center;
}

.br-0 {
  border-right: none !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block;
}

.text-white {
  color: #ffffff;
}

.text-center {
  text-align: center;
}

.title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #000000;
}

.title .highlighted {
  color: #fcc103;
}

/*Animation*/

.drop-in {
  animation: drop-in 1s ease-in-out 200ms backwards;
}

.drop-in-2 {
  animation: drop-in 1200ms ease-in-out 500ms backwards;
}

@media only screen and (max-width: 767px) {
  .content-container {
    padding: 0 20px;
  }
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.drop-top {
  animation: drop-top 350ms ease-out 200ms backwards;
}

@keyframes drop-top {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
  content: "";
}

.footer_w3layouts_section_1its {
  background: #151515;
}

section {
  padding: 40px 0;
}

/**************************************************
           Featured Posts Section ( Section - 02 )
***************************************************/
.featured-posts {
  padding-top: 60px;
}

.section-headings {
  padding: 60px 30px;
}

.section-headings .title {
  padding-bottom: 15px;
}

.featured-posts .container {
  position: relative;
}

.post-box {
  margin: 10px;
  display: flex;
  position: relative;
  border-radius: 5px;
}

.post-box img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
  object-fit: cover;
  border-radius: 5px;
}

.post-box .content {
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  padding: 20px;
  position: absolute;
  border-radius: 5px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.post-box .post-tag {
  color: white;
  font-size: 14px;
  line-height: 20px;
  padding: 3px 12px;
  font-weight: normal;
  border-radius: 25px;
  display: inline-block;
  background-color: #7ba6c1;
  text-transform: uppercase;
}

.post-box .post-title {
  padding-top: 10px;
  width: 100%;
  color: white;

  display: -webkit-box;
  max-width: 400px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  font-size: 1.125rem;
  line-height: 1.5;
}

.post-box .content .post-content {
  display: none;
}

.post-box:hover {
  position: relative;
  transition: 0.5s;
}

.post-box:hover .content .post-box-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.post-box:hover .content {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
}

.post-box:hover .post-content {
  display: block;
  transition: 0.3s;
  line-height: 1.2;
  padding-top: 20px;
  font-size: 0.9rem;
}

.post-box:hover .post-title {
  color: #fcc103;
}

.post-box:hover .post-content a {
  color: #fcc103;
  display: block;
  text-align: end;
  padding-top: 20px;
  text-decoration: underline;
}

.post-box:hover .post-content a:hover {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.featured-posts .view-all-btn {
  right: 10px;
  bottom: 30px;
  color: #898989;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  position: absolute;
  letter-spacing: 0.1em;
  text-decoration-line: underline;
}

.featured-posts .view-all-btn:hover {
  color: #fcc103;
}

/************************************************
                  Features Section (Section - 3)
*************************************************/

.tab-features {
  padding-top: 40px;
  padding-bottom: 68px;
}

.tab-features .section-headings {
  margin: 0 auto;
  max-width: 812px;
  text-align: center;
  padding: 0 0 40px 0;
}

.tab-container img {
  width: 50px;
  height: 50px;
  margin-top: 5px;
  padding: 0 18px;
  border-radius: 50px;
  background-color: #fcc103;
}

.tab-text {
  padding-left: 10px;
}

.tab-text h4 {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.tab-text p {
  width: 100%;
  color: #5c5c5c;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  border-bottom: 3px solid transparent;
}

.tab-button:hover .active p::after {
  content: "";
  width: 74px;
  display: block;
  padding-top: 10px;
  border-bottom: 3px solid #fcc103;
}

.tab-button {
  cursor: pointer;
  padding: 20px 40px;
}

.tab-button.active p::after {
  content: "";
  width: 74px;
  display: block;
  padding-top: 10px;
  border-bottom: 3px solid #fcc103;
}

.tab-post {
  margin: 0;
  transition: 0.3s;
}

.tab-post:hover {
  position: relative;
  overflow: auto;
  transition: 0.3s;
}

.tab-post .content {
  bottom: 4px;
}

.tab-post span {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 75px;
  line-height: 110px;
  position: absolute;
  bottom: 25px;
  right: 77px;
}

.tab-post:hover span {
  display: none;
}

.view-button {
  text-align: center;
}

.view-button .view-all-btn {
  display: inline-block;
  text-decoration: underline;
  color: #898989;
  padding-top: 36px;
}

.view-button .view-all-btn:hover {
  color: #fcc103;
}

/***************************************************
                    Instagram Reel (Section - 04)
***************************************************/
.instagram-reels {
  background-color: #eef3fa;
  padding-top: 63px;
}

.instagram-reels h2 {
  padding-left: 10px;
  padding-bottom: 50px;
}

.reel-box {
  width: calc(100% - 20px);
  height: 350px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.reel-box .insta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.insta-info {
  display: flex;
  flex-direction: row;
  position: absolute;
  padding: 8px 20px;
  align-items: center;
  gap: 10px;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  border-radius: 5px;
  z-index: 3;
}

.insta-info span {
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  line-height: 44px;
}

.reel-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 5px;
}

.reel-box .icon-box {
  display: none;
}

.reel-box:hover .icon-box {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  gap: 20px;
  color: #ffffff;
}

.reel-box:hover .icon-box .comments,
.reel-box:hover .icon-box .react {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.instagram-reels .follow-buttons {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-top: 18px;
  gap: 5px;
  color: #898989;
}

.instagram-reels .follow-buttons span {
  padding-right: 20px;
}

.img-caption {
  line-height: 2;
  display: block;
  margin-top: 5px;
}

/*****************************************************
                   Destination Sections (Section - 05)
 ****************************************************/
.destinations {
  padding-bottom: 216px;
}

.destinations .destination-image {
  height: 800px;
  position: relative;
  margin-top: 120px;
  border-radius: 5px;
}

.destination-grid {
  background-color: #ffffff;
  height: 878px;
  max-width: 1224px;
  border-radius: 5px;
  position: absolute;
  top: 120px;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.1);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.destination-grid .headings {
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-box {
  padding: 14px 19px;
  border: 2px solid #d9d9d9;
  background-color: #ffffff;
  border-radius: 5px;
  width: 350px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.search-box:hover {
  border-color: #aaaaaa;
}

.search-box ::placeholder {
  color: #898989;
}

input {
  border: none;
  color: #898989;
}

button:hover {
  cursor: pointer;
}

input:focus {
  outline: none;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.clear:not(:valid) ~ .search-clear {
  display: none;
}

.category-posts {
  padding: 0 50px;
}

.destination-grid .categories {
  display: flex;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  gap: 20px;
  color: #9c9a9a;
  padding-bottom: 30px;
}

.category-content {
  text-align: -webkit-center;
}

.destination-box {
  width: calc(100% - 20px);
  height: 285px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.destination-box h3 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  color: #ffffff;
  padding: 25px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.destination-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.destination-category span.active {
  color: #fcc103;
  border-bottom: 2px solid #fcc103;
}

.destination-grid .view-all-btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-decoration-line: underline;
  color: #898989;
  position: absolute;
  right: 60px;
  bottom: 45px;
}

.destination-grid .view-all-btn:hover {
  color: #fcc103;
}

/***************************************************
                                Video Slider Section
***************************************************/
.video-slider {
  padding: 45px 15px 70px 15px;
}

.video-slider .headings {
  padding-bottom: 50px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 822px;
  overflow: hidden;
  border-radius: 5px;
}

.slide {
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-arrows {
  display: none;
}

.slider-container:hover .slider-arrows {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  justify-content: space-between;
  z-index: 1;
  padding: 0 10px;
}

.slide.active {
  opacity: 1;
}

.slider-arrows .slider-arrow-left {
  width: 35px;
  height: 35px;
  background-size: 100% 100%;
  cursor: pointer;
}

.slider-arrows .slider-arrow-right {
  width: 35px;
  height: 35px;
  background-size: 100% 100%;
  cursor: pointer;
}

.slider-arrows .slider-arrow-left:hover,
.slider-arrows .slider-arrow-right:hover {
  opacity: 0.8;
}

#bullet-points {
  display: none;
}

.bullet-points {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 3;
}

.bullet-point {
  margin: 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bullet-point.active {
  background-color: #000;
  color: #fff;
}

.bullet-point .bullet-point-title {
  font-size: 14px;
  margin-bottom: 5px;
}

.bullet-point .bullet-point-index {
  font-size: 12px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide span {
  font-style: normal;
  font-weight: 500;
  font-size: 75px;
  line-height: 102px;
  color: #ffffff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 20px 50px;
}

.slide::after {
  content: "";
  display: block;
  width: 180px;
  height: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.slide.active {
  opacity: 1;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: linear-gradient(
    360deg,
    rgba(21, 21, 21, 0.87) -3.16%,
    rgba(21, 21, 21, 0) 100%
  );
  padding: 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.caption h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 70px;
  color: #ffffff;
}

/****************************************************
                            Location Cottages Section
*****************************************************/
.location-cottages {
  background-color: #eef3fa;
  padding-top: 63px;
}

.location-cottages .headings {
  padding-bottom: 50px;
}

.location-tab ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-bottom: 45px;
}

.location-tab ul li {
  margin-left: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #898989;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.location-tab ul li:hover {
  color: #fcc103;
  border-bottom: 2px solid #fcc103;
}

.location-box {
  width: calc(100% - 20px);
  height: 393px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.location-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.location-box .info-box {
  text-align: left;
}

.location-box .info-box span {
  width: 100%;
  background: linear-gradient(
    360deg,
    rgba(21, 21, 21, 0.87) -3.16%,
    rgba(21, 21, 21, 0) 100%
  );
  position: absolute;
  z-index: 1;
  color: #ffffff;
  bottom: 0;
  left: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  padding: 15px 25px;
  text-transform: uppercase;
}

.location-cottages .view-all-btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-decoration-line: underline;
  color: #898989;
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.location-cottages .view-all-btn:hover {
  color: #fcc103;
}

/***************************************************
                                    cottages section
****************************************************/
.cottages {
  padding: 10px 15px 0 15px;
}

.cottages .row {
  padding-top: 60px;
}

.cottages .headings {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cottages .headings p {
  padding-top: 15px;
}

.cottage-box {
  height: 402px;
  width: calc(100% - 20px);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.cottage-box .caption-top {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  width: 100%;
}

.caption-top {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.56) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

.caption-bottom {
  width: 100%;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.56) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 20px;
}

.caption-bottom span {
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
}

.caption-top .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  z-index: 10;
}

.caption-top .location {
  display: flex;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  align-items: center;
  gap: 10px;
}

.caption-top .count {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
}

.caption-top .location img {
  width: 15px;
  height: 17px;
}

.cottage-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.cottages .view-all-btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1em;
  text-decoration-line: underline;
  color: #898989;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.cottages .view-all-btn:hover {
  color: #fcc103;
}

/**********************************************
                               Overview Section
**********************************************/

.overview-content {
  background-size: initial;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  padding-bottom: 120px;
}

.overview-content .headings {
  padding-top: 65px;
}

.overview-content .fancy-title {
  font-style: normal;
  font-weight: 500;
  font-size: 10.826rem;
}

.overview-content .sub-title {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  display: block;
  text-align: left;
  position: absolute;
  right: 18%;
  top: 14%;
}

.overview-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  color: #5c5c5c;
  max-width: 878px;
  margin: 0 auto;
  padding: 80px 15px;
}

.overview-content button {
  background-color: #fcc103;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 44px;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 5px 20px;
  margin: 0 auto;
  display: inline-block;
}

/* =============================================
style for sunvillas
============================================= */
/*common css*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.pt-24 {
  padding-top: 24px;
}

.underlined {
  text-decoration: underline;
}

.text-upper {
  text-transform: uppercase;
}

.justify-end {
  justify-content: end;
}

.dot-separator-h svg {
  height: 25px;
  width: 100%;
}

.dot-separator-v svg {
  height: 100%;
  width: 25px;
}

.dot-separator-h svg,
.dot-separator-v svg {
  fill: #0d131a;
  stroke: #0d131a;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #0d131a;
  margin-bottom: 32px;
}

* p:last-of-type {
  margin-bottom: 0;
}

.common-button {
  border-radius: 4px;
  background-color: #003455;
  color: #fff;
  display: inline-block;
  font-size: 1.125rem;
  padding: 6px 10px;
  text-align: center;
  width: 158px;
}

.common-button:hover {
  background-color: #888888;
}

/*common css*/

/* /hero banner */

.section-banner {
  position: relative;
  color: #fff;
  margin: 0;
}

.section-banner-inner {
  align-items: center;
  display: flex;
  height: 500px;
  margin: 0 auto;
  max-width: 780px;
  width: 60%;
}

.section-banner-title {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.02;
  max-width: 50%;
  z-index: 9;
}

.soul .section-banner-title {
  width: 300px;
}

.section-banner-inner.section-banner-title-right {
  justify-content: end;
}

.section-wrapper {
  margin: 0 auto;
  max-width: 1050px;
  padding: 0 15px;
}

.section-content-top {
  margin: 30px 0;
}

.image-right {
  flex-direction: row-reverse;
}

.section-content-top-text {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
}

.section-content-top-text p {
  margin-bottom: 20px;
}

.section-content-top-text .read-more {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 1em;
}

.section-content-top-text .read-more:hover {
  color: #003455;
}

.section-content-top-image {
  line-height: 0;
}

.section-content-top-image img {
  height: auto;
  width: 100%;
  border-radius: 8px;
}

.circle-image img {
  border-radius: 50%;
  overflow: hidden;
}

.section-content-tiles {
  margin-bottom: 40px;
  margin-top: 40px;
}

.section-tiles-holder {
  display: flex;
  flex-wrap: wrap;
}

.col-2-tiles {
  gap: var(--col-gap);
}

.col-2-tiles .single-tile {
  flex-basis: calc(50% - calc(var(--col-gap) / 2));
  max-width: calc(50% - calc(var(--col-gap) / 2));
}

.col-3-tiles {
  gap: var(--col-gap);
}

.col-3-tiles .single-tile {
  flex-basis: calc(33.33% - calc(var(--col-gap) * 2 / 3));
  max-width: calc(33.33% - calc(var(--col-gap) * 2 / 3));
}

.single-tile {
  height: 100%;
}

.card-box-8 {
  margin: 0 8px 8px;
}

.tile-card {
  height: 100%;
}

.tile-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tile-image {
  line-height: 0;
  margin-bottom: 16px;
}

.tile-image img {
  height: auto;
  width: 100%;
  border-radius: 8px;
}

.tile-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}

.tile-subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.tile-desc {
  font-size: 16px;
  line-height: 1.5em;
}

.tile-content p:first-of-type {
  margin-bottom: 10px;
}

.tile-button {
  display: block;
  margin-top: 10px;
  min-width: 163px;
  text-align: center;
}

.tile-button:hover {
  background-color: rgb(136, 136, 136);
}

/* mini card */
.mini-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mini-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 160px;
  height: 160px;
}

.mini-card-content {
  flex-basis: calc(100% - 180px);
}

.mini-card-image img {
  left: 50%;
  max-width: 120%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.mini-card:not(:last-child) {
  margin-bottom: 40px;
}

/* /mini card */

.Yoga-tiles-holder {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.tile-h {
  align-items: start;
  display: flex;
  gap: 21px;
  justify-content: center;
}

.tile-h .tile-content {
  flex-basis: 60%;
  max-width: 60%;
}

.tile-h .tile-image {
  flex-basis: 40%;
  max-width: 40%;
}

.tile-h .tile-title {
  margin-bottom: 0;
}

.tile-h .tile-subtitle {
  margin-top: 0;
}

.tile-h .tile-button {
  margin-top: 10px;
}

/*h-tile*/

/* Faq section */
.faq-section {
  background-color: #eef3fa;
  padding: 70px 0;
}

.faq-wrapper .title {
  font-size: 32px;
  line-height: 42px;
  color: #000;
  padding-bottom: 40px;
}

.faq-section .faq-item:not(:last-child) {
  margin-bottom: 30px;
}

.faq-item .qn-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

.faq-section .question {
  margin: 0;
  cursor: pointer;
  font-size: 18px;
  line-height: 19px;
  font-weight: 600;
  color: #000;
  width: 100%;
}

.faq-section .question:hover {
  color: #000;
}

.faq-section .answer {
  display: none;
}

.faq-section .active .answer {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #0d131a;
  padding-top: 15px;
}

.toggle-icon {
  margin-right: 5px;
  font-weight: bold;
}

.toggle-icon:before {
  content: "+";
  color: #003455;
  font-size: 22px;
}

.active .toggle-icon:before {
  content: "-";
  font-size: 25px;
}

/* Faq section */
/* /style for sunvillas */

/*Pre Footer*/

.pre-footer {
  position: relative;
  max-width: 1920px;
  margin: 150px auto 0;
}

footer p {
  color: inherit;
}

.f-8 {
  font-size: 0.8rem;
}

.new-section {
  min-height: 300px;
}

.pre-footer .pre-footer-bg {
  position: absolute;
  top: 220px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
}

.container-journal.mn {
  max-width: 1320px;
}

.container-journal {
  margin: 0 auto;
  padding: 0 40px;
}

.pre-footer .pre-footer-wrap {
  display: flex;
  flex-wrap: wrap;
}

.pre-footer-wrap > .left-area {
  padding-right: 110px;
}

.pre-footer .right-area,
.pre-footer .left-area {
  width: 50%;
  min-width: 50%;
}

.section-title {
  margin: 0 0 60px;
  max-width: 650px;
}

.section-title .pre-title {
  font-size: 1rem;
  color: #b8b8b8;
  font-weight: 700;
  margin: 0 0 10px;
}

.section-title .title {
  font-size: 1.875rem;
  color: #013573;
  position: relative;
  font-weight: 700;
  padding-bottom: 22px;
  margin: 0;
}

.section-title .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 178px;
  height: 2px;
  background: #00cd93;
}

.pre-footer .footer-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 100px 0;
}

.pre-footer .right-area,
.pre-footer .left-area {
  width: 50%;
  min-width: 50%;
}

.pre-footer-wrap .right-area img {
  width: 665px;
  height: auto;
  margin: -80px -55px 0 0;
}

.footer-feature .feature-item {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-feature .feature-item h5 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #b9b9b9;
}

/***************************************************
                                      Footer Section
****************************************************/
.footer {
  background-color: #003455;
  border-top: 1px solid #003455;
  color: #7ba6c1;
  padding-bottom: 0;
}

.footer-menus {
  padding: 30px 0;
}

.footer-menus .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-menus .footer-links p {
  color: #7ba6c1;
}

.footer-menus .footer-links .links-item {
  width: calc(33.33% - 26.66px);
}

.footer-logo-section {
  justify-content: center;
  padding-bottom: 60px;
  padding-top: 83px;
}

.content-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin: 0;
}

.footer-top-title {
  color: #fcc103;
  font-weight: bolder;
  text-transform: uppercase;
}

.footer-top-title h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
}

.footer-menu-holder {
  padding-bottom: 37px;
  padding-top: 32px;
  display: flex;
}

.section__item {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  padding: 0 50px;
}

.footer-logo-section .section__item {
  padding: 0 33px;
  flex: none;
}

.section__item:first-child {
  order: -1;
}

.footer-logo-section:before {
  border-color: #18455a;
}

.content-section:before {
  content: "";
  align-self: stretch;
  border-left: 1px solid #18455a;
}

.footer-menu-title {
  color: #7ba6c1;
  font-size: 18px;
  letter-spacing: 0.188rem;
  padding-bottom: 25px;
  text-align: center;
}

.footer-menu-list {
  margin: 0 0 16px;
}

.footer-menu-list a {
  letter-spacing: 0.05rem;
}

.footer-menu-list li {
  padding-bottom: 20px;
}

.footer-menu-list li a {
  letter-spacing: 0.05rem;
  color: #7ba6c1;
  font-weight: bolder;
}

.footer-menu-list li a:hover {
  color: #7ba6c1;
}

.links-item .section {
  max-width: 70%;
  text-align: justify;
}

.links-item .section img {
  padding-bottom: 12px;
  width: 160px;
  height: auto;
}

.links-item .title {
  color: #7ba6c1;
  font-size: 18px;
  letter-spacing: 0.188rem;
  padding-bottom: 25px;
  text-transform: uppercase;
}

.links-item:not(:first-child) .title {
  padding-left: 60px;
}

.links-item ul {
  margin: 0 0 16px;
  padding-left: 60px;
}

.links-item ul li {
  padding-bottom: 20px;
}

.links-item ul li a {
  letter-spacing: 0.05rem;
  color: #7ba6c1;
  font-weight: 400;
  letter-spacing: 0.05rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.links-item ul li a:hover {
  color: #7ba6c1;
}

.footer-top {
  padding: 48px 0 16px;
}

.footer-partner-logo {
  border-bottom: 1px solid #0f3e58;
  padding: 0 0 27px;
}

.footer-partner-logo ul {
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-partner-logo ul li img {
  width: auto;
  height: auto;
}

.footer-separator {
  border: none;
  border-bottom: 1px solid #0f3e58;
}

.footer-bottom {
  padding-top: 32px;
}

.footer-bottom-wrapper {
  display: flex;
  padding: 15px 0;
  align-items: center;
  gap: 25px;
  justify-content: center;
  flex-direction: column;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 44px;
}

.footer-list {
  list-style: none;
  display: flex;
  gap: 10px;
}

.footer-list li {
  margin: 0;
  display: flex;
}

.footer-list li a {
  text-decoration: none;
  padding-right: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #7ba6c1;
  font-size: 11px;
  height: 13px;
}

.footer-copy-right {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.footer-copy-right a {
  text-decoration: none;
  color: #7ba6c1;
}

.footer-top {
  padding: 48px 0 16px;
}

.footer-partner-logo {
  border-bottom: 1px solid #0f3e58;
  margin: 10px 0 20px;
  padding: 0 0 27px;
}

.footer-partner-logo ul {
  list-style: none;
  padding: 0;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0;
  align-items: center;
}

.footer-partner-logo ul li img {
  width: 112px;
  height: auto;
}

.footer-separator {
  border: none;
  border-bottom: 1px solid #0f3e58;
}

.footer-bottom {
  padding-bottom: 101px;
  padding-top: 32px;
}

.footer-bottom-right {
  justify-content: end;
  padding: 15px 0;
  align-items: center;
}

.footer-social-list {
  display: flex;
  align-items: center;
}

.footer-social-list li {
  margin-right: 44px;
}

.footer-list {
  margin: 0 2.5%;
  list-style: none;
  display: flex;
}

.footer-list li {
  margin: 0;
  display: flex;
}

.footer-list li a {
  text-decoration: none;
  padding: 0 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: #7ba6c1;
  font-size: 11px;
  height: 13px;
}

.footer-copy-right {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-copy-right a {
  text-decoration: none;
  color: #7ba6c1;
}

.footer-links .col-desktop-3 {
  padding-right: 15px;
}

/* last footer */
.footer-about p {
  color: #7ba6c1;
  padding-right: 20px;
  padding-bottom: 20px;
}

.footer-about-logo img {
  max-width: 100%;
  height: auto;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 32px 15px;
}

.footer-inner .footer-logo {
  line-height: 0;
  max-width: 173px;
}

.footer-inner .footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-inner .footer-text {
  font-size: 18px;
  line-height: 1.19;
  max-width: 277px;
}

.footer-inner .footer-text a {
  font-weight: 700;
}

.footer-text .footer-list {
  margin: 0 0 15px;
}

.footer-text .footer-list li:last-child a {
  padding-right: 0;
}

.footer-text .footer-list li:first-child a {
  padding-left: 0;
}

/* /last footer */

/***************************************************************
                                                  Responsive CSS
****************************************************************/

/*0 To 575*/
@media only screen and (max-width: 575px) {
  /*PRE FOOTER START*/
  .pre-footer .pre-footer-bg {
    top: 42vw;
  }

  .footer-feature .feature-item img {
    display: none;
  }

  .pre-footer-wrap > .left-area {
    padding-right: 0;
  }

  .section-content-top-text .dotted-bottom {
    margin-top: 0;
  }

  /*PRE FOOTER END*/
}

/*0 To 991*/
@media only screen and (max-width: 991px) {
  .section-content-top-text {
    margin-top: 0;
  }

  .pt-m-10 {
    margin-top: 10px;
  }

  .destination-grid {
    margin-left: 10px;
    margin-right: 10px;
  }

  .featured-posts {
    padding-left: 10px;
    padding-right: 10px;
  }

  .featured-posts .col-desktop-6 .row {
    align-items: center;
  }

  .tab-features {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .instagram-reels {
    padding-top: 0;
  }

  .instagram-reels {
    padding-left: 10px;
    padding-right: 10px;
  }

  .destinations .destination-image {
    margin-top: 70px;
  }

  .cottages .row {
    padding-top: 0;
  }

  .location-cottages {
    padding-left: 10px;
    padding-right: 10px;
  }

  .location-cottages .headings {
    padding-left: 10px;
  }

  .overview-content {
    padding-bottom: 70px;
  }

  .video-slider {
    padding: 45px 10px 70px 10px;
  }

  .section-headings {
    padding: 60px 10px 30px;
  }

  .d-mbl-none {
    display: none !important;
  }

  .cat-mbl {
    display: block !important;
  }

  .footer-bottom {
    padding-bottom: 60px;
  }

  select.category-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 10px;
  }

  /*Pre Footer*/
  .container-journal {
    padding: 0 15px;
  }

  .pre-footer {
    margin-top: 50px;
  }

  .pre-footer .pre-footer-bg {
    top: 42vw;
  }

  .pre-footer .pre-footer-wrap {
    flex-direction: column-reverse;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title .pre-title {
    font-size: 0.875rem;
    margin-bottom: 5px;
  }

  .pre-footer .pre-footer-bg {
    background: #243140;
    top: 225px;
  }

  .pre-footer .right-area,
  .pre-footer .left-area {
    width: 100%;
  }

  .pre-footer .section-title .title {
    color: #00cd93;
  }

  .section-title .title {
    font-size: 1.5rem;
  }

  .pre-footer .pre-footer-wrap {
    flex-direction: column-reverse;
  }

  .pre-footer-wrap .right-area {
    text-align: center;
  }

  .pre-footer-wrap .right-area img {
    max-width: 500px;
    margin: 0 0 40px;
  }

  .pre-footer .section-title .title {
    color: #00cd93;
  }

  .pre-footer-wrap .right-area {
    text-align: center;
  }

  .pre-footer .footer-feature {
    padding: 0 0 80px;
    gap: 30px;
  }

  .pre-footer-wrap .right-area img {
    max-width: 500px;
    margin: 0 0 40px;
  }

  .footer-menus .footer-links {
    flex-direction: column;
    text-align: center;
  }

  .footer-menus .footer-links .links-item {
    width: 100%;
  }
}

/*0 To 767*/
@media only screen and (max-width: 767px) {
  /*Class*/
  .section-content-top-text {
    margin-top: 0;
    margin-bottom: 1em;
  }

  .mb-m-0 {
    margin-bottom: 0;
  }

  .d-mbl-block {
    display: block !important;
  }

  .search-field {
    padding-left: 12px;
    width: 140px;
  }

  select.category-dropdown {
    padding-right: 33px;
  }

  .search-container {
    width: 330px;
    bottom: 8.5%;
  }

  .category-dropdown {
    background-color: transparent;
  }

  .search-input {
    font-size: 13px;
    color: #9c9a9a;
    padding-left: 7px;
  }

  .search-button {
    padding: 10px 15px;
  }

  .content-section:before {
    border: none;
  }

  /*Section-2*/
  .featured-posts {
    padding-top: 0;
  }

  .post-box img {
    height: auto;
  }

  .featured-posts .container {
    padding-top: 0;
  }

  .featured-posts .view-all-btn {
    left: 0;
    right: 0;
    bottom: 20px;
  }

  /*Tab post section*/
  .tab-features .section-headings {
    padding: 0 16px 50px;
  }

  .tab-features .tab-contents {
    order: 2;
    margin: 0 15px;
  }

  .tab-options {
    display: flex;
    margin: 0 15px;
  }

  .tab-options .tab-dropdown {
    order: 1;
    width: 100%;
  }

  .categories-dropdown select,
  .tab-dropdown select {
    width: 100%;
    height: 60px;
    color: #898989;
    font-size: 1rem;
    max-width: 100%;
    font-weight: 400;
    padding: 15px 10px;
    margin-bottom: 35px;
    border-radius: 5px;
    border: 2px solid #d9d9d9;
    text-transform: uppercase;
  }

  #tab-select {
    -moz-appearance: window;
    -webkit-appearance: none;
    padding: 2px 50px 2px 20px;
  }

  .tab-dropdown select option {
    padding: 10px 0;
  }

  .post-box .post-title {
    width: 100%;
    font-size: 1rem;
    max-width: 213px;
  }

  .tab-post span {
    top: 0;
    bottom: 0;
    right: 15px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
  }

  .post-box:hover .post-title {
    max-width: 100%;
  }

  /*Instagram Reels Section*/
  .instagram-reels .title {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
  }

  .instagram-reels .title .d-block {
    display: unset;
  }

  .instagram-reels .follow-buttons {
    padding-right: 12px;
  }

  .instagram-reels .follow-buttons span {
    font-weight: 700;
    font-size: 14px;
    color: #898989;
    padding-right: 15px;
  }

  .insta-box:not(:nth-child(-n + 3)) {
    display: none;
  }

  /*Destinations Section*/
  .destinations {
    padding-bottom: 640px;
  }

  .destination:not(:nth-child(-n + 3)) {
    display: none;
  }

  .destinations .destination-image {
    border-radius: 0;
  }

  .destination-grid {
    margin-left: 20px;
    margin-right: 20px;
    height: auto;
  }

  .destination-box {
    width: unset;
  }

  .destination-grid .headings {
    flex-direction: column;
    padding: 40px 20px 15px;
  }

  .destination-grid .headings form input {
    width: 90%;
    font-weight: 400;
    font-size: 1rem;
    line-height: 21px;
    color: #898989;
  }

  .destination-grid .headings .title {
    font-weight: 800;
    font-size: 24px;
    line-height: 31px;
    color: #000000;
    padding-bottom: 35px;
  }

  .search-box {
    width: 100%;
  }

  .destination-grid .headings .title span {
    display: unset;
  }

  .category-content {
    padding-bottom: 60px;
  }

  #category-select {
    -moz-appearance: window;
    -webkit-appearance: none;
    padding: 2px 50px 2px 20px;
  }

  .category-posts {
    padding: 0 20px;
  }

  .destination-grid .view-all-btn {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: 30px;
  }

  /*video slider */
  .video-slider {
    padding: 0 20px;
  }

  .video-slider .headings {
    padding-bottom: 25px;
  }

  .video-slider .headings .title {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
  }

  .video-slider .headings .title span {
    display: unset;
  }

  .slider-container {
    height: 247px;
  }

  .slider-container .slide span {
    font-size: 25px;
    padding: 0;
    line-height: 1.2;
    top: 14px;
    right: 26px;
  }

  .location-box .info-box span {
    padding: 20px 25px;
  }

  .bullet-points {
    bottom: 15px;
  }

  .bullet-point {
    width: 6px;
    height: 6px;
    margin: 0 4px;
  }

  .slider-container .slide::after {
    width: 60px;
    height: 60px;
  }

  .slider-container .slide .caption {
    padding: 0 20px 25px;
  }

  .slider-container .slide .caption h2 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .slider-arrows .slider-arrow-right,
  .slider-arrows .slider-arrow-left {
    height: 15px;
    width: 15px;
  }

  /*Location Cottage*/
  .location-cottages {
    padding: 0 20px;
  }

  .location-cottages .headings .title {
    font-weight: 800;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
  }

  #location-select {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    margin-bottom: 40px;
    -moz-appearance: window;
    -webkit-appearance: none;
    border: 2px solid #d9d9d9;
    padding: 2px 50px 2px 20px;
  }

  #location-slider {
    position: relative;
    overflow: hidden;
  }

  .location-box {
    position: relative;
    overflow: hidden;
    display: none;
    width: unset;
    height: auto;
  }

  .location-box.active {
    display: flex;
  }

  .location-box .location-image {
    width: 100%;
    height: auto;
  }

  #bullet-points {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    display: flex;
    z-index: 1;
  }

  .bullet-point.active {
    background-color: #333;
  }

  .post-box .content {
    padding: 10px;
  }

  /*Cottage Box*/
  .cottages {
    padding: 0 20px;
  }

  .cottages .row .col-12:first-child,
  .cottages .row .col-12:nth-child(2) {
    display: none;
  }

  .cottage-box {
    width: unset;
  }

  .cottages .headings {
    height: auto;
  }

  .cottages .headings .title {
    font-weight: 800;
    font-size: 26px;
  }

  .cottages .headings p {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #5c5c5c;
  }

  /*Overview*/
  .overview-content {
    background-size: auto;
    background-position: 68% 35%;
  }

  .overview-content .fancy-title {
    font-size: 100px;
  }

  .overview-content .sub-title {
    right: 7%;
    top: 7%;
  }

  .overview-content p {
    font-size: 16px;
    color: #000000;
    padding: 80px 20px;
  }

  /* Footer */
  .footer-top-title {
    display: none;
  }

  .footer-partner-logo ul li {
    width: 50%;
    display: flex;
    padding: 5px 10px 20px;
    justify-content: center;
  }

  .footer-menu-holder {
    text-align: center;
  }

  .footer-bottom-right {
    gap: 25px;
    display: flex;
    text-align: center;
    flex-direction: column;
  }

  .footer-bottom-right .footer-list {
    justify-content: center;
  }

  .footer-social-list {
    align-items: center;
    justify-content: center;
  }

  .footer-social-list li {
    margin: 0 22px;
  }

  .footer-about {
    padding-bottom: 25px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /*Pre Footer*/
  .footer-feature .feature-item img {
    display: none;
  }

  .pre-footer .footer-feature {
    padding: 0 0 50px;
  }

  .pre-footer-wrap .right-area img {
    max-width: 345px;
    margin: 0 0 40px;
  }
}

/* 0 to 1250 */
@media only screen and (max-width: 1250px) {
  .custom-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-content-top-text {
    margin-top: 0;
  }
}

/*576 To 767*/
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-content-top-text {
    margin-top: 0;
  }
}

/*768 To 991*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-content-top-text {
    margin-top: 0;
  }

  .search-field {
    width: 430px;
  }

  /* Footer */
  .footer-partner-logo ul li {
    width: 17%;
    text-align-last: center;
  }
}

/*992 To 1200*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mega-image {
    display: none;
  }

  .box-right {
    width: unset;
  }

  .wrapper .logo img {
    height: 69px;
    width: 250px;
  }

  /* Footer */
  .footer-partner-logo ul li {
    width: 17%;
    text-align-last: center;
  }
}

/*1200 To 1400*/
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  /* Footer */
  .footer-partner-logo ul li img {
    width: 90px;
  }
}

/*1400 To 1600*/
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  /* Footer */
  .footer-partner-logo ul li img {
    width: 90px;
  }
}

/*This will work on 1400px plus screen*/
@media (min-width: 1400px) {
}

/*responsive for sunVilla*/
@media screen and (max-width: 991px) {
  .text-center-sm {
    text-align: center;
  }

  .mini-cards.dotted-right {
    text-align: center;
  }

  .mini-card {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .dotted-right {
    padding-right: 0;
  }

  .dotted-left {
    padding-left: 0;
  }

  .dotted-left::after,
  .dotted-right::after {
    content: none;
  }

  /*section and tiles*/

  .section-banner-inner {
    width: 96%;
  }

  .section-banner-title {
    font-size: 42px;
    line-height: 1.04;
    max-width: 260px;
  }

  .soul .section-banner-inner.section-banner-title-right {
    align-items: end;
    justify-content: center;
    padding-bottom: 40px;
    width: 200px;
  }

  .section-content {
    margin: 30px 0;
  }

  .section-content-top {
    text-align: center;
  }

  .image-right {
    flex-direction: unset;
  }

  .section-content-top-image {
    margin-bottom: 30px;
  }

  .col-2-tiles .single-tile,
  .col-3-tiles .single-tile {
    flex-basis: 100%;
    max-width: 320px;
  }

  .single-tile {
    margin: 0 auto;
    max-width: 340px;
    padding-bottom: 30px;
    text-align: center;
  }

  .tile-card .card-box-8 {
    max-width: 340px;
    text-align: center;
    margin: 0 auto 30px;
  }

  .tile-button {
    margin-left: auto;
    margin-right: auto;
  }

  .mini-cards {
    text-align: center;
    margin-bottom: 40px;
  }

  .mini-card {
    flex-direction: column;
    max-width: 320px;
    margin: 0 auto;
  }

  .mini-card-image {
    width: 220px;
    height: 220px;
  }

  /* tile h*/
  .tile-h-holder {
    justify-content: space-evenly;
  }

  .tile-h {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }

  .tile-h .tile-image,
  .tile-h .tile-content {
    flex-basis: 100%;
    max-width: 100%;
  }

  .tile-h .tile-button {
    margin: 20px auto 0;
  }

  /* /section and tiles*/
  /* footer */
  .footer-about p {
    padding-right: 0;
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-text .footer-list {
    justify-content: center;
  }

  /* /footer */
}

:root {
  --header-bg: transparent;
  --header-color: #fff;
  --header-sticky-bg: #fff;
  --header-sticky-color: #000;
  --header-tb-spacing: 10px;
  --header-link-spacing: 15px;
  --header-link-tb-spacing: 15px;
  --header-line-height: 30px;
  --header-logo-height: 40px;
}

img {
  object-fit: cover;
}

[data-sticky] {
  position: sticky;
  top: 0;
}

.scrolling[data-sticky] {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.presto-container {
  max-width: 1240px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  min-height: 200px;
  margin-left: auto;
  margin-right: auto;
}

.scrolling {
  background: var(--header-sticky-bg);
  color: var(--header-sticky-color);
}

header {
  position: relative;
  z-index: 3;
  color: var(--header-color);
  transition: all 0.15s;
  background: var(--header-bg);
}

header a {
  color: inherit;
}

[data-header="left"] nav {
  justify-content: start;
}

[data-header="left-centered"] nav {
  justify-content: center;
  padding: 0 200px;
}

[data-header="left-centered"] .logo-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

[data-header="left-centered-reverse"] nav {
  padding: 0 400px;
  justify-content: center;
}

[data-header="left-centered-reverse"] ul {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 400px;
}

[data-header="centered"] nav {
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

[data-header="centered"] ~ main .banner-img {
  top: calc(
    -1 * ((var(--header-tb-spacing) * 4) + (var(--header-link-tb-spacing) * 4) +
          var(--header-logo-height))
  );
}

.banner_w3lspvt {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0;
}

.w3layouts-banner-info {
  padding: 200px 0 250px;
}

header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  position: relative;
  padding: var(--header-tb-spacing) 0;
  min-height: calc(
    (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
      var(--header-logo-height)
  );
}

nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  column-gap: 10px;
}

.dd-menu li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dd-menu li a:hover:after {
  opacity: 1;
}

nav ul li a,
.dd-menu label {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  margin-bottom: 0;
  cursor: pointer;
}

.dd-menu .dd-cb {
  width: 100%;
  display: none;
}

.dd-menu,
nav li a {
  display: inline-block;
  line-height: var(--header-line-height);
  padding: var(--header-link-tb-spacing) var(--header-link-spacing);
}

nav .logo-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

nav .logo-wrap img {
  height: var(--header-logo-height);
  width: auto;
}

.burger-btn {
  position: relative;
  width: 24px;
  height: 18px;
  cursor: pointer;
  display: none;
}

.burger-btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--header-color);
  transform-origin: center center;
  border-radius: 100px;
  transition: all 0.2s;
}

.scrolling .burger-btn span {
  background: var(--header-sticky-color);
}

.burger-btn span:nth-child(1) {
  top: 0;
}

.burger-btn span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

.burger-btn span:nth-child(3) {
  bottom: 0;
}

header input[type="checkbox"] {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 30px;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  display: none;
}

header input[type="checkbox"]:checked ~ .burger-btn span:nth-child(2) {
  display: none;
}

header input[type="checkbox"]:checked ~ .burger-btn span:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(42deg);
}

header input[type="checkbox"]:checked ~ .burger-btn span:nth-child(3) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-42deg);
}

.bg-overlay,
.banner-img {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  clip-path: inset(0);
}

.banner_w3lspvt .banner-img {
  top: calc(
    -1 * ((var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
          var(--header-logo-height))
  );
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.banner-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}

.fixed-bg img {
  height: 100vh;
  position: fixed;
}

.pos-rel {
  position: relative;
}

.dd-menu {
  position: relative;
  cursor: pointer;
}

.dd-menu > ul {
  position: absolute;
  top: 100%;
  background: var(--header-sticky-bg);
  color: var(--header-sticky-color);
  left: 0;
  min-width: 100px;
  border-radius: 5px;
  padding: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s;
  display: none;
  display: none;
}

.dd-menu:hover > ul {
  display: block;
  opacity: 1;
  display: block;
  max-height: 1000px;
}

.dd-menu li a {
  display: block;
  padding: 6px 15px;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  background-color: var(--header-bg); 
}

.menu-cb,
.dd-cb {
  display: none;
}

@media (max-width: 992px) {
  header {
    background-color: var(--header-sticky-bg);
    min-height: calc(
      (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
        var(--header-logo-height)
    );
    display: flex;
  }

  header .burger-btn span {
    background: var(--header-sticky-color);
  }

  header a {
    color: var(--header-sticky-color);
  }

  header nav {
    min-height: inherit;
    height: 100%;
  }

  header nav label.burger-btn {
    margin-bottom: 0;
  }

  [data-header="centered"] nav {
    flex-direction: row;
    justify-content: space-between;
  }

  [data-header="left"] nav{
    justify-content: space-between;
  }

  [data-header="left-centered"] .logo-wrap {
    position: relative;
    transform: none;
    top: 0;
  }

  [data-header="left-centered"] nav {
    padding: 0;
    justify-content: space-between;
  }

  [data-header="left-centered-reverse"] nav {
    padding: 0;
  }

  [data-header="left-centered-reverse"] .burger-btn {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
  }

  [data-header="left-centered-reverse"] ul {
    right: auto;
    top: 100%;
    bottom: auto;
  }

  [data-header="left-centered-reverse"] input[type="checkbox"] {
    left: 0;
  }

  header input[type="checkbox"],
  .burger-btn {
    display: block;
  }

  header input[type="checkbox"]:checked ~ ul {
    display: block;
    width: auto;
    max-width: 100%;
    opacity: 1;
    top: 100%;
    overflow: auto;
  }

  header nav li a {
    display: block;
    padding: 4px 15px;
  }

  nav > ul {
    background: var(--header-sticky-bg);
    transition: right 0.5s ease-in-out;
    position: fixed;
    max-width: 250px;
    width: 100%;
    top: calc(
      (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
        var(--header-logo-height)
    );
    left: auto;
    bottom: 0;
    right: -200%;
    padding: 15px 0 2rem;
    z-index: 100;
    display: block;
  }

  nav ul li,
  nav ul a {
    display: block;
  }
  .menu-cb:checked ~ .nav-links {
    display: block;
    right: 0;
    top: calc(
      (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
        var(--header-logo-height)
    );
    max-width: 250px;
    width: 100%;
    padding: 15px 0 2rem;
    transition: all 0.5s;
  }

  .dd-menu {
    width: 100%;
    padding: 0;
  }

  .dd-menu > ul {
    display: none;
    position: static;
    opacity: 1;
    max-height: 1000px;
    padding-bottom: 0;
  }

  .dd-menu:hover > ul {
    display: none;
  }

  .dd-menu label {
    display: block;
    cursor: pointer;
    color: var(--header-sticky-color);
    padding: 4px 15px;
  }

  .dd-menu .dropdown-content {
    padding: 0 10px;
  }

  .dropdown-label {
    width: 100%;
    padding: 0 15px;
  }

  .dropdown-label::after {
    content: "+";
    font-size: 22px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
  }

  .dd-cb:checked + .dropdown-label::after {
    content: "-";
    transform: rotate(180deg);
  }

  .dd-cb:checked ~ .dd-menu ul {
    display: block;
  }
}

@media (max-width: 992px) {
  .w3layouts-banner-info {
    padding: 150px 0;
  }
}

/******************************************* About Page CSS */

.about__hero .banner-img {
  padding: 130px 0;
}

.about__content__wrapper {
  padding-top: 120px;
  padding-bottom: 45px;
}

.about-template-wrapper .wrapper {
  display: flex;
  gap: 40px;
}

.about__page .about_image_wrapper {
  display: flex;
  gap: 8px;
}

.about__page img {
  width: 100%;
  object-fit: cover;
}

.about__main__title {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  padding-bottom: 20px;
}

.about_layout_two .about__main__title {
  text-align: center;
  color: #000;
}

.about_layout_two {
  background: #fff;
}

.about_layout_two .about__paragraph {
  max-width: 390px;
  width: 100%;
  color: #000;
  font-weight: normal;
}

.about__subtitle {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: 1.3;
}

.about__page .about__image {
  padding: 25px 0;
}

.about__page .about__image__banner {
  background-image: url("https://cdn.123presto.com/prod/sites/pages/images/31/a8a3b85f27d743009e7fcd8ab86e2993.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  color: #fff;
  margin: 30px 0;
  position: relative;
  height: 35vh;
}

.about__page .about__image__banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  z-index: 0;
}

.about__image__banner .banner__content {
  position: relative;
  z-index: 1;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.about__image__banner h3 {
  color: #fff;
}

.about__image__banner p {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}

.about__wrapper {
  display: flex;
  gap: 10px;
}

.about__title {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  padding-bottom: 20px;
}

.about_layout_two .about__title {
  color: #000;
  font-size: 24px;
}

.about__paragraph {
  font-size: 16px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: 1.3;
  flex-grow: 1;
}

/******************************************* Contact Page */

.contact__content__wrapper {
  padding-top: 120px;
  padding-bottom: 45px;
}

.contact-template-wrapper .wrapper {
  display: flex;
  gap: 40px;
}

.contact__hero .banner-img {
  padding: 130px 0;
}

.contact__page img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.contact__page .contact__main__title {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  padding: 20px 0;
  text-align: center;
}

.contact__page .contact__subtitle {
  font-size: 18px;
  color: #4d4d4d;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 30px;
}

.contact__page .contact__details label {
  font-weight: 600;
  font-size: 20px;
}

.contact__page .contact__details .box {
  padding: 10px 0;
  text-align: center;
}

.contact__layout__two .contact__wrapper {
  display: flex;
  gap: 25px;
  align-items: center;
}

.contact__layout__two .contact__image {
  width: 50%;
}

.map__wrapper {
  padding-top: 35px;
}

.map__wrapper iframe {
  width: 100%;
}

/******************************************* Error Page */

body:has(.error__page) header {
  color: #000;
  border-bottom: 1px solid #ddd;
}

.error-template-wrapper .wrapper {
  display: flex;
  gap: 40px;
}

.error__page .btn-primary {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  padding: 8px 14px;
  background-color: #2ad8a7;
  border-radius: 8px;
  height: 34px;
}

.error__page .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  font-family: inherit;
}

.error__page .error__wrapper h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 60px;
  text-align: center;
  color: #000;
  padding-top: 40px;
  padding-bottom: 20px;
}

.error__page .error__wrapper h1 span {
  color: #24c295;
}

.error__page .server-error .error__wrapper h1 span {
  color: #f79009;
}

.error__page .error__wrapper h3 {
  color: #344054;
  font-size: 1rem;
  line-height: 24px;
  font-family: inherit;
  padding-bottom: 30px;
}

.error__page .error__wrapper .btn-primary {
  color: #fff;
}

.error__page .server-error .error__wrapper .btn-primary {
  background-color: #f79009;
}

@media screen and (max-width: 767px) {
  .error__page .error__wrapper img {
    width: 100%;
  }

  .error__page .error__wrapper h1 {
    font-size: 42px;
    line-height: 50px;
  }
}

/******************************************* Privacy & Terms Page */

body:has(.terms__page) header,
body:has(.privacy__page) header {
  color: #000;
  border-bottom: 1px solid #ddd;
}

.terms__page,
.privacy__page {
  padding: 50px 0;
}


.terms__page .title,
.privacy__page .title {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
}

.terms__page .content-title,
.privacy__page .content-title {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.terms__page p,
.privacy__page p{
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  padding: 5px 0;
}

.terms__page ul,
.privacy__page ul {
  padding-left: 20px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  padding: 5px 0;
}

.terms__page ul li,
.privacy__page ul li {
  list-style: circle;
  list-style-position: inside
}

