/********** Template CSS **********/
:root {
    --primary: #ed5ab0;
    --light: #FFF5F3;
    --dark: #103741;
    --theme-color: #E8063C;
    --theme-color2: #FFD600;
    --title-color: #000000;
    --body-color: #444444;
    --vs-secondary-color: #490D59;
    --smoke-color: #F0F6FA;
    --light-color: #f8f9fa;
    --black-color: #000000;
    --white-color: #ffffff;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #E0E0E0;
    --bg-color: #ed5ab0;
    --bg-color-sc: #3d56f0;
    --text-color-sc: #3d56f0;
    --bg-color-ho: #3d56f0;
    --text-color: #ed5ab0;
    --section-space: 100px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
      --border-info-color: rgba(0, 0, 0, 0.08);
        --transition: all .5s ease-in-out;
          --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-sofia {
  color:var(--primary);
  border:1px var(--primary);
}

.btn-sofialand {
    color: #fff;
  background-color: var(--vs-secondary-color);
  border-color: var(--vs-secondary-color); 
}

.btn-top {
  color: #fff;
  background-color: var(--vs-secondary-color);
  border-color: var(--vs-secondary-color);
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}

.py-100 {
    padding:100px 0;
}


/*** Navbar ***/

.navbar img {
  width:150px;
}
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../images/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

/*.header-carousel::after,*/
/*.page-header::after {*/
/*    height: 19px;*/
/*    top: auto;*/
/*    bottom: 0;*/
/*    background: url(../images/bg-header-bottom.png) center center repeat-x;*/
/*}*/



.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../images/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    
    .header-carousel::after, .page-header::after {
        bottom:-2px;
    }
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 200px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        /*height: 100%;*/
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
    
    .sewa-section .content-box h1 {
        font-size:30px !important;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}



.about-img img {
    transition: .5s
}

.about-img img:hover {
    background: var(--primary) !important
}

/* about page */

/********* banner part css end ********/
.about_section .img_section {
    position: relative;
    min-height: 490px;
    z-index: 2;
  }
  
  @media (max-width: 576px) {
    .about_section .img_section {
      min-height: 410px;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767.98px) {
navbar img {
          width:100px;
      }
    .about_section .img_section {
      min-height: 510px;
    }
  }
  .about_section .img_section .about_img_1 {
    position: absolute;
    bottom: 35px;
    z-index: -1;
    left: 30px;
  }
  @media (max-width: 767.98px) {
    .about_section .img_section .about_img_1 {
      bottom: 52px;
      left: 30px;
      max-width: 250px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .about_section .img_section .about_img_1 {
      left: 30px;
      max-width: 300px;
    }
  }
  .about_section .img_section .about_img_1 {
    position: absolute;
    bottom: 35px;
    z-index: -1;
    left: 30px;
  }
  @media (max-width: 767.98px) {
    .about_section .img_section .about_img_1 {
      bottom: 62px;
      left: 30px;
      max-width: 250px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .about_section .img_section .about_img_1 {
      left: 30px;
      max-width: 300px;
    }
  }
  @media (max-width: 576px) {
    .about_section .img_section .about_img_2 {
      max-width: 235px;
    }
  }
  .about_section .img_section .about_img_3 {
    position: absolute;
    top: 80px;
    right: 36px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }
  @media (max-width: 576px) {
    .about_section .img_section .about_img_3 {
      max-width: 250px;
      right: 0;
    }
  }
  @media (min-width: 1200px) {
    .about_section .about_section_content {
      padding-top: 20px;
    }
  }
  .about_section .about_section_content p {
    font-size: 15px;
  }
  .about_section .about_section_content .list_content {
    margin-top: 25px;
  }
  @media (max-width: 991px) {
    .about_section .about_section_content .list_content {
      margin-top: 15px;
    }
  }
  .about_section .about_section_content .list_content ul {
    margin: 0;
    padding: 0;
  }
  .about_section .about_section_content .list_content ul li {
    list-style: none;
    color: #32355d;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
  }
  @media (max-width: 991px) {
    .about_section .about_section_content .list_content ul li {
      padding: 5px 0;
      padding-left: 30px;
    }
  }
  .about_section .about_section_content .list_content ul li i {
    color: #fe4b7b;
    margin-right: 7px;
    position: absolute;
    left: 0;
    top: 12px;
  }
  @media (max-width: 991px) {
    .about_section .about_section_content .list_content ul li i {
      top: 9px;
    }
  }
  .about_section .about_section_content .btn_2 {
    margin-top: 40px;
    padding: 21px 44px;
  }

.s4_about_section {
    z-index: 1;
    position: relative;
  }
  .s4_about_section .about_section_content h5 {
    font-size: 18px;
    color: #fe4b7b;
    font-weight: 700;
    margin-bottom: 7px;
  }
  .s4_about_section .img_section {
    min-height: auto;
  }
  @media (max-width: 767.98px) {
    .s4_about_section .img_section {
      margin-top: 30px;
    }
  }
  .s4_about_section .about_img_7 {
    position: absolute;
    right: -40px;
    top: 0px;
    z-index: -1;
  }
  @media (max-width: 767.98px) {
    .s4_about_section .about_img_7 {
      right: 0;
      top: 20px;
    }
  }
  .s4_about_section .about_img_5 {
    position: absolute;
    left: 9px;
    bottom: 2px;
    z-index: -1;
  }
  @media (max-width: 767.98px) {
    .s4_about_section .about_img_5 {
      left: 0;
    }
  }
  .s4_about_section .about_img_6 {
    margin-left: 30px;
    border-radius: 10px;
    z-index: -1;
  }
  @media (max-width: 767.98px) {
    .s4_about_section .about_img_6 {
      margin-left: 0;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .s4_about_section .about_img_6 {
      margin-left: 15px;
    }
  }
  .s4_about_section [class^=about_page_animation_], .s4_about_section [class*=about_page_animation_] {
    position: absolute;
    z-index: -1;
  }
  .s4_about_section .about_page_animation_1 {
    left: 7%;
    top: 12%;
  }
  @media (max-width: 767.98px) {
    .s4_about_section .about_page_animation_1 img {
      max-width: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .s4_about_section .about_page_animation_1 img {
      max-width: 60px;
    }
  }
  .s4_about_section .about_page_animation_2 {
    left: 7%;
    bottom: 20%;
  }
  .s4_about_section .about_page_animation_2 img {
    max-width: 50px;
  }
  @media (max-width: 767.98px) {
    .s4_about_section .about_page_animation_2 img {
      max-width: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .s4_about_section .about_page_animation_2 img {
      max-width: 60px;
    }
  }
  .s4_about_section .about_page_animation_3 {
    right: 7%;
    top: 12%;
  }
  @media (max-width: 767.98px) {
    .s4_about_section .about_page_animation_3 img {
      max-width: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .s4_about_section .about_page_animation_3 img {
      max-width: 60px;
    }
  }
  .s4_about_section .about_page_animation_4 {
    right: 8%;
    bottom: 8%;
  }
  @media (max-width: 767.98px) {
    .s4_about_section .about_page_animation_4 img {
      max-width: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .s4_about_section .about_page_animation_4 img {
      max-width: 60px;
    }
  }

  .title_overlay_effect {
    display: inline;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FDCEDB), to(#FDCEDB));
    background-image: -o-linear-gradient(#FDCEDB, #FDCEDB);
    background-image: linear-gradient(#FDCEDB, #FDCEDB);
    background-position: 0 70%;
    background-repeat: no-repeat;
    background-size: 0 35%;
  }
  .title_overlay_effect.text-white {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#0b1c39), to(#0b1c39));
    background-image: -o-linear-gradient(#0b1c39, #0b1c39);
    background-image: linear-gradient(#0b1c39, #0b1c39);
  }
  .title_overlay_effect.is_show {
    background-size: 100% 35%;
    -webkit-transition: background-size 2s cubic-bezier(0.71, 0.09, 0.74, 0.99), color 1s;
    -o-transition: background-size 2s cubic-bezier(0.71, 0.09, 0.74, 0.99), color 1s;
    transition: background-size 2s cubic-bezier(0.71, 0.09, 0.74, 0.99), color 1s;
  }
  
  
  
@media only screen and (min-width: 768px) and (max-width: 991.98px) {

  }
  .welcome-text [class^=about_page_animation_], .welcome-text [class*=about_page_animation_] {
    position: absolute;
    z-index: -1;
  }
  .welcome-text .about_page_animation_1 {
    left: 7%;
    top: 12%;
  }
  @media (max-width: 767.98px) {
    .welcome-text .about_page_animation_1 img {
      max-width: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .welcome-text .about_page_animation_1 img {
      max-width: 60px;
    }
  }
  .welcome-text .about_page_animation_2 {
    left: 7%;
    bottom: 20%;
  }
  .welcome-text .about_page_animation_2 img {
    max-width: 50px;
  }
  @media (max-width: 767.98px) {
    .welcome-text .about_page_animation_2 img {
      max-width: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .welcome-text .about_page_animation_2 img {
      max-width: 60px;
    }
  }
  .welcome-text .about_page_animation_3 {
    right: 7%;
    top: 12%;
  }
  @media (max-width: 767.98px) {
    .welcome-text .about_page_animation_3 img {
      max-width: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .welcome-text .about_page_animation_3 img {
      max-width: 60px;
    }
  }
  .welcome-text .about_page_animation_4 {
    right: 8%;
    bottom: 8%;
  }
  @media (max-width: 767.98px) {
    .welcome-text .about_page_animation_4 img {
      max-width: 50px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .welcome-text .about_page_animation_4 img {
      max-width: 60px;
    }
  }

/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


.footer_section {
    padding: 120px 0 30px;
    position: relative;
    background-color: #32355d;
    z-index: 1;
    overflow: hidden;
  }

  .footer_logo img {
    width:200px;
  }
  @media (max-width: 767.98px) {
    .footer_section {
      padding: 40px 0 37px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .footer_section {
      padding: 40px 0 37px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .footer_section {
      padding: 100px 0 37px;
    }
  }
  @media (max-width: 991px) {
    .footer_section .single_footer_widget {
      margin-top: 30px;
    }
  }
  .footer_section .single_footer_widget .footer_logo {
    margin-bottom: 10px;
    display: inline-block;
  }
  @media (max-width: 767.98px) {
    .footer_section .single_footer_widget .footer_logo {
      margin-bottom: 15px;
    }
  }
  .footer_section .single_footer_widget h4 {
    font-size: 21px;
    margin-bottom: 32px;
    color: #fff;
    font-weight: 700;
  }
  @media (max-width: 991px) {
    .footer_section .single_footer_widget h4 {
      margin-bottom: 12px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .footer_section .single_footer_widget h4 {
      margin-bottom: 20px;
    }
  }
  .footer_section .single_footer_widget p {
    color: #fff;
  }
  .footer_section .single_footer_widget ul {
    padding: 0;
    margin: 0;
  }
  .footer_section .single_footer_widget ul li {
    list-style: none;
  }
  .footer_section .single_footer_widget ul li a {
    color: #fff;
    margin: 6px 0;
    display: inline-block;
    font-weight: 500;
  }
  @media (max-width: 991px) {
    .footer_section .single_footer_widget ul li a {
      margin: 4px 0;
    }
  }
  .footer_section .single_footer_widget ul li a:hover {
    color: #fe4b7b;
  }
  .footer_section .copyright_part {
    margin-top: 67px;
    border-top: 1px solid #44476b;
    padding-top: 25px;
  }
  .footer_section .copyright_part p {
    color: #fff;
  }
  .footer_section .copyright_part p a {
    color: #fe4b7b;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
  }
  @media (max-width: 767.98px) {
    .footer_section .copyright_part p {
      text-align: center;
    }
  }
  .footer_section [class^=footer_animation_], .footer_section [class*=footer_animation_] {
    position: absolute;
    z-index: -1;
  }
  .footer_section .footer_animation_1 {
    left: 5%;
    top: 30%;
  }
  @media (max-width: 991px) {
    .footer_section .footer_animation_1 img {
      max-width: 80px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .footer_section .footer_animation_1 img {
      max-width: 80px;
    }
  }
  .footer_section .footer_animation_2 {
    left: 42%;
    top: 30%;
  }
  @media (max-width: 991px) {
    .footer_section .footer_animation_2 img {
      max-width: 80px;
    }
  }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .footer_section .footer_animation_2 img {
      max-width: 80px;
    }
  }
  .footer_section .footer_animation_3 {
    right: 0;
    bottom: 0;
  }
  @media (max-width: 991px) {
    .footer_section .footer_animation_3 img {
      max-width: 80%;
    }
  }
  .footer_section .social_icon {
    margin-top: 30px;
  }
  .footer_section .social_icon a {
    margin-right: 14px;
    display: inline-block;
  }
  @media (max-width: 767.98px) {
    .footer_section .social_icon a {
      margin-right: 14px;
    }
  }
  .footer_section .social_icon a:hover {
    opacity: 0.5;
  }
  .footer_section .social_icon a:last-child {
    margin-right: 0;
  }
  
  .copyright-pink {
      color:var(--primary);
      font-weight:500;
  }
  
  .home_two_footer {
    padding: 100px 0 350px;
    background-color: #e3f7fc;
    position: relative;
    z-index: 1;
    margin-top: -20px;
  }
  @media (max-width: 767.98px) {
    .home_two_footer {
      padding: 70px 0 200px;
    }
  }
  .home_two_footer .footer_bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    right: 0;
  }
  .home_two_footer .footer_bg img {
    width: 100%;
  }
  .home_two_footer .footer_animation_3 {
    right: 0;
    bottom: 90px;
    left: 0;
    margin: 0 auto;
    text-align: center;
  }
  @media (max-width: 767.98px) {
    .home_two_footer .footer_animation_3 {
      max-width: 250px;
    }
  }
  .home_two_footer .single_footer_widget p {
    color: #515374;
    font-size: 15px;
  }
  .home_two_footer .single_footer_widget h4 {
    color: #32355d;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 22px;
  }
  .home_two_footer .single_footer_widget ul {
    padding: 0;
    margin: 0;
  }
  .home_two_footer .single_footer_widget ul li a {
    color: #515374;
  }
  @media (max-width: 991px) {
    .home_two_footer .single_footer_widget ul li a {
      margin: 4px 0;
    }
  }
  .home_two_footer .single_footer_widget ul li a:hover {
    color: #fe4b7b;
  }
  .home_two_footer .single_footer_widget .input-group {
    margin-top: 27px;
  }
  .home_two_footer .single_footer_widget .input-group ::placeholder {
    color: #9ba2b5;
    font-size: 14px;
  }
  .home_two_footer .single_footer_widget .input-group .form-control:focus::placeholder {
    color: #0b1c39;
  }
  .home_two_footer .single_footer_widget .input-group .form-control {
    padding: 14px 25px;
    height: auto;
    border: 1px solid #f2f1ef;
  }
  .home_two_footer .single_footer_widget .input-group .input-group-text {
    padding: 18px 19px;
    border: 1px solid #f2f1ef;
    border-left: 0px solid transparent;
    background-color: #fff;
    color: #56a4a1;
    cursor: pointer;
  }
  
  .instagram_img {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .instagram_img a {
    display: inline-block;
    flex: 29% 0 0;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  .instagram_img a:hover {
    opacity: 0.6;
  }
  @media (max-width: 576px) {
    .instagram_img a {
      flex: 18% 0 0;
    }
  }
  @media only screen and (min-width: 576px) and (max-width: 767.98px) {
    .instagram_img a {
      flex: 15% 0 0;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .instagram_img a {
      flex: 15% 0 0;
    }
  }
  

  .copyright {
    padding: 10px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.copyright a {
    color: #FFFFFF;
}




.copyright a:hover {
    color: var(--primary) !important;
}

.bg-copyright {
    
      
        background: transparent;
        /* background-color: var(--bg-color); */
        position: relative;
        z-index: 99;
        margin-top: -50px;
        text-align: center;
}


@media(min-width: 1399px) {
    .vs-wave-shape {
        margin-bottom: -40px;
    }
}

@media(max-width: 767px) {
    .vs-wave-shape {
        overflow: hidden;
    }
    .vs-wave-shape svg {
        height: 150px;
    }
}

.vs-wave-shape .svg {
    width: 100%;
}

.vs-wave-shape .wave-path {
    fill: #e3f7fc;
}

.vs-wave-shape.style2 .wave-path {
    fill: var(--smoke-color);
}

.bg-footer {
    background-color: var(--vs-secondary-color);
}

.sec-bubble {
    width: 36px;
    height: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px
}

.sec-bubble .bubble {
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--theme-color2);
    border-radius: 50%
}

.sec-bubble .bubble:nth-child(1) {
    top: 0;
    left: 50%;
    z-index: 3;
    margin-left: -10px
}

.sec-bubble .bubble:nth-child(2) {
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: var(--theme-color)
}

.sec-bubble .bubble:nth-child(3) {
    left: 0;
    bottom: 0;
    z-index: 2;
    background-color: var(--vs-secondary-color)
}


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



.team-style2:nth-child(10) {
  display:none;
}



.team-style1 .team-img,
.team-style2 .team-img {
    overflow: hidden;
    border-radius: 30px;
    position: relative
}

.team-style1 .team-img:before,
.team-style2 .team-img:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    right: 5px;
    border: 2px solid var(--theme-color);
    z-index: 1;
    border-radius: inherit;
    transform: scale(0.95);
    transition: all ease .4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.team-style1 .team-img img,
.team-style2 .team-img img {
    transform: scale(1.001);
    transition: all ease .4s
}

.team-style1:hover .team-img:before,
.team-style2:hover .team-img:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.team-style1:hover .team-img img,
.team-style2:hover .team-img img {
    transform: scale(1.05)
}


.team-style2 {
    position: relative;
    margin-bottom: 30px
}

.team-style2 .team-img img {
    width: 100%
}

.team-style2 .team-name {
    font-size: 26px;
    text-align: center;
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 20px;
    color: var(--title-color);
    background-color: var(--white-color);
    border-radius: 9999px;
    margin: 0;
    padding: 13px 0;
    line-height: 1;
    transition: all ease .4s
}

.team-style2:hover .team-name {
    background-color: var(--theme-color)
}

.team-style2:hover .team-name a {
    color: var(--white-color)
}

.team-style2:hover .team-name:hover {
    background-color: var(--vs-secondary-color)
}

/*---------------------------------------------------------------
14. HEADER (top part of page)
---------------------------------------------------------------*/

.site-header {
    position: relative;
    z-index: 99999;
}
.site-header ul,
.site-header ol {
    margin-bottom: 0;
}
/*without top bar*/
.extra-nav {
    float: right;
    padding: 5px 0;
    position: relative;
    z-index: 9;
}
.extra-nav .btn-link{
	font-size:15px;
}
.extra-nav .extra-cell {
    display: inline-block;
    margin-left: 10px;
}
@media only screen and (max-width: 480px) {
    .extra-nav {
        margin: 0 1px 0 0;
        text-align: right;
    }
}
.new-page{
	padding: 2px 5px;
	font-size: 10px;
	background: #ff0000;
	color: #fff;
	border-radius: 4px;
	vertical-align: middle;
	margin-left: 2px;
}
.new-page.menu-new {
    font-size: 10px;
    /* position: absolute; */
    right: 20px;
    top: 10px;
    padding: 2px 5px;
    line-height: 10px;
	margin-left:10px;
}
@media only screen and (max-width: 1200px) {
	.new-page.menu-new{
		display:none;
	}
}
/* map page header*/

#header-part.fix-map-header {
    height: 90px;
}
#header-part.fix-map-header .main-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}
@media only screen and (max-width: 480px) {
    #header-part.fix-map-header {
        height: 160px;
    }
}
/*---------------------------------------------------------------
15. PAGE TOP BAR (left & right content)
---------------------------------------------------------------*/
.top-bar {
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #fff;
    padding: 11px 0;
}
.dlab-topbar-left {
    float: left;
}
.dlab-topbar-right {
    float: right;
}
.dlab-topbar-center,
.dlab-topbar-left,
.dlab-topbar-right {
    padding-left: 15px;
    padding-right: 15px;
}
.dlab-topbar-left ul,
.dlab-topbar-right ul{
	list-style:none;
	margin:0;
	padding:0;
}
.dlab-topbar-left ul li,
.dlab-topbar-right ul li{
	display: inline-block;
    font-family: 'Lora', serif;
    
    font-weight: 700;
}
.dlab-topbar-left ul li{
	padding-right:15px;
}
.dlab-topbar-left ul li a,
.dlab-topbar-right ul li a{
	color:#444444;
}
.topbar-social li a{
	padding: 0 6px; 
}
@media only screen and (max-width: 991px) {
	.dlab-topbar-left,
	.dlab-topbar-right {
		padding-left: 0;
		padding-right: 0;
		width:100%;
		text-align:center;		
	}
}
@media only screen and (max-width: 767px) {
    .top-bar [class*="col-"] {
        width: 100%;
        text-align: right;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .top-bar [class*="col-"]:last-child {
        border-bottom: none;
    }
	.top-bar {
		padding:5px 0;
		/*display:none;*/
	}
	.dlab-topbar-center,
	.dlab-topbar-left, .dlab-topbar-right {
		display:black;
		width:100%;
		text-align:left !important;
		padding:3px 15px;
		padding-left: 15px;
		padding-right: 15px;
		font-size:8px;
	}
	.dlab-topbar-left ul li{
		padding:0 5px;
	}

}


/*=== >eamil-phone (left) ===*/

.e-p-bx li {
    display: inline;
    font-size: 14px;
    padding-right: 10px;
}
.e-p-bx li a {
    color: #FFF;
}
.e-p-bx li i {
    margin-right: 10px;
    vertical-align: middle;
}
/*=== >social-links (right) ===*/
.social-bx,
.login-bx {
    margin: 0 0 0 15px;
    float: right;
}
.social-bx li,
.login-bx li {
    font-size: 12px;
    margin: 0;
    position: relative;
}
.social-bx li {
    padding-left: 1px;
    padding-right: 1px;
}
.social-bx li a,
.login-bx li a {
    color: #ffffff;
}
.social-bx li i,
.login-bx li i {
    vertical-align: baseline;
    margin: 0 5px 0 0;
}
.social-bx li span,
.login-bx li span {
    vertical-align: baseline;
    margin: 0 2px 0;
    font-size: 8px;
}
.login-bx li ul {
    top: 25px;
    left: auto;
    right: 0;
    border: none;
    padding: 0;
}
.login-bx li ul li {
    border-bottom: 1px solid #F7F7F7;
}
.login-bx li ul li a {
    color: #767676;
    padding: 9px 15px;
}
.arrow-up-border:before,
.arrow-up:after {
    position: absolute;
    display: inline-block;
    content: '';
}
.arrow-up-border:before {
    top: -7px;
    right: 19px;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #F00;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
}
.arrow-up:after {
    top: -6px;
    right: 20px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
    border-left: 6px solid transparent;
}
.arrow-left:before {
    position: absolute;
    top: -7px;
    left: 9px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}
.arrow-left:after {
    position: absolute;
    top: -6px;
    left: 10px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
    border-left: 6px solid transparent;
    content: '';
}

 
.table-style1 {
    background-color: var(--vs-secondary-color);
    padding: 1px 155px 85px 145px;
    border-radius: 274px 30px 274px 274px;
    text-align: center;
    margin-top: calc(var(--icon-size, 102px)/2)
}

.table-style1 .table-icon {
    display: block;
    width: var(--icon-size, 102px);
    height: var(--icon-size, 102px);
    line-height: var(--icon-size, 102px);
    font-size: var(--icon-font-size, 50px);
    background-color: var(--primary);
    color: var(--white-color);
    text-align: center;
    border-radius: 50%;
    margin: calc(var(--icon-size, 102px)/-2) auto 40px auto
}

.table-style1 .sec-title {
    color: var(--white-color);
    margin-bottom: 5px
}

.table-style1 .sec-text {
    color: var(--white-color);
    margin-bottom: 20px
}

.table-style1 .tr {
    display: flex;
    justify-content: space-between;
    background-color: var(--white-color);
    margin-bottom: 5px;
    border-radius: 9999px;
    padding: 11px 0;
    transition: all ease .4s
}

.table-style1 .tr:hover {
    background-color: var(--theme-color2)
}

.table-style1 .th,
.table-style1 .td {
    flex: 1;
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 600;
    color: var(--title-color);
    line-height: 1.5
}

.table-style1 .th {
    border-right: 1px solid #a7a7a7
}

@media(max-width: 991px) {
    .table-style1 {
        padding: 1px 40px 60px 40px;
        border-radius: 30px
    }
}

@media(max-width: 767px) {
    .table-style1 {
        padding: 1px 15px 60px 15px;
        border-radius: 30px
    }
    .table-style1 .table-icon {
        margin-bottom: 30px
    }
    .table-style1 .th,
    .table-style1 .td {
        font-size: 14px
    }
    }


    
.gallery-style1 .gallery-img {
    overflow: hidden;
    position: relative;
    border-radius: 30px
}

.gallery-style1 .gallery-img img {
    width: 100%;
    transform: scale(1.001);
    transition: all ease .4s
}

.gallery-style1 .gallery-img:after,
.gallery-style1 .gallery-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 40%;
    background-color: rgba(237,	90,	176, .9);
    opacity: 0;
    visibility: hidden;
    transition: all ease .6s;
    z-index: 1
}

.gallery-style1 .gallery-img:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0
}

.gallery-style1 .gallery-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--theme-color2);
    color: var(--title-color);
    border-radius: 50%;
    font-size: 24px;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    visibility: hidden
}

.gallery-style1 .gallery-btn:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--vs-secondary-color);
    border-radius: inherit;
    z-index: -1;
    transition: all ease .4s;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden
}

.gallery-style1 .gallery-btn:hover {
    color: var(--white-color)
}

.gallery-style1 .gallery-btn:hover:before {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.gallery-style1:hover .gallery-img:after,
.gallery-style1:hover .gallery-img:before {
    opacity: 1;
    visibility: visible;
    height: 100%
}

.gallery-style1:hover .gallery-img img {
    transform: scale(1.15)
}

.gallery-style1:hover .gallery-btn {
    opacity: 1;
    visibility: visible
}

.gallery-style1.radius-2 .gallery-img {
    border-radius: 150px 150px 30px 30px
}

.gallery-style1.radius-3 .gallery-img {
    border-radius: 30px 30px 150px 150px
}

.gallery-style1.layout2 .gallery-btn {
    background-color: rgba(0, 0, 0, 0);
    color: var(--white-color);
    font-size: 30px
}


.vs-carousel .owl-nav .owl-prev,
.vs-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
    position:absolute;
    top:50%;
}

.vs-carousel .owl-nav {
    display:flex;
    display:contents;
    position:relative;
}
 .vs-carousel .owl-nav .owl-next {
     position:absolute;
     right:0;
 }
 
 .vs-carousel .owl-nav .owl-prev {
      position:absolute;
     left:0;
 }

/*=======  CONTACT   =======*/


.contact-part .contact-info .info-box {
  padding: 50px 45px;
  background-color: var(--smoke-color);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -ms-grid-columns: 40px 1fr;
  grid-template-columns: 40px 1fr;
  margin-bottom: 30px;
  grid-column-gap: 30px;
border-radius: 45px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-part .contact-info .info-box {
      padding: 50px 30px;
      -ms-grid-columns: 30px 1fr;
      grid-template-columns: 30px 1fr;
  }
}

@media (max-width: 767px) {
  .contact-part .contact-info .info-box {
      display: block;
      padding: 30px 20px;
  }
}

.contact-part .contact-info .info-box .icon {
  font-size: 40px;
  color: #D8128B;
}

@media (max-width: 767px) {
  .contact-part .contact-info .info-box .icon {
      margin-bottom: 15px;
  }
  
    .navbar img {
        width: 100px !important;
    }
}

.contact-part .contact-info .info-box .desc h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-part .contact-maps {
  
  width: 100%;
}

.contact-part .contact-form {
  background-color: #fff;
  padding: 100px;
border-radius: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-part .contact-form {
      padding: 50px;
  }
}

@media (max-width: 767px) {
  .contact-part .contact-form {
      padding: 50px;
  }
}

.contact-part .contact-form .main-btn.btn-filled {
  -webkit-box-shadow: none;
  box-shadow: none;
}




/** sewa-section **/
.centred {
    text-align: center;
}
.sewa-section{
  position: relative;
  display: block;
  width: 100%;
  background: #fff;
  padding: 95px 0px 100px 0px;
}

.sewa-section .content-box h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 11px;
}

.sewa-section .content-box h1{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color: var(--vs-secondary-color);
  font-weight: 900;
  margin-bottom: 25px;
}

.sewa-section .content-box .text{
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #444444;
  font-weight: 600;
  margin-bottom: 36px;
}

.sewa-section .anim-icon .icon-1 {
  background: url(../images/icons/anim-icon-9.png);
  width: 158px;
  height: 115px;
  top: -45px;
  left: 180px;
  background-repeat: no-repeat;
}

.sewa-section .anim-icon .icon-2 {
  background: url(../images/icons/anim-icon-10.png);
  width: 149px;
  height: 106px;
  top: 220px;
  right: 260px;
  background-repeat: no-repeat;
}

.parallax-icon {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.parallax-icon .icon-1 {
  left: 110px !important;
  top: 160px !important;
  background: url(../images/icons/parallax-icon-1.png);
  width: 131px;
  height: 86px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-2 {
  left: 30% !important;
  top: 80px !important;
  background: url(../images/icons/parallax-icon-2.png);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-3 {
  left: 27% !important;
  top: 70% !important;
  background: url(../images/icons/parallax-icon-3.png);
  width: 59px;
  height: 63px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-4 {
  left: 40% !important;
  top: 40% !important;
  background: url(../images/icons/parallax-icon-4.png);
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-5 {
  left: 75% !important;
  top: 80px !important;
  background: url(../images/icons/parallax-icon-5.png);
  width: 119px;
  height: 54px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-6 {
  left: 65% !important;
  top: 40% !important;
  background: url(../images/icons/parallax-icon-6.png);
  width: 47px;
  height: 65px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-7 {
  left: 72% !important;
  top: 70% !important;
  background: url(../images/icons/parallax-icon-7.png);
  width: 57px;
  height: 50px;
  background-repeat: no-repeat;
}


.single_fetures_part {
  border-radius: 30px;
  background-color: #0DA2FF;
  position: relative;
  z-index: 1;
  box-shadow: 0px 5px 20px 0px rgba(242, 238, 249, 0.1);
  padding: 35px 40px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .single_fetures_part:hover {
    margin-bottom: 10px;
    margin-top: -10px;
  }
}
@media (max-width: 767.98px) {
  .single_fetures_part {
    padding: 35px 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .single_fetures_part {
    padding: 35px 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .single_fetures_part {
    padding: 35px 20px 40px;
  }
}
.single_fetures_part .single_fetures_icon {
  margin-bottom: 20px;
  /*height: 225px;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.single_fetures_part h4 {
  font-size: 24px;
  margin-top: 39px;
  font-weight: 700;
}
.single_fetures_part h4 a {
  color: #fff;
}
@media (max-width: 991px) {
  .single_fetures_part h4 {
    margin-top: 30px;
  }
}
.single_fetures_part p {
  color: #fff;
  margin-top: 15px;
}
.single_fetures_part.lightblue_bg {
  background-color: #695FFE;
}
.single_fetures_part.pink_bg {
  background-color: var(--primary);
}

.fetures_part {
  background-color: #FCF9F4;
  position: relative;
  z-index: 1;
}
.fetures_part [class^=feature_animation_],
.fetures_part [class*=" feature_animation_"] {
  position: absolute;
  z-index: -1;
}
@media (max-width: 991px) {
  .fetures_part [class^=feature_animation_],
.fetures_part [class*=" feature_animation_"] {
    display: none;
  }
}
.fetures_part .feature_animation_1 {
  left: 10%;
  top: 10%;
}
.fetures_part .feature_animation_2 {
  right: 10%;
  top: 15%;
}
.fetures_part .feature_animation_3 {
  left: 12%;
  bottom: 30%;
}
.fetures_part .feature_animation_4 {
  right: 5%;
  bottom: -5%;
}

.home_two_feture {
  background-color: #fe4b7b;
}
.home_two_feture [class^=feature_animation_],
.home_two_feture [class*=" feature_animation_"] {
  position: absolute;
  z-index: -1;
}

.fetures_part_s3 .single_fetures_part {
  padding: 0 45px 0;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
}

/*================================================
Index 02 Fun Facts Area CSS
=================================================*/
.cta-2 {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-image: url("../images/banner/banner-2-bg.jpg");
  position: relative;
  background-attachment: fixed;
}

/* .cta-2::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(9, 28, 64, 0.95);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
} */

.cta-2 .container {
  position: relative;
  background: #00000091;
  padding: 50px 20px;
  border-radius: 10px;
}

.cta-2 .default-section-title h3 {
  color: #fff !important;
}

.cta-2 .default-section-title p {
  color: #eeeeee;
}

.cta-card-2 {
  position: relative;
  padding-left: 75px;
  margin-top: 25px;
}

.cta-card-2 i {
  width: 60px;
  height: 60px;
  font-size: 35px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--theme-color);
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 5px;
}

.cta-card-2 h2 {
  margin-bottom: 3px;
  color: var(--color-white);
  font-size: 36px;
  font-weight: 700;
}

.cta-card-2 p {
  color: #eeeeee;
}

/*================================================
Default Section Title Area CSS
=================================================*/
.default-section-title span {
  color: var(--theme-color);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
  font-weight: 600;
}

.default-section-title h3 {
  margin-bottom: 15px;
  font-size: 42px;
  font-weight: 800;
}

.default-section-title h3:last-child {
  margin-bottom: 0px;
}

.default-section-title-2 span {
  padding-left: 0;
}

.default-section-title-2 span::before {
  display: none;
}

.default-section-title-middle {
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom:25px;
}


.keunggulan-sewa {
    position: relative;
    /*padding: 120px 0;*/
  
  }
  @media (max-width: 767px) {
    /*.keunggulan-sewa {*/
    /*  padding: 80px 0;*/
    /*}*/
  }
  .keunggulan-sewa__image {
    position: relative;
    z-index: 2;
    padding-bottom: 49px;
  }
  @media (min-width: 1300px) {
    .keunggulan-sewa__image {
      margin-left: -58px;
    }
  }
  @media (max-width: 1199px) {
    .keunggulan-sewa__image {
      padding-left: 60px;
    }
  }
  @media (max-width: 767px) {
    .keunggulan-sewa__image {
      padding-left: 0;
    }
  }
  .keunggulan-sewa__image__shape1 {
    position: absolute;
    left: -15px;
    top: -21px;
  }
  @media (min-width: 1300px) {
    .keunggulan-sewa__image__shape1 {
      left: -60px;
    }
  }
  .keunggulan-sewa__image__shape1 img {
    animation: treeMove 4s linear 0s infinite;
  }
  .keunggulan-sewa__image__one {
    position: relative;
    display: inline-block;
    border-radius: 50%;
  }
  .keunggulan-sewa__image__one img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .keunggulan-sewa__image__one-bottom {
    position: absolute;
    right: -17px;
    bottom: 9px;
    width: 208px;
    height: 164px;
    background-color: var(--vs-secondary-color, #FFAA23);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 208 164"><path d="M206.502 86.6589C211.26 64.7577 204.271 39.8524 191.41 24.2935C149.742 -26.0921 77.0734 9.17969 61.4803 63.812C54.4178 88.5504 63.1158 115.106 43.9172 135.821C32.45 148.171 20.4439 150.879 0 159.224C65.0487 167.81 144.687 170.554 191.485 116.275C197.209 109.617 204.569 95.5973 206.502 86.6589Z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 208 164"><path d="M206.502 86.6589C211.26 64.7577 204.271 39.8524 191.41 24.2935C149.742 -26.0921 77.0734 9.17969 61.4803 63.812C54.4178 88.5504 63.1158 115.106 43.9172 135.821C32.45 148.171 20.4439 150.879 0 159.224C65.0487 167.81 144.687 170.554 191.485 116.275C197.209 109.617 204.569 95.5973 206.502 86.6589Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    animation: zoomBig2 3s linear infinite;
  }
  @media (max-width: 767px) {
    .keunggulan-sewa__image__one-bottom {
      display: none;
    }
  }
  .keunggulan-sewa__image__two {
    max-width: 300px;
    border-radius: 50%;
    width: 100%;
    position: absolute;
    bottom: 7px;
    left: 0;
    overflow: hidden;
    border: 18px solid var(--sofialand-white, #fff);
  }
  @media (min-width: 1280px) {
    .keunggulan-sewa__image__two {
      left: -40px;
    }
  }
  @media (max-width: 767px) {
    .keunggulan-sewa__image__two {
      display: none;
    }
  }
  .keunggulan-sewa__image__two img {
    width: 100%;
  }
  .keunggulan-sewa__image__bg-shape {
    position: absolute;
    left: -15px;
    right: 10px;
    bottom: 0;
    z-index: -1;
  }
  @media (min-width: 1300px) {
    .keunggulan-sewa__image__bg-shape {
      left: -55px;
    }
  }
  .keunggulan-sewa__image__bg-shape img {
    max-width: 100%;
  }
  .keunggulan-sewa__content {
    position: relative;
  }
  @media (min-width: 1200px) {
    .keunggulan-sewa__content {
      padding: 0 12px 0 8px;
    }
  }
  @media (max-width: 1199px) {
    .keunggulan-sewa__content {
      padding: 45px 0 0;
    }
  }
  .keunggulan-sewa__content .sec-title__title {
    margin-top: 0;
  }
  .keunggulan-sewa__content .sec-title {
    padding-bottom: 21px;
  }
  .keunggulan-sewa__content__text {
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 25px;
  }
  .keunggulan-sewa__content .sofialand-btn {
    font-size: 16px;
    padding: 11px 50px;
  }
  .keunggulan-sewa__info {
    position: relative;
    min-height: 80px;
    padding: 0 0 0px 0px;
    margin-bottom: 35px;
    border-bottom: 1px solid #D2D2D2;
  }
  .keunggulan-sewa__info:last-of-type {
    border: none;
    margin-bottom: 12px;
  }


  .keunggulan-sewa__info__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 10px;
  }
  .keunggulan-sewa__info__text {
    font-weight: 700;
    line-height: 30px;
    margin: 0;
  }
  
  
.kegembiraan {
    position: relative;
    /*padding: 120px 0;*/
  
  }
  @media (max-width: 767px) {
    /*.kegembiraan {*/
    /*  padding: 80px 0;*/
    /*}*/
    
    .kegembiraan__image {
        width:auto !important;
    }
  }
  .kegembiraan__image {
    position: relative;
    z-index: 2;
    width:400px;
    padding-bottom: 49px;
  }
  @media (min-width: 1300px) {
    .kegembiraan__image {
         text-align: center;
    position: relative;
    left: 60px;

    }
  }
  @media (max-width: 1199px) {
    .kegembiraan__image {
      padding-left: 60px;
    }
  }
  @media (max-width: 767px) {
    .kegembiraan__image {
      padding-left: 0;
    }
  }
  .kegembiraan__image__shape1 {
    position: absolute;
    left: -15px;
    top: -21px;
  }
  @media (min-width: 1300px) {
    .kegembiraan__image__shape1 {
      left: -60px;
    }
  }
  .kegembiraan__image__shape1 img {
    animation: treeMove 4s linear 0s infinite;
  }
  .kegembiraan__image__one {
    position: relative;
    display: inline-block;
    border-radius: 50%;
  }
  .kegembiraan__image__one img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
  }
  .kegembiraan__image__one-bottom {
    position: absolute;
    right: -17px;
    bottom: 9px;
    width: 208px;
    height: 164px;
    background-color: var(--sofialand-secondary, #FFAA23);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 208 164"><path d="M206.502 86.6589C211.26 64.7577 204.271 39.8524 191.41 24.2935C149.742 -26.0921 77.0734 9.17969 61.4803 63.812C54.4178 88.5504 63.1158 115.106 43.9172 135.821C32.45 148.171 20.4439 150.879 0 159.224C65.0487 167.81 144.687 170.554 191.485 116.275C197.209 109.617 204.569 95.5973 206.502 86.6589Z"/></svg>');
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 208 164"><path d="M206.502 86.6589C211.26 64.7577 204.271 39.8524 191.41 24.2935C149.742 -26.0921 77.0734 9.17969 61.4803 63.812C54.4178 88.5504 63.1158 115.106 43.9172 135.821C32.45 148.171 20.4439 150.879 0 159.224C65.0487 167.81 144.687 170.554 191.485 116.275C197.209 109.617 204.569 95.5973 206.502 86.6589Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    animation: zoomBig2 3s linear infinite;
  }
  @media (max-width: 767px) {
    .kegembiraan__image__one-bottom {
      display: none;
    }
  }
  .kegembiraan__image__two {
    max-width: 300px;
    border-radius: 50%;
    width: 100%;
    position: absolute;
    bottom: 7px;
    left: 0;
    overflow: hidden;
    border: 18px solid var(--sofialand-white, #fff);
  }
  @media (min-width: 1280px) {
    .kegembiraan__image__two {
      left: -40px;
    }
  }
  @media (max-width: 767px) {
    .kegembiraan__image__two {
      display: none;
    }
  }
  .kegembiraan__image__two img {
    width: 100%;
  }
  .kegembiraan__image__bg-shape {
    position: absolute;
    left: -15px;
    right: 10px;
    bottom: 0;
    z-index: -1;
  }
  @media (min-width: 1300px) {
    .kegembiraan__image__bg-shape {
      left: -55px;
    }
  }
  .kegembiraan__image__bg-shape img {
    max-width: 100%;
  }
  .kegembiraan__content {
    position: relative;
  }
  @media (min-width: 1200px) {
    .kegembiraan__content {
      padding: 0 12px 0 8px;
      top:100px;
    }
  }
  @media (max-width: 1199px) {
    .kegembiraan__content {
      padding: 45px 0 0;
    }
  }
  .kegembiraan__content .sec-title__title {
    margin-top: 0;
  }
  .kegembiraan__content .sec-title {
    padding-bottom: 21px;
  }
  .kegembiraan__content__text {
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 25px;
  }
  .kegembiraan__content .sofialand-btn {
    font-size: 16px;
    padding: 11px 50px;
  }
  .kegembiraan__info {
    position: relative;
    min-height: 80px;
    padding: 0 0 10px 20px;
    margin-bottom: 35px;
    border-bottom: 1px solid #D2D2D2;
  }
  .kegembiraan__info:last-of-type {
    border: none;
    margin-bottom: 12px;
  }


  .kegembiraan__info__title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 10px;
  }
  .kegembiraan__info__text {
    font-weight: 700;
    line-height: 30px;
    margin: 0;
  }
  
  
  .cta-two {
  padding: 120px 0 140px;
  position: relative;
}
@media (max-width: 767px) {
  .cta-two {
    padding: 80px 0 100px;
  }
}
.cta-two__inner {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 73px;
  background-color: var(--primary);
}
.cta-two__shape1 {
  position: absolute;
  left: 31%;
  top: 83px;
}
@media (max-width: 991px) {
  .cta-two__shape1 {
    left: 45%;
  }
}
.cta-two__shape1 img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.cta-two__shape2 {
  position: absolute;
  right: 54px;
  bottom: 40px;
}
.cta-two__shape2 img {
  animation: zoomBig2 3s linear infinite;
}
.cta-two__thumb {
  position: relative;
}
.cta-two__thumb__one {
  position: relative;
  z-index: 2;
  margin: 13px 0 13px 95px;
}
@media (max-width: 1199px) {
  .cta-two__thumb__one {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .cta-two__thumb__one {
    margin-left: 30px;
  }
}
.cta-two__thumb__one img {
  max-width: 100%;
  height: auto;
}
.cta-two__thumb__two {
  position: absolute;
  left: 0;
  bottom: 0;
}
.cta-two__thumb__two img {
  max-width: 100%;
}
.cta-two__content {
  position: relative;
  padding: 81px 85px ;
}
@media (max-width: 1199px) {
  .cta-two__content {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .cta-two__content {
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .cta-two__content {
    padding: 40px;
  }
}
.cta-two__title {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  color: var(--sofialand-white, #fff);
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .cta-two__title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}
.cta-two__text {
  color: var(--sofialand-gray, #FAF5F2);
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .cta-two__text {
    margin-bottom: 25px;
  }
}
.cta-two .sofialand-btn {
  font-size: 16px;
  padding: 11px 50px;
  background-color: transparent;
  color:#fff;
  border:1px solid #fff;
  border-radius:50px;
}

.cta-two .sofialand-btn:hover {
    background:#fff;
    color:var(--primary);
}
  
  
  
  


/*====================
33. Blog css 
======================*/

.blog-area{
  position: relative;
}

.blog-item{
  padding: 20px;
  margin-bottom: 25px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-item-img{
  border-radius: 12px;
  overflow: hidden;
}

.blog-item-img img {
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-out 0s;
  max-width:100%;
}

.blog-item:hover .blog-item-img img{
  transform: scale(1.1);
} 

.blog-item-info {
  padding: 15px 0 0 0;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 18px;
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color:  var(--dark);
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: var(--primary);
}

.blog-item-meta a:hover {
  color: var(--primary);
}

.blog-item-meta ul li a {
    color:var(--dark) !important;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-item-info .theme-btn {
  margin-top: 15px;
}

.blog-item-info h4 a {
  color:  var(--dark);
}

.blog-item-info h4 a:hover {
  color: var(--theme-color);
}




/*========================
34. Blog single css
==========================*/

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 15px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.blog-meta-left {
    margin-left:-30px;
}

.blog-meta-right {
    margin-right:40px;
}
.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li{
  font-weight: 500;
  list-style:none;
}


.blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-meta a {
  color: var(--body-text-color);
  font-weight: 500;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-details-title {
  font-size: 34px;
  color:  var(--dark);
}

.blockqoute {
  background: var(--light-color);
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color:  var(--dark);
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color:  var(--dark);
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: var(--light-color);
  color:  var(--dark);
  padding: 6px 18px;
  border-radius: 10px;
  transition: var(--transition);
}

.blog-details-tags ul a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
}

.blog-author-img img {
  border-radius: 15px;
}

.author-name {
  font-size: 22px;
  color: var(--theme-color);
  margin: 8px 0;
}

.author-info {
  padding: 0 20px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.author-social a:hover {
  color: var(--color-white);
  background: var(--theme-color);
}


.recent-post-bio a {
    color:var(--dark);
}




@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }
  
  .blog-meta-right {
      margin-right:0;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .author-info{
    margin-top: 25px;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-single img{
    margin: 0 auto 20px auto;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}



/*=======================
35. Widget sidebar css
=========================*/

.widget {
  background: var(--light-color);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 25px;
  color:  var(--dark);
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid var(--vs-secondary-color);
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid var(--vs-secondary-color);
  bottom: 0;
  left: 22px;
}

.widget .search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 12px;
  box-shadow: none;
}

.widget .search-form {
  position: relative;
}

.widget .search-form .form-control:focus {
  border-color: var(--theme-color);
}

.widget .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  transition: var(--transition);
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  max-width: 120px;
  border-radius: 8px;
  height:auto;
}

.widget .recent-post-bio h6 {
  font-size: 18px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: var(--primary);
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: var(--theme-color);
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 31px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

.widget .tag-list a {
  background: var(--color-white);
  color:  var(--dark);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 10px;
  display: inline-block;
  transition: var(--transition);
}

.widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-white);
}
.image-play .icon-wrap {
    z-index: 6;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: #dc3545b0;
    border-radius: 50%;
}
.image-play .icon-wrap > span {
    font-size: 40px;
    color: #fff;
    position: absolute;
    -webkit-transform: translate(-35%, -50%);
    -ms-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
    top: 50%;
    left: 50%;
}
.img-border img, .img-border-sm img {
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
}
.image-play {
    position: relative;
}

@media (max-width: 768px){
    .mfp-iframe-scaler iframe {
        top: -70% !important;
        width: 100% !important;
        height: 501px !important;
    }
}

