* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
  }
  
  body {
    
    font-family: 'Montserrat';
    display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  }
  
  /* Navigation bar */
  nav{
    background: #0082e6;
    height: 80px;
    width: 100%;
  }
  label.logo{
    color: white;
    font-size: 30px;
    line-height: 80px;
    padding: 0 50px;
    font-weight: bold;
  }
  nav ul{
    float: right;
    margin-right: 20px;
  }
  nav ul li{
    display: inline-block;
    line-height: 50px;
    margin: 17px 5px;
  }
  nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none;
  }
  a.active,a:hover{
    background: #1b9bff;
    transition: .5s;
    text-decoration: none;
  }
  .checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  #check{
    display: none;
  }
  @media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }
  }
  @media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
    nav ul li{
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    a:hover,a.active{
      background: none;
      color: #0082e6;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }
  

.about-container{
width: 100%;
min-height: 83vh;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
margin: auto;

}
.image-container{
margin-top: auto;
margin-bottom: auto;
margin-left: 100px;
margin-right: 100px;

}



.row h2{
color: White;
font-size: 30px;
padding : 13px;
background-color:#FF6600;
border: 2px solid transparent;
border-radius: 5px;
transition: .3s all ease;

}
.text-container h2{
color: #0082e6;
font-size: 30px;
margin-bottom: 10px;
margin-left: 13px;



}
.text-container p{
color: black;
line-height: 26px;
font-size: 18px;
padding-bottom: 40px;
margin-left: 13px;

}
.text-container a{
text-decoration: none;
padding: 12px;
margin: 50px 0px;
background-color: #FF6600;
border: 2px solid transparent;
color: white;
border-radius: 5px;
transition: .3s all ease;
}
.text-container a:hover{
background-color: transparent;
color: black;
border: 2px solid #0082e6;
}
@media screen and (max-width: 1600px){
.about-container{
width: 90%;
}
.image-container img{
width: 550px;
height: 400px;
}
.text-container h1{
font-size: 50px;
}
}
@media screen and (max-width: 1100px){
.about-container{
flex-direction: column;
}
.image-container img{
width: 450px;
height: 300px;
}
.text-container {
align-items: center;
}
}

.section-heading{
    color: White;
    font-size: 1.7rem;
    padding : 1rem;
    background-color:#FF6600;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: .3s all ease;
      
  }
    
    section {
        height: 100vh;
        width: 100%;
        display: grid;
        place-items: center;
        
      }
      .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: 3rem;
        margin-right: 3rem;
      }
      .column {
        
        padding: 0 1em 1em 1em;
        text-align: center;
        flex: 0 0 33.33%;
        max-width: 33.33%;
      }
      .card {
        height: 90%;
        padding: 30px 100px;
        background: linear-gradient(#ffffff 50%,#0082e6 50%);
        background-size: 100% 200%;
        background-position: 0 2.5%;
        border-radius: 5px;
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.10);
        cursor: pointer;
        transition: 0.5s;
      }
      h3 {
        font-size: 20px;
        font-weight: 600;
        color: black;
        margin: 1em 0;
      }
    
      .icon-wrapper {
        background-color: #0082e6;
        position: relative;
        margin: auto;
        font-size: 30px;
        height: 2.5em;
        width: 2.5em;
        color: #ffffff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        transition: 0.5s;
      }
      .card:hover {
        background-position: 0 100%;
      }
      .card:hover .icon-wrapper {
        background-color: #ffffff;
        color: #0082e6;
      }
      .card:hover h3 {
        color: #ffffff;
      }
      .card:hover p {
        color: #f0f0f0;
      }
  
  /* Media Query for Mobile Devices */
  @media only screen and (max-width: 767px) {
      section {
        padding: 1em;
        height: auto;
        
      }
      .column {
          padding: 0 1em 1em 0;
          text-align: center;
          flex: 0 0 0 0;
          max-width: 100%;
      }
  
      .card {
          height: 90%;
          padding: 30px 50px;
          background: linear-gradient(#ffffff 50%,#0082e6 50%);
          background-size: 100% 200%;
          background-position: 0 2.5%;
          border-radius: 5px;
          box-shadow: 0 0 35px rgba(0, 0, 0, 0.10);
          cursor: pointer;
          transition: 0.5s;
        }
        h3 {
          font-size: 20px;
          font-weight: 600;
          color: black;
          margin: 1em 0;
        }
      
        .icon-wrapper {
          background-color: #0082e6;
          position: relative;
          margin: auto;
          font-size: 30px;
          height: 2.5em;
          width: 2.5em;
          color: #ffffff;
          border-radius: 50%;
          display: grid;
          place-items: center;
          transition: 0.5s;
        }
        .card:hover {
          background-position: 0 100%;
        }
        .card:hover .icon-wrapper {
          background-color: #ffffff;
          color: #0082e6;
        }
        .card:hover h3 {
          color: #ffffff;
        }
        .card:hover p {
          color: #f0f0f0;
        }
      
    }
    
    /* Media Query for Tablets */
    @media only screen and (min-width: 768px) and (max-width: 1023px) {
      section {
        padding: 1em;
      }
      .column {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 1em;
      }
    }
    
    /* Landscape Orientation for Tablets */
    @media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
      section {
        padding: 1em 4em;
      }
      .column {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        padding: 0 1em 1em 1em;
      }
    }
    
    footer {
        background-color:#0082e6;
        color: #fff;
        padding: 20px 0;
        width: 100%;
         padding-top: 35px;
      }
      
      footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      
      footer .row {
        margin: 0 -10px;
      }
      
      footer .col-3 {
        width: 25%;
        padding: 0 10px;
    
      }
      
      footer h4 {
        font-size: 20px;
        margin-bottom: 25px;
        font-weight: bold;
        color: #ffffff;
        text-transform: capitalize;
        font-weight: 500;
        position: relative;
      
      }
    
      footer h4::before{
        content: '';
        position: absolute;
        left:0;
        bottom: -10px;
        background-color: white;
        height: 3px;
        box-sizing: border-box;
        width: 50px;
        font-weight: bold; 
      }
      
      footer ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }
      
      footer ul li {
        margin-bottom: 10px;
      }
      
      footer ul li a {
        color: #fff;
        text-decoration: none;
      }
    
      footer .col-3 .social-links a{
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255,255,255,0.2);
        margin:0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
      }
      footer .col-3 .social-links a:hover{
        color: #24262b;
        background-color: #ffffff;
      }
    
      footer ul li a{
        font-size: 16px;
        color: #ffffff;
        text-decoration: none;
        font-weight: 300;
        color: white;
        display: block;
        transition: all 0.3s ease;
      }
      footer ul li a:hover{
        color: #ffffff;
      }    

      @media only screen and (max-width: 768px) {
  
        .col-6 {
          width: 100%;

        }
      
        .services .col-3 {
          width: 100%;
          margin-bottom: 20px;
        }
      
        footer .col-3 {
          width: 100%;
          margin-bottom: 20px;
        }
      
      }
  