* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--montserrat);
}

html,
body {
  scroll-behavior: smooth;
  background-color: #fafafa;
}

/* fonts **************************************** */

@font-face {
  font-family: "hamster";
  src: url(../../fonts/HamsterlyDemoRegular.ttf);
}

@font-face {
  font-family: "signature";
  src: url(../../fonts/Signatrue.ttf);
}

/* variable ************************************* */

:root {
  --primary-color: #ff621f;
  --grey: #3d3d3d;
  --placeholder: #777777;
  --lt-grey: #a8a8a8;
  --white: #ffffff;
  --off-white: #f4f4f4;
  --footer-txt-color: #fefefe;
  --montserrat: "Montserrat", sans-serif;
  --signature: "signature";
  --hamster: "hamster";
}

/* variable class *********************************** */

img,
a,
i,
span,
input {
  display: inline-block;
}
a {
  text-decoration: none;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-gap-20 {
  column-gap: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.d-flex {
  display: flex;
}

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

.position-relative {
  position: relative;
}

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

.img-fluid2 {
  width: 100%;
}

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

.d-none {
  display: none;
}

.h1 {
  font-family: var(--hamster);
  font-size: 105px;
  font-weight: 400;
  color: var(--grey);
}

.subheading {
  font-family: var(--montserrat);
  font-style: italic;
  color: var(--grey);
  font-weight: 300;
  font-weight: 22px;
}

.title {
  margin-top: -98px;
}

.title-inner {
  font-family: var(--hamster);
  font-size: 105px;
  font-weight: 400;
  color: var(--grey);
  padding-bottom: 10px;
}

.title-f {
  font-family: var(--signature);
  font-size: 61.59px;
  color: var(--grey);
  font-weight: 400;
  text-transform: uppercase;
  margin-right: -24px;
}

.subtitle {
  font-family: var(--montserrat);
  font-size: 33px;
  font-weight: 500;
  color: var(--lt-grey);
}

.title-bottom {
  font-family: var(--montserrat);
  font-size: 19px;
  font-weight: 400;
  color: var(--grey);
  line-height: 25px;
}

/* header start ************************************ */

header {
  padding-top: 50px;
  position: absolute;
  z-index: 1000;
}

header.fixed {
  position: fixed;
  top: 0;
}

header .nav > ul {
  list-style: none;
}

header .nav > ul > li {
  display: inline-block;
  margin-left: 50px;
  list-style: none;
}

header .nav > ul > li > a,
header .nav > ul > li > div:nth-child(1) {
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  color: var(--grey);
  position: relative;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

header .nav > ul > li > a:hover,
header .nav > ul > li:nth-child(4):hover > div:nth-child(1) {
  color: var(--primary-color);
}

header .nav > ul > li > div:nth-child(1) > i {
  transition: all 300ms ease-in-out;
}

header .nav > ul > li:nth-child(4):hover > div:nth-child(1) > i {
  transform: rotate(180deg);
}

header .nav > ul > li > a::after,
header .nav > ul > li > div:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--grey);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 300ms ease-in-out;
}

header .nav > ul > li > a:hover::after,
header .nav > ul > li:nth-child(4):hover > div:nth-child(1):after {
  width: 100%;
}

header .nav > ul > li:nth-child(4) > div:nth-child(1) {
  column-gap: 10px;
}

header .nav > ul > li:nth-child(4) > .drop-menu {
  padding: 20px 20px 20px 20px;
  position: absolute;
  top: 55px;
  left: 0px;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
}

header .nav > ul > li > div:hover ~ .drop-menu,
header .nav > ul > li .drop-menu:hover {
  opacity: 1;
  visibility: visible;
  top: 45px;
}

header .nav > ul > li:nth-child(4) > .drop-menu > ul {
  list-style: none;
}

header .nav > ul > li:nth-child(4) > .drop-menu > ul > li {
  position: relative;
}

header .nav > ul > li:nth-child(4) > .drop-menu > ul > li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(254, 254, 254, 0) 0%,
    rgba(61, 61, 61, 1) 20%,
    rgba(61, 61, 61, 1) 80%,
    rgba(254, 254, 254, 0) 100%
  );
  bottom: 0px;
  left: 0px;
  display: inline-block;
}

header .nav > ul > li:nth-child(4) > .drop-menu > ul > li:last-child:after {
  display: none;
}

header .nav > ul > li:nth-child(4) > .drop-menu > ul > li > a {
  text-decoration: none;
  font-family: var(--montserrat);
  font-size: 17px;
  font-weight: 400;
  color: var(--grey);
  transition: all 300ms ease-in-out;
  width: 150px;
  padding-bottom: 10px;
  padding-top: 10px;
}

header .nav > ul > li:nth-child(4) > .drop-menu > ul > li > a:hover {
  color: var(--primary-color);
}

header .nav > ul > li:nth-child(4) > .drop-menu > ul > li > a > i {
  margin-right: 10px;
  transition: all 300ms ease-in-out;
}

header .nav > ul > li:nth-child(4) > .drop-menu > ul > li > a:hover > i {
  margin-right: 20px;
}

header #mobile-menu-btn {
  z-index: 10001;
}

#mobile-menu-btn .bars {
  width: 40px;
  cursor: pointer;
}
#mobile-menu-btn .bars .menu-line {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 4;
  stroke-linecap: square;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
}
#mobile-menu-btn .bars .menu-line.top {
  stroke-dasharray: 40 172;
}
#mobile-menu-btn .bars .menu-line.middle {
  stroke-dasharray: 40 111;
}
#mobile-menu-btn .bars .menu-line.bottom {
  stroke-dasharray: 40 172;
}
#mobile-menu-btn .bars.active .top {
  stroke-dashoffset: -132px;
}
#mobile-menu-btn .bars.active .middle {
  stroke-dashoffset: -71px;
}
#mobile-menu-btn .bars.active .bottom {
  stroke-dashoffset: -132px;
}

#header #mobile-menu {
  background-color: var(--grey);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
}

#header #mobile-menu > ul > li {
  list-style: none;
  margin-top: 40px;
  margin-bottom: 40px;
}

#header #mobile-menu > ul > li {
  text-align: center;
}

#header #mobile-menu > ul > li > a {
  color: var(--lt-grey);
  position: relative;
  transition: all 300ms ease-in-out;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--montserrat);
}

#header #mobile-menu.show {
  opacity: 1;
  visibility: visible;
}

/* header end ************************************** */

/* banner start ************************************* */

#banner {
  height: 100vh;
  position: relative;
  background-image: linear-gradient(
      180deg,
      rgba(250, 250, 250, 1) 0%,
      rgba(9, 9, 121, 0) 4%,
      rgba(3, 136, 205, 0) 90%,
      rgba(250, 250, 250, 1) 100%
    ),
    url(../../images/banner-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#banner > .container {
  height: 100vh;
}

#banner .banner-area {
  width: 100%;
}

#banner .banner-area .title-f {
  margin-right: -13px;
  font-size: 105px;
}

#banner .banner-area .title-inner {
  font-size: 105px;
}

#banner .banner-area .bnr-subheading {
  font-size: 22px;
  font-weight: 300;
  color: var(--grey);
  text-align: center;
  max-width: 740px;
  line-height: 43px;
  margin-top: -140px;
  font-style: italic;
}

#banner .banner-area .bnr-search {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  margin-top: 50px;
}

#banner .banner-area .bnr-search > div:nth-child(1) {
  flex-basis: 40%;
}

#banner .banner-area .bnr-search > div:nth-child(2) {
  flex-basis: 25%;
}

#banner .banner-area .bnr-search > div:nth-child(3) {
  flex-basis: 25%;
}

#banner .banner-area .bnr-search > div:nth-child(4) {
  flex-basis: 10%;
}

#banner .banner-area .bnr-search .bnr-input::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(254, 254, 254, 0) 0%,
    rgba(61, 61, 61, 1) 30%,
    rgba(61, 61, 61, 1) 70%,
    rgba(254, 254, 254, 0) 100%
  );
}

#banner .banner-area .bnr-search .bnr-input {
  padding-left: 30px;
  padding-right: 30px;
}

#banner .banner-area .bnr-search .bnr-input > div:nth-child(1) {
  margin-right: 20px;
}

#banner .banner-area .bnr-search .bnr-input > div:nth-child(1) > span {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(170, 170, 170, 0.5);
}

#banner .banner-area .bnr-search .bnr-input > div:nth-child(2) {
  flex-grow: 1;
}

#banner .banner-area .bnr-search .bnr-input > div:nth-child(2) > p {
  font-size: 26px;
  color: var(--grey);
  font-weight: 500;
  margin-bottom: 20px;
}

#banner .banner-area .bnr-search .bnr-input > div:nth-child(2) input {
  border: none;
  background-color: transparent;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  color: var(--grey);
  outline: none;
}

#banner .banner-area .bnr-search > div:nth-child(4) > .bnr-btn {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: var(--primary-color);
  border-radius: 10px;
  color: var(--white);
  outline: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
}

#banner .banner-area .bnr-search > div:nth-child(3)::after {
  display: none;
}

/* banner end *************************************** */

/* vacation start ********************************** */

#vacation {
  padding-top: 200px;
  padding-bottom: 100px;
  overflow-x: hidden;
}

#vacation .vacation-left {
  flex-basis: 45%;
}

#vacation .vacation-right {
  flex-basis: 55%;
}

#vacation .vacation-features {
  margin-top: 90px;
  max-width: 500px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

#vacation .vacation-features .vacation-fet-card p:nth-child(1) {
  color: var(--primary-color);
  font-family: var(--montserrat);
  font-size: 33.08px;
  font-weight: 500;
  margin-bottom: 30px;
}

#vacation .vacation-features .vacation-fet-card p:nth-child(2) {
  color: var(--grey);
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 600;
}

#vacation .vacation-features .vacation-fet-card:nth-child(1) {
  padding-right: 31px;
  padding-bottom: 42px;
  border-right: 1px solid var(--lt-grey);
  border-bottom: 1px solid var(--lt-grey);
}

#vacation .vacation-features .vacation-fet-card:nth-child(2) {
  padding-left: 31px;
  padding-bottom: 42px;
  padding-right: 31px;
  border-bottom: 1px solid var(--lt-grey);
}

#vacation .vacation-features .vacation-fet-card:nth-child(3) {
  padding-right: 31px;
  padding-top: 42px;
  border-right: 1px solid var(--lt-grey);
}

#vacation .vacation-features .vacation-fet-card:nth-child(4) {
  padding-left: 31px;
  padding-top: 42px;
  padding-right: 31px;
}

#vacation .vacation-right div:nth-child(1) {
  max-width: 70%;
}

#vacation .vacation-right div:nth-child(2) {
  position: absolute;
  top: 0px;
  right: 0px;
  max-width: 90%;
}
#vacation .vacation-right div:nth-child(1),
#vacation .vacation-right div:nth-child(2) {
  transition: all 300ms ease-in-out;
}

#vacation .vacation-right:hover div:nth-child(1) {
  transform: translateY(50px);
}

#vacation .vacation-right:hover div:nth-child(2) {
  transform: translate(30px, -50px);
}

/* vacation end ************************************* */

/* destination start *********************************** */

#destination {
  padding-top: 50px;
  padding-bottom: 0px;
  overflow-x: hidden;
}

#destination .title {
  margin-top: -30px;
}

#destination .title-bottom {
  max-width: 480px;
  margin-bottom: 40px;
}

#destination .carousel .destination-carousel-nav {
  column-gap: 20px;
}

#destination .carousel .destination-carousel-nav .owl-prev,
#destination .carousel .destination-carousel-nav .owl-next {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

#destination .carousel .destination-carousel-nav .destination-nav-left {
  width: 30px;
}

#destination .carousel .destination-carousel-nav .destination-nav-left > svg {
  position: relative;
  left: 0;
}

#destination .carousel .destination-carousel-nav .destination-nav-right > svg {
  position: relative;
  right: 0;
}

#destination .destination-carousel .owl-stage {
  padding-top: 60px;
  padding-bottom: 60px;
}

#destination .destination-carousel .destination-carousel-card {
  transition: all 300ms ease-in-out;
}
#destination .destination-carousel .destination-carousel-card:hover,
#destination .destination-carousel .center .destination-carousel-card {
  transform: translateY(-50px);
}
#destination
  .destination-carousel
  .destination-carousel-card
  .card-img-area
  .card-img
  .destination-img-star {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .card-img-area
  .card-img {
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .card-img-area
  .card-img
  .destination-img-star
  i {
  color: var(--white);
  margin: 0px 2px;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .card-img-area
  .destination-price {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 10;
  background-color: var(--white);
  padding: 20px 15px;
  border-radius: 10px;
  color: var(--grey);
  font-family: var(--montserrat);
  font-size: 17px;
  font-weight: 600;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .destination-txt-area {
  margin-top: 40px;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .destination-txt-area
  > a:nth-child(1) {
  font-family: var(--montserrat);
  font-size: 28px;
  font-weight: 700;
  color: var(--grey);
  transition: all 300ms ease-in-out;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .destination-txt-area
  > a:nth-child(1):hover {
  color: var(--primary-color);
}

#destination
  .destination-carousel
  .destination-carousel-card
  .destination-txt-area
  > div:nth-child(2) {
  margin-top: 45px;
  column-gap: 30px;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .destination-txt-area
  div:nth-child(2)
  > div
  > p:nth-child(1) {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 14px;
  color: var(--lt-grey);
  margin-bottom: 10px;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .destination-txt-area
  div:nth-child(2)
  > div
  > p:nth-child(2) {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 16px;
  color: var(--grey);
}

#destination
  .destination-carousel
  .destination-carousel-card
  .destination-txt-area
  > p:nth-child(3) {
  font-family: var(--montserrat);
  font-size: 16px;
  font-weight: 500;
  color: var(--lt-grey);
  margin-top: 20px;
}

#destination
  .destination-carousel
  .destination-carousel-card
  .destination-txt-area
  > a:nth-child(4) {
  background-color: var(--primary-color);
  padding: 20px 17px;
  text-transform: capitalize;
  color: var(--white);
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 17px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 40px;
}

/* destination end ************************************* */

/* search start ***************************************** */

#search {
  margin-top: -250px;
  padding-top: 450px;
  padding-bottom: 80px;
  background-image: linear-gradient(
      180deg,
      rgba(250, 250, 250, 1) 0%,
      rgba(9, 9, 121, 0) 4%,
      rgba(3, 136, 205, 0) 96%,
      rgba(250, 250, 250, 1) 100%
    ),
    url(../../images/search-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}

#search .search-left {
  flex-basis: 45%;
}

#search form {
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  padding: 73px 48px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

#search form > p:first-child {
  font-family: var(--montserrat);
  font-weight: 700;
  font-size: 28px;
  color: var(--grey);
  margin-bottom: 50px;
}

#search form .field-wrap {
  padding: 20px;
  background-color: var(--off-white);
  border-radius: 10px;
  margin-bottom: 25px;
}

#search form .field-wrap .field-icon {
  margin-right: 20px;
  max-width: 25px;
}

#search form .field-wrap .field {
  flex-grow: 1;
  outline: none;
  border: none;
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 600;
  background-color: var(--off-white);
  color: var(--grey);
}

#search form .field::placeholder {
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 600;
  color: var(--placeholder);
}

#search form #fourth-field .start-date {
  width: 50%;
}

#search .search-left form .submit-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 20px;
  border: none;
  font-weight: 400;
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 10px;
  cursor: pointer;
}

#search .search-right {
  flex-basis: 40%;
  flex-direction: column;
  justify-content: space-between;
}

#search .search-right .subtitle {
  text-align: right;
  font-weight: 700;
  font-size: 50px;
  color: var(--white);
}

#search .search-right .title-inner {
  text-align: right;
  color: var(--white);
  font-size: 150px;
  font-weight: 400;
  margin-top: -50px;
}

#search .search-right .search-list {
  column-gap: 20px;
  margin-bottom: 30px;
}

#search .search-right .search-list > div {
  max-width: 40px;
  padding-top: 5px;
}

#search .search-right .search-list > p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 21px;
  flex-basis: 80%;
  flex-grow: 1;
  color: #989898;
  text-align: justify;
}

/* search end ******************************************* */

/* last section start *********************************** */

#last-section {
  background-image: url(../../images/footer-img.webp);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow-x: hidden;
}

/* testimonial start *********************************** */

#last-section #testimonial .testimonial-text {
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

#last-section #testimonial .testimonial-text .title {
  margin-top: 0px;
}

#last-section #testimonial .testimonial-text .subtitle {
  text-align: center;
}

#testimonial .testimonial-carousel .owl-stage {
  padding-top: 30px;
  padding-bottom: 30px;
}

#last-section #testimonial .testimonial-carousel .testimonial-card {
  border-radius: 10px;
  overflow: hidden;
  padding: 52px;
  background-color: var(--off-white);
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  opacity: 40%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 300ms ease-in-out;
}

#last-section #testimonial .testimonial-carousel .center .testimonial-card {
  opacity: 100%;
}

#last-section
  #testimonial
  .testimonial-carousel
  .center
  .testimonial-card
  > span:nth-child(2) {
  background-color: var(--primary-color);
}

#last-section
  #testimonial
  .testimonial-carousel
  .testimonial-card
  > p:nth-child(1) {
  font-family: var(--montserrat);
  font-size: 19.91px;
  font-weight: 400;
  color: var(--grey);
  line-height: 35.85px;
  text-align: center;
}

#last-section
  #testimonial
  .testimonial-carousel
  .testimonial-card
  > span:nth-child(2) {
  width: 50px;
  height: 3px;
  background-color: var(--grey);
}

#last-section
  #testimonial
  .testimonial-carousel
  .testimonial-card
  > .client-img {
  max-width: 90px;
  border-radius: 50%;
  border: 10px solid var(--white);
  overflow: hidden;
}

#last-section
  #testimonial
  .testimonial-carousel
  .testimonial-card
  > .client-name {
  font-family: var(--montserrat);
  font-size: 18.9px;
  font-weight: 400;
  color: var(--grey);
  text-align: center;
}

/* #testimonial .owl-carousel .owl-stage-outer .owl-stage {
  padding-top: 100px;
  padding-bottom: 100px;
} */

/* testimonial end ****************************************** */

/* footer start ********************************************* */

#footer {
  padding-top: 200px;
  padding-bottom: 30px;
}

#footer > div {
  flex-direction: column;
  row-gap: 60px;
}

#footer .footer-menu {
  column-gap: 90px;
  list-style: none;
  justify-content: center;
  row-gap: 30px;
}

#footer .footer-menu > li > a {
  text-decoration: none;
  text-transform: capitalize;
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 20px;
  color: var(--off-white);
}

#footer .footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(254, 254, 254, 0) 10%,
    rgba(254, 254, 254, 0.5) 35%,
    rgba(254, 254, 254, 0.5) 65%,
    rgba(254, 254, 254, 0) 90%
  );
}

#footer .footer-copyright {
  text-transform: uppercase;
  font-family: var(--montserrat);
  font-size: 20px;
  font-weight: 500;
  color: var(--footer-txt-color);
  letter-spacing: 15px;
  margin-top: 30px;
  text-align: center;
}

#footer .scrl-top {
  position: fixed;

  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgb(102, 102, 102, 0.5);
  opacity: 0;
  transition: all 300ms ease-in-out;
  visibility: hidden;
  cursor: pointer;
  z-index: 500;
}

#footer .scrl-top i {
  color: var(--primary-color);
}

#footer .scrl-top svg {
  position: absolute;
  /* top: -1;
  left: -1; */
  transform: rotate(-90deg);
}

#footer .scrl-top svg circle {
  stroke-dasharray: 156;
}
#footer .scrl-top.show {
  opacity: 1;
  visibility: visible;
}

/* footer end ************************************************ */

/* last section end ***************************************** */
