@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Butterfly+Kids&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
nav{
  display: flex;
  height: 80px;
  width: 100%;
  background: #f1f0f0;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}
nav .logo{
  color: #94C4F4;
  font-size: 35px;
  font-weight: 600;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  z-index: 1;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: #94C4F4;
}
nav .menu-btn i{
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: cyan;
  }
}
 
/* caption */

.imgContainer {
    position: relative;
    text-align: center;
    margin-top:0px;
    background-color:grey;
}
 
.second-txt {
    position: absolute;
    width: 100%;
    bottom: 20px;
    /* left: 10px; */
    background-color: rgb(199,81,192);
    font-family: 'Butterfly Kids', cursive;
    font-size: 58px;
}

 /* Footer */
 
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.content1{
  position: relative;
  margin: 130px auto;
  text-align: center;
  padding: 0 20px;
}
.content1 .text{
  font-size: 2.5rem;
  font-weight: 600;
  color: #202020;
}
.content1 .p{
  font-size: 2.1875rem;
  font-weight: 600;
  color: #202020;
}
 
footer{
    width: 100%;
    background: #f1f0f0;
    padding-bottom: 60px;
  }
  .main-content{
    display: flex;
  }
  .main-content .box{
    flex-basis: 50%;
    padding: 10px 20px;
  }
  .box h2{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  .box .content{
    margin: 20px 0 0 0;
    position: relative;
  }
  .box .content:before{
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #1a1a1a;
  }
  .box .content:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #1a1a1a;
    top: -10px;
  }
  .left .content p{
    text-align: justify;
  }
  .left .content .social{
    margin:50px 0 0 100px;
  }
  .left .content .social a{
    padding: 0 2px;
  }
  .left .content .social a span{
    height: 40px;
    width: 40px;
    background: #cfcbcb;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
  }
  .left .content .social a span:hover{
    background: #94C4F4;
  }
  .center .content .fas{
    font-size: 1.4375rem;
    background: #cfcbcb;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
  }
  .center .content .fas:hover{
    background: #94C4F4;
  }
  .center .content .text{
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 10px;
  }
  .center .content .phone{
    margin: 15px 0;
  }
  .right form .text{
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #656565;
  }
  .right form .msg{
    margin-top: 10px;
  }
  .fa-phone-alt:before{
      color:blue;
  }
  .fa-envelope:before{
      color:blue;
  }
  .right form input, .right form textarea{
    width: 100%;
    font-size: 1.0625rem;
    background: #151515;
    padding-left: 10px;
    border: 1px solid #222222;
  }
  .right form input:focus,
  .right form textarea:focus{
    outline-color: #3498db;
  }
  .right form input{
    height: 35px;
  }
  .right form .btn{
    margin-top: 10px;
  }
  .right form .btn button{
    height: 40px;
    width: 100%;
    border: none;
    outline: none;
    background: #f12020;
    font-size: 1.0625rem;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
  }
  .right form .btn button:hover{
    background: rgb(255, 119, 0);
  }
  .bottom center{
    padding: 5px;
    font-size: 0.9375rem;
    background: #f1f0f0;
    margin-top: 20px;
  }
  .bottom center span{
    color: #656565;
  }
  .bottom center a{
    color: #94c4f4;
    text-decoration: none;
  }
  .bottom center a:hover{
    text-decoration: underline;
  }
  .cb_extra{
      margin-left: 25%;
  }
  .sc_extra{
      display: none;
  }
  @media screen and (max-width: 900px) {
    footer{
      position: relative;
      bottom: 0px;
    }
    .main-content{
      flex-wrap: wrap;
      flex-direction: column;
    }
    .main-content .box{
      margin: 5px 0;
    }
  }

/* Gallary CSS */

div.gallery {
   margin: 10px;
   border: 1px solid #ccc;
   float: left;
   width: 300px;

  }

  div.gallery:hover {
   border: 1px solid #f12020;
  }

  div.gallery img {
   width: 100%;
  }

  div.desc {
   padding: 15px;
   text-align: center;
  }

/* info paragraph */

.service_container{
  height: 497px;
  margin: 20px;
  text-align: center;
  
}
.service_title{
  margin-top: 50px;
  color: rgb(177, 94, 94);
}
.service_container p,h2,h3{
  color: rgb(177, 94, 94);
  font-family:'Times New Roman', Times, serif;
}
p,h3{
  margin-top: 10px;
}
b{
    color:#94C4F4;
}
.contact_name {
  color:#94C4F4;
}

.cb_extra h2{
    color:#1a1a1a
}
.left h2{
    color:#1a1a1a;
}

/*media query*/

/* Slider CSS */

.mySlides {
    display: none;
}
img {
    vertical-align: middle;
    height:450px !important;
}

/* Slideshow container */

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: 20px;
}

/* Caption text */

.textbrij {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {
  .textbrij {font-size: 11px}
}
@media only screen and (min-width: 921px) {
  .flex_items{
  display: flex;
  margin-left: 25px;
}
.service_container{
    width:50%;
}
.slideshow-container {
    width:50%;
}
img{
    width:100%;
}
}
@media only screen and (max-width: 920px) {
  nav .logo {
  font-size:28px;
}
img {
    width:100%;
    height:500px !important;
}
.service_title{
  margin-top: 10px;
}
.service_container{
    height:auto;
    width:100%;
    margin-left: 0;
    }
}

