/*
    Theme Name: MWD
    Author:  MWD
    Author URL: https://movewith.digital/
    Description: ---- 2023.
    Document   : Framework
    Created on :  April 15 2023, 12.00 AM
*/

html {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

body {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-size: 100%;
  color: var(--textcolor);
  background: #F1F5F8;
  font-family: var(--font-one);
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: none;
  font-weight: 300;
}

::placeholder {
  color:  var(--secondry-color);
  font-family: var(--font-one);
font-weight: 500;
}

.clear {
  clear: both;
  font-size: 0px;
  line-height: 0px;
  height: 0px;
  margin: 0px;
  padding: 0px;
}

:focus {
  outline: 0;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #fff;
}

/* div {
    transition: all 0.3s ease-in-out;
} */

a:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:after {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

img {
  border: none;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--font-one);
}

p {
  margin: 0;
  line-height: 1.3;
  color: var(--blackcolor);
  font-weight: 400;
  font-size: 1.1em;
  font-family: var(--font-one);
}

h1 {
  margin: 0;
  padding: 0;
  color: var(--secondmaincolor);
  line-height: 1;
  font-size: 3.5em;
  font-weight: 700;
  font-family: var(--font-one);
}

h2 {
  margin: 0;
  padding: 0;
  color: var(--secondmaincolor);
  font-size: 3.3em;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-one);
}

h3 {
  margin: 0;
  padding: 0;
  color: var(--maincolorsecond);
  line-height: 1.1;
  font-size: 1.6em;
  font-weight: 600;
  font-family: var(--font-one);
}

h4 {
  margin: 0;
  padding: 0;
  color: #291D1D;
  line-height: 1.3;
  font-size: 2.5em;
  font-weight: 400;
  font-family: var(--font-one);
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
  content: " ";
  display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
  clear: both;
}

.outer {
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  background: var(--maincolor);
  overflow: hidden;
}

:root {
  --font-one: "Outfit", sans-serif;
  --btnradius: 8px;
  --secondcolor: #fff;
  --maincolor: #FFFAF6;
  --textcolor: #4B4B4B;
  --secondmaincolor: #1F1F1F;
  --maincolorsecond: #1CB2B5;
  --ligttextcolor: #1F1F1F;
  --blackcolor: #000;
  --pinkcolor: #EA438A;
  --btnradius: 50px;
  --radius: 40px;
}
 
/*grid-system-start*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Responsive styles for 2 columns */
@media (min-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Responsive styles for 3 columns */
@media (min-width: 900px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Responsive styles for 4 columns */
@media (min-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/*grid-system-end*/
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1170px;
}
.medium-container {
  margin: 0 auto;
  width: 90%;
  max-width: 1250px;
}
.small-container {
  margin: 0 auto;
  width: 90%;
  max-width: 750px;
}
.flex {
  display: flex;
}
.header .container {
  max-width: 1300px;
}
.banner {
  background: url(../img/banner.jpg) no-repeat center center/cover;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 90vh;
  min-height: 700px;
}
.mt {
  margin: 50px 0 0 0;
}
.mb {
  margin: 0 0 50px 0;
}
.pt {
  padding: 50px 0 0 0;
}
.pb {
  padding: 0 0 50px 0;
}
.both-m {
  margin: 50px 0;
}
.both-p {
  padding: 50px 0;
}
.both-p-xl {
  padding: 100px 0;
}
.both-p-xl-t {
  padding: 100px 0 0 0;
}
a.btn {
  background-color: var(--maincolorsecond);
  color: var(--secondcolor);
  border-radius: var(--btnradius);
  padding: 12px 30px;
  font-weight: 500;
  display: inline-block;
  font-size: 1.3em;
}
.banner-text {
  max-width: 500px;
  position: relative;
  z-index: 2;
}
.banner-text p {
  color: var(--blackcolor);
  font-weight: 400;
  font-size: 1.6em;
  padding: 10px 20px 20px 0;
}
.banner::after {
  content: '';
  width: 100%;
  height: 300px;
  background: rgb(28,178,181);
background: linear-gradient(0deg, rgba(28,178,181,1) 0%, rgba(28,178,181,0.3982843137254902) 44%, rgba(28,178,181,0.2806372549019608) 52%, rgba(28,178,181,0) 100%);
position: absolute;
bottom: 0;
left: 0;
right: 0;
mix-blend-mode: darken;
z-index: 1;
}
.banner::before {
  content: '';
  width: 100%;
  height: 100px;
  background: url(../img/bottom-one.svg) no-repeat bottom left/contain;
position: absolute;
bottom: -30px;
left: 0;
right: 0; 
z-index: 2;
}
.why-choose {
  width: 100%;
  text-align: center;
  padding: 0 0 0 0;
}
.text-sec {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
.text-sec p {
  font-size: 1.5em;
  line-height: 1.1;
  padding: 10px 0 0 0;
}
.why-choose-sec {
  width: 100%;
  background-image: url(../img/sidetop.jpg), url(../img/sidebottom.jpg);
  background-position: top left, bottom right;
  background-repeat: no-repeat, no-repeat;
  background-size: 430px;
  padding: 0 0 125px 0;
}
.why-choose-block {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 25px;
  text-align: left;
}
.why-choose-list.flex {
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px 0;
}
.why-choose-block  {
  width: 31%;
}
.why-choose-block.flex {
  align-items: flex-start;
}
.why-choose-content {
  padding: 0 0 0 20px;
}
.why-choose-block img {
  display: block;
  width: 50px;
}
.why-choose-content p {
  padding: 10px 0 0 0;
}
.services {
  background-color: var(--maincolorsecond);
  padding: 100px 0 50px 0;
  position: relative;
}
.white-text span {
  display: block;
  color: var(--secondcolor);
  font-weight: 500;
  font-size: 1.5em;
  padding: 0 0 10px 0;
}
.white-text h2 {
 
  color: var(--secondcolor);
}
.service-list.flex {
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px 0;
}
.service-block {
 
  padding: 10px;
  border-radius: var(--radius);
  width: 31%;
  position: relative;
 
}
.service-sec-block {
  position: relative;
}
.service-block img {
  position: relative;
  z-index: 2;
}
.service-sec-block::before {
  bottom: 0;
    width: 100%;
    content: "";
    height: 115px;
    background: var(--secondcolor);
    position: absolute;
    left: 0;
    z-index: 1;
    display: block;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}
.service-block img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  padding: 15px;
}
.service-block a {
  display: block;
  color: var(--maincolorsecond);
  font-weight: 400;
  font-size: 1.2em;
}
.service-content {
  padding: 0 30px 30px 30px;
  text-align: left;
  background-color: var(--secondcolor);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.service-content p {
  padding: 10px 0;
}
.text-sec.white-text {
  max-width: 750px;
}
.services::before {
  content: '';
  width: 100%;
  height: 100px;
  background: url(../img/middle.svg) no-repeat bottom left/contain;
position: absolute;
top: -50px;
left: 0;
right: 0; 
z-index: 2;
}
a.btn.white {
  background-color: var(--secondcolor);
  color:  var(--maincolorsecond);
}
.service-sec {
  width: 100%;
  text-align: center;
}
.about-us {
  width: 100%;
  background: rgb(28,178,181);
background: linear-gradient(180deg, rgba(28,178,181,1) 0%, rgba(188,229,227,1) 31%, rgba(255,250,246,0.9080882352941176) 44%, rgba(255,250,246,0.9389005602240896) 52%);
padding: 50px 0 200px 0;
}
.about-banner {
  width: 100%;
  background: url(../img/tab-banner.jpg) no-repeat center center/cover;
  border-radius: var(--radius);
  min-height: 700px;
}
.vertical-tabs {
  display: flex;
  padding: 80px;
  
}
/* Tabs */
.tabs {
  width: 600px;
  border-radius: 5px 5px 5px 5px;
}
ul#tabs-nav {
  list-style: none;
  margin: 0;
  padding: 5px;
  overflow: auto;
}
ul#tabs-nav li {
  float: left;
  font-weight: bold;
  margin-right: 30px;
  padding: 10px 20px 5px 0;
  cursor: pointer;
  font-size: 1.4em;
}
ul#tabs-nav li.active {
  border-bottom: 3px solid var(--secondcolor);
}
#tabs-nav li a {
  text-decoration: none;
  color: var(--secondcolor);
}
.tab-content {
  padding: 40px 0 0 0;
   max-width: 450px;
}
.tabs h3 {
  color: var(--secondcolor);
  font-size: 2.8em;
  line-height: 0.9;
}
.tabs p {
  color: var(--secondcolor);
  padding: 20px 0 20px 0;
  font-size: 1.6em;
}
.testimonials {
  width: 100%;
  padding: 50px 0 150px 0;
}
.testimonials .left {
  width: 40%;
  background: url(../img/qts.png) no-repeat center center/60%;
  display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.testimonials .right {
  width: 60%;
}
.testimonials .flex {
  gap: 100px;
}
.testimonial-block {
  background-color: var(--secondcolor);
  padding: 20px;
  border-radius: var(--radius);
}
.testimonial-sec.flex {
  gap: 20px;
}
.testimonial-img img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
img.qts {
  position: absolute;
  top: 0;
  background-color: var(--maincolorsecond);
  width: 40px;
  height: 40px;
  padding: 8px;
  left: -20px;
}
.testimonial-img {
  position: relative;
  transform: translateY(-35px);
}
.left h4 {
  font-weight: 700;
  width: 30%;
  font-size: 3.3em;
  line-height: 1;
}
.testimonial-content {
  padding: 0 0 30px 15px;
}
/* .testimonials .flex {
  align-items: center;
} */
.testimonial-content b {
  display: block;
  color: var(--maincolorsecond);
  font-family: "Licorice", cursive;
  font-weight: 400;
  padding: 40px 0 0 0;
  font-size: 1.9em;
}
.footer {
  background-color: #272E47;
  padding: 100px 0 50px 0;
  text-align: center;
  position: relative;
}
.footer-text {
  max-width: 650px;
  margin: 0 auto;
}
.footer-text h3 {
  color: var(--secondcolor);
  font-size: 2.6em;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  padding: 0 0 80px 0;
}
.footer-text h3 span {
  color: var(--maincolorsecond);
}
.footer-sec {
  padding: 100px 0 50px 0;
  text-align: left;
}
.footer-block a {
  font-weight: 400;
  font-size: 1.2em;
  opacity: 0.8;
  display: block;
}
.footer-block b {
  display: block;
  color: var(--secondcolor);
  font-size: 1.3em;
  padding: 0 0 5px 0;
}
.footer-left {
  width: 40%;
}
.footer-block li {
  padding: 0 0 8px 0;
}
.footer-middle {
  width: 40%;
}
.footer-right {
  width: 7%;
}
.right-sec {
  padding: 40px 0 0 0;
}
.footer-middle {
  padding: 0 15% 0 0;
}
.footer-middle a {
  line-height: 1.7;
}
.footer-middle b {
  padding: 0 0 10px 0;
}
.bottom-footer {
  padding: 50px 0 0 0;
}
.bottom-footer ul {
  display: flex;
  align-items: center;
}
.bottom-footer ul li {
  padding: 0 25px 0 0;
}
.bottom-footer ul li img {
  width: 20px;
  height: 20px;
}
.bottom-footer {
  justify-content: space-between;
}
.bottom-footer .left {
  width: 40%;
}
.bottom-footer .right {
  width: 40%;
}
.bottom-footer .right p {
  color: var(--secondcolor);
  font-size: 1.2em;
  font-weight: 400;
}
.footer-btn {
  position: relative;
}
.footer-btn a {
  position: relative;
  z-index: 2;
}
.footer-btn::after {
 content: '';
 position: absolute;
 width: 100%;
 height: 1px;
 background: rgb(28,178,181);
 background: linear-gradient(90deg, rgba(28,178,181,0) 0%, rgba(28,178,181,1) 50%, rgba(28,178,181,0) 100%);
 left: 0;
    right: 0;
    top: 23px;
    z-index: 1;
}
.footer::before {
  content: '';
  width: 100%;
  height: 100px;
  background: url(../img/footer-top.svg) no-repeat bottom left/70%;
position: absolute;
top: -99px;
left: 0;
right: 0; 
z-index: 2;
}
.footer-sec .container {
  max-width: 1024px;
}
.inner .banner {
  height: 80vh;
    min-height: 600px;
}
.about-sec {
  width: 100%;
  padding: 100px 0 200px 0;
}
.about-sec h2 {
  font-size: 2.8em;
  line-height: 1.2;
  padding: 0 0 20px 0;
}
.about-sec h3 {
  color: var(--secondmaincolor);
  padding: 50px 0 10px 0;
}
.about-sec p {
  line-height: 1.5;
}
.team-sec {
  width: 100%;
  padding: 0 0 200px 0;
}
.team-list.flex {
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  margin: 20px 0 0 0;
}
.team-block img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 0 auto;
}
.team-block {
  width: 31%;
  border-radius: var(--radius);
  position: relative;
}
.team-content b {
  color: var(--secondmaincolor);
  font-size: 1.3em;
}
.team-content span {
  color: #9A9494;
  font-size: 1.1em;
  font-weight: 300;
  padding: 5px 0;
  display: block;
}
.team-content a {
  display: block;
  font-weight: 500;
  color: var(--maincolorsecond);
}
.team-block {
  margin: 30px 0 0 0;
}
.team-block-sec {
  position: relative;
}
.team-block-sec::before {
  bottom: 0;
  width: 100%;
  content: "";
  height: 70px;
  background: var(--secondcolor);
  position: absolute;
  left: 0;
  z-index: 1;
  display: block;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.team-block img {
  position: relative;
  z-index: 2;
}
.team-content {
  
 padding: 20px 0;
  background-color: var(--secondcolor);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.team-sec h2 {
  font-size: 2.8em;
  line-height: 1.2;
  padding: 0 0 20px 0;
}
.contact-sec {
  width: 100%;
  padding: 100px 0;
}
.contact-link-sec a {
  color: var(--secondmaincolor);
  font-weight: 600;
  font-size: 1.8em;
}
.contact-link-sec {
  width: 50%;
}
.contact-block {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.contact-content {
  padding: 0 0 0 10px;
}
.contact-link.flex {
  gap: 100px;
  margin: 50px 0 0 0;
}
.contact-block img {
  width: 35px;
  height: 35px;
  margin: 5px 0 0 0;
}
.contact-link-sec.sp {
  margin: 30px 0 0 0;
}
.gm {
  margin: 20px 0 0 0;
}
.contact-form-wrap {
  background-color: var(--secondcolor);
  padding: 70px;
  border-radius: var(--radius);
}
.contact-form .flex {
  gap: 50px;
}
.block {
  width: 100%;
  margin: 0 0 10px 0;
}
.contact-form-wrap h3 {
  font-size: 2.3em;
  padding: 0 0 20px 0;
}
.wrap-set {
  max-width: 450px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 40px 0;
}
.contact-form input[type="submit"] {
  font-size: 1.1em;
  font-weight: 500;
  background-color: var(--primary-color);
  text-align: center;
  padding: 15px 50px;
  color: var(--secondry-color);
  display: inline-block;
  margin: 5px 0 0 0;
  font-family: var(--font-one);
  border: 0;
  width: 25%;
  border-radius: var(--btnradius);
}
textarea {
  resize: none;
}
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--blackcolor);
  font-size: 1.2em;
 font-weight: 500;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px 0;
  width: 100%;
  color: var(--blackcolor);
  font-family: var(--font-one);
  margin-bottom: 10px;
 
}
.contact-form label {
  color: var(--secondry-color);
  font-weight: 500;
  padding: 0 0 10px 0;
  display: block;
}
.contact-form {
  margin: 0 0 200px 0;
  text-align: center;
}
.contact-form input[type="submit"] {
  font-size: 1.1em;
  font-weight: 500;
  background-color: var(--maincolorsecond);
  text-align: center;
  padding: 15px 50px;
  color: var(--secondcolor);
  display: inline-block;
  margin: 5px 0 0 0;
  font-family: var(--font-one);
  border: 0;

  border-radius: var(--btnradius);
}
.header::before {
  content: '';
  position: absolute;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.46551120448179273) 43%, rgba(255,255,255,0.5075280112044818) 50%, rgba(255,255,255) 100%);
top: 0;
left: 0;
right: 0;
width: 100%;
height: 155px;
z-index: 1;
}
.service-block a:hover {
  color: var(--ligttextcolor);
}
.arrow-container {
  animation: jump-arrow 2.5s infinite;
  bottom: 0;
  color: var(--maincolorsecond);
  display: block;
  font-size: 2.5em;
  height: 1.5em;
  right: 0;
  line-height: 1.5em;
  position: absolute;
  text-align: center;
  transform: translatex(-50%);
  width: 1.5em;
  z-index: 2;
}
@keyframes jump-arrow {
	0%,
	20%,
	55%,
	80%,
	100% {
	  transform: translate3d(-50%, 0, 0);
	}

	40% {
		transform: translate3d(-50%, -15px, 0);
	}

	70% {
    transform: translate3d(-50%, -10px, 0);
	}

	90% {
		transform: translate3d(-50%, -5px, 0);
	}
}
.arrow-sec img {
  height: 100px;
}
.header header nav ul li a:hover {
  color: var(--maincolorsecond);
}

.header.bgcolor::before {
  display: none;
    }
    .whatsapp {
      width: 60px;
  }
  
  .contact-widget {
    position: fixed;
    bottom: 19px;
    right: 18px;
    z-index: 99;
    display: none;
  }
 .contact-menu {
  display: none;
 }
 .contact-widget.show {
  display: block;
 }
 .contact-widget.hide {
  display: none;
 }
 .header-btn a.btn {
  white-space: nowrap;
 }
 .home .banner::after {
background: none;
 }
.middle-content {
background-color: rgb(28 178 181 / 91%);
    padding: 90px;
    border-radius: var(--radius);
   
}
.middle-content h2 {
    color: var(--secondcolor);
    font-size: 3em;
    line-height: 1.1;
}
.middle-content h2 span {
    font-size: 70%;
    display: block;
    max-width: 85%;
}
.middle-content .right ul li {
    color: var(--secondcolor);
    font-size: 1.3em;
    list-style: disc;
    padding: 10px 0;
    line-height: 1.2;
   
}
.middle-content .right ul {
    margin: 0 0 0 20px;
}
.middle-sec {
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: left;
transform: translateY(-107px);
}
a.btn.darkblue {
    background-color: #272E47;
}
.btn-sec {
    transform: translateY(20px);
}
.middle-content.flex {
    gap: 50px;
}
.middle-content .right h4 {
    color: #fff;
    font-size: 1.8em;
    padding: 0 0 10px 0;
    
}
.middle-content .left {
    width: 55%;
}
.middle-content .right {
    width: 45%;
}
.middle-content .left img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
    margin: 20px 0 20px 0;
}
.middle-content h3 {
    color: var(--secondcolor);
    font-size: 1.1em;
    line-height: 1.1;
}