@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');


/*
 CSS for the main interaction
*/
.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
  }
  
  .tabset .tab-panel {
    display: none;
  }
  
  .tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
  .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
  .tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
  .tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
  .tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
  .tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
  }
  
  /*
   Styling
  */
  
  .tabset > label {
    transition: 0.5 ease;
    position: relative;
    display: inline-block;
    padding: 15px 15px 25px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
  }
  
  .tabset > label::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 10px;
    width: 22px;
    height: 4px;
    background: #8d8d8d;
  }
  
  .tabset > label:hover,
  .tabset > input:focus + label {
    transition: 0.5s ease;
    color: #06c;
  }
  
  .tabset > label:hover::after,
  .tabset > input:focus + label::after,
  .tabset > input:checked + label::after {
    transition: 0.5s ease;
    background: #06c;
  }
  
  .tabset > input:checked + label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    color: #0356a8;
  }
  
  .tab-panel {
    padding: 30px 0;
    border-top: 1px solid #ccc;
  }

  /*
   Demo purposes only
  */
  *,
  *:before,
  *:after {
    box-sizing: border-box;
  }
  
 

@media (min-width: 1089px) {
  .side-info {
    width: 45%;
  }

  .main-info {
    width: 55%
  }

  .serv-text {
    margin-left: 30px;
  }
    
}


@media (max-width: 1088px) {

  .serv-text {
    text-align: center;
    margin-left: 0px;
  }
  
  .tab-info {
    flex-direction: column;
  }

  .side-info, .main-info {
    width: 100%;
    text-align: center;
  }

  .tabset {
    text-align: center;
  }
}

.tabset {
  color: #333;
  font-weight: 300;
  padding: 30px;
  font: 16px/1.5em "DM Sans", sans-serif;

}

.side-info > h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

.main-info > p, .side-info > p {
    margin-top: 1em;
    margin-bottom: 1em;
}

.side-info > img {
  width: 90%;
}

header {
    height: 100vh;
    background-image: url(services-head.jpg);
    background-size: cover;
    color: white;
}

.text > h1 {
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    font-size: 65px;
    font-weight: 700;
    margin-top: 30vh;
}

.serv-text {
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    font-family: 'Red Hat Display', sans-serif;
}

footer {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    border-top: 1px solid black;
    /* background: linear-gradient(180deg, #d3d7e8, #ebf0f6); */
}

footer > p {
    padding: 20px;
    margin-left: 40px;
    margin-right: 40px;
}

