@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aclonica&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200..900&display=swap");
html {
  scroll-behavior: smooth;
}
body,
html {
  height: 100%;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #44a08d;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #98eedd;
}

.mb-6 {
  margin-bottom: 25px;
}
body {
  background: var(--primary-color2);
  color: #858792;
  font-family: Poppins, sans-serif;
  transition: all 0.3s ease 0s;
  scroll-behavior: smooth;
}
:root {
  --primary-color: #fff;
  --primary-color2: #2a2c39;
  --hero-color: #eff3f7;
  --hero2-color: #f0eeee;
  --text-color: #fff;
  --text2-color: #000;
  --ran-color: #44a08d;
  --white-color: #fff;
  --title-large: #000248;
  --hover-color: #2a2c39;
  --project-btn-wrapper:#44a08d;
  --px-border:	#9af4e2;
  --px-bg:	#eff3f7;
  --px-text:	#534343;
}
body.dark {
  --primary-color: #2a2c39;
  --primary-color2: #2a2c39;
  --hero-color: #252734;
  --hero2-color: #252734;
  --text-color: #000;
  --text2-color: #fff;
  --ran-color: #44a08d;
  --white-color: #fff;
  --title-large: #fff;
  --hover-color: #44a08d;
  --project-btn-wrapper: #fff;
  --px-border:	#44a08d;
  --px-bg:	#252734;
  --px-text:	#d7c2c1;
}
@media (max-width: 991.98px) {
  #cursor {
    display: none;
  }
}
@media (min-width: 992px) {
  #cursor {
    z-index: 999;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: white;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    mix-blend-mode: difference;
    pointer-events: none;
    -webkit-transition: linear 0.08s;
    transition: linear 0.08s;
  }
  #cursor.scale-cursor {
    -webkit-transform: translate(-50%, -50%) scale(5);
    transform: translate(-50%, -50%) scale(5);
    opacity: 0.15;
  }
}
.pos-relative {
  position: relative;
}
.pos-absolute {
  position: absolute;
}
/*toogle*/
.toggle-theme {
  position: fixed;
  right: 0;
  top: calc(50% - 20%);
  height: 50px;
  width: 50px;
  background-color: var(--ran-color);
  z-index: 1200;
  color: var(--white-color);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  text-align: center;
  right: 0;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  border-radius: 1rem 0 0 1rem;
  z-index: 9;
}
.toggle-theme i {
  line-height: 50px;
}
/*toggle*/
.material-scrolltop {
  z-index: 999;
  display: block;
  position: fixed;
  width: 0;
  height: 0;
  bottom: 23px;
  right: 23px;
  padding: 0;
  overflow: hidden;
  outline: 0;
  border: none;
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  cursor: hand;
  border-radius: 50%;
  background: #252734;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.25, 0, 1);
}
.material-scrolltop:hover {
  background-color: #252734;
  text-decoration: none;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5),
    0 3px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), 0 3px 15px rgba(0, 0, 0, 0.5);
}
.material-scrolltop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  width: 0;
  border-radius: 100%;
  background: #464752;
}
.material-scrolltop:active::before {
  width: 120%;
  padding-top: 120%;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.material-scrolltop.reveal {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.material-scrolltop span {
  display: block;
  font-size: 25px;
  color: #fff;
}
.material-scrolltop,
.material-scrolltop::before {
  background-image: url(../img/top-arrow.svg);
  background-position: center 50%;
  background-repeat: no-repeat;
}
blockquote {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4em;
  border: none;
  border-left: solid 3px var(--ran-color);
  padding-left: 30px;
  color: #606060;
}

blockquote span {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  margin-top: 20px;
}
blockquote.q-big {
  color: var(--text2-color);
  font-size: 32px;
  font-family: "Barlow Condensed", sans-serif;
  border: none;
  margin: 0;
  padding: 0;
}

blockquote.q-big i {
  font-size: 150px;
  display: block;
  color: var(--ran-color);
}

blockquote.q-big .d-quote-by {
  font-size: 14px;
  border-left: solid 1px var(--ran-color);
  padding-left: 20px;
  line-height: 1.5em;
  font-family: "Cormorant Garamond", serif;
}
/* 
    12. preloader css 
*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background-color: var(--primary-color);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  z-index: 1000;
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
  transform: translateY(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateY(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.3s 1s ease-out;
}

#loader svg text {
  text-transform: uppercase;
  animation: stroke 3s alternate;
  stroke-width: 2;
  stroke: #55E6A5;
  font-size: 100px;
  font-weight: 600;
}

@keyframes stroke {
  0% {
      fill: rgba(72, 138, 20, 0);
      stroke: #55E6A5;
      stroke-dashoffset: 25%;
      stroke-dasharray: 0 50%;
      stroke-width: 2;
  }

  70% {
      fill: rgba(72, 138, 20, 0);
      stroke: #55E6A5;
  }

  80% {
      fill: rgba(72, 138, 20, 0);
      stroke: #55E6A5;
      stroke-width: 3;
  }

  100% {
      fill: #55E6A5;
      stroke: rgba(54, 95, 160, 0);
      stroke-dashoffset: -25%;
      stroke-dasharray: 50% 0;
      stroke-width: 0;
  }
}
/* background animation */
.bubble {
  position: fixed;
  left: var(--bubble-left-offset);
  bottom: -75%;
  display: block;
  width: var(--bubble-radius);
  height: var(--bubble-radius);
  border-radius: 50%;
  z-index: 10;
  animation: float-up var(--bubble-float-duration) var(--bubble-float-delay) ease-in infinite;
}

.bubble::before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #55e6a598;
  border-radius: inherit;
  animation: var(--bubble-sway-type) var(--bubble-sway-duration) var(--bubble-sway-delay) ease-in-out alternate infinite;
}

.bubble:nth-child(0) {
  --bubble-left-offset: 20vw;
  --bubble-radius: 8vw;
  --bubble-float-duration: 7s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 2s;
  --bubble-sway-delay: 3s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(1) {
  --bubble-left-offset: 82vw;
  --bubble-radius: 10vw;
  --bubble-float-duration: 11s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 0s;
  --bubble-sway-delay: 1s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(2) {
  --bubble-left-offset: 85vw;
  --bubble-radius: 3vw;
  --bubble-float-duration: 11s;
  --bubble-sway-duration: 5s;
  --bubble-float-delay: 4s;
  --bubble-sway-delay: 1s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(3) {
  --bubble-left-offset: 18vw;
  --bubble-radius: 3vw;
  --bubble-float-duration: 9s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 1s;
  --bubble-sway-delay: 2s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(4) {
  --bubble-left-offset: 97vw;
  --bubble-radius: 6vw;
  --bubble-float-duration: 6s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 4s;
  --bubble-sway-delay: 3s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(5) {
  --bubble-left-offset: 26vw;
  --bubble-radius: 4vw;
  --bubble-float-duration: 7s;
  --bubble-sway-duration: 5s;
  --bubble-float-delay: 4s;
  --bubble-sway-delay: 0s;
  --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(6) {
  --bubble-left-offset: 66vw;
  --bubble-radius: 10vw;
  --bubble-float-duration: 9s;
  --bubble-sway-duration: 6s;
  --bubble-float-delay: 1s;
  --bubble-sway-delay: 0s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(7) {
  --bubble-left-offset: 55vw;
  --bubble-radius: 1vw;
  --bubble-float-duration: 12s;
  --bubble-sway-duration: 6s;
  --bubble-float-delay: 0s;
  --bubble-sway-delay: 0s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(8) {
  --bubble-left-offset: 1vw;
  --bubble-radius: 2vw;
  --bubble-float-duration: 9s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 1s;
  --bubble-sway-delay: 3s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(9) {
  --bubble-left-offset: 29vw;
  --bubble-radius: 8vw;
  --bubble-float-duration: 9s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 3s;
  --bubble-sway-delay: 4s;
  --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(10) {
  --bubble-left-offset: 53vw;
  --bubble-radius: 4vw;
  --bubble-float-duration: 8s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 3s;
  --bubble-sway-delay: 4s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(11) {
  --bubble-left-offset: 98vw;
  --bubble-radius: 9vw;
  --bubble-float-duration: 8s;
  --bubble-sway-duration: 6s;
  --bubble-float-delay: 0s;
  --bubble-sway-delay: 4s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(12) {
  --bubble-left-offset: 76vw;
  --bubble-radius: 1vw;
  --bubble-float-duration: 7s;
  --bubble-sway-duration: 6s;
  --bubble-float-delay: 0s;
  --bubble-sway-delay: 2s;
  --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(13) {
  --bubble-left-offset: 100vw;
  --bubble-radius: 4vw;
  --bubble-float-duration: 7s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 1s;
  --bubble-sway-delay: 0s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(14) {
  --bubble-left-offset: 46vw;
  --bubble-radius: 8vw;
  --bubble-float-duration: 11s;
  --bubble-sway-duration: 6s;
  --bubble-float-delay: 4s;
  --bubble-sway-delay: 0s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(15) {
  --bubble-left-offset: 8vw;
  --bubble-radius: 2vw;
  --bubble-float-duration: 10s;
  --bubble-sway-duration: 5s;
  --bubble-float-delay: 2s;
  --bubble-sway-delay: 1s;
  --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(16) {
  --bubble-left-offset: 16vw;
  --bubble-radius: 3vw;
  --bubble-float-duration: 9s;
  --bubble-sway-duration: 6s;
  --bubble-float-delay: 2s;
  --bubble-sway-delay: 1s;
  --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(17) {
  --bubble-left-offset: 2vw;
  --bubble-radius: 2vw;
  --bubble-float-duration: 10s;
  --bubble-sway-duration: 5s;
  --bubble-float-delay: 4s;
  --bubble-sway-delay: 1s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(18) {
  --bubble-left-offset: 79vw;
  --bubble-radius: 9vw;
  --bubble-float-duration: 12s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 4s;
  --bubble-sway-delay: 0s;
  --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(19) {
  --bubble-left-offset: 89vw;
  --bubble-radius: 8vw;
  --bubble-float-duration: 6s;
  --bubble-sway-duration: 6s;
  --bubble-float-delay: 2s;
  --bubble-sway-delay: 0s;
  --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(20) {
  --bubble-left-offset: 70vw;
  --bubble-radius: 6vw;
  --bubble-float-duration: 10s;
  --bubble-sway-duration: 4s;
  --bubble-float-delay: 4s;
  --bubble-sway-delay: 3s;
  --bubble-sway-type: sway-right-to-left;
}

@keyframes float-up {
  to {
      transform: translateY(-175vh);
  }
}

@keyframes sway-left-to-right {
  from {
      transform: translateX(-100%);
  }

  to {
      transform: translateX(100%);
  }
}

@keyframes sway-right-to-left {
  from {
      transform: translateX(100%);
  }

  to {
      transform: translateX(-100%);
  }
}
a {
  color: #858792;
  text-decoration: none;
}
a:hover {
  color: #fff;
}
.btn,
a,
button,
img,
input {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn {
  font-size: 15px;
  text-align: center;
  position: relative;
  z-index: 9;
  overflow: hidden;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--ran-color);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}
.btn:hover {
  color: #fff;
}
.btn-sm {
  padding-left: 40px;
  padding-right: 40px;
  height: 65px;
  border-radius: 32.5px;
  line-height: 60px;
}
.btn-sm::after {
  content: "";
  border-radius: 32.5px;
}
.btn-outline-one {
  border: 1px solid var(--ran-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-outline-one::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scaleX(0.8);
  transform: translate(-50%, -50%) scaleX(0.8);
  width: 100%;
  height: 100%;
  background: 0 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}
.btn-outline-one:hover {
  border: 1px solid var(--ran-color);
}
.btn-outline-one:hover::after {
  -webkit-transform: translate(-50%, -50%) scaleX(1.2);
  transform: translate(-50%, -50%) scaleX(1.2);
  background: var(--ran-color);
}
.btn-xl {
  padding-left: 30px;
  padding-right: 30px;
  height: 60px;
  border-radius: 42.5px;
  line-height: 45px;
}
@media (min-width: 576px) {
  .btn-xl {
    padding-left: 30px;
    padding-right: 30px;
    height: 55px;
    line-height: 44px;
  }
}
@media (min-width: 768px) {
  .btn-xl {
    padding-left: 40px;
    padding-right: 40px;
    height: 60px;
    line-height: 50px;
  }
}
@media (min-width: 1200px) {
  .btn-xl {
    padding-left: 60px;
    padding-right: 60px;
    height: 85px;
    line-height: 70px;
  }
}
.btn-xl::after {
  content: "";
  border-radius: 42.5px;
}
.icon-space-left i {
  padding-left: 10px;
}
.append-button,
.btn,
.btn:focus,
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination-bullet,
.swiper-slide,
a,
a:active,
a:focus,
a:hover,
button,
button:focus,
input,
input:focus,
select,
textarea {
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -20px;
}
.social-link li {
  margin-right: 20px;
  margin-bottom: 20px;
}
.social-link li:last-child {
  margin-right: 0;
}
.social-link a {
  display: block;
  color: var(--ran-color);
  height: 45px;
  width: 45px;
  border-radius: 50%;
  border: 1px solid var(--ran-color);
  line-height: 45px;
  text-align: center;
}
.social-link a:hover {
  color: var(--white-color);
  background: var(--ran-color);
}
@media (min-width: 768px) {
  .social-link a {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
}
input,
textarea {
  width: 100%;
}
p:last-child {
  margin-bottom: 0;
}
.section-mt-165 {
  margin-top: 75px;
}
@media (min-width: 992px) {
  .section-mt-165 {
    margin-top: 115px;
  }
}
@media (min-width: 1400px) {
  .section-mt-165 {
    margin-top: 135px;
  }
}
@media (min-width: 1800px) {
  .section-mt-165 {
    margin-top: 160px;
  }
}
.section-gap-tb-165 {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (min-width: 992px) {
  .section-gap-tb-165 {
    padding-top: 115px;
    padding-bottom: 115px;
  }
}
@media (min-width: 1400px) {
  .section-gap-tb-165 {
    padding-top: 135px;
    padding-bottom: 135px;
  }
}
@media (min-width: 1800px) {
  .section-gap-tb-165 {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}
.section-content {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .section-content {
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .section-content {
    margin-bottom: 100px;
  }
}
.section-tag {
  font-size: 18px;
  font-weight: 300;
  position: relative;
  color: var(--ran-color);
  font-family: "Barlow Condensed", sans-serif;
  display: inline-block;
  padding-left: 27px;
}
.section-tag::before {
  position: absolute;
  content: "||";
  top: 0;
  left: 0;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 25px;
  color: var(--text2-color);
}
@media (min-width: 576px) {
  .section-title {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .section-title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 70px;
  }
}
.section-bg {
  background: var(--hero-color);
}
/*==============================
    HEADER START
   ===============================*/
.header-section {
  position: absolute;
  width: 100%;
  z-index: 999;
  padding-top: 15px;
  padding-bottom: 15px;
}
.header-logo {
  display: block;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .header-nav > li {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) {
  .header-nav > li {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header-nav > li > a {
  font-size: 18px;
  line-height: 120px;
  display: inline-block;
  color: var(--text2-color);
  position: relative;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
}
.header-nav > li > a:hover {
  color: var(--ran-color);
}
.header-nav > li > a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  transform: translate(-50%, -50%) scale(0.9);
  left: auto;
  left: 50%;
  width: 120px;
  height: 60px;
  background-image: url(../img/menu-hover-shape.webp);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header-nav > li > a:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
  opacity: 1;
}

.header-section.sticky-header.sticky {
  padding-top: 0;
  padding-bottom: 0;
}
.sticky-header.sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  background: var(--hero-color);
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  border-bottom: 0;
}
.header-btn-link .btn {
  font-size: 18px;
}
.mobile-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: var(--hero-color);
  padding: 20px 0;
}
.mobile-action-link {
  font-size: 24px;
  font-family: "Barlow Condensed", sans-serif;
}
.mobile-action-link i {
  color: var(--ran-color);
}
.mobile-action-link a {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
}
.offcanvas {
  z-index: 999999;
  position: fixed;
  top: 0;
  overflow: auto;
  height: 100vh;
  padding: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-box-shadow: none;
  box-shadow: none;
  background: var(--hero-color);
  width: 300px;
  overflow-x: hidden;
  visibility: visible;
}
@media (min-width: 576px) {
  .offcanvas {
    width: 400px;
  }
}
.offcanvas-leftside {
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.offcanvas-rightside {
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.offcanvas.offcanvas-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.offcanvas-overlay {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
}
.offcanvas-header {
  margin-bottom: 30px;
}
.offcanvas-close {
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--white-color);
  background: var(--ran-color);
  border: 1px solid var(--ran-color);
}
.offcanvas-title {
  margin-bottom: 40px;
}
.offcanvas-menu {
  margin: 20px 0;
}
.offcanvas-menu li {
  position: relative;
  padding: 7px 5px;
}
.offcanvas-menu > ul > li {
  border-bottom: 1px solid transparent;
}
.offcanvas-menu > ul > li:last-child {
  border-bottom: none;
}
.offcanvas-menu li a {
  display: block;
  color: var(--text2-color);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
}
.offcanvas-menu li a:hover {
  color: var(--ran-color);
}
.offcanvas-menu li .mobile-sub-menu {
  display: none;
  cursor: pointer;
}
.offcanvas-menu-expand::after {
  content: "";
  position: absolute;
  font-family: IcoFont;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  cursor: pointer;
}

.offcanvas-menu .active > .offcanvas-menu-expand:last-child,
.sub-menu > .active .offcanvas-menu-expand:last-child {
  border-bottom: none;
}
.offcanvas-menu .active > .offcanvas-menu-expand::after,
.sub-menu > .active .offcanvas-menu-expand::after {
  color: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-contact-info .address span {
  display: block;
  color: #fff;
}
.mobile-social-link {
  margin-top: 20px;
  text-align: center;
}
.mobile-social-link a {
  color: #fff;
  margin-right: 30px;
  font-family: "Barlow Condensed", sans-serif;
}
.mobile-social-link a:last-child {
  margin-right: 0;
}
.mobile-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/*==============================
    HEADER END
   ===============================*/
/*==============================
    HERO START
   ===============================*/
.section-dark-blue-bg {
  background-color: var(--hero-color);
}
.hero-wrapper {
  position: relative;
  height: 940px;
  overflow: hidden;
  z-index: 1;
  border-bottom: 3px solid var(--hero-color);
}
@media (min-width: 576px) {
  .hero-wrapper {
    height: 1180px;
  }
}
@media (min-width: 768px) {
  .hero-wrapper {
    height: 1200px;
  }
}
@media (min-width: 992px) {
  .hero-wrapper {
    height: 750px;
  }
}
@media (min-width: 1200px) {
  .hero-wrapper {
    height: 910px;
  }
}
@media (min-width: 1800px) {
  .hero-wrapper {
    height: 1130px;
  }
}
.hero-content {
  position: absolute;
  bottom: 60px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
@media (min-width: 992px) {
  .hero-content {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.hero-content .tile-large,
.hero-content .title-big {
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1;
  color: var(--ran-color);
}
.hero-content .title-big {
  margin-top: 80px;
  font-size: 36px;
}
@media (min-width: 992px) {
  .hero-content .title-big {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .hero-content .title-big {
    font-size: 60px;
  }
}
@media (min-width: 1400px) {
  .hero-content .title-big {
    font-size: 85px;
  }
}
.hero-content .title-large {
  font-size: 60px;
  font-weight: 700;
  color: var(--title-large);
}
@media (min-width: 992px) {
  .hero-content .title-large {
    font-size: 80px;
  }
}
@media (min-width: 1200px) {
  .hero-content .title-large {
    font-size: 90px;
  }
}
@media (min-width: 1400px) {
  .hero-content .title-large {
    font-size: 110px;
  }
}
@media (min-width: 1800px) {
  .hero-content .title-large {
    font-size: 140px;
  }
}

.hero-content .shape-mark {
  position: relative;
  z-index: 1;
}
.hero-content .shape-mark::after {
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../img/hero-name-mark-shape.webp);
  width: 100%;
  height: 22px;
  left: 0;
  bottom: 0;
  background-repeat: no-repeat;
}
.hero-content p {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--text2-color);
}
@media (min-width: 992px) {
  .hero-content p {
    margin-top: 40px;
    margin-bottom: 60px;
    font-size: 16px;
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .hero-content p {
    font-size: 20px;
    width: 400px;
  }
}
@media (min-width: 1400px) {
  .hero-content p {
    font-size: 18px;
    width: 400px;
  }
}
@media (min-width: 1800px) {
  .hero-content p {
    font-size: 22px;
    width: 550px;
  }
}

.hero-top-shape {
  position: absolute;
  top: -100px;
}
.hero-bottom-shape {
  position: absolute;
  bottom: -100px;
}
.hero-shape {
  z-index: -1;
}
.hero-shape span {
  position: absolute;
  border: 2px solid var(--ran-color);
  border-radius: 50%;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 1200px) {
  .hero-shape span {
    visibility: visible;
    opacity: 1;
  }
}
.hero-shape span:nth-child(1) {
  width: 440px;
  height: 440px;
}
.hero-shape span:nth-child(2) {
  width: 560px;
  height: 560px;
}
.hero-shape span:nth-child(3) {
  width: 700px;
  height: 700px;
}
.hero-portrait {
  position: absolute;
  left: calc(50% - 22px);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 130px;
  width: 240px;
  z-index: -1;
}
@media (min-width: 576px) {
  .hero-portrait {
    left: calc(50% - 36px);
    width: 400px;
    top: 150px;
  }
}
@media (min-width: 992px) {
  .hero-portrait {
    right: 0;
    width: 400px;
    bottom: 0;
    top: auto;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .hero-portrait {
    right: -155px;
    width: auto;
  }
}
@media (min-width: 1800px) {
  .hero-portrait {
    right: 0;
  }
}
.hero-portrait .image {
  height: auto;
  position: relative;
  z-index: 8;
}
@media (min-width: 992px) {
  .hero-portrait .image {
    height: 570px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .image {
    height: 700px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .image {
    height: 950px;
  }
}
.hero-portrait .image-half-round-shape {
  bottom: 10%;
  left: 50%;
  position: absolute;
  width: 150px;
  height: 250px;
  border-top-right-radius: 150px;
  border-bottom-right-radius: 150px;
  border: 2px solid var(--ran-color);
  border-left: 0;
  z-index: -1;
}
@media (min-width: 576px) {
  .hero-portrait .image-half-round-shape {
    width: 260px;
    height: 400px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
  }
}
@media (min-width: 992px) {
  .hero-portrait .image-half-round-shape {
    bottom: 0;
    left: 60%;
    width: 260px;
    height: 464px;
    border-top-right-radius: 250px;
    border-bottom-right-radius: 250px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .image-half-round-shape {
    width: 350px;
    height: 600px;
    border-top-right-radius: 350px;
    border-bottom-right-radius: 350px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .image-half-round-shape {
    width: 400px;
    height: 800px;
    border-top-right-radius: 400px;
    border-bottom-right-radius: 400px;
  }
}
.hero-portrait .image-half-round-shape::before {
  bottom: 68px;
  left: -75px;
  position: absolute;
  content: "";
  width: 400px;
  height: 660px;
  border-top-right-radius: 400px;
  border-bottom-right-radius: 400px;
  border: 1px solid var(--ran-color);
  border-left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 992px) {
  .hero-portrait .image-half-round-shape::before {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
    left: 0;
    width: 220px;
    height: 370px;
    border-top-right-radius: 220px;
    border-bottom-right-radius: 220px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .image-half-round-shape::before {
    bottom: 50px;
    left: 0;
    width: 300px;
    height: 500px;
    border-top-right-radius: 350px;
    border-bottom-right-radius: 350px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .image-half-round-shape::before {
    bottom: 68px;
    left: -75px;
    width: 400px;
    height: 660px;
    border-top-right-radius: 400px;
    border-bottom-right-radius: 400px;
  }
}
.hero-portrait .image-half-round-shape::after {
  bottom: -46px;
  left: 24px;
  position: absolute;
  content: "";
  width: 450px;
  height: 900px;
  border-top-right-radius: 450px;
  border-bottom-right-radius: 450px;
  border: 1px solid var(--ran-color);
  border-left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 992px) {
  .hero-portrait .image-half-round-shape::after {
    visibility: visible;
    opacity: 1;
    bottom: -28px;
    left: -69px;
    width: 396px;
    height: 540px;
    border-top-right-radius: 340px;
    border-bottom-right-radius: 340px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .image-half-round-shape::after {
    bottom: -40px;
    left: -64px;
    width: 478px;
    height: 693px;
    border-top-right-radius: 400px;
    border-bottom-right-radius: 400px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .image-half-round-shape::after {
    bottom: -46px;
    left: 24px;
    width: 450px;
    height: 900px;
    border-top-right-radius: 450px;
    border-bottom-right-radius: 450px;
  }
}
.hero-portrait .social-link a {
  display: block;
  text-align: center;
  color: var(--ran-color);
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  border-radius: 50%;
  border: 1px solid var(--ran-color);
  z-index: 11;
  position: absolute;
  background: var(--hero-color);
}
@media (min-width: 576px) {
  .hero-portrait .social-link a {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
@media (min-width: 768px) {
  .hero-portrait .social-link a {
    font-size: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
@media (min-width: 992px) {
  .hero-portrait .social-link a {
    font-size: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .social-link a {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .social-link a {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}
.hero-portrait .social-link a:hover {
  color: var(--white-color);
  background: var(--ran-color);
}
.hero-portrait .social-link a:nth-child(1) {
  left: 175px;
  top: 50px;
}
@media (min-width: 576px) {
  .hero-portrait .social-link a:nth-child(1) {
    left: 315px;
    top: 110px;
  }
}
@media (min-width: 992px) {
  .hero-portrait .social-link a:nth-child(1) {
    left: 335px;
    top: 96px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .social-link a:nth-child(1) {
    left: 535px;
    top: 96px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .social-link a:nth-child(1) {
    left: 590px;
    top: 185px;
  }
}
.hero-portrait .social-link a:nth-child(2) {
  left: 225px;
  top: 90px;
}
@media (min-width: 576px) {
  .hero-portrait .social-link a:nth-child(2) {
    left: 395px;
    top: 170px;
  }
}
@media (min-width: 992px) {
  .hero-portrait .social-link a:nth-child(2) {
    left: 430px;
    top: 188px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .social-link a:nth-child(2) {
    left: 655px;
    top: 188px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .social-link a:nth-child(2) {
    left: 715px;
    top: 336px;
  }
}
.hero-portrait .social-link a:nth-child(3) {
  left: 250px;
  top: 150px;
}
@media (min-width: 576px) {
  .hero-portrait .social-link a:nth-child(3) {
    left: 435px;
    top: 255px;
  }
}
@media (min-width: 992px) {
  .hero-portrait .social-link a:nth-child(3) {
    left: 470px;
    top: 325px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .social-link a:nth-child(3) {
    left: 715px;
    top: 325px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .social-link a:nth-child(3) {
    left: 758px;
    top: 540px;
  }
}
.hero-portrait .social-link a:nth-child(4) {
  left: 247px;
  top: 213px;
}
@media (min-width: 576px) {
  .hero-portrait .social-link a:nth-child(4) {
    left: 430px;
    top: 348px;
  }
}
@media (min-width: 992px) {
  .hero-portrait .social-link a:nth-child(4) {
    left: 400px;
    top: 480px;
  }
}
@media (min-width: 1200px) {
  .hero-portrait .social-link a:nth-child(4) {
    left: 700px;
    top: 480px;
  }
}
@media (min-width: 1800px) {
  .hero-portrait .social-link a:nth-child(4) {
    left: 687px;
    top: 740px;
  }
}
/*==============================
    HERO END
   ===============================*/
/*==============================
    SERVICE START
   ===============================*/
.service-display-section {
  background-color: var(--primary-color);
}
.service-box-single-item {
  position: relative;
  background: var(--hero-color);
  padding: 45px;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-box-single-item:hover {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  -webkit-box-shadow: 0 0 150px 0 var(--hover-color);
  box-shadow: 0 0 150px 0 var(--hover-color);
}

@media (min-width: 768px) {
  .service-box-single-item {
    padding: 50px;
  }
}
@media (min-width: 992px) {
  .service-box-single-item {
    padding: 70px;
  }
}
/* .service-box-single-item .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 60px;
}
.service-box-single-item .icon img {
  width: 100%;
} */
.service-box-single-item .title {
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  margin-bottom: 45px;
  color: var(--text2-color);
}
.service-box-single-item .title a {
  color: #fff;
}
.service-box-single-item .list-item li {
  position: relative;
  margin-bottom: 15px;
  display: block;
  padding-left: 40px;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--text2-color);
}
.service-box-single-item .list-item li:last-child {
  margin-bottom: 0;
}
.service-box-single-item .list-item li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f101";
  font-family: FontAwesome;
}

.services__card--icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  color: var(--white-color);
}

@media only screen and (min-width: 992px) {
  .services__card--icon {
    width: 112px;
    height: 112px;
  }
}

@media only screen and (min-width: 1200px) {
  .services__card--icon {
    width: 147.2px;
    height: 147.2px;
  }
}

.services__card--icon.color1 {
  background: var(--ran-color);
}

.services__card--icon.color1::before {
  background: var(--ran-color);
}
.services__card--icon::before {
  position: absolute;
  content: "";
  width: 72px;
  height: 68.8px;
  bottom: 72%;
  left: 50%;
  opacity: 0.36;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
}

@media only screen and (min-width: 992px) {
  .services__card--icon::before {
    width: 80px;
    height: 83.2px;
  }
}

@media only screen and (min-width: 1200px) {
  .services__card--icon::before {
    width: 104px;
    height: 105.6px;
  }
}

@media only screen and (min-width: 1200px) {
  .services__card--icon::before {
    height: 120px;
  }
}
.service-box-single-item:hover .inner-shape {
  -webkit-transform: scale(1);
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.inner-shape-top-right {
  position: absolute;
  width: 345px;
  height: 345px;
  border-radius: 50%;
  border: 2px solid var(--ran-color);
  top: -230px;
  right: -230px;
}
.inner-shape-top-right::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid var(--ran-color);
  top: -20px;
  right: -20px;
}
.inner-shape-top-right::after {
  position: absolute;
  content: "";
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 2px solid var(--ran-color);
  top: -40px;
  right: -40px;
}
.inner-shape-bottom-right {
  position: absolute;
  width: 345px;
  height: 345px;
  border-radius: 50%;
  border: 2px solid var(--ran-color);
  bottom: -230px;
  right: -230px;
}
.inner-shape-bottom-right::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid var(--ran-color);
  bottom: -20px;
  right: -20px;
}
.inner-shape-bottom-right::after {
  position: absolute;
  content: "";
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 2px solid var(--ran-color);
  bottom: -40px;
  right: -40px;
}
.inner-shape {
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
}
/*==============================
    SERVICE END
   ===============================*/
/*==============================
    SKILL START
   ===============================*/
.skill-display-section-box .section-content .btn {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .skill-display-section-box .section-content .btn {
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .skill-display-section-box .section-content .btn {
    margin-top: 90px;
  }
}
@media (min-width: 1400px) {
  .skill-display-section-box .section-content .btn {
    margin-top: 100px;
  }
}
.skill-display-wrapper {
  margin: 0;
}
@media (min-width: 1800px) {
  .skill-display-wrapper {
    margin-right: 130px;
  }
}
.skill-progress-single-item {
  background-color: var(--primary-color);
  padding: 25px 25px 30px 25px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .skill-progress-single-item {
    padding: 45px 45px 50px 45px;
  }
}
.skill-progress-single-item:last-child {
  margin-bottom: 0;
}
.skill-progress-single-item .tag {
  margin-bottom: 25px;
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text2-color);
  font-family: "Barlow Condensed", sans-serif;
  position: relative;
  z-index: 2;
}
.skill-progress-single-item .skill-box {
  width: 100%;
  height: 5px;
  background: var(--title-large);
  position: relative;
}
.skill-progress-single-item .progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--ran-color);
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  width: 0;
}
.skill-progress-single-item .progress-line .skill-percentage {
  font-size: 15px;
  text-transform: uppercase;
  position: absolute;
  right: -15px;
  top: -55px;
  z-index: 1;
  font-family: "Barlow Condensed", sans-serif;
  background: var(--ran-color);
  color: var(--white-color);
  padding: 0 11.2px;
  height: 40px;
  border-radius: 3.2px;
  line-height: 40px;
  font-weight: 500;
}
.skill-progress-single-item .progress-line .skill-percentage::before {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(0 0, 46% 97%, 100% 0);
  clip-path: polygon(0 0, 46% 97%, 100% 0);
  width: 20px;
  height: 20px;
  background: var(--ran-color);
  z-index: -10;
  top: 29px;
  left: 50%;
  -webkit-transform: translatex(-50%);
  transform: translatex(-50%);
}
.skill-display-shape {
  position: absolute;
  width: 375px;
  height: 100%;
  top: 0;
  right: 0;
  background: #2a2c39;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 1800px) {
  .skill-display-shape {
    visibility: visible;
    opacity: 1;
  }
}
/*==============================
    SKILL END
   ===============================*/
/* .text-gradient {
  background: -webkit-linear-gradient(
    45deg,
    #98f3e1 0%,
    #1c816c 50%,
    #44a08d 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */
.section-box {
  padding: 90px 20px;
}
@media (min-width: 992px) {
  .section-box {
    padding: 90px 30px;
  }
}
@media (min-width: 1200px) {
  .section-box {
    padding: 90px 40px;
  }
}
@media (min-width: 1600px) {
  .section-box {
    padding: 90px 50px;
  }
}
@media (min-width: 1920px) {
  .section-box {
    padding: 90px 60px;
  }
}

.section-sm {
  overflow: hidden;
  padding: 90px 0;
  background-color: var(--primary-color);
}
@media (max-width: 1199.98px) {
  .section {
    padding: 90px 0;
  }
  .section-sm {
    padding: 70px 0;
  }
}
/*==============================
    PROJECT START
   ===============================*/

 
   .portfolio-box {
    border: 2px solid var(--px-border);
    padding: 10px;
    border-radius: 10px;
    position: relative;
    background-color: var(--px-bg);
  }
  .portfolio-box .portfolio-img {
    overflow: hidden;
    border-radius: 10px;
  }
  .portfolio-box .portfolio-text {
    position: absolute;
    bottom: 0px;
    left: 20px;
    right: 20px;
    background-color: var(--hero-color);
    border: 2px solid var(--px-border);
    padding: 20px;
    border-radius: 10px;
    transition: ease all 0.35s;
    opacity: 0;
  }
  .portfolio-box .portfolio-text h6 {
    font-size: 17px;
    margin: 0 0 5px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    color: var(--text2-color);
  }
  .portfolio-box .portfolio-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    font-family: "Cormorant Garamond", serif;
    color: var(--text2-color);
  }

  .portfolio-box .portfolio-modal-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
        color: var(--white-color);
        
        background: var(--ran-color);
    border-radius: 50%;
  }
  .portfolio-box .portfolio-modal-link:hover {
    background: var(--px-bg);
    color: var(--px-text);
  }
  .portfolio-box:hover .portfolio-text {
    bottom: 20px;
    opacity: 1;
  }
  
   



.portfolio-slider.swiper,
.portfolio-slider.swiper-container {
  overflow: visible;
}
.swiper-portfolio-prev {
  margin-right: 6px;
}
.button-circle {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  background: var(--ran-color);
  backdrop-filter: blur(5px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-align: center;
  line-height: 50px;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}
.button-circle:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #1c816c;
  background-image: linear-gradient(
    45deg,
    #03473a 0%,
    #1c816c 50%,
    #44a08d 100%
  );
  width: 100%;
  height: 100%;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}
.button-circle i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: ease-out 0.16s;
  transition: ease-out 0.16s;
}
.button-circle i:last-child {
  top: 100%;
  visibility: hidden;
  opacity: 0;
}
.button-circle:hover {
  background: #1c816c;
  color: white;
}
.button-circle:hover:before {
  opacity: 0.2;
}
.button-circle:hover i:first-child {
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.button-circle:hover i:last-child {
  top: 50%;
  visibility: visible;
  opacity: 1;
}
/*==============================
    PROJECT START
   ===============================*/
/*==============================
    FOOTER START
   ===============================*/
.footer-section {
  background-color: var(--primary-color);
}

.footer_heading {
  background: var(--colorPrimary);
  padding: 20px 0px 20px 0px;
}

.footer_heading ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer_heading ul li {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.footer_heading ul li::after {
  position: absolute;
  content: "/";
  color: var(--ran-color);
  font-weight: 300;
  font-size: 32px;
  top: 0;
  right: -45px;
}

.footer_heading ul li:last-child:after {
  display: none;
}

.footer_heading ul li a,
.footer_heading ul li p {
  color: var(--text2-color);
  font-weight: 400;
  font-size: 28px;
  font-family: "Barlow Condensed", sans-serif;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_heading ul li a:hover {
  color: var(--ran-color);
}

.footer_link ul {
  display: flex;
  flex-wrap: wrap;
}

.footer_link ul li {
  width: 25%;
  border-right: 1px solid var(--ran-color);
}

.footer_link ul li:last-child {
  border: none;
}

.footer_link ul li a {
  color: var(--text2-color);
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  font-family: "Barlow Condensed", sans-serif;
  padding: 100px 0px 108px 0px;
  transition: all linear 0.3s;
  text-transform: capitalize;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.footer_link ul li a:hover {
  color: var(--ran-color);
}

.footer_copyright {
  background: var(--hero-color);
}

.footer_copyright_text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.footer_copyright_text p {
  color: var(--title-large);
}
.footer__widget__item__icon {
  height: 40px;
  width: 40px;
  border: 1px solid var(--ran-color);
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}
.footer__widget__item__icon i {
  font-size: 20px;
  color: var(--ran-color);
}

@media (min-width: 1200px) and (max-width: 1399.99px) {
  .footer_heading ul {
    gap: 10px;
    justify-content: center;
  }
  .footer_heading ul li {
    margin-right: 50px;
  }
  .footer_heading ul li a,
  .footer_heading ul li p {
    font-size: 22px;
  }

  .footer_heading ul li::after {
    font-size: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1199.99px) {
  .footer_heading ul {
    justify-content: unset;
    gap: 10px;
  }
  .footer_heading ul li {
    margin-right: 90px;
  }
  .footer_heading ul li a,
  .footer_heading ul li p {
    font-size: 22px;
  }

  .footer_heading ul li::after {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 991.99px) {
  .footer_heading ul {
    justify-content: unset;
    gap: 10px;
  }
  .footer_heading ul li {
    margin-right: 36px;
  }
  .footer_heading ul li a,
  .footer_heading ul li p {
    font-size: 18px;
  }

  .footer_heading ul li::after {
    font-size: 18px;
    right: -18px;
  }

  .footer_link ul li a {
    font-size: 20px;
    padding: 60px 0px 60px 0px;
  }

  .footer_copyright_text ul li a {
    padding-left: 0;
  }

  .footer_copyright_text {
    position: relative;
  }
}

@media (min-width: 576px) and (max-width: 767.99px) {
  .footer_heading ul {
    justify-content: unset;
    gap: 10px;
  }
  .footer_heading ul li {
    margin-right: 36px;
  }

  .footer_heading ul li {
    width: 100%;
  }

  .footer_heading ul li a,
  .footer_heading ul li p {
    font-size: 22px;
  }

  .footer_link ul li a {
    font-size: 16px;
    padding: 40px 0px 40px 0px;
  }

  .footer_copyright_text ul li a {
    padding-left: 0;
  }

  .footer_copyright_text .scroll_button {
    position: absolute;
    bottom: 20px;
    right: 0;
  }

  .footer_copyright_text {
    position: relative;
  }
}

@media (max-width: 992px) {
  .footer_heading ul {
    text-align: center;
    gap: 10px;
  }

  .footer_heading ul li {
    width: 100%;
    display: block;
  }

  .footer_heading ul li a,
  .footer_heading ul li p {
    font-size: 16px;
  }

  .footer_link ul li a {
    font-size: 16px;
    padding: 30px 0px 38px 0px;
  }

  .footer_link ul li {
    justify-content: space-between;
    width: 45%;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 16, 19, 0.1);
  }

  .footer_link ul {
    justify-content: space-around;
  }

  .footer_link ul li:nth-child(3) {
    border: none;
  }

  .footer_copyright_text ul li a {
    padding-left: 0;
    font-size: 14px;
  }

  .footer_copyright_text .scroll_button {
    position: absolute;
    bottom: 10px;
    right: 0;
  }

  .footer_copyright_text {
    position: relative;
  }

  .footer_copyright_text p {
    font-size: 14px;
  }
  .footer_heading ul li::after {
    display: none;
  }
}
/*==============================
    FOOTER END
   ===============================*/
/*==============================
    CURSOR START
   ===============================*/

#magic-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 1000000;
  color: var(--ran-color);
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 2px solid var(--hover-color);
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
}

.ball-drag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  height: 100%;
}

#magic-cursor {
  position: relative;
  z-index: 9999;
}
@media (max-width: 1040px) {
  #magic-cursor {
    display: none;
  }
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 2px solid var(--hover-color);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

.ball-drag,
.ball-view,
.ball-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 24px;
  color: var(--white-color);
  height: 100%;
}

.ball-view,
.ball-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  height: 100%;
  text-align: center;
  text-transform: capitalize;
  color: var(--ran-color);
}
.ball-view img {
  width: 13px !important;
  height: 13px !important;
}
.c-pointer {
  cursor: pointer;
}

.ball-image-view {
  width: 100%;
  height: 100%;
}
.ball-image-view img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
}
.ball-arrow i {
  font-size: 50px;
}
.ball-view i {
  font-size: 40px;
}

/*==============================
      CURSOR END
     ===============================*/

/*==============================
    BREADCRUMB START
   ===============================*/

.breadcrumb-box {
  padding-top: 130px;
  padding-bottom: 45px;
  background-color: var(--hero-color);
}
@media (min-width: 768px) {
  .breadcrumb-box {
    padding-top: 175px;
    padding-bottom: 90px;
  }
}
@media (min-width: 992px) {
  .breadcrumb-box {
    padding-top: 175px;
    padding-bottom: 110px;
  }
}
@media (min-width: 1400px) {
  .breadcrumb-box {
    padding-top: 225px;
    padding-bottom: 130px;
  }
}
@media (min-width: 1800px) {
  .breadcrumb-box {
    padding-top: 275px;
    padding-bottom: 180px;
  }
}
.breadcrumb-content {
  text-align: center;
}
.breadcrumb-content .title {
  font-size: 40px;
  font-weight: 600;
  color: var(--title-large);
}
@media (min-width: 768px) {
  .breadcrumb-content .title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .breadcrumb-content .title {
    font-size: 75px;
  }
}
@media (min-width: 1800px) {
  .breadcrumb-content .title {
    font-size: 90px;
  }
}
.breadcrumb-link {
  margin-top: 20px;
  padding: 20px 40px;
  border-radius: 30px;
  background: var(--primary-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.breadcrumb-link li a {
  color: var(--text2-color);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}
.breadcrumb-link li a:hover {
  color: var(--ran-color);
}
.breadcrumb-link li {
  position: relative;
  margin-right: 30px;
  font-weight: 300;
  font-size: 14px;
}
@media (min-width: 992px) {
  .breadcrumb-link li {
    font-size: 16px;
  }
}
.breadcrumb-link li::after {
  position: absolute;
  content: "||";
  left: calc(100% + 10px);
  visibility: visible;
  color: var(--ran-color);
}
.breadcrumb-link li:last-child {
  margin-right: 0;
}
.breadcrumb-link li:last-child::after {
  visibility: hidden;
}
.breadcrumb-link li.active {
  color: var(--ran-color);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}
.breadcrumb-shape-top-left {
  position: absolute;
  width: 800px;
  height: 800px;
  border: 3px solid var(--ran-color);
  border-radius: 50%;
  top: -375px;
  left: -585px;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 1200px) {
  .breadcrumb-shape-top-left {
    visibility: visible;
    opacity: 1;
    top: -475px;
    left: -590px;
  }
}
@media (min-width: 1800px) {
  .breadcrumb-shape-top-left {
    top: -425px;
    left: -595px;
  }
}
.breadcrumb-shape-top-left::before {
  position: absolute;
  content: "";
  width: 935px;
  height: 935px;
  border: 3px solid var(--ran-color);
  border-radius: 50%;
  top: -70px;
  left: -70px;
}
.breadcrumb-shape-top-left::after {
  position: absolute;
  content: "";
  width: 1065px;
  height: 1065px;
  border: 3px solid var(--ran-color);
  border-radius: 50%;
  top: -140px;
  left: -140px;
}
.breadcrumb-shape-bottom-right {
  position: absolute;
  width: 800px;
  height: 800px;
  border: 3px solid var(--ran-color);
  border-radius: 50%;
  bottom: -375px;
  right: -585px;
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 1200px) {
  .breadcrumb-shape-bottom-right {
    visibility: visible;
    opacity: 1;
    bottom: -475px;
    right: -590px;
  }
}
@media (min-width: 1800px) {
  .breadcrumb-shape-bottom-right {
    bottom: -425px;
    right: -595px;
  }
}
.breadcrumb-shape-bottom-right::before {
  position: absolute;
  content: "";
  width: 935px;
  height: 935px;
  border: 3px solid var(--ran-color);
  border-radius: 50%;
  bottom: -70px;
  right: -70px;
}
.breadcrumb-shape-bottom-right::after {
  position: absolute;
  content: "";
  width: 1065px;
  height: 1065px;
  border: 3px solid var(--ran-color);
  border-radius: 50%;
  bottom: -140px;
  right: -140px;
}
/*==============================
    BREADCRUMB END
   ===============================*/
/*==============================
    ABOUT START
   ===============================*/
.about-section {
  background: var(--primary-color);
}
.about-card {
  padding: 30px;
  background: var(--hero-color);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 276px;
}
@media (min-width: 576px) {
  .about-card {
    height: 336px;
  }
}
@media (min-width: 992px) {
  .about-card {
    height: 456px;
  }
}
@media (min-width: 1200px) {
  .about-card {
    height: 463.5px;
  }
}
.about-card .btn {
  margin-top: 55px;
}
@media (min-width: 576px) {
  .about-card .btn {
    margin-top: 65px;
  }
}
@media (min-width: 768px) {
  .about-card .btn {
    margin-top: 75px;
  }
}
@media (min-width: 992px) {
  .about-card .btn {
    margin-top: 85px;
  }
}
@media (min-width: 1200px) {
  .about-card .btn {
    margin-top: 95px;
  }
}
.about-info-content {
  text-align: center;
  margin-top: 70px;
}
@media (min-width: 992px) {
  .about-info-content {
    margin-top: 0;
    text-align: left;
  }
}
.about-info-content .title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--title-large);
}
@media (min-width: 768px) {
  .about-info-content .title {
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  .about-info-content .title {
    font-size: 70px;
  }
}
@media (min-width: 1800px) {
  .about-info-content .title {
    font-size: 85px;
  }
}
.about-info-content .sub-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text2-color);
  line-height: 1.5;
}
@media (min-width: 576px) {
  .about-info-content .sub-title {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .about-info-content .sub-title {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .about-info-content .sub-title {
    font-size: 40px;
  }
}
@media (min-width: 1400px) {
  .about-info-content .sub-title {
    font-size: 45px;
  }
}
.about-info-content p {
  margin-top: 25px;
  color: var(--text2-color);
  font-family: "Barlow Condensed", sans-serif;
}
.about-info-content p:last-child {
  margin-bottom: 0;
}
/*==============================
    ABOUT END
   ===============================*/

/*==============================
    ABOUT-SKILL START
   ===============================*/
.about-skills {
  background-color: var(--hero-color);
}

.about-skills .skill-progress-single-item {
  margin-bottom: 30px;
}
/*==============================
    ABOUT-SKILL END
   ===============================*/

/*==============================
    RESUME START
   ===============================*/
.resume-info-display-section {
  background-color: var(--primary-color);
}
.resume-tab {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .resume-tab {
    margin-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .resume-tab {
    margin-bottom: 100px;
  }
}
.resume-tab .nav-item {
  width: 100%;
  margin-bottom: 35px;
}
.resume-tab .nav-item:last-child {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .resume-tab .nav-item {
    width: calc(50% - 17.5px);
    margin-right: 35px;
    margin-bottom: 0;
  }
}
.resume-tab .nav-item:last-child {
  margin-right: 0;
}
.resume-tab .nav-item button {
  background: var(--primary-color);
  border: 1px solid var(--ran-color);
  font-size: 36px;
  font-family: "Cormorant Garamond", serif;
  color: var(--title-large);
  display: block;
  width: 100%;
}
@media (min-width: 576px) {
  .resume-tab .nav-item button {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .resume-tab .nav-item button {
    font-size: 45px;
  }
}
@media (min-width: 992px) {
  .resume-tab .nav-item button {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .resume-tab .nav-item button {
    font-size: 58px;
  }
}
.resume-tab .nav-item button.active {
  border-color: var(--primary-color2);
  background: var(--hero2-color);
}
.resume-tab-list-single-item:last-child > .content > .right {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .resume-tab-list-single-item:first-child > .content > .left {
    border-top: 1px solid var(--ran-color);
  }
  .resume-tab-list-single-item:last-child > .content > .left {
    border-bottom: 1px solid var(--ran-color);
  }
}
.resume-tab-list-single-item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 992px) {
  .resume-tab-list-single-item .content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.resume-tab-list-single-item .left {
  width: 100%;
  position: relative;
  border: 1px solid var(--ran-color);
  padding: 25px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .resume-tab-list-single-item .left {
    border-left: 1px solid var(--ran-color);
    border-right: 1px solid var(--ran-color);
    border-top: none;
    border-bottom: none;
    padding: 125px 30px 125px 170px;
    margin-right: 80px;
    width: 300px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .resume-tab-list-single-item .left {
    padding: 103px 30px 105px 170px;
    margin-right: 100px;
  }
}
.resume-tab-list-single-item .left::after {
  position: absolute;
  content: "";
  height: 50px;
  width: 1px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: var(--ran-color);
}
.resume-tab-list-single-item .left .year {
  display: block;
  color: var(--title-large);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
}
.resume-tab-list-single-item .right {
  margin-bottom: 60px;
  width: 100%;
}
@media (min-width: 992px) {
  .resume-tab-list-single-item .right {
    width: calc(100% - 400px);
    margin-bottom: 35px;
  }
}
.resume-tab-list-single-item .right .title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text2-color);
}
.resume-tab-list-single-item .right .title2{
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text2-color);
}
.resume-tab-list-single-item .right .institute-name {
  color: var(--text2-color);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}
.resume-tab-list-single-item .right p {
  margin-top: 25px;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 0;
  color: var(--text2-color);
  font-weight: 600;
}
.resume-tab-list-single-item .right .content{
  margin-top: 25px;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 0;
  color: var(--text2-color);
  font-weight: 400;
}
/*==============================
    RESUME END
   ===============================*/

/*==============================
    PROJECT-PAGE START
   ===============================*/
.project-section {
  background-color: var(--primary-color);
}
.project-section .project-box-single-item {
  margin-bottom: 30px;
}

.project-section .item {
  display: none;
  margin-bottom: 30px;
}
.project-btn-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  justify-content: center;
}
.project-btn-wrapper .g-0 {
  gap: 0;
}
.project-btn-wrapper .btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--project-btn-wrapper) none repeat scroll 0 0;
  color: var(--text-color);
  border: medium none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 10px 20px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: 'Aclonica', sans-serif;;
  gap: 20px;
  --arrow-hover-move-x: -110%;
}
.project-btn-wrapper .btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: #ffffff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.project-btn-wrapper .big-circle-btn {
  height: 148px;
  width: 148px;
  justify-content: center;
  font-size: 46px;
  white-space: normal;
}
@media (max-width: 1399px) {
  .project-btn-wrapper .big-circle-btn {
    height: 120px;
    width: 120px;
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
 .project-btn-wrapper .big-circle-btn {
    height: 100px;
    width: 100px;
    font-size: 30px;
  }
}
.project-btn-wrapper .big-circle-btn.style2 {
  font-size: 14px;
}
/*==============================
    PROJECT-PAGE END
   ===============================*/
/*==============================
    CONTACT END
   ===============================*/
.contact-section {
  background-color: var(--primary-color);
}
.gmap-box {
  height: 400px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .gmap-box {
    height: 500px;
  }
}
@media (min-width: 1200px) {
  .gmap-box {
    height: 600px;
  }
}
.gmap-box iframe {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .contact-sidebar-wapper {
    position: absolute;
    bottom: calc(0% + 400px);
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .contact-sidebar-wapper {
    bottom: calc(0% + 260px);
  }
}
.contact-sidebar {
  background: var(--hero-color);
  padding: 50px 30px 50px 30px;
  margin-top: 60px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .contact-sidebar {
    padding: 80px 60px 80px 60px;
  }
}
@media (min-width: 992px) {
  .contact-sidebar {
    margin-bottom: 80px;
    margin-top: 0;
  }
}
.contact-sidebar .title {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 45px;
}
@media (min-width: 768px) {
  .contact-sidebar .title {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .contact-sidebar .title {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .contact-sidebar .title {
    font-size: 38px;
  }
}
.contact-sidebar .contact-sidebar-single-box {
  padding: 30px 35px 30px 35px;
  border: 2px solid var(--ran-color);
  background: var(--primary-color);
  margin-bottom: 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.contact-sidebar .contact-sidebar-single-box:last-child {
  margin-bottom: 0;
}
.contact-sidebar .contact-sidebar-single-box .title-text {
  font-size: 15px;
  color: var(--text2-color);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
.contact-sidebar .contact-sidebar-single-box .link,
.contact-sidebar .contact-sidebar-single-box .text {
  color: var(--text2-color);
  font-family: "Barlow Condensed", sans-serif;
}
.contact-form-wrapper .content {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .contact-form-wrapper .content {
    margin-bottom: 60px;
  }
}
.contact-form-wrapper .content .title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  margin-top: 30px;
  color: var(--title-large);
  margin-bottom: 35px;
}
@media (min-width: 576px) {
  .contact-form-wrapper .content .title {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .contact-form-wrapper .content .title {
    font-size: 45px;
  }
}
@media (min-width: 992px) {
  .contact-form-wrapper .content .title {
    font-size: 55px;
  }
}
@media (min-width: 1200px) {
  .contact-form-wrapper .content .title {
    font-size: 65px;
  }
}
.sidebar-widget-single-area {
  background: var(--hero-color);
  padding: 40px 40px 40px 40px;
  margin-bottom: 50px;
  border: 2px solid var(--ran-color);
}
@media (min-width: 768px) {
  .sidebar-widget-single-area {
    padding: 60px 50px 75px 50px;
  }
}
@media (min-width: 1200px) {
  .sidebar-widget-single-area {
    margin-bottom: 80px;
  }
}
.sidebar-widget-single-area:last-child {
  margin-bottom: 0;
}
.sidebar-widget-single-area .title {
  font-size: 34px;
  color: var(--text2-color);
  font-weight: 600;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .sidebar-widget-single-area .title {
    font-size: 40px;
    margin-bottom: 45px;
  }
}
@media (min-width: 992px) {
  .sidebar-widget-single-area .title {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .sidebar-widget-single-area .title {
    font-size: 48px;
  }
}

.default-form-group input,
.default-form-group textarea {
  background: var(--hero-color);
  padding: 12px 20px;
  border: 1px solid var(--ran-color);
  color: var(--text2-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* .default-form-group input:focus,
.default-form-group textarea:focus {
  border-color: var(--);
} */
@media (min-width: 576px) {
  .default-form-group input,
  .default-form-group textarea {
    padding: 20px 25px;
  }
}
.default-form-group textarea {
  min-height: 180px;
}
@media (min-width: 768px) {
  .default-form-group textarea {
    min-height: 240px;
  }
}
.default-form-group .btn {
  margin-top: 20px;
}
/*==============================
    CONTACT END
   ===============================*/
