@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #103150;
  --secondary-color: #fe5c36;
  --opt-color: #f9c108;
  --dark-color: #000000;
  --gray-color: #f6f6f6;
  --white-color: #ffffff;
}

/* --------------------------------------------------------
                    Global Style
-------------------------------------------------------- */

body {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-color);
  line-height: 1.6;
  font-family: "Lexend Deca", sans-serif;
}

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

a {
  text-decoration: none;
  -webkit-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list{
    list-style:disc;
    padding-left:18px;
}

h1 {
  font-size: 55px;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 600;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* ------Color---------- */

.primary-text {
  color: var(--primary-color) !important;
}

.secondary-text{
  color: var(--secondary-color) !important;  
}

.bg-primary{
    background-color:var(--primary-color) !important;
}

.bg-gray{
    background-color:var(--gray-color);
}

/* ---------Buttons----------- */

button,
.btn {
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 14px 30px;
}

.btn-primary,
.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary,
.btn-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  box-shadow: 0 5px 20px rgba(254, 92, 54, 0.3);
}

.btn-opt,
.btn-opt:hover {
  color: var(--white-color);
  background-color: var(--opt-color);
  border-color: var(--opt-color);
}

.btn-opt:hover {
  box-shadow: 0 5px 20px rgba(249, 193, 8, 0.3);
}

.btn-whatsapp,
.btn-whatsapp:hover{
    color:var(--white-color);
    background-color:#25D366 ;
}
.btn-whatsapp:hover{
     box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* ---------------------------------------------------
                    Miscellaneous
--------------------------------------------------- */
.block {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 40px;
}

figure{
    margin-bottom:0;
}

.link {
  position: relative;
  display: inline-block;
  color: #828282;
  font-size: 14px;
  padding-right: 10px;
}

.link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background-color: var(--opt-color);
  border-radius: 50%;
  -webkit-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

.link span {
  position: relative;
}

.link .icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  color: var(--white-color);
  margin-right: 10px;
}

.link:hover {
  color: var(--white-color);
}

.link:hover:before {
  width: 100%;
  border-radius: 6px;
}

/* -------------------------
Form
------------------------- */

.form-control,
.form-select {
  height: 50px;
  border-radius: 8px;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

/* -------------------------
Slick Slider
------------------------- */

.slick-next,
.slick-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

.slick-next:hover,
.slick-prev:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.slick-prev:before,
.slick-next:before {
  font-family: "Fontawesome";
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-dots li {
  width: auto;
  height: auto;
}

.slick-dots li button:before {
  font-size: 12px;
  line-height: 22px;
  width: 20px;
  height: 5px;
}

.slick-dots li button {
  width: 20px;
  height: 20px;
  background-color: #f2f2f2;
  border-radius: 15px;
}

.slick-dots li button:before {
  opacity: 0;
  color: transparent;
}

.slick-dots li.slick-active button:before {
  color: var(--secondary-color);
}

/* ---------------------------------------------------
                    Header
--------------------------------------------------- */

/* ----------Top Header---------- */

header .top-header {
  color: var(--white-color);
  font-size: 14px;
  background-color: var(--primary-color);
  padding: 8px 0;
}

header .top-header a,
header .top-header svg,
header .top-header i {
  color: var(--white-color);
}

header .top-header a:hover {
  color: var(--secondary-color);
}

/* ----------Main Header---------- */

.fixed-header .main-header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background-color:var(--white-color);
	z-index:999;
}

.main-header .navbar-nav {
  background-color: var(--gray-color);
  margin-right: 40px;
  border-radius: 35px;
}

.main-header .navbar-nav li a {
  display: inline-block;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 25px !important;
  border-radius: 35px;
}

.main-header .navbar-nav li a:hover,
.main-header .navbar-nav li.current-menu-item a  {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.banner-img .mask {
  -webkit-mask-image: url(../img/banner-img-shape.svg);
  mask-image: url(../img/banner-img-shape.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.navbar-toggler{
  color: var(--primary-color);
  font-size: 24px;
  border: none;
}

.navbar-toggler:focus{
  box-shadow: none;
}

/* ---------------------------------------------------
                    Banner Section
--------------------------------------------------- */

.banner-section {
  padding-top: 80px;
  overflow: hidden;
}

.banner-slider-item .banner-img .mask img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.banner-slider-item .banner-content p {
  font-size: 18px;
}

.banner-slider-item .banner-content .banner-btn {
  margin-top: 50px;
}

.banner-slider .slick-dots {
  bottom: 50%;
  right: -46%;
  transform: rotate(90deg);
}

/* ---------------------------------------------------
                    Features Section
--------------------------------------------------- */

.feature-section {
  position: relative;
}


.features-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--white-color);
  padding: 50px;
  border: 1px solid #eee;
  aspect-ratio: 1/1;
}

a.feature-item {
  color: var(--dark-color);
}

.feature-item:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.feature-item .icon {
  margin-bottom: 30px;
}

.envelope {
  position: absolute;
  top: 50px;
  right: 30px;
  width: 60px;
	animation-name: bounce-4;
        animation-timing-function: ease;
	animation-duration: 3s;
        animation-iteration-count: infinite;
}

.spinner {
  position: absolute;
  bottom: 21%;
  opacity: 0.15;
  width: 90px;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ---------------------------------------------------
                    Why Choose Us Section
--------------------------------------------------- */

.why-choose-us-section .card,
.business-partner-section .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.08);
  -webkit-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

.why-choose-us-section .card:hover,
.business-partner-section .card:hover {
  transform: translateY(-10px);
}

.why-choose-us-section .card .card-body,
.business-partner-section .card .card-body {
  padding: 40px 30px;
}

.why-choose-us-section .card .card-body .icon,
.business-partner-section .card .card-body .icon {
  margin-bottom: 30px;
}

/* ---------------------------------------------------
                    Flexible Section
--------------------------------------------------- */

.flexible-section {
  color: var(--white-color);
  background-color: var(--primary-color);
}

.flexible-section .section-head {
  margin-bottom: 60px;
}

.model-item {
  margin-bottom: 65px;
}

.model-item:last-child {
  margin-bottom: 0;
}

.model-item .title {
  position: relative;
  margin-bottom: 30px;
}

.model-item .title h4 {
  position: relative;
  font-size: 28px;
  font-weight: 700;
}

.model-item .title span {
  position: absolute;
  top: -50px;
  left: 10px;
  font-size: 80px;
  font-weight: 600;
  color: var(--opt-color);
}

/* ---------------------------------------------------
                    Sticky Social Media
--------------------------------------------------- */

.sticky-social-media-wrap {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
}

.sticky-social-media-wrap p {
  position: relative;
  color: #787878;
  transform: rotate(90deg);
  margin-bottom: 0;
}

.sticky-social-media-wrap p:before {
  content: "";
  position: absolute;
  top: 12px;
  left: -40px;
  height: 1px;
  width: 30px;
  background-color: var(--secondary-color);
  animation: line 2s infinite alternate linear;
}

.sticky-social-media-wrap .si-wrap {
  margin-top: 30px;
}

.sticky-social-media-wrap .si-wrap a {
  display: block;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.sticky-social-media-wrap .si-wrap a:hover {
  color: var(--secondary-color);
}

@keyframes line {
  0% {
    width: 8px;
  }

  100% {
    width: 30px;
  }
}

/* ---------------------------------------------------
                    Testimonials Section
--------------------------------------------------- */

.testimonials-section{
  background-color: var(--gray-color);
}

.testimonials-section .lft {
  padding: 0 10px 0 7%;
}

.testimonials-slider {
  margin-left: -60px;
}

.testimonials-slider .slick-list {
  padding: 30px 0;
  margin: 0 30px;
}
.testimonials-item {
  background-color: var(--white-color);
  padding: 70px 40px;
  margin: 0 30px;
  border-radius: 15px;
  box-shadow: 0px 0 30px 0px rgba(0, 0, 0, 0.08);
}

.client-content {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 70px;
}

.client-detail {
  display: inline-flex;
  align-items: center;
}

.client-detail .client-img {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}

.client-detail .client-info h3 {
  font-size: 20px;
  margin: 0;
}

.client-detail .client-info p {
  color: #828282;
  font-size: 14px;
  margin: 0;
}

.testimonials-item .quote {
  float: right;
}

/* --------------Play Button-------------- */

.testimonials-video {
  position: relative;
  height: 100%;
}

.testimonials-video .video-thumb,
.testimonials-video .video-thumb img {
  width: 100%;
  height: 100%;
}

.testimonials-video .video-thumb img {
  object-fit: cover;
}

.testimonials-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.play-btn-wrap {
  position: absolute;
  top: 50%;
  left: auto;
  right: auto;
  width: 100%;
  transform: translateY(-50%);
}
.play-btn {
  width: 80px;
  height: 80px;
  background: radial-gradient(
    var(--secondary-color) 60%,
    rgba(255, 255, 255, 1) 62%
  );
  border-radius: 50%;
  position: relative;
  display: block;
  margin: 0 auto;
  box-shadow: 0px 0px 25px 3px var(--opt-color);
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  z-index: 100;
  -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.75);
  top: -25%;
  left: -25%;
  background: var(--opt-color);
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75),
      0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}

/* ---------------------------------------------------
                    Blog Section
--------------------------------------------------- */

.blog-section {
  position: relative;
  color: var(--white-color);
}

.blog-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: var(--primary-color);
}

.blog-card {
  position: relative;
}

.blog-card:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--opt-color);
  -webkit-transition: ease all 0.4s;
  -o-transition: ease all 0.4s;
  -moz-transition: ease all 0.4s;
  transition: ease all 0.4s;
}

.blog-card:hover:before {
  height: 5px;
}

.blog-card .blog-card-body {
  padding: 10px 30px 40px 30px;
  background-color: var(--white-color);
  border: 1px solid #f3f3f3;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.blog-card .blog-card-img img {
  width: 100%;
  aspect-ratio: 4/2.8;
  object-fit: cover;
}

.blog-card .post-date {
  font-size: 14px;
  color: #aaa;
}

.blog-card .blog-card-body .title {
  font-weight: 600;
  margin-bottom: 40px;
}

.blog-card .blog-card-body .title a {
  color: var(--dark-color);
}

.blog-card .blog-card-body .title a:hover {
  color: var(--secondary-color);
}

.meta-tags {
    display: flex;
    gap: 10px;
    color: var(--secondary-color);
}

.sidebar{
	background-color:var(--gray-color);
	padding:20px;
	margin-bottom:20px;
	border-radius:8px;
}

.sidebar:last-child{
	margin-bottom:0;
}

.related-blog-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.related-blog-item:last-child{
	padding-bottom:0;
	margin-bottom:0;
	border-bottom:none;
}

.related-blog-item .img {
    float: left;
    margin-right: 15px;
    margin-bottom:0;
}

.related-blog-item .img img {
    width: 90px;
    object-fit: cover;
}

.related-blog-item .content {
    display: block;
    overflow: hidden;
}

.related-blog-item .content h4 {
    color: var(--dark-color);
    font-size: 16px;
    font-family: var(--secondary-font);
}

/* ---------------------------------------------------
                    FAQ Section
--------------------------------------------------- */

.accordion-item {
  padding: 30px 0;
  border: none;
  border-bottom: 1px solid #dedede;
  border-radius: 0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header p {
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.accordion-button {
  font-weight: 500;
  padding: 0;
}

.accordion-button:not(.collapsed) {
  color: var(--dark-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion-body {
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 30px;
  margin-top: 20px;
  border-radius: 15px;
}

.accordion-button::after {
  content: "\f0d7";
  font-size: 18px;
  font-family: "Fontawesome";
  background-image: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
}

  /* ---------------------------------------------------
                    Footer Section
--------------------------------------------------- */
footer {
    position: relative;
    color: var(--white-color);
    font-size: 15px;
    background-color: var(--primary-color);
}

.footer-shape{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.06;
}

.footer-shape img{
  opacity: 0.06;
}

footer a{
    color: var(--white-color) !important;
}

footer a:hover{
    color: var(--opt-color) !important;
}

.footer-top{
    padding:60px 0 50px 0;
    overflow: hidden;
}

footer h6{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links{
    line-height: 2.3;
}

.footer-links li a{
    display: block;
    -webkit-transition: ease all 0.4s;
    -o-transition: ease all 0.4s;
    -moz-transition: ease all 0.4s;
    transition: ease all 0.4s;
}

.footer-links li a:hover{
transform: translateX(5px);
}

.contact h5 svg{
    color: var(--opt-color);
    margin-right: 10px;
}

.contact-item{
    margin-bottom: 30px;
}

.contact-item:last-child{
    margin-bottom: 0;
}

.contact-item.si-wrap a{
font-weight: 900;
margin-right: 25px;
}

.contact-item.si-wrap svg{
  color: var(--white-color);
  margin-right: 0;
}

.contact-item.si-wrap svg:hover{
  color: var(--opt-color);
}

.footer-btm{
    padding: 20px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

  /* ---------------------------------------------------
                    Page Header
--------------------------------------------------- */

.page-header{
  position: relative;
  display: flex;
  align-items: center;
  padding:100px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header:before{
  content: "";
  position: absolute;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 49, 80, 0.8);
}

.page-header h1{
  color: var(--white-color);
}

.page-header .breadcrumb-item a{
  color: var(--white-color);
}

.page-header .breadcrumb-item.active{
  color: var(--opt-color);
}

.breadcrumb-item+.breadcrumb-item::before{
  color: var(--white-color);
}

/* ---------------------------------------------------
                    About Page
--------------------------------------------------- */

/* -------BUsiness Partner Section-------- */

.business-partner-section{
  background-color: var(--gray-color);
}


/* ---------------------------------------------------
                    Feature Detail Page
--------------------------------------------------- */

.feature-detail .list .icon{
  float: left;
}
.feature-detail .list .icon svg{
  color: var(--secondary-color);
  font-size: 22px;
  margin: 2px 15px 0 0;
}

.feature-detail .list .content{
  display: block;
  overflow: hidden;
}

.feature-detail .list .content h4{
  font-weight: 700;
}

/* ---------------------------------------------------
                    Blog   Detail Page
--------------------------------------------------- */

.blog-entry-title{
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

.blog-hero{
  margin-bottom: 10px;
}

.blog-hero img{
  width: 100%;
}

.metatag{
  font-size: 14px;
  margin-bottom: 20px;
}

.metatag div{
  display: inline-block;
  margin-right: 20px;
}

.metatag svg{
  color: var(--secondary-color);
  margin-right: 5px;
}

.blog-content ul li{
  position: relative;
  padding-left: 25px;
}

.blog-content ul li:before{
  content: '\f00c';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Fontawesome';
  color: var(--secondary-color);
}

.share-blog{
  margin-top: 50px;
}

.share-blog a{
  display: inline-block;
  width:35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: var(--opt-color);
  text-align: center;
}

.sidebar-title{
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.recent-post-item{
  margin-bottom: 30px;
}

.recent-post-item  .img{
  float: left;
  margin-right: 15px;
}

.recent-post-item  .img img{
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.recent-post-item .content{
  display: block;
  overflow: hidden;
}

.recent-post-item .post-date{
  font-size: 14px;
  color: var(--opt-color);
}

.recent-post-item  h5 a{
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 700;
}

.start-free-form{
  color: var(--white-color);
  padding: 50px 30px;
  background-color: var(--primary-color);
  border-radius: 15px;
}



[data-name="package"] .wpcf7-list-item{
  margin:0 7px 0 0;
}

[data-name="package"] .wpcf7-list-item .wpcf7-list-item-label{
  color: var(--dark-color);
  font-size: 12px;
  padding: 10px 20px;
  background-color: var(--white-color);
  border-radius: 35px;
}

[data-name="package"] .wpcf7-list-item input{
  display: none;
}


[data-name="package"] .wpcf7-list-item input:checked + .wpcf7-list-item-label,
.start-free-form .btn:hover{
	display:block;
	margin:10px 0;
  color: var(--white-color);
  background-color: var(--opt-color);
  border-color: var(--opt-color);
}
/* ---------------------------------------------------
                    Contact Page
--------------------------------------------------- */

.contact-wrap{
  position: relative;
  padding:80px 50px;
  margin: 0 0 -150px 0;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 10px 10px 40px 0px rgba(0, 53, 133, 0.10);
}

.contact-item svg{
  color: var(--secondary-color);
  margin-right: 10px;
}

.contact-item p{
  display: inline-block;
}

.contact-item p,
.contact-item a{
  color: #666666;
}

.map-wrap iframe{
width: 100%;
height: 600px;
}

/* Contact Form 7 */

.wpcf7-response-output{
	position:fixed;
	bottom:20px;
	right:20px;
	color:#fff;
	max-width:250px;
	z-index:999999;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	background:#ffb900;
}

.wpcf7 form.sent .wpcf7-response-output{
	background:#46b450;
}

/*-----Service Detail------*/

.intro-section figure img{
    width:100%;
    aspect-ratio:420 / 280;
    object-fit:cover;
    border-radius:15px;
}

.checklist li{
        position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.checklist li:last-child{
    margin-bottom:0;
}
.checklist li:before{
    content:"\f058";
    position:absolute;
    top:0;
    left:0;
    font-family:'Fontawesome';
    color:var(--secondary-color);
}

.process-step{
    position:relative;
    padding:45px 30px 30px 30px;
    color:var(--white-color);
    height:100%;
    background-color:var(--primary-color);
    border-radius:15px;
}

.process-step .number{
position: absolute;
    top: -25px;
    left: 30px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
    background-color: var(--opt-color);
    border-radius: 50%;
}

.process-step p{
    margin-bottom:0;
}

.feature-img-wrap{
        position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    padding: 0;
}
.feature-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.feature-section ul{
    column-count:2;
}

.coverage-loaction ul{
    column-count:3;
}

.coverage-loaction ul li{
            position: relative;
            font-weight:400;
    padding-left: 25px;
    margin-bottom: 14px;
}
.coverage-loaction ul li:last-child{
    margin-bottom: 0;
}
.coverage-loaction ul li:before{
        content:"\f3c5";
    position:absolute;
    top:0;
    left:0;
    font-family:'Fontawesome';
    color:var(--secondary-color);
}

.coverage-loaction ul li a{
	color:var(--dark-color);
}


.coverage-loaction ul li a:hover{
	color:var(--secondary-color);
}

.single-detail-content ul,
.single-detail-content ol{
	padding-left:15px;
}

.single-detail-content ul{
	list-style:disc;
}

.single-detail-content ol{
	list-style:decimal;
}

.single-detail-content h2{
	font-size:24px;
}

.single-detail-content h3{
	font-size:22px;
}

.single-detail-content h4{
	font-size:20px;
}

.single-detail-content h5{
	font-size:18px;
}

.sticky-section{
	position:sticky;
	top:20px;
}

/* Scroll To Top */
/* #Progress
================================================== */

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f176";
  text-align: center;
  line-height: 46px;
  color: rgba(0, 0, 0, 0.3); /* --- Pijl kleur --- */
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:hover::after {
  color: var(--primary-color);
}

.progress-wrap svg path {
  fill: var(--white-color);
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary-color); /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
}


/* Scroll Bar */
body::-webkit-scrollbar {
  width: 6px;
  background-color: var(--primary-color);
  border-radius: 6px;
}
 
 
body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 6px;
}

    @keyframes bounce-4 {
        0%   { transform: scale(1,1)    translateY(0); }
        10%  { transform: scale(1.1,.9) translateY(0); }
        30%  { transform: scale(.9,1.1) translateY(-30px); }
        50%  { transform: scale(1,1)    translateY(0); }
        100% { transform: scale(1,1)    translateY(0); }
    }