﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
  padding: 0;
  margin: 0;
}
input::-ms-reveal,
input::-ms-clear {
  display: none;
}
html {
  font-size: 10px;
  padding: 0;
  margin: 0;
}
body {
  font-family: "Quicksand", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
  font-size: 10px;
}
h1,
h2,
h3,
h4,
h5,
p,
div,
span,
ul,
li {
  font-family: "Quicksand", sans-serif !important;
  display: block;
}
.d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.d-flex-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.d-flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.container {
  width: 96%;
  max-width: 1250px;
  margin: auto;
}
.common-headersec {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 100;
  transition: all 0.2s ease-in-out;
}
.common-headersec .container {
  width: 96%;
  margin: auto;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #cccccc;
  transition: all 0.2s ease-in-out;
}
.common-headersec .logo {
  /* width: 125px; */
}
.common-headersec .logo img {
  width: 100%;
}
.common-headersec .centersec {
  width: 100%;
  max-width: 400px;
}

.common-headersec .right-sec {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

.res-btn {
  margin-left: 30px;
}

.common-headersec .right-sec button {
  margin-left: 1rem;
}

.common-headersec .right-nav {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.common-headersec .right-nav .item {
  list-style-type: none;
}

.common-headersec .right-nav .item a {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #27293b;
  font-weight: 500;
  padding: 5px;
  position: relative;
  text-decoration: none;
  transition: all 0.5s ease;
  cursor: pointer;
}

.common-headersec .right-nav .item a:hover {
  color: #01b2d6;
}

.common-headersec .right-nav .item .active {
  color: #01b2d6;
  cursor: default;
}

.toggle-menu-btn,
.close-menu-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .right-sec {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .right-sec button,
  .right-sec .btn-primary {
    margin: 0;
  }
  .toggle-menu-btn {
    background: none;
    border: none;
    font-size: 30px; 
    cursor: pointer;
    margin-top: 10px;
    color: #27293b;
  }
  .menu-items {
    display: none;
    flex-direction: column;
    gap: 10px;
  }
  .menu-items.show {
    display: flex;
  }
  .slide-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%; 
    height: 100vh; 
    background-color: #ec577a;
    z-index: 9999;
    flex-direction: column;
    padding-left: 20px;
    transition: right 0.3s ease-in-out;
    padding-top: 30px;
  }
  .slide-menu.show {
    display: flex;
    right: 0;
  }
  .slide-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 15px 20px;
    text-align: left;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  .slide-menu a:hover {
    background-color: #01b2d6;
  }
  .close-menu-btn {
    background: none;
    border: none;
    font-size: 40px;
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }
  .right-sec {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
  }
  .btn-primary {
    margin-bottom: 0;
  }
  .toggle-menu-btn,
  .close-menu-btn {
    display: block;
  }
  .grid{
    display: grid;
  }
  .margin-t-50{
    margin-top: 50px;
  }
  .res-btn {
    margin: 0;
  }
}

.burger {
  border-radius: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
  transition: all 0.5s ease;
  position: fixed;
  top: 16px;
  right: 10px;
  cursor: pointer;
}

.burger-strip {
  transition: all 0.5s ease;
}
.strip div {
  height: 1px;
  border-radius: 0;
  border-bottom: solid 2px #01b2d6;
  margin: 5px;
  transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 20px;
}

.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background-color: #01b2d6;
  color: #fff;
  border-radius: 0.3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  height: 4rem;
  font-family: "Quicksand", sans-serif !important;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  border-radius: 4px;
}

.btn-primary:hover {
  background-color: #ec577a;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.btn-primary.sign {
  background: #fff;
  color: #27293b;
  margin-right: 1rem;
}

.btn-primary.sign:hover {
  background-color: #ec577a;
  color: #fff;
}
.landing-pagewrapper .pagesec1 {
  padding: 2rem 0 4rem 0;
}
.landing-pagewrapper .container {
  width: 96%;
  max-width: 1250px;
  margin: auto;
}
.landing-pagewrapper .pagesec1 .container {
}
.landing-pagewrapper .pagesec1 .title-area {
  margin-bottom: 5rem;
}
.gallery-wrapper {
  margin: 2rem;
}

.warpper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tabs {
  width: 100%;
  max-width: 650px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tab {
  background: #fff;
  border: solid 1px #27293b;
  border-radius: 6px;
  margin: 0 1rem;
  height: 43px;
  min-width: 90px;
  padding-right: 10px;
  padding-left: 10px;
  display: flex;
  flex: 1 0 auto;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin: 0 10px;
  padding-top: 0;
  padding-bottom: 0;
  outline: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  z-index: 1;
  color: #27293b;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}
.tab:hover {
  background: #ec577a;
  color: #fff;
  border: solid 1px #ec577a;
}
.panels {
  background: #fffffff6;
  min-height: 200px;
  width: 100%;
  overflow: hidden;
  padding-top: 4rem;
}
.panel {
  display: none;
  animation: fadein 0.8s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.panel-title {
  font-size: 1.5em;
  font-weight: bold;
}
.radio {
  display: none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel,
#four:checked ~ .panels #four-panel {
  display: block;
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab,
#four:checked ~ .tabs #four-tab {
  background: #ec577a;
  color: #fff;
  border: solid 1px #ec577a;
}

.gallery-wrapper .gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px 5px;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-row-end: 3;
  align-content: start;
  max-width: 700px;
  margin: 0 auto;
  transition: all 150ms linear;
}
.gallery-wrapper .gallery .before,
.gallery-wrapper .gallery .after {
  width: 110px;
  height: 40px;
  font-size: 12px;
  font-family: "Quicksand", sans-serif !important;
  color: #fff;
  font-weight: 400;
  font-weight: 500;
  border-radius: 50px;
  background: #27293b6e;
  position: absolute;
  z-index: 50;
  bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.gallery-wrapper .gallery .before {
  left: 10%;
}
.gallery-wrapper .gallery .after {
  right: 10%;
}
.gallery input[type="radio"] {
  display: none;
}
.gallery label {
  position: relative;
  display: block;
  padding-bottom: 60%;
  margin: 5px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100px;
  height: 30px;
  border-radius: 10px;
  margin: 45px 5px 0 5px;
}

.gallery label:before {
  border: 1px solid #fff;
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -5px;
  top: -5px;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.gallery img {
  display: none;
  grid-column-start: 1;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 2;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  transition: all 150ms linear;
  margin: auto;
}

.gallery input[name="select"]:checked + label + img {
  display: block;
}

.gallery input[name="select"]:checked + label:before {
  border: 1px solid #01b2d6;
  opacity: 1;
}

.gallery input[name="select2"]:checked + label + img {
  display: block;
}

.gallery input[name="select2"]:checked + label:before {
  border: 1px solid #01b2d6;
  opacity: 1;
}

.gallery input[name="select3"]:checked + label + img {
  display: block;
}

.gallery input[name="select3"]:checked + label:before {
  border: 1px solid #01b2d6;
  opacity: 1;
}
.gallery input[name="select4"]:checked + label + img {
  display: block;
}

.gallery input[name="select4"]:checked + label:before {
  border: 1px solid #01b2d6;
  opacity: 1;
}
.landing-pagewrapper .title-area {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}
.landing-pagewrapper .title-area::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background: #cccccc;
  z-index: 1;
}
.landing-pagewrapper .title-area .title {
  font-size: 4.2rem;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  font-weight: 600;
  background: #fff;
  padding: 0.5rem 5rem;
  position: relative;
  z-index: 10;
  display: inline-block;
}

.landing-pagewrapper .title-area .title::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: #cccccc;
  
}
.landing-pagewrapper .title-area .title::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  background: #cccccc;
}
.landing-pagewrapper .pagesec2 {
  width: 100%;
}
.landing-pagewrapper .pagesec2 .gallery-sec {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7rem 0;
}
.landing-pagewrapper .pagesec2 .gallery-sec .box {
  text-align: center;
  width: 25%;
  background: #fff;
  border: solid 1px #fff;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.landing-pagewrapper .pagesec2 .gallery-sec .box .icon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.landing-pagewrapper .pagesec2 .gallery-sec .box .icon img {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.landing-pagewrapper .pagesec2 .gallery-sec .box .title {
  font-size: 2rem;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.landing-pagewrapper .dec {
  color: #707070;
  font-size: 1.4rem;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 400;
}
.landing-pagewrapper .pagesec2 .gallery-sec .box:hover {
  border: dashed 1px #d0eef1;
  background: #f6fbfc;
  box-shadow: 0px 33px 50px #1616160d;
}
.landing-pagewrapper .pagesec2 .gallery-sec .box:hover .title {
  /* color: #FFF; */
}
.landing-pagewrapper .pagesec2 .gallery-sec .box:hover .dec {
  /* color: #FFF; */
}
.landing-pagewrapper .pagesec2 .gallery-sec .box:hover .icon img {
  transform: skewY(-29deg);
}

.landing-pagewrapper .pagesec3 .gallerysec {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0 2rem 0;
}
.landing-pagewrapper .pagesec3 .gallerysec .column {
  height: auto;
  position: relative;
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box {
  width: 100%;
  height: auto;
  text-align: center;
  max-width: 315px;
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  padding: 15px;
  border-radius: 15px;
  border: solid 1px #fff;
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box .icon {
  width: 100%;
  height: 60px;
  text-align: center;
  display: block;
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box .icon img {
  max-width: 100%;
  display: inline-block;
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box .title {
  font-size: 2rem;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.landing-pagewrapper .pagesec3 .gallerysec .column:nth-child(2) {
  max-width: 500px;
}

.landing-pagewrapper .pagesec3 .gallerysec .column .pic1 {
  max-width: 100%;
  display: block;
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box .star1 {
  width: 13px;
  position: absolute;
  left: 0;
  top: -5rem;
  z-index: 10;
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box .star2 {
  width: 13px;
  position: absolute;
  right: 0;
  bottom: -5rem;
  z-index: 10;
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box:hover {
  border: dashed 1px #d0eef1;
  background: #f6fbfc;
  box-shadow: 0px 33px 50px #1616160d;
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box:hover .title {
  /* color: #fff;*/
}
.landing-pagewrapper .pagesec3 .gallerysec .column .box:hover .dec {
  /* color: #fff; */
}
.common-footersec {
  background: #f8feff;
  border-top: solid 1px #e8efe4;
}
.common-footersec .container {
  width: 96%;
  margin: auto;
}
.common-footersec .sec1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7rem 0;
}
.common-footersec .sec1 .leftsec {
  width: 315px;
}
.common-footersec .sec1 .logo {
  width: 100%;
  margin-bottom: 2rem;
}
.common-footersec .sec1 .logo img {
  width: 100%;
  max-width: 125px;
}
.common-footersec .sec1 .leftsec .dec {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #887d79;
  font-weight: 500;
}
.common-footersec .sec1 .leftsec .title {
  font-size: 1.7rem;
  line-height: 1.5;
  color: #000000;
  font-weight: 500;
  margin-top: 2rem;
  display: block;
}
.common-footersec .sec1 .leftsec .text {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #666666;
}
.common-footersec .sec1 .leftsec .social-sec {
  margin-top: 2rem;
}
.common-footersec .sec1 .leftsec .social-sec ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.common-footersec .sec1 .leftsec .social-sec ul li {
  cursor: pointer;
}
.common-footersec .sec1 .right-sec {
  width: calc(100% - 415px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.common-footersec .sec1 .right-sec .column {
  width: 22%;
}
.common-footersec .sec1 .right-sec .column ul {
  padding: 0;
  margin: 0;
}
.common-footersec .sec1 .right-sec .column ul li {
  list-style-type: none;
  padding: 0;
  margin: 0 0 15px 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #887d79;
  font-weight: 500;
}
.common-footersec .sec1 .right-sec .column ul li a {
  color: #887d79;
  cursor: pointer;
  text-decoration: none;
}
.common-footersec .sec1 .right-sec .column ul li a:hover {
  color: #01b2d6;
}
.common-footersec .sec1 .right-sec .column ul li .title {
  color: #01b2d6;
  font-weight: 600;
}
.common-footersec .sec2 {
  width: 100%;
  height: auto;
  padding: 5rem 0;
  border-top: solid 1px #e8efe4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common-footersec .sec2 .text {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #666666;
}
.common-footersec .sec2 ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.common-footersec .sec2 ul li {
  list-style-type: none;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #666666;
  position: relative;
  margin-left: 1rem;
}
.common-footersec .sec2 ul li a {
  color: #666666;
  cursor: pointer;
  text-decoration: none;
}

.landing-pagewrapper .pagesec4 .testimonialsec {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0;
}
.landing-pagewrapper .pagesec4 .testimonialsec .leftsec {
  width: 470px;
}
.landing-pagewrapper .pagesec4 .testimonialsec .title {
  font-size: 2rem;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}
.landing-pagewrapper .pagesec4 .testimonialsec .rightsec {
  width: calc(100% - 600px);
  position: relative;
}
.landing-pagewrapper .pagesec4 .testimonialsec .outerbox {
  width: 100%;
  height: 315px;
  box-shadow: 0px 0 0 rgba(22, 22, 22, 0.0509803922);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.landing-pagewrapper .pagesec4 .testimonialsec .outerbox .contentarea {
  padding: 20px;
  background: rgba(40, 96, 137, 0.031372549);
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.landing-pagewrapper .pagesec4 .testimonialsec .outerbox .contentarea:hover {
  box-shadow: 0px 5px 10px #1616160d;
  background: #fff;
}
.landing-pagewrapper .pagesec4 .testimonialsec .outerbox .profile {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.landing-pagewrapper .pagesec4 .testimonialsec .outerbox .profile img {
  width: 100%;
  height: auto;
  display: block;
}
.landing-pagewrapper .pagesec4 .testimonialsec .detailsec {
  width: 100%;
  height: 14rem;
  overflow: auto;
}
.landing-pagewrapper .pagesec4 .testimonialsec .bottomsec {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  border-top: solid 1px #cccccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-pagewrapper .pagesec4 .testimonialsec .bottomsec .left-sec {
  width: calc(100% - 160px);
}
.landing-pagewrapper .pagesec4 .testimonialsec .bottomsec .name {
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  font-weight: 600;
  display: block;
}
.landing-pagewrapper .pagesec4 .testimonialsec .bottomsec .role {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif !important;
  color: #ec577a;
  font-weight: 400;
  display: block;
}
.landing-pagewrapper .pagesec4 .testimonialsec .bottomsec .starsec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-pagewrapper .pagesec4 .testimonialsec .bottomsec .starsec .star-icon {
  color: #f7f8fb;
  font-size: 24px;
  vertical-align: middle;
}
.landing-pagewrapper
  .pagesec4
  .testimonialsec
  .bottomsec
  .starsec
  .star-icon.filled {
  color: #ffaf19;
}

.owl-nav {
  text-align: left;
  position: absolute;
  left: -220px;
  display: block !important;
  bottom: 0;
}

.owl-prev,
.owl-next {
  width: 48px !important;
  height: 48px !important;
  font-size: 0 !important;
  outline: none !important;
  border-radius: 100% !important;
  background-color: #01b2d6 !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  position: relative;
  margin: 0 5px;
}
.owl-prev::before,
.owl-next::before {
  content: "";
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  position: absolute;
  left: 16px;
  top: 18px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.owl-prev::before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left: 21px;
}
.owl-prev:hover,
.owl-next:hover {
  filter: grayscale(0);
  background-color: #ec577a !important;
}
.landing-pagewrapper .pagesec5 .contact-area {
  width: 100%;
  height: auto;
  padding: 5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-pagewrapper .pagesec5 .contact-area .left-sec {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-pagewrapper .pagesec5 .contact-area .left-sec img {
  max-width: 100%;
  display: block;
}
.landing-pagewrapper .pagesec5 .contact-area .right-sec {
  width: 50%;
}
.landing-pagewrapper .pagesec5 .contact-area .right-sec .title {
  font-size: 2rem;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.landing-pagewrapper .pagesec5 .contact-area .formarea {
  width: 100%;
  height: auto;
  padding-top: 2rem;
}
.landing-pagewrapper .pagesec5 .contact-area .formarea ul {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.landing-pagewrapper .pagesec5 .contact-area .formarea ul li {
  width: 49%;
  margin-top: 2rem;
}
.landing-pagewrapper .pagesec5 .contact-area .formarea ul .full {
  width: 100%;
}
.landing-pagewrapper .pagesec5 .contact-area .formarea ul .align-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.landing-pagewrapper .pagesec5 .contact-area .formarea .namelabel {
  font-size: 1.4rem;
  font-family: "Quicksand", sans-serif !important;
  color: #17171b;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.form-group {
  position: relative;
}

.form-label {
  padding: 0 3px;
  pointer-events: none;
  position: absolute;
  top: 20px;
  z-index: 10;
  left: 15px;
  transition: 0.2s;
  transition-timing-function: ease;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 1;
  font-size: 14px;
  color: #6f6969;
  letter-spacing: 0.01em;
  background: #fcfcfc;
  font-weight: 500;
  display: flex;
}

.form-control {
  width: 100%;
  height: 50px;
  background: #fff;
  border: solid 1px #f0f0f0;
  border-radius: 6px;
  display: block;
  font-size: 14px;
  color: #130623;
  padding: 0 20px;
  outline: none;
  box-sizing: border-box;
  font-weight: 500;
}
.invalid-input {
  border: solid 1px red;
}
.text-area {
  height: 80px;
  padding: 20px;
}

input:focus + label,
input:not(:placeholder-shown) + label {
  opacity: 1;
  transform: scale(1) translateY(-30px) translateX(0);
}

input:focus + label,
input:not(:-ms-input-placeholder) + label {
  opacity: 1;
  transform: scale(1) translateY(-30px) translateX(0);
}

.landing-pagewrapper {
  width: 100%;
  height: auto;
  padding-top: 8rem;
}
.landing-pagewrapper .main-bannersec {
  background: #fff;
  position: relative;
  padding: 80px 0;
}
.landing-pagewrapper .main-bannersec .btn-primary {
  max-width: 8rem;
}
.landing-pagewrapper .main-bannersec.contactbanner .btn-primary {
  max-width: max-content;
  margin-top: 3rem;
}
.landing-pagewrapper .main-bannersec .container {
  width: 96%;
  max-width: 1250px;
  margin: auto;
}
.landing-pagewrapper .main-bannersec .container .content-area {
  height: auto;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.landing-pagewrapper .main-bannersec .container .content-area .left-sec {
  width: 543px;
}
.landing-pagewrapper .main-bannersec .container .content-area .left-sec .contact-sec {
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-pagewrapper .main-bannersec .container .content-area .left-sec h1{
  font-weight: 700;
  font-size: 5.4rem;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  margin-bottom: 1rem;
}
.landing-pagewrapper
  .main-bannersec
  .container
  .content-area
  .left-sec
  h1
  span {
  font-size: 4rem;
  font-family: "Quicksand", sans-serif !important;
  display: block;
}
.landing-pagewrapper
  .main-bannersec
  .container
  .content-area
  .left-sec
  h1
  span {
  /* color: #ec577a; */
  font-size: 5.4rem;
}

.clr-pink{
  color: #ec577a;
}
.landing-pagewrapper .main-bannersec .container .content-area .left-sec .dec {
  font-size: 2rem;
  font-family: "Quicksand", sans-serif !important;
  color: #707070;
  font-weight: 400;
  margin: 1rem 0 3rem 0;
}
.landing-pagewrapper .main-bannersec .container .content-area .left-sec .dec2 {
  font-size: 20px;
  font-family: "Quicksand", sans-serif !important;
  color: #707070;
  font-weight: 400;
  margin: 1rem 0 0 0;
}
.inner-wrapper.landing-pagewrapper .main-bannersec {
  padding: 0;
}
.landing-pagewrapper.main-bannersec
  .container
  .content-area
  .left-sec
  .btn-primary {
  width: 11rem;
}
.landing-pagewrapper .main-bannersec .container .content-area .right-sec.contact-right {
  width: calc(100% - 550px);
  padding-top: 6rem;
}
.landing-pagewrapper .main-bannersec .container .content-area .right-sec {
  width: calc(100% - 550px);
}
.landing-pagewrapper .main-bannersec .container .content-area .right-sec img {
  width: 100%;
  height: auto;
}
.landing-pagewrapper .main-bannersec .bg1 {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.landing-pagewrapper .main-bannersec .bg01 {
  width: 100%;
  height: 194px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background: url(../images/banner-bottombg.svg);
  background-size: cover;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.3, 1.3);
  }
  100% {
    transform: scale(1, 1);
  }
}
::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.8rem;
}

::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 40rem;
}

::-webkit-scrollbar-thumb {
  background: #afeefb;
  border-radius: 40rem;
}

::-webkit-scrollbar-thumb:hover {
  background: #01b2d6;
  border-radius: 40rem;
}

.cookie {
  position: fixed;
  bottom: 0;
  background: #fff;
  text-align: left;
  z-index: 999;
  box-shadow: 9px 9px 115px -2px #00000026;
  width: 100%;
}
.cookie .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 10px 25px;
}
.cookie .content p {
  color: #858585;
  margin: 0;
  font-size: 14px;
  width: auto;
}
.cookie .content p a {
  color: #01b2d6;
  text-decoration: none;
}
.cookie .content p a:hover {
  color: #ec577a;
}
.hidecookie {
  display: none;
}
.inner-wrapper {
  padding: 15rem 0 1rem 0;
}

.tab-content {
  display: none;
}
.active {
  display: block;
}

.image-gallery {
  font-size: 0;
  position: relative;
  max-width: 700px;
  margin: auto;
}

.image-gallery .before,
.image-gallery .after {
  width: 110px;
  height: 40px;
  font-size: 12px;
  font-family: "Quicksand", sans-serif !important;
  color: #fff;
  font-weight: 400;
  font-weight: 500;
  border-radius: 50px;
  background: #27293b6e;
  position: absolute;
  z-index: 50;
  bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.image-gallery .before {
  left: 3%;
}
.image-gallery .after {
  right: 3%;
  background: #01b2d6;
}

.image-gallery .one-half {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
}
.image-gallery .one-half img {
  width: 100%;
  display: block;
}
.image-gallery .small-images {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.image-gallery .small-images .small-image {
  width: 80px;
  height: 90px;
  cursor: pointer;
  margin: 0 5px;
  overflow: hidden;
  display: flex;
  border-radius: 5px;
  display: none;
}
.image-gallery .small-images .small-image img {
  width: auto;
  max-width: inherit;
}

.image-gallery .small-images .small-image2 {
  width: 80px;
  height: 90px;
  cursor: pointer;
  margin: 0 5px;
  overflow: hidden;
  display: flex;
  border-radius: 5px;
  display: none;
}
.image-gallery .small-images .small-image2 img {
  width: auto;
  max-width: inherit;
}

.image-gallery .small-images .small-image3 {
  width: 80px;
  height: 90px;
  cursor: pointer;
  margin: 0 5px;
  overflow: hidden;
  display: flex;
  border-radius: 5px;
  display: none;
}
.image-gallery .small-images .small-image3 img {
  width: auto;
  max-width: inherit;
}
.image-gallery .small-images .small-image4 {
  width: 80px;
  height: 90px;
  cursor: pointer;
  margin: 0 5px;
  overflow: hidden;
  display: flex;
  border-radius: 5px;
  display: none;
}
.image-gallery .small-images .small-image4 img {
  width: auto;
  max-width: inherit;
}

.thubslide-wrap {
  width: 100%;
  height: auto;
  border: solid 1px red;
  position: relative;
}
.thubslide-wrap .container {
  position: relative;
  max-width: 600px;
}

.thubslide-wrap .slide-content {
  width: 100%;
  max-width: 600px;
  margin: auto;
  background: #fff;
  position: relative;
}
.thubslide-wrap .slide-content img {
  width: 100%;
}
.thumbimg {
  width: 100%;
  height: auto;
  display: flex;
  align-self: center;
  justify-content: center;
  padding: 0;
  margin: 2rem 0 0 0;
}
.thumbimg li {
  list-style-type: none;
  padding: 0;
  margin: 0 5px;
  width: 100px;
  height: auto;
  border: solid 1px #fff;
  background: #fff;
  padding: 5px;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
}
.thumbimg li.active {
  border: solid 1px #01b2d6;
}
.thumbimg li img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  display: block;
}

.slide-content img {
  width: 100%;
  height: auto;
  min-height: 100%;
}

.thubslide-wrap .before,
.thubslide-wrap .after {
  width: 110px;
  height: 40px;
  font-size: 12px;
  font-family: "Quicksand", sans-serif !important;
  color: #fff;
  font-weight: 400;
  font-weight: 500;
  border-radius: 50px;
  background: #27293b6e;
  position: absolute;
  z-index: 50;
  bottom: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.thubslide-wrap .before {
  left: 10%;
}
.thubslide-wrap .after {
  right: 10%;
}

.landing-pagewrapper
  .main-bannersec
  .container
  .content-area
  .right-sec
  .animbox {
  width: 100%;
  height: 530px;
  position: relative;
}
#lottie {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
}
#lottie3 {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
}
#lottie4 {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
}
#lottie5 {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
}
#lottie2 {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
}
.tablesec {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
}
.mansec {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
}
.bg-sec {
  width: 100vw;
  height: 122px;
  position: absolute;
  bottom: 91px;
  left: 220px;
  z-index: 5;
  background: url(../images/bannerbg01.svg) bottom center no-repeat;
  background-repeat: repeat-x;
  opacity: 0.8;
}
.bg-sec2 {
  width: 100%;
  height: 245px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  opacity: 0.5;
  background: url(../images/banner-bottombg.svg) center center no-repeat;
  background-repeat: repeat-x;
}
.chairsec {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
}
.chairsec img {
  width: auto !important;
  max-width: 95%;
  position: relative;
  bottom: 1%;
}
.catsec {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.plantsec {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
}

.margin-t-19{
  margin-top: 19px;
}

.margin-t-22{
margin-top: -22px;
}

.margin-t-8{
  margin-top: 8rem;
}
.margin-t-5{
  margin-top: 5rem;
}
.blog-sec {
  font-size: 5.4rem;
  text-align: center;
  white-space: nowrap;  
  width: 100%; 
}
.blog-sec span {
  display: inline;  
}
.blog-head {
  font-size: 5.4rem; 
  width: 100%; 
}
.blog-head span {
  display: inline;  
}
.text-align-left{
  text-align: left;
}
.dec3{
  font-size: 2rem;
  font-family: "Quicksand", sans-serif !important;
  color: #707070;
  font-weight: 400;
  margin: 1rem 0 3rem 0;
  text-align: center;
}
.search-container {
  display: flex;         
  align-items: center;
  justify-content: center;  
  margin-top: 1rem;         
}
.search-box {
  width: 404.71px;
  height: 8.77px;
  background-color: #F1F1F1;
  border: 1px solid #ccc;
  border-radius: 16.92px;
  padding: 1.5rem;
  font-size: 1.4rem;
  display: block;          
}
.search-icon {
  margin-left: 0.5rem;        
  cursor: pointer;           
  height: 38.77px;
}
.blog-sections{
  display: flex;
  gap: 24px;
  margin-top: 30px;
}
.left-sect{
  width: 50%;
}
.right-sect{
  /* width: 50%; */
  display: flex;
  gap: 25px;
}
.title-head{
  font-size: 4.2rem;
  color: #27293b;
  font-weight: 600;
  background: #fff;
  /* padding: 0.5rem 5rem; */
  position: relative;
  z-index: 10;
  display: inline-block;
}
.margin-t-100{
  margin-top: 100px;
}
.author-title {
  font-size: 1.4rem;
  color: #222222;
  margin-top: 20px;
}
.blog-title {
  font-size: 2rem;
  color: #252525;
  margin-top: 25px;
}
.blog-content {
  font-size: 1.6rem;
  color: #252525;
  margin-top: 20px;
  line-height: 1.8;
  text-align: justify;
}
.blog-btn {
  display: flex;              
  margin-top: 20px;           
}
.keyword-left, .keyword-right {
  border: 1px solid;
  padding: 0.5rem 1rem;       
  font-size: 1.2rem;        
  color: #333;
  border-radius: 10px;
}
.keyword-left {
  margin-right: 1rem;         
}
.blogimg2{
  width: 300px;
  height: 275px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
  justify-items: flex-start;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 40px;
}

.box-grid a {
  text-decoration: none; 
  color: inherit; 
}

.blog-detail-sec {
  display: grid;
  gap: 20px;
}

.content-wrapper {
  display: flex;
}

.left-content {
  padding-right: 20px;
}

.blog-list {
  list-style-type: none;  
  margin-left: 40px;      
  padding-left: 0;   
  margin-top: 15px;    
}

.blog-list li {
  position: relative;  
  margin-bottom: 10px;  
  font-size: 1.6rem;
  padding-left: 10px;
  line-height: 1.8;
}

.blog-list li::before {
  content: "•"; 
  position: absolute;
  left: -20px;    
  top: -5px;
  color: #707070;
  font-size: 2.6rem;
}

.point-highlight {
  display: inline;  
  font-weight: bold; 
  margin-right: 10px; 
}
.blog-img-new{
  width: 610px;
  height: 500px;
}
.margin-t-50{
  margin-top: 50px;
}
.blogs-img{
  width: 361px;
  height: 300px;
}
li {
  margin-bottom: 10px; 
}

.right-cont {
  display: grid;
}

.right-sect a {
  text-decoration: none; 
}

.right-content {
  flex: 0 0 28%;  
  padding-left: 20px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  height: 220px;
  border: 1px solid;
}

.right-content-blg2 {
  flex: 0 0 28%;  
  padding-left: 20px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  height: 240px;
  border: 1px solid;
}

.right-content-blg3 {
  flex: 0 0 28%;
  padding-left: 20px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  height: 410px;
  border: 1px solid;
}

.blog-sub-cont{
  font-size: 3.6rem;
  color: 252525;
  font-weight: 700;
}
.blog-bi-cont{
  font-size: 3rem;
  color: 252525;
  font-weight: 600;
  margin-top: 30px;
}
.margin-t-40{
  margin-top: 40px;
}
.tbl-cont{
  font-size: 2.6rem;
}
.toc-list {
  font-size: 1.6rem;
  margin-top: 25px;
  list-style-type: disc; 
  padding-left: 20px;
}

.toc-list li {
  margin: 10px 0;
  
}

.toc-list a {
  text-decoration: none;
  color: #333;
  
}

.toc-list a:hover {
  color: #e91e63;
}

.left-sect a {
  text-decoration: none;  
  color: inherit;        
}


.footersec .social-sec {
  margin-top: 2rem;
}
.footersec .social-sec ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footersec .social-sec ul li {
  cursor: pointer;
}

.footersec {
  width: 100%;
  background: #f8feff;
  border-top: solid 1px #e8efe4;
}
.footersec .container {
  width: 96%;
  max-width: 1250px;
  margin: auto;
}

.footersec .social-media {
  width: 100%;
  padding: 0;
  margin: 0;
}
.footersec .social-media li {
  list-style-type: none;
  margin-right: 1rem;
  border-radius: 5px;
}
.footersec .social-media .item {
  width: 34px;
  height: 34px;
  background: #fff;
  border: solid 1px #e7f1f2;
  border-radius: 6px;
  cursor: pointer;
}
.footersec .sec2 .item {
  font-size: 1.4rem;
  color: #646a69;
  font-weight: 400;
  text-decoration: none;
}
.footersec .sec2 ul {
  padding: 0;
  margin: 0;
}
.footersec .sec2 ul li {
  margin-left: 1rem;
  font-size: 1.4rem;
  color: #646a69;
  font-weight: 400;
}
.footersec .sec2 ul li::after {
  content: " . ";
  margin-left: 0.5rem;
  position: relative;
  top: -0.2rem;
}
.footersec .sec2 ul li:last-child::after {
  display: none;
}
.footersec .sec2 {
  padding: 2rem 0;
}
.footersec .sec2 ul li a {
  cursor: pointer;
  color: #646a69;
  text-decoration: none;
}
.footersec .sec2 ul li a:hover {
  color: #01b2d6;
}
.footersec .title5 {
  font-weight: 700;
}
.footersec .title6 {
  font-weight: 700;
}
.footersec .location {
  width: 100%;
}
.footersec .flag {
  width: 32px;
}
.footersec .flag img {
  width: 100%;
}
.footersec .location .details {
  width: calc(100% - 40px);
}
.footersec .sec1 {
  padding: 5rem 0;
  border-bottom: solid 1px #e7f1f2;
  flex-wrap: wrap;
}
.footersec .sec1 .logosec {
  margin-bottom: 1.5rem;
}
.footersec .sec1 .dec {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #887d79;
  font-weight: 500;
}
.footersec .sec1 .title5 {
  margin-bottom: 0.5rem;
}

.footersec .sec1 .column-25 {
  width: 25%;
}
.column-100 {
  width: 100%;
}
.footersec .title5 {
  color: #01b2d6;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
}
.footersec .title6 {
  color: #000;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.2;
}

.location-sec{
  text-align: center;
  font-size: 3rem;
}
   
.loc-head{
  font-size: 4.2rem;
  color: #27293b;
  font-weight: 600;
}
.contact-sec-location{
  margin-top: -5px;
  text-align: center;
}
    
.contact-sec-location {
  padding: 30px 0; 
}
    
.location-wrapper {
  display: flex;
  justify-content: space-between; 
  flex-wrap: wrap; 
  margin-top: 83px;
}
    
.location-left,
.location-right {
  display: flex;
  flex-direction: column;
  width: 48%; 
}

.location-item {
  display: flex;
  align-items: center;
  margin-bottom: 56px;
}
    
.location-icon {
  width: 118px;  
  height: 118px; 
  border-radius: 50%; 
  margin-right: 24px;
  overflow: hidden; 
}
    
.location-icon img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
    
.location-details {
  color: #333;
  text-align: left;
}
    
.location-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
    
.location-address,
.location-phone {
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
    
.margin-t-20{
  margin-top: -18px;
  }

.margin-t-16{
  margin-top: -16px;
}

.pink-clr{
 color: #ec577a;
}


.crumb-list {
  display: flex;
  flex-wrap: wrap;
}

.crumb-list .list-item {
  margin-right: 7px;
}

.crumb-list .list-item .link-item {
  font-size: 1.3rem;
  color: #858588;
  cursor: pointer;
  height: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.crumb-list .list-item .link-item.current-page {
  cursor: default;
  color: #1d1d1f;
}


@media screen and (max-width: 1250px) {
  .footersec .sec1 .column-25 {
    width: 50%;
    padding: 1rem 0;
  }
}

@media screen and (max-width: 800px) {
  .p-b-0{
    padding-bottom: 0 !important;
  }
  .banner-sec-contact{
    flex-direction: column;
  }
  .landing-pagewrapper .main-bannersec .container .content-area .right-sec.contact-right {
    width: 100%;
    padding-top: 2rem;
}
  .landing-pagewrapper .contactbanner .container .content-area .left-sec .contact-sec {
    font-size: 2.5rem;
  }
  .landing-pagewrapper  .contactbanner .container .content-area .left-sec .dec2 {
    font-size: 16px;
  }
  .common-headersec .container {
    padding: 1rem 0;
  }
  .common-headersec .centersec {
    width: auto;
  }
 
  .toogle-menu {
    display: block;
  }
  .common-headersec .right-nav {
    transition: all 0.2s ease-in-out;
    width: 300px;
    height: 100vh;
    position: fixed;
    display: block;
    right: -110%;
    top: 0;
    z-index: 100;
    background: #01b2d6;
    padding-top: 100px;
    box-shadow: rgb(125, 122, 114) 1px 1px 1px 0px,
      rgb(115, 113, 113) -1px -1px 15px 0px;
  }
  .common-headersec .right-nav .item {
    width: 100%;
    margin: 0;
  }
  .common-headersec .right-nav .item a {
    display: block;
    padding: 15px;
    color: #fff;
    border-bottom: solid 1px #5bc5db;
  }
  .common-headersec .right-nav .item .active {
    color: #fff;
  }
  .common-headersec .right-nav.activemenu {
    right: 0;
  }
  .common-headersec .activemenu .burger-strip-2 div:first-child {
    transform: translateY(6px) rotate(45deg);
  }
  .common-headersec .activemenu .burger-strip-2 div:nth-child(2) {
    opacity: 0;
  }
  .common-headersec .activemenu .burger-strip-2 div:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }
  .common-headersec .activemenu .strip div {
    border-bottom: solid 1px #fff;
  }
  .landing-pagewrapper .main-bannersec .container .content-area {
    flex-wrap: wrap;
  }
  .landing-pagewrapper .main-bannersec .container .content-area .left-sec {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 15px 0;
  }
  .landing-pagewrapper .main-bannersec .container .content-area .right-sec {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .landing-pagewrapper .main-bannersec .btn-primary {
    margin: auto;
  }
  .landing-pagewrapper .main-bannersec {
    padding: 0;
  }
  .landing-pagewrapper {
    padding-top: 6rem;
  }
  .landing-pagewrapper .main-bannersec .container .content-area .right-sec img {
    width: 70%;
  }

  .landing-pagewrapper .main-bannersec .container .content-area .left-sec h1 {
    font-size: 3rem;
    justify-content: center;
  }
  .landing-pagewrapper .main-bannersec .container .content-area .right-sec {
    padding-top: 1rem;
  }
  br {
    display: none;
  }
  .address-section ul {
    align-items: baseline !important;
    height: auto !important;
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }
  .address-section .container {
    height: auto !important;
  }
  .address-section {
    margin: 4rem 0 !important;
  }
  .landing-pagewrapper
    .main-bannersec
    .container
    .content-area
    .left-sec
    h1
    span {
    font-size: 2.5rem;
  }
  .landing-pagewrapper .main-bannersec .container .content-area .left-sec .dec {
    font-size: 16px;
  }
  .landing-pagewrapper .title-area .title {
    font-size: 2.5rem;
  }
  .panels {
    padding-top: 10px;
  }
  .landing-pagewrapper .pagesec1 {
    padding-bottom: 0;
  }
  .landing-pagewrapper .pagesec2 .gallery-sec {
    padding: 30px 0;
  }
  .landing-pagewrapper .pagesec3 .gallerysec {
    padding: 30px 0;
  }
  .landing-pagewrapper .pagesec2 .gallery-sec .box .title {
    font-size: 1.8rem;
  }
  .landing-pagewrapper .pagesec3 .gallerysec .column .box .title {
    font-size: 1.8rem;
  }
  .landing-pagewrapper .pagesec4 .testimonialsec .leftsec {
    width: 100%;
    padding-bottom: 30px;
  }
  .landing-pagewrapper .pagesec4 .testimonialsec .rightsec {
    width: 100%;
  }
  .owl-nav {
    left: 0;
    position: relative;
    text-align: center;
  }
  .landing-pagewrapper .pagesec4 .testimonialsec {
    flex-wrap: wrap;
  }
  .landing-pagewrapper .pagesec5 .contact-area {
    padding: 30px 0;
    flex-wrap: wrap;
  }
  .landing-pagewrapper .pagesec5 .contact-area .left-sec {
    width: 100%;
    padding-bottom: 30px;
  }
  .landing-pagewrapper .pagesec5 .contact-area .right-sec {
    width: 100%;
  }
  .landing-pagewrapper .pagesec5 .contact-area .left-sec img {
    max-width: 300px;
  }
  .common-footersec .sec1 {
    flex-wrap: wrap;
    padding: 30px 0;
  }
  .common-footersec .sec1 .leftsec {
    width: 100%;
    padding-bottom: 30px;
  }
  .common-footersec .sec1 .right-sec {
    width: 100%;
  }
  .landing-pagewrapper .pagesec3 .gallerysec .column {
    width: 30%;
  }
  .loc-head {
    font-size: 2.5rem;
    color: #27293b;
    font-weight: 600;
  }
  .location-wrapper {
    display: grid;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 83px;
  }
.location-left, .location-right {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.img-wd{
  width: 136px;
}
.margin-l-11{
  margin-left: 11px;
}
.blog-sections{
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}
.blog-img-new{
  width: 100%;
  height: auto;
}
.left-sect {
  width: 100%;
}
.right-sect {
  flex-direction: column;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.contactbanner {
  padding: 10px;
}
.blogimg2{
  width: 100%;
  height: auto;
}
.blogs-img{
  width: 100%;
  height: auto;
}
.right-sect {
  /* width: 50%; */
  gap: 0;
}
.mg-bt-20{
  margin-bottom: 20px;
}
.margin-t-100 {
margin-top: 20px;
}
.content-wrapper {
  flex-direction: column;
  gap: 50px;
}
.left-content {
  padding-right: 20px;
  width: 100%;
}
.blog-sub-cont {
  font-size: 3rem;
}
.right-content {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  height: 235px;
  flex: 0;
}
.blog-head {
  font-size: 4rem;
  width: 100%;
}
.blog-bi-cont {
  font-size: 2.5rem;
}
.blog-list {
  margin: 0;
}
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .blog-img-new {
      width: 300px;  
      height: 300px;
  }
  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
    justify-items: flex-start;
    text-align: left;
  }
  .blog-img-new {
    width: 100%;
    height: auto;
  }
}


@media screen and (max-width: 700px) {
  .landing-pagewrapper .main-bannersec .bg01 {
    display: none;
  }
  .common-footersec .sec1 .right-sec {
    flex-wrap: wrap;
  }
  .common-footersec .sec1 .right-sec .column {
    width: 50%;
  }
  .common-footersec .sec2 {
    padding: 30px 0;
    flex-wrap: wrap;
  }
  .common-footersec .sec2 .text {
    width: 100%;
    padding-bottom: 10px;
  }
  .common-footersec .sec2 ul {
    width: 100%;
    justify-content: flex-start;
  }

  .common-footersec .sec2 ul li {
    margin-left: 0;
    margin-right: 10px;
  }
  .landing-pagewrapper .pagesec3 .gallerysec .column {
    width: 100%;
    max-width: 100% !important;
  }
  .landing-pagewrapper .pagesec3 .gallerysec {
    flex-wrap: wrap;
  }
  .landing-pagewrapper .pagesec2 .gallery-sec {
    flex-wrap: wrap;
  }
  .landing-pagewrapper .pagesec2 .gallery-sec .box {
    width: 100%;
  }
  .tab {
    padding: 0 5px;
    height: 40px;
    border-radius: 0;
    letter-spacing: 0;
    margin: 0 2px;
    font-size: 12px;
    border: none !important;
    background: #fdf0f0;
  }

  .landing-pagewrapper .pagesec3 .gallerysec .column .box {
    margin: auto;
  }

  .gallery label {
    width: 50px;
    height: 20px;
  }
  .cookie .content {
    display: block;
    padding: 10px;
    text-align: center;
  }
  .cookie .content .btn-primary {
    display: inline-block;
    margin-top: 5px;
  }
  .tabs {
    flex-wrap: wrap;
    width: 90%;
  }
  .tab {
    width: 46%;
    margin: 1%;
    padding: 0;
  }
  .actionbox {
    display: none;
  }
  .image-gallery {
    width: 90%;
  }
  .landing-pagewrapper .pagesec1 .title-area {
    margin-bottom: 2rem;
  }
  .landing-pagewrapper .main-bannersec .container {
    width: 90%;
    position: relative;
    z-index: 20;
  }
  .image-gallery .before,
  .image-gallery .after {
    width: 85px;
    height: 30px;
    bottom: 10px;
  }
  .landing-pagewrapper .pagesec2 {
    padding-top: 3rem;
  }
  .form-control {
    height: 45px;
  }
  .text-area {
    height: 80px;
  }
  .common-headersec .logo {
    width: 65px;
  }
  .cookie .content p {
    font-size: 11px;
  }
  .footersec .sec1 .column-25 {
    width: 100%;
  }
  .footersec .sec2 {
    display: block;
  }
  .footersec .sec2 ul {
    justify-content: flex-start;
  }
  .footersec .sec2 ul li {
    margin: 0 1rem 0 0;
  }
}

@media screen and (min-width: 900px) {
  

}
@media screen and (min-width: 1000px) {
  .headerscroll {
    background: #fff;
    box-shadow: #959da533 0 8px 24px;
  }
  .headerscroll .container {
    padding: 1rem 0;
    border-bottom: solid 1px #fff;
  }
}
.landing-pagewrapper {
  overflow-x: hidden;
}
.privacy h1,
.privacy h2,
.privacy h3,
.privacy h4,
.privacy h5,
.privacy h6,
.privacy ul,
.privacy span,
.privacy li {
  font-size: 2.5rem;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  font-weight: 600;
  background: #fff;
  z-index: 10;
  margin: 0 0 1.5rem 0;
}
.privacy h2 {
  font-size: 2.3rem;
}
.privacy h3 {
  font-size: 2.2rem;
}
.privacy h4 {
  font-size: 2.1rem;
}
.privacy h5 {
  font-size: 2rem;
}
.privacy h6 {
  font-size: 1.8rem;
}
.privacy p,
.privacy li,
.privacy span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  margin-bottom: 2rem;
}

.privacy ul li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 400;
}
.privacy ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  border-radius: 50%;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #01b2d6;
}
.privacy a {
  color: #01b2d6;
}
.privacy a:hover {
  color: #ec577a;
}
.contactbanner {
  padding-top: 0 !important;
}
.pd-top8 {
  padding-top: 8rem;
}

.fornotfor {
  width: 100%;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  padding-top: 85px;
}
.fornotfor .container {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.fornotfor .contentarea {
  width: 100%;
}
.fornotforpic {
  width: 100%;
}
.fornotfor .container .text-area {
  text-align: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: -100px;
  left: 0;
}
.title1 {
  font-size: 130px;
  line-height: 1.2;
  font-family: "Quicksand", sans-serif !important;
  color: #27293b;
  font-weight: 600;
}
.fornotfor .container .text-area .btn-primary {
  margin: auto;
  max-width: 100px;
  text-decoration: none;
}
.fornotfor .container .text-area .dec {
  font-size: 18px;
  margin-bottom: 20px;
}
.image-gallery .small-images {
  display: none;
}
.tabpic {
  width: auto;
  height: auto;
  border: none;
  padding: 0;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  background: none !important;
  margin: 20px 5px;
}
.tabpic img {
  width: 100px;
  height: 100px;
}
.tabpic:hover {
  border: none;
}

.margin-t-22{
margin-top: -22px;
}

.margin-t-40{
  margin-top: 40px;
}

@media screen and (max-width: 1100px) {
  .bg-sec {
    left: 142px;
  }
  .landing-pagewrapper .main-bannersec {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  .tabpic img {
    width: 50px;
    height: 50px;
  }
  .landing-pagewrapper
    .main-bannersec
    .container
    .content-area
    .right-sec
    .animbox {
    height: 185px;
  }
  .bg-sec {
    display: none;
  }
  .bg-sec2 {
    height: 55px;
  }
  .landing-pagewrapper .main-bannersec {
    padding-bottom: 20px;
  }
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 3;
  background: #fff;
  top: 0;
  z-index: 1000;
}
.loader img {
  width: 100%;
}

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

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

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

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

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}
.btn-primary {
  text-decoration: none;
}

.landing-pagewrapper .pagesec4 .testimonialsec .detailsec .dec {
  font-size: 1.3rem;
  line-height: 1.4;
}

.social-medias {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 100%;
  gap: 1rem;
}
.social-medias .list-item {
  list-style-type: none;
}
.social-medias .link-item {
  width: 3rem;
  height: 3rem;
  background-color: #777779;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s all;
}
.social-medias .link-item svg {
  width: 11px;
  height: 11px;
  fill: #fff;
}
.social-medias .link-item:hover {
  background-color: #01b2d6;
}

.input-main-sec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.input-main-sec .input-text {
  width: calc((100% - 1rem) / 2);
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.input-main-sec .input-text .label {
  font-size: 1.4rem;
  font-family: "Quicksand", sans-serif !important;
  color: #17171b;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.input-main-sec .input-text .input {
  width: 100%;
  height: 50px;
  background: #fff;
  border: solid 1px #f0f0f0;
  border-radius: 6px;
  display: block;
  font-size: 14px;
  color: #130623;
  padding: 0 20px;
  outline: none;
  box-sizing: border-box;
  font-weight: 500;
}
.input-main-sec .input-text .text-area {
  width: 100%;
  background: #fff;
  border: solid 1px #f0f0f0;
  border-radius: 6px;
  display: block;
  font-size: 14px;
  color: #130623;
  padding: 0 20px;
  outline: none;
  box-sizing: border-box;
  font-weight: 500;
  height: 80px;
  padding: 20px;
}
.input-main-sec .input-text.wd-100 {
  width: 100%;
}
.btn-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.formloader {
  border: 5px solid #c7c6c6;
  border-radius: 50%;
  border-top: 5px solid #01b2d6;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}

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

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

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

  100% {
    transform: rotate(360deg);
  }
}
.address-section {
  margin: 8rem 0;
  margin-bottom: 2rem;
}

.address-section .container {
  background-color: #02b2d6;
  height: 160px;
  border-radius: 10px;
}
.address-section ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 160px;
}
.address-section ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.address-section ul li p {
  font-size: 16px;
  color: white;
  line-height: 23px;
}
.address-section ul li br {
  display: block !important;
}
.address-section ul li a {
  font-size: 16px;
  color: white;
  text-decoration: none;
}
.email-send{
  font-size: 1.4rem;
  line-height: 1.5;
  color: #887d79;
  font-weight: 500;
  text-decoration: none;
}
.contact-menu{
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  color: #27293b;
}
