* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Montserrat';
  }
  
  /* 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: 0 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;
    }
  }
  
  

  
  footer {
    background-color:#0082e6;
    color: #fff;
    padding: 20px 0;
  }
  
  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;
    padding-left: 8px;
  }
  
  
.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: 170vh;
      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;
    }
  }
  

  @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;
        }
      
      }
  