:root{
    --font-col: #000;
    --back-col: #F68A88;
    --back-col-two: #fff;
    --hover-col: #FFF;
}

body {
  margin: 0;
  font-family: Helvetica, sans-serif;
  /* background-color: var(--back-col); */
}

a {
  color: var(--font-col);
}

/* header */

.header {
  background-color: var(--back-col-two);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 3;
  border-bottom: 3px solid #F25956;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: var(--back-col-two);
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid var(--back-col);
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: var(--back-col);
  color: var(--hover-col);
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  font-size: 21px;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: fit-content;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 950px) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

.call-us{
    background: #F25956;
    font-weight: 600;
}

.call-us a{
    color: white;
}

.call-img{
    width: 25px;
}

.topdiv{
  text-align: center;
  padding: 2rem;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.banner-cont{
  height: 100%;
}

.topbanner{
  display: flex;
  height: 100%;
}

.topbanner h5{
  font-weight: 600;
  font-size: 14px;
}

.topbanner h1{
  font-weight: 600;
  font-size: 3rem;
  padding: 2rem 0;
}

.topbanner .text{
  width: 80%;
  margin: auto;
}

.topbanner button{
  width: 200px;
  margin: 3rem auto;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #F25956;
  color: white;
  border: none;
}

.topbanner button:hover{
  background-color: #F68A88;
}

.banner-section{
  padding-top: 6rem;
  background-image: url(/banner.jpg);
  background-size: cover;
  background-position: center center;
  height: 700px;
}

.banner-section img{
    width: 100%;
}

.floating{
  width: 85%;
  margin: -5rem auto 2rem auto;
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.floating-col{
  padding: 1rem;
}

.label{
  color: #F68A88;
}


@media screen and (max-width: 768px){
  .topdiv{
    margin: 0;
  }
  .banner-section{
    height: 575px;
    padding-top: 4rem;
  }
  .topbanner .text{
    margin: 0 auto;
  }
  .topdiv h1{
    padding: 1rem 0;
    font-size: 2rem;
  }
  .floating{
    width: 90%;
  }

  .logo{
    padding: 0 20px!important;
  }
}

.about-section{
    border-radius: 5px;
    padding-bottom: 4rem;
}

.about-col{
    margin: auto;
    text-align: justify;
}

.about-section h2{
    text-align: center;
    font-weight: 700;
}

.mission-section{
    padding-top: 2rem;
}

.mission-section h2{
    text-align: center;
    font-weight: 700;
}

.mission-card-div{
    padding: 1rem;
}

.mission-card{
    padding: 1rem 3rem;
    text-align: justify;
    /* border: 1px solid black; */
    border-radius: 5px;
    background-color: #FCDDDC;
    box-shadow: #00000054 -4px 4px 6px 1px;
}

.contact-section{
    padding: 2rem 0;
    margin-top: 2rem;
    background: url(contactus.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 768px){
  .contact-photo{
    flex-direction: column;
  }
}


.contactus{
    text-align: center;
    display: flex;
    color: black;
    height: 300px;
}

.contact-para{
  margin: auto;
}

.contact-para h2{
  font-weight: 600;
  font-family: cursive;
}

.contact-para p{
  font-family: monospace;
}

.contact-photo{
  display: flex;
}

.contact-photo img{
    width: 38px;
    margin: auto;
}

.reviews-section{
    margin-top: 2rem;
    padding: 2rem 0;
}

.reviews-section h2{
    text-align: center;
    margin-bottom: 2rem;
}

.review-cards{
    width: 100%;
    background-color: #F25956;
    padding: 1rem;
    border-radius: 5px;
    color: black;
}

.review-cards span{
    text-align: end;
    font-weight: 600;
    
}

.review-cards::before{
    content: "";
    position: absolute;
    width: 25px;
    height: 60px;
    background-color: #F25956;
    border: 1px solid #F25956;
    -webkit-transform: rotate(67deg);
    transform: rotate(67deg);
    bottom: -30px;
    left: 80px;
    margin-top: 10px;
}

.owl-stage{
    margin-bottom: 2rem;
}

.gallery-section{
    padding: 2rem 0;
    background-color: #FCDDDC;
}

.gallery-section h2{
    margin: 2rem 0;
    text-align: center;
}

.footer-section{
  background-color: #F25956;
  color: white;
}

.footer-row{
  padding: 2rem 0;
}

.foot-map iframe{
  width: 100%;
  padding: 1rem;
}

.foot-map h2{
  color: white;
  padding-left: 1rem;
  font-weight: 600;
}

.foot-contact h2{
  color: white;
  padding-left: 1rem;
  /* padding-top: 1rem; */
  font-weight: 600;
}

.info-div{
  padding: 1rem;
}

.mobile-number img{
  width: 21px;
  margin-right: 5px;
}

.mobile-number{
  font-size: 21px;
}

.mobile-number a{
  font-size: 21px;
  color: white;
  text-decoration: none;
}

.operate-in img{
  width: 25px;
  margin-right: 5px;
}

.operate-in span{
  font-size: 15px;
  color: white;
  text-decoration: none;
}

.last-line{
  margin: 2rem 0;
  text-align: center;
}

.last-line span{
  color: #F25956;
  /* text-decoration: underline; */
  font-weight: 600;
}