@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
      *,
      *::before,
      *::after {
          box-sizing: border-box;
          line-height: 1.5em;
      }

      html {
          font-size: 16px;
          scroll-behavior: smooth;
          background-color: #89cacb;
          -webkit-text-size-adjust: 100%;
      }

      body {
          margin: 0;
          font-family: "Open Sans", sans-serif;
          background-color: #89cacb;
          color: rgb(0, 92, 128);
          overflow-x: hidden;
      }

      header {
          background-color: #89cacb;
/*          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),*/
/*              0 4px 6px -4px rgba(0, 0, 0, 0.1);*/
          padding: 10px 20px;
      }
      header .wrapper {
          max-width: 1000px;
          margin: 0 auto;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: space-between;
      }
      header .logo img {
          height: 50px;
          display: block;
      }

      .container {
          max-width: 900px;
          margin: 0 auto;
          padding: 30px;
      }

      @media (min-width: 550px) {
          .navbar {
              all: unset;
              display: block;
          }
          .navbar ul {
              flex-direction: row;
              gap: 20px;
          }
          .navbar ul a {
              font-size: inherit;
          }
          .close-nav,
          .menu-bar {
              display: none;
          }
      }
  /*--------------------------footer------------------*/
.footer{
  margin-top: 50px;
  background: rgb(47, 129, 147);
  color: rgb(244, 237, 237);
}

.row h1{
  font-size: 16px;
  margin: 25px 0;
  justify-content: space-between;
}

.footer h1::after{
  content: '';
  background: #89cacb;
  display: block;
  height: 3px;
  width: 185px;
  margin: 20px auto 5px;
}

.footer p{
  font-size: 16px;
}


.footer-image img{
  width: 360px;

}

.footer .row .fa{
  padding-right: 24px;
  font-size: 22px;
}
.col-md-2 {
  margin-right: 35px;
}

#socialmedia{
  display: right;
  justify-content: space-between;
  
}
#socialmedia ul {
    width: 100%;
    display: flex;
    margin: 0 auto;
   
}

#socialmedia ul li {
    display: inline-block;
    float: left;
    

}
#socialmedia ul li a:hover {
  
  box-shadow: 0 8px 16px 0 rgb(198, 6, 51);

}



#socialmedia p{   
    font-size: 12px;
    width: 20%;
    margin: 0 auto;
    text-align: right;

}

/*------slider-----*/
  /* Style for the slider container */
    .slider-container {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      overflow: hidden;
    }

    /* Style for the slider images */
    .slider {
      width: 500%; /* 5 images in the slider, adjust as needed */
      animation: none;
    }

    .slider-image {
      float: left;
      width: 20%;
      height: 400px;
    opacity: 0.9;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* Style for the constant text overlay */
    .slider-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: rgb(129, 15, 15);
      font-size: 24px;
    }


#about{
  padding-top: 50px;
  padding-bottom: 50px;
  color: #555;
  text-align: center;
}

#about .btn{
  margin-top: 20px;
  margin-bottom: 30px;
  align-items: center;
  text-align: center;
}

.about-content{
  padding-top: 20px;
  text-align: center;
}


 .center {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;

        }

/*------------------Navigation ---------------------*/
navigation{
  background: white;
 padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;

}
navigation .logo{
  color: white;
  display: none;
}
navigation .navbar ul{
  list-style: none;

}navigation .navbar ul li{
  position: relative;
  float: left;
  padding-right: 50px;

}navigation .navbar ul li a{
  font-size: 15px;
  padding: 10px;
  color: black;
  font-weight: bold;
  display: block;

}navigation .navbar ul li a: hover{
  background: black;
  color: white;
}
navigation .navbar ul li ul{
  position: absolute;
  left: 0;
  width: 160px;
  z-index: 1000;
  background: #89cacb;
  display: none;
}
navigation .navbar ul li ul li{
  width: 100%;
  border-top: 1px solid rgba(0,0,0,.1);

}navigation .navbar ul li:focus-within > ul, navigation .navbar ul li:hover > ul{
  display: initial;
}

#menu-bar{
  display: none;
}
navigation label{
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: none;
}

@media(max-width:991px){
  navigation{
    padding: 20px;
  }
  navigation label{
    display: initial;
  }

  navigation .navbar{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, .1);
  }

  navigation .navbar ul li{
    width: 100%;
  }
  navigation .navbar ul li ul{
    position: relative;
    width: 100%;
  }
  navigation .navbar ul li ul li{
    background: #eee;
  }
  #menu-bar:checked ~ .navbar{
    display: initial;
    z-index: 1000;
  }
}

/*----------my projects -------------*/
.game-board {
    display: grid;
    grid-gap: 3px;
    grid-template-rows: 300px 300px 300px;
    grid-template-columns: 400px 400px 400px;
}
.box {
  background: #444;
  border: 1px solid #555;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AAA;
}
.box img{
    max-width: 100%;  
    max-height: 100%;    
    display: block; 
    margin: 0 auto;
}


/*---------------photo gallery----------------------------*/
.photo {
  text-align: center;
  padding: 16px;
}

.row {
  display: -ms-flexbox; /* IE 10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE 10 */
  flex-wrap: wrap;
  padding: 0px 4px;

}

.column {
  -ms-flex: 40%; /* IE 10 */
  flex: 40%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 10px 16px;
  background-color: #f1f1f1;
  cursor: pointer;
  font-size: 18px;
}

.btn:hover {
  background-color: #ddd;
}

.btn.active {
  background-color: #666;
  color: white;
}

/*-------------------------services--------------------------*/
#services{
  color: #13381d !important;
  background-attachment: fixed;
  padding-top: 50px;
  padding-bottom: 50px;

}

.services .col-md-3{
  border: 1px solid #13381d; 
}

.icon{
  font-size: 40px;
  margin: 20px auto;
  padding: 20px;
  height: 80px;
  width: 80px;
  border: 1px solid #fff;
  border-radius: 50%;
}

#services p{
  font-size: 14px;
  margin-top: 20px;
  color: #ccc;

}

.services .col-md-3:hover{
  background: black;
  cursor: pointer;
  transition: 0.7s;
  color: #fff;


}
/*-----------------------------------faq-----------------------*/
.faq-heading{
    border-bottom: #777;
    padding: 20px 60px;
}
.faq-container{
display: flex;
justify-content: center;
flex-direction: column;
}
.hr-line{
  width: 60%;
  margin: auto;
  
}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    /* background-color: #eee; */
    color: #444;
    cursor: pointer;
    padding: 30px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;
}
.faq-body{
    margin: auto;
    /* text-align: center; */
   width: 50%; 
   padding: auto;
   
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.faq-page:hover {
    background-color: #F9F9F9;
}
/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}
.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

/*----------------------about-----------------------*/
.img-wrap{
  width: 100%;
}

.img-wrap img{
  width: 100%;
  padding: 10px;
  margin-top: 85px;
  margin-bottom: 20px;
  border-radius: 25%;
  box-shadow: 0 0 0 7px #999;
}

#aboutus{
  display: flex;
  justify-content: center;
  align-items: center;

}

#aboutus h2{
  margin-bottom: 25px;
  color: #07591d;
}
#aboutus h2:after{
  content: '';
  background: #07591d;
  display: block;
  height: 3px;
  width: 185px;
  margin: 20px auto 5px;
}

#aboutus p{
  color: #555;
  text-align: justify;
}

#aboutus .row{
  margin-top: 30px;
}
.button {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  border-radius: 12px;
  position: absolute;
  left: 40%;
}
.button:hover{
   transform: scale(1.1);
}

/*----------------------awards------------*/
.card {
 
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}


.card:hover {
  box-shadow: 0 8px 16px 0 rgb(79, 166, 128);
}

/*------------------------blogs----------------*/

.blog-wrapper{
  padding:15px;
  display:flex;
  flex-direction:row;
  justify-content:center;
  flex-wrap:wrap;
  .blog-card{
    @include transition(.3s);
    max-width:300px;
    margin:15px;
    background:#fff;
    border:1px solid #CB6074;
    text-align:center;
    cursor:pointer;
    &:hover{
      box-shadow: 0 3px 10px 0 rgba(0,0,0,.1);
      .card-img{
        img{
          opacity:0.8;
        }
      }
    }
    .card-img{
      position:relative;
      text-align:center;
      background:#CB6074;
      img{
        @include transition(.3s);
        max-height:180px;
        width:100%;
        border-bottom:4px solid #CB6074;
      }
      &:before{
        content:'';
        position: absolute;
        bottom: -8px;
        left: 50%;
        margin-left: -10px;
        width: 0;
        height: 0;
        border-top: solid 10px #CB6074;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent;
      }
      h1{
        position:absolute;
        margin:0;
        font-size:42px;
        bottom:15px;
        width:100%;
        color:#fff;
        font-family: 'Slabo 27px', serif;
      }
    }
    .card-details{
      margin-top:30px;
      font-family: 'Roboto', sans-serif;
      color:#3C3C3C;
      span{   
        padding:0 30px;
        i{
          margin-right:5px;
        }
        
      }
    }
    .card-text{
      padding:30px 15px;
      font-family: 'Roboto', sans-serif;
      line-height:22px;
    }
    .read-more{
      @include transition(.3s);
      display:inline-block;
      width:auto;
      text-align:center;
      text-transform:uppercase;
      background:#CB6074;
      color:#fff;
      padding:15px;
      margin-bottom:30px;
      font-family: 'Oswald', sans-serif;
      &:hover{
        background: darken(#CB6074,20%);
      }
    }
  }
}

/*---------------------work experience---------------------------------*/
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: rgb(0, 79, 128);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timelineContainer {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timelineContainer::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: rgb(6, 0, 128);
  border: 4px solid #FF9F55;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}


.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgb(49, 49, 75);
}


.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid green;
  border-width: 10px 10px 10px 0;
  border-color: transparent rgb(69, 69, 104) transparent transparent;
}


.right::after {
  left: -16px;
}


.content {
  padding: 20px 30px;
  background-color: rgb(63, 163, 212);
  position: relative;
  color: rgb(26, 18, 18);
  border-radius: 6px;
}


@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }


  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }


  .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  .left::after, .right::after {
    left: 15px;
  }


  .right {
    left: 0%;
  }
}
/*-----------------------testimonial-----------------------------*/
.testimonialContainer {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}
.testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}
.slide p {
  text-align: center;
  padding: 0 160px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
.slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}
.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.details .job {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}
/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: green;
  transform: translateY(30px);
/*  background-color: rgba(0, 0, 0, 0.1);*/
  transition: 0.2s;
}
.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #333;
}
.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}
.swiper-pagination-bullet-active {
  background-color: #4070f4;
}
@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }
  .nav-btn {
    display: none;
  }
}