/***************************************************/
/** FONTS **/
/***************************************************/

@import url('https://fonts.googleapis.com/css?family=Poppins');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

/***************************************************/
/** END FONTS **/
/***************************************************/

/***************************************************/
/** MAIN SETTINGS **/
/***************************************************/
    /** BEGIN
    EDITABLE SETTINGS **/
    :root {
        /**COLORS**********************************/
        --color1: #104646; /**Logo**/
        --color2: #5fdbd5; /**Logo**/
        --color3: #ffffff;  /**White**/
        --color4: #47a3a3; /**Footer-Icons**/
        --color5: #f8f8f8; /**Light Gray**/
        /**Backgrounds**/
        --main-bg-color: #ffffff;
        --main-font-color: #111111;
        --footer-bg-color: #151414;
         /**Buttons**/
        --main-btn-color: #e61a1e;
        --main-btn-font-color: #ffffff;
        --main-btnhover-color: #cc1517;
        --main-btnhover-font-color:#ffffff;
        /******************************************/
        /**FONTS**********************************/
        --main-font: 'Poppins', sans-serif;
        --main-font-size: 16px;
        --main-font-weight: 400;
        /******************************************/
        /**IMAGES**********************************/
        --logo-height: 70px;
        --logo-height-mobile: 60px;
         /******************************************/
    }
    /** END
    EDITABLE SETTINGS **/

     /**BEGIN 
    BODY & HEADINGS SETTINGS**/
        body{
            font-family: var(--main-font);
            font-size: var(--main-font-size);
            font-weight: var(--main-font-weight);
        }

        h1{
          font-size: 38px;
        }

        h2{
            font-size: 35px;
            font-weight: 600;
            letter-spacing: 0.8px;
        }
        h3{
          font-size: 18px;
          font-weight: 400;
          letter-spacing: 0.8px;
       }
     h4{
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
       }

       .small-text{
          font-size: 14px;
       }

        .color-text{
            color: var(--color4);
        }

        .color-text-light{
          color: var(--color2);
        }


        hr{
          max-width: 80%;
          margin: auto;
          color: #cccccc;
        }
     /**END 
    BODY & HEADINGS SETTINGS**/

    /**BEGIN 
    IMAGES SETTINGS**/
        #logo{
            max-height: var(--logo-height);
            padding-bottom: 5px;
        }

        .img-full{
            max-width: 100%;
        }
         .img-icon{
          max-width: 70px;
        }
    /**END 
    IMAGES SETTINGS**/

    /**BEGIN 
    BUTTONS SETTINGS**/
        .btn-primary {
        background: var(--main-btn-color);
        color: var(--main-btn-font-color);
        border-radius: 3px;
        font-size: 15px;
        line-height: 17px;
        padding: 13px 25px;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 2px;
        cursor: pointer;
        border: none;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        margin: 25px 25px;         
        }
        
        .btn-primary:hover {
            background: var(--main-btnhover-color);
            text-decoration: none;
            color: var(--main-btnhover-font-color);   
        }

        .btn-cta{
          background: var(--main-font-color);
        }

        .btn-cta:hover{
           background: var(--color1);
        }

    /**END 
    BUTTONS SETTINGS**/

/***************************************************/
/** END MAIN SETTINGS **/
/***************************************************/

/***************************************************/
/**PAGE SECTIONS**/
/***************************************************/

/** BEGIN***********
HEADER NAV BAR CSS**/
    .header-navbar {
        padding: 0;
        background-color: var(--color3);
        border-bottom: 5px solid var(--color2);
        -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 3;
    }

    .navbar-links {
        padding: 1.5rem 0 0.5rem 0;
    }
    
    .navbar {
        max-width: 1366px;
        margin: 0 auto;
        padding: 0 3rem;
    }
    .navbar-logo {
        margin: 0;
        padding: 0 0;
    }
/** END
HEADER NAV BAR CSS**/

/** BEGIN
MAIN & FORM CSS**/
#main-section{
      background-image: url(../images/main-background.jpg);
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-size:cover;
      background-position: center left;
      text-align: center;
      padding: 0;
  }

  #image-container{
    padding: 20px 20px 0px 20px;
  }
    /**FORM CSS**/
  #form-container{
    text-align: right;
    background-color:var(--color1);
    padding: 4.5% 3% 0% 3%;
    background-repeat: no-repeat;
    background-size:auto;
    background-position: center bottom;
    box-shadow: rgb(83, 83, 83) 0px 20px 30px -15px;
    max-width: 480px;
  }

  input[type=text], input[type=tel], input[type=email]{
    padding: 5px 10px;
    border-radius: 5px;
    border: 0px;
  }
  
  input[type=text]:focus {
    border: 3px solid var(--main-font-color);
  }
  
  input[type=submit]{
    width: 100%;
    border-radius: 2px;
  }
  
  ::placeholder {
    color: #7a7a7a !important;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
  }
  
  .form-group{
    margin-bottom: 10px;
    padding: 0px 10px;
  }
  
  .form-button{
    /*background-color: #000;*/
    font-family: 'Open Sans', sans-serif;
    background-color: var(--main-btn-color);
    margin-top: 20px;
    width: 95%;
    padding: 15px 10px;
    border: 1px solid var(--main-btnhover-color);
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 10px 5px -1px;
  }
  
  .form-button:hover{
    background: var(--main-btnhover-color);
  }
/** END
MAIN & FORM CSS**/

/** BEGIN
BENEFITS CSS**/
#benefits-section{
	padding: 30px 20px 30px 20px;
  background-color: var(--color5);
 }
/** END
BENEFITS CSS**/

/** BEGIN
ABOUT CSS**/
#about-section{
	padding: 100px 20px 100px 20px;
}
/** END
ABOUT CSS**/


/** BEGIN
SERVICES CSS**/
#services-section{
	padding: 100px 20px 100px 20px;
  background-color: var(--color1);
  color:var(--color3);
}

.procedure-list{
	padding: 10px 20px 20px;
}

.list-icon{
  margin-bottom: 15px;
  margin-right: 5px;
  color: var(--color2);
}
/** END
SERVICES CSS**/

/** BEGIN
TESTIMONIALS CSS**/

    #testimonials-section{
        padding: 100px 20px 50px 20px;
    }

/** END
TESTIMONIALS CSS**/

/** BEGIN
BEFORE AND AFTER CSS**/

    #ba-section{
        padding: 100px 20px 100px 20px;
    }

/** END
BEFORE AND AFTER CSS**/

/** BEGIN
  MAP CSS**/

  #facilities-section{
    padding: 100px 0px 100px 0px;
    background-color: var(--color5);
}

/** END
MAP CSS**/


/** BEGIN
  MAP CSS**/

    #map-section{
      padding: 0px;
  }

/** END
MAP CSS**/

    
/** BEGIN
  CTA SECTION CSS**/
   /** BEGIN
  CTA SECTION CSS**/    
    #cta-section {
        padding: 40px 10px 40px 10px;
        width: 100%;
        text-align: center; 
        background-color: var(--color1);
        color: var(--color3);
        border-bottom: 5px solid var(--color2);
    }
    
  /** END
  CTA SECTION CSS**/
    

    /** BEGIN
  THANKS CSS**/

  #thanks-section{
    padding: 15% 20px 20% 20px;
    text-align: center;
    font-size: 22px;
}

/** END
THANKS CSS**/


/***************************************************/
/**END PAGE SECTIONS**/
/***************************************************/

/***************************************************/
/**FOOTER SECTIONS**/
/***************************************************/
.footer-section {
    background: var(--footer-bg-color);
    position: relative;
    margin-top: 0px;
    padding-top: 50px;
  }
  .footer-cta {
    border-bottom: 1px solid #373636;
  }

    .single-cta{
 
    padding: 20px;
    text-align: center;
  }

  .single-cta i {
    color: var(--color4);
    font-size: 10px;
    float: left;
    margin-top: 8px;
    margin-right: 10px;
  }

  .cta-text {
    padding-left: 0px;
    display: inline-block;
    color: var(--color5);
  }
  .cta-text h4 {
    color: var(--color2);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .footer-content {
    position: relative;
    z-index: 1;
  }
  .copyright-section{
    padding: 25px 0;
    font-size: 14px;
    color: var(--color5);
  }

  .copyright-section a{
    color: var(--color5);
    text-decoration: none;
  }

  .copyright-section ul{
    list-style-type: none;
  }
/***************************************************/
/**FOOTER SECTIONS**/
/***************************************************/

/***************************************************/
/**SLIDER CSS**/
/***************************************************/
.testimonials{
text-align:center; 
width:80%;
margin:0 auto;
padding-top: 20px;
}

.testimonial{
width:100%;
margin:0 auto;
text-align:center;
}

.details{
display:inline-block;
width:100%;
text-align:center;
color: var(--footer-bg-color);
font-weight: 600;
}

.testimonial p{
max-width:770px;
margin:0 auto;
text-align:center;
margin-bottom:25px;
background-color: var(--color5);
padding: 30px 20px;
border-radius: 5px;
margin-top: -15px;
}

.slick-prev:after {
  width: 42px;
  height: 42px;
  content: "\f053"; 
  font-family: FontAwesome;
  color: var(--color4);
  font-size: 40px;
  font-style: normal;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 1;
  margin-top: -20px;
}


.slick-next:after {
  width: 42px;
  height: 42px;
  content: "\f054"; 
  font-family: FontAwesome;
  color: var(--color4);
  font-size: 40px;
  font-style: normal;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 1;
  margin-top: -20px;

}

.fa-quote-left{
  color: var(--color4);
}
  /***************************************************/
/**END SLIDER CSS**/
/***************************************************/

  /***************************************************/
/**GALLERY CSS**/
/***************************************************/

#gallery {
  padding-top: 10px;
  @media screen and (min-width: 991px) {
    padding: 10px 30px 0 30px;
  }
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  img {
    width: 100%;
  }
}
.img-overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  i {
    color: #fff;
    font-size: 3em;
  }
}

#overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none; 
  user-select: none; 
  img {
    margin: 0;
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 5%;
    @media screen and (min-width:768px) {
        width: 60%;
    }
    @media screen and (min-width:1200px) {
        width: 50%;
    }
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (min-width:768px) {
    font-size: 3em;
  }
  
}
  /***************************************************/
/**END GALLERY CSS**/
/***************************************************/

/*MOBILE CSS*/

/* On screens that are 95px or less*/
@media screen and (max-width: 950px) {
	
  /*DEVICE VISIBILITY*/
  .mobile{
    display:inline;
  }
  .pc{
    display:none;
  }
  /**END 
  DEVICE VISIBILITY **/

   /**BEGIN 
    IMAGES SETTINGS**/
        #logo{
            max-height: var(--logo-height-mobile);
        }
    /**END 
    IMAGES SETTINGS**/
    /** BEGIN***********
    HEADER NAV BAR CSS**/
        .navbar-logo {
            margin: auto
        }
    /** END
    HEADER NAV BAR CSS**/

    /** BEGIN
    MAIN & FORM CSS**/
       #form-container{
      padding: 40px 20px;
      background-repeat: no-repeat;
      background-size:auto;
      background-position: center bottom;
      box-shadow: rgb(83, 83, 83) 0px 20px 30px -15px;
      max-width: 480px;
    }

    .single-cta i {
    font-size: 22px;
  }

  .cta-text h4 {
    font-size: 15px;
  }

  .footer-section { font-size: 15px;}
}