/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1200px) {


  *{ margin: 0; padding: 0; box-sizing: border-box; }
  body{
    width: 100%;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.03);
  }
  p{
    line-height: 1.5;
  }
  h2{
    font-size: 1rem;
  }
  /* width */
  /* ::-webkit-scrollbar {
    width: 10px;
  } */
  
  /* Track */
  /* ::-webkit-scrollbar-track {
    background: #f1f1f1;
  } */
  
  /* Handle */
  /* ::-webkit-scrollbar-thumb {
    background: rgba(0, 222, 227, 1);
  } */
  
  /* Handle on hover */
  /* ::-webkit-scrollbar-thumb:hover {
    background: #555;
  } */
  .mt-1{ margin-top: 1rem; }
  .mt-2{ margin-top: 2rem; }
  li{
    line-height: 1.5rem;
  }
  
  /*##############################*/
  nav{
    position: fixed;
    background: rgba(70, 70, 70, 1);
    z-index: 1;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 1);
  }
  nav ul{
    display: grid;
    grid-template-columns: 20fr 12fr 15fr 12fr 12fr 12fr 10fr;
    place-items: center;
    height: 4rem;
    width: 100%;
    padding: 0px 10%;
    /* border-bottom: 1px solid rgba(0, 207, 202, 1); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 1); */
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    list-style-type: none;  
  }
  nav ul li{
    display: grid;  
    place-items: center;
    width: 100%;
    height: 100%;
  }
  nav ul li:hover:not(:first-child):not(:last-child){
    background-color: rgba(255,255,255, 0.5);
    background-color: rgba(0, 202, 207, 0.2);
  }
  nav ul li.active{
    color: black;
    background-color: rgba(0, 202, 207, 0.8);
  }
  nav ul li.active a{
    color: white;
  }
  nav a{
    display: grid;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    width: 100%;
    height: 100%;
    color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    text-decoration: none;
  }
  nav a i{
    display: block !important;
    color: rgba(0, 0, 0, 0.5);  
    color: rgba(255, 255, 255, 1);
  }
  nav li:not(:first-child) a{
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.5rem;
    text-align: center;
    /* padding: 0px 10%; */
  }
  nav img{
    width: 60%;
    margin-top: 5px;
  }
  nav .fa-bars{
    margin-left: -40px;
    transform: scale(3, 1.5);
    color: white;
  }
  nav ul>li:last-child{
    /* background-color: gray; */
    justify-content: right;
    cursor: pointer;
  }
  /* ############################## */
  div#menu{
    position: fixed;
    top: 0px; 
    left: -200vw;
    width: 200vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999999;
    transition: 0.2s linear;
  }
  div#menu.active{
    left: 0px;
  }
  div#menu div.left{
    /* display: grid; */
    /* grid-gap: 1rem; */
    width: 300px;
    height: 100vh;
    padding: 1rem;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 1);
    overflow-y: scroll;
  }
  div#menu div.left .main-links{
    display: grid;
    gap: 1rem;
    align-self: flex-start;
  }
  div#menu div.left .main-links a{
    padding: 0.5rem 0.5rem;
    color: black;
    background: white;
    font-family: inherit;
    text-decoration: none;
    text-align: center;
    border-radius: 0.5rem;
    border: 1px solid white;
  }
  div#menu div.left .main-links a.active{
    background-color: rgba(0, 222, 227, 1);
    border: none;
  }
  div#menu div.left div.line{
    margin: 2rem;
    height: 1px;
    background-color: rgba(0, 222, 227, 1);
  }
  div#menu div.left div.people{
    display: grid;
    gap: 1rem;
  }
  div#menu div.left div.people div.person a{
    display: grid;
    align-items: center;
    grid-gap: 1rem;
    grid-template-columns: 20fr 80fr;
    color: white;
    text-decoration: none;
  }
  div#menu div.left div.people div.person img{
  width: 100%;
  }
  /* ############################## */
  .card{
    display: grid;
    grid-template-rows: 8rem 1fr;
    padding: 2rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 0.5rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
  .card .title{
    display: grid;
    align-self: flex-start;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    font-weight: 400;
    font-size: 1rem;
    color: rgba(0, 202, 207, 1);
    color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(0, 202, 207, 1);
    cursor: pointer;
  }
  .card .title i{
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.5);
    color: rgba(0, 202, 207, 0.8);
  }
  .card .body{
    display: grid;
    align-self: flex-start;  
    text-align: justify;
    text-justify: inter-word;
  }
  .card .hidden{
    display: none;
    transition: visibility 0s, opacity 0.5s linear;
  }
  .card .body p:not(:first-child){
    padding-top: 1rem;
  }
  .card button{
    margin-top: 2rem;
    width: 100%;
    padding: 1rem 0px;
    border: none;
    outline: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    color: rgba(0, 202, 207, 1);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 202, 207, 1);
    cursor: pointer;
  }
  .card a{
    margin-top: 2rem;
    width: 100%;
    padding: 1rem 0px;
    border: none;
    outline: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    color: rgba(0, 202, 207, 1);
    color: black;
    background: rgba(0, 202, 207, 0.05);
    border: 1px solid rgba(0, 202, 207, 1);
    cursor: pointer;
  }
  /*##############################*/
  section.banner{
    display: grid;
    place-items: center;
    position: relative;
    height: 40vh;
    padding-top: 5rem;
    background-color: rgba(200, 200, 200, 1);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
  }
  section.banner img#logo{
    width: 30%;
  }
  img#banner-lines {
    position: absolute;
    right: 0px;
    bottom: 0px;
  }
  /*##############################*/
  div#index{
  
  }
  div#index .banner{
    display: grid;
    /* place-items: center; */
    grid-template-columns: 1fr;
    position: relative;
    height: 70vh;
    padding: 3rem 10% 0px 10%;
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid black;
    background-image: url('images/back2.jpg');
    background-size: cover;
    box-shadow: none;
    overflow: hidden;
  }
  div#index .banner img{
    width: 70%;
  }
  div#index .info{
    display: grid;
    grid-template-columns: 10fr 10fr 10fr;
    gap: 2rem;
    padding: 2rem 10%;
    background-color: rgba(0, 0, 0, 0.01);
    z-index: 1;
  }
  #partner_image_container{
    text-align: center;
  }
  /*##############################*/
  div#contact-us{
  
  }
  div#contact-us section.info{
    display: grid;
    grid-template-columns: 10fr 10fr 10fr 10fr;
    gap: 2rem;
    padding: 2rem 10%;
    background-color: rgba(0, 0, 0, 0.01);
  }
  div#contact-us .card{
    /* align-self: center; */
  }
  div#contact-us .card .body img{
    width: 100%;
  }
  /*##############################*/
  
  div#about-us section.info{
    display: grid;
    grid-template-columns: 10fr 10fr;
    gap: 2rem;
    padding: 7rem 10% 3rem 10%;
    background-color: rgba(0, 0, 0, 0.01);
  }
  /*##############################*/
  
  div#partners section.people{
    display: grid;
    grid-template-columns: 10fr 10fr;
    gap: 3rem;
    padding: 7rem 10% 3rem 10%;
    background-color: rgba(0, 0, 0, 0.01);
  }
  div#partners section.people .person{
    /* padding: 2rem; */
    /* border: 1px solid rgba(0, 202, 207, 1); */
    border-radius: 0.5rem;
    display: grid;
    /* grid-template-rows: 8rem 1fr; */
    padding: 2rem;
    background: rgba(255, 255, 255, 1);
    border-radius: 0.5rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);  
  }
  div#partners section.people .person .title{
    display: grid;
    align-self: flex-start;
    padding-bottom: 1rem;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(0, 202, 207, 1);
  }
  div#partners section.people .person .body{
    padding-top: 1rem;
    text-align: center;
  }
  div#partners section.people .person img{
  width: 60%;
  }
  div#partners section.people .person a{
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 0px;
    text-align: center;
    text-decoration: none;
    color: rgba(0, 202, 207, 1);
    border: 1px solid rgba(0, 202, 207, 1);
    border-radius: 0.5rem;
  }
  
  /*##############################*/
  div#services{
  
  }
  div#services #modal{
    display: none;
    justify-items: center;
    align-items: center;
    position: fixed;
    top: 0px; left: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  div#services #modal #container{
    display: grid;
    position: relative;
    width: 50%;
    max-height: 95vh;
    padding: 1rem 2rem;
    border: 1px solid rgba(0, 202, 207, 1);
    background: rgba(245, 245, 245, 1);
    overflow-y: scroll;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    z-index: 1;
    overflow: hidden;
  }
  div#services #modal #container #title{
    /* position: fixed; */
    width: 100%;
    font-size: 1.2rem;
    /* height: 3rem; */
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 202, 207, 0.6);
  }
  div#services #modal #container #body{
    /* position: relative; */
    max-height: 70vh;
    padding: 2rem 2rem;
    overflow-y: scroll;
  }
  div#services #modal #container #body p:not(:first-child){
    padding-top: 1rem;
  }
  div#services #modal #container .btn_container{
    display: grid;
    width: 100%;
    justify-items: right;
  }
  div#services #modal #container button{
    width: 40%;
    height: 3rem;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    border: none;
    outline: none;
    background: rgba(0, 202, 207, 1);
    border-radius: 0.5rem;
  }
  div#services .info{
    display: grid;
    grid-template-columns: 10fr 10fr 10fr;
    gap: 2rem;
    padding: 2rem 10%;
    background-color: rgba(0, 0, 0, 0.01);
    z-index: 1;
  }
  div#services .card{
    position: relative;
    /* padding-bottom: 7rem; */
  }
  
  
  
  
  /*##############################*/
  
  div#partner img#partner {
    width: 250px;
  }
  
  div#partner section.info{
    display: grid;
    grid-template-columns: 10fr 10fr;
    gap: 2rem;
    padding: 2rem 10%;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /*##############################*/
  footer{
    display: grid;
    grid-template-columns: 10fr 10fr 10fr;
    gap: 3rem;
    width: 100%;
    padding: 3rem 10%;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 202, 207, 1);
    border-bottom: 5px solid rgba(0, 202, 207, 1);
  }
  footer img{
    width: 50%;
    padding-top: 3rem;
  }
  
  }