* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    scroll-behavior: smooth;
   
 }
 
 .navbar {
    background-color: rgba(18, 61, 132, 0.7);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    transition: transform 0.3s;
 
 }
 .navbar__hidden {
   transform: translateY(-60px);
   box-shadow: none;
 }
 #navbar__mob {
   display: none;
 }
 .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 60px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
 }
 
 #navbar__AG {
   height: 50px;
   width: auto;
   margin: auto 0px;
 }
 #navbar__logo {
    background-color: #fff;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: -3rem;
 }
 .dropdown {
   float: left;
   overflow: hidden;
 }
 

 .dropdown .dropbtn {
   font-size: 16px;
   border: none;
   outline: none;
   color: white;
   padding: 20px 15px;
   background-color: inherit;
   font-family: inherit; 
   white-space: nowrap;
   color: #fff;
 }
 
 
 .dropdown-content {
   display: none;
   position: absolute;
   background-color: rgba(18, 61, 132, 0.7);
   min-width: 160px;
   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
   z-index: 1;
 }
 

 .dropdown-content a {
   float: none;
   color: #fff;
   padding: 12px 16px;
   text-decoration: none;
   display: block;
   text-align: left;
   white-space: nowrap;
 }
 

 .dropdown-content a:hover {
   background-color: rgba(8, 37, 83, 0.7);
 }
 

 .dropdown:hover .dropdown-content {
   display: block;
 }
 .fa-gem {
    margin-right: 0.5rem;
 }
 .navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
 }
 .navbar__item {
    height: 60px;
 }
 .navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    white-space: nowrap;
 }
 .navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
 }
 .button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background-color: #5bc83a;
    color: #fff;
 }
 
 .button:hover {
    background-color: #ea6e42;
    transition: all 0.3s ease;
 }
 
 .navbar__links:hover, .dropdown:hover .dropbtn {
   background-color: rgba(8, 37, 83, 0.7);
 }
 
 @media screen and (max-width: 960px) {
   #navbar__AG {
      display: none;
   }
   #navbar__mob {
      display: block;
    }
    .dropbtn {
      display: none;
    }
   #navbar__logo {
      display: flex;
      margin: auto auto;
   }
   .navbar {
      padding: 10px 0;
   }
    .navbar__container {
       display: flex;
       justify-content: space-between;
       height: auto;
       z-index: 1;
       width: 100%;
       max-width: 1300px;
       padding: 0;
      }
 
    .navbar__menu {
       display: grid;
       grid-template-columns: auto;
       margin: 0;
       padding: 20px 0;
       width: 100%;
       position: absolute;
       top: -1000px;
       opacity: 0;
       transition: all 0.5s ease;
       z-index: -1;
      }
 
    .navbar__menu.active {
       background: rgba(1, 25, 64, 0.9);;
       top: 100%;
       opacity: 1;
       transition: all 0.5s ease;
       z-index: 99;
       height: fit-content;
       font-size: 1.6rem;
      }
 
    .navbar__toggle .bar {
       width: 25px;
       height: 3px;
       margin: 5px auto;
       transition: all 0.3s ease-in-out;
       background: #fff;
      }
    .navbar__item {
       width: 100%;
      }
    .navbar__links {
       text-align: center;
       padding: 10px 0;
       width: 100%;
       display: table;
      }
    #mobile-menu {
       position: absolute;
       top: 20%;
       right: 5%;
       transform: translate(5%, 20%);
      }
    .navbar__btn {
      padding-bottom: 10px;
    }
    .button {
       display: flex;
       justify-content: center;
       align-items: center;
       width: 80%;
       height: 50px;
    }
 
    .navbar__toggle .bar {
       display: block;
       cursor: pointer;
    }
 
    #mobile-menu.is-active .bar:nth-child(2) {
       opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1) {
       transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3) {
       transform: translateY(-8px) rotate(-45deg);
    }
    .main__container {
      padding: 0;
      margin: 0;
    }
    #main__title {
      font-size: 4rem;
    }
    #main__we {
      font-size: 2.5rem;
    }
    #main__colour {
      font-size: 2.5rem;
    }

    .service {
      padding: 20px;
      margin: 0;
      height: fit-content;
   }
   .service__container {
      display: block;
      align-items: center;
      justify-self: center;
      width: fit-content;
      height: fit-content;
   }
   .service h1 {
      width: auto;
      margin: 20px;
      text-align: center;
      font-size: 2rem;
   }
   .service h2 {
      text-align: center;
      font-size: 1.5rem;
   }
   #service__column1 {
      text-align: center;
      margin: 0 auto;
      margin-bottom: 50px;
      width: fit-content;
      padding: auto 20px;

   }
   #service__column2 {
      padding: 0 20px;
      text-align: center;
      margin: 0 auto;
      margin-bottom: 50px;
      width: fit-content;
      padding: auto 20px;
   }
   .value__container {
      padding: 0;
   }
   .contact__column2 {
      align-items: center;
   }
   .contact__map {
      margin-right: 35vw;
      margin-bottom: 20rem;
      padding-bottom: 16vh;
      position: relative;
   }
   .contact__map iframe {
      height: 50px;
      width: 100px;
      left: 0;
      top: 0;
      position: absolute;
      border-radius: 20px;
   }
   #vision__h31 {
      font-size: 1.8em;
   }
   #vision__h32 {
      font-size: 1.8em;
   }
 }
 
 .main2 {
   width: auto;
   max-width: 1300px;
   height: fit-content;
 }
 .main {
    background-color: #fff;
    background-image: linear-gradient(rgba(26, 36, 39, 0.5), rgba(29, 37, 44, 0.5)), url(images/pic1.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
 }
 
 .main__container {
    display: flex;
    text-align: center;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    min-height: 110vh;
    height: fit-content;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
 }
 
 .main__content h1 {
   padding-top: 30px;
   padding-bottom: 20px;
   text-align: center;
    font-size: 6rem;
    background-color: #fff;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent;
 }
 
 .main__content h2 {
   text-align: center;
    font-size: 3.5rem;
    background-color: #ff8177;
    background-image: linear-gradient(to right,#f5ff6a 0%, #fff317 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent;
    padding-bottom: 20px;
 }
 .main__content h3 {
   text-align: center;
    font-size: 3.5rem;
    background-color: #fff;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color:transparent;
 }
 #main__about {
   text-align: center;
   margin-top: 1rem; 
   font-size: 1.6rem;
   font-weight: 500;
   color: #fff;
   padding-bottom: 50px;
    
 }

 .main__btn {
   float: right;
    font-size: 1rem;
    font-weight: 600;
    background-image: linear-gradient(to top, #e46f58 0%, #e25539 100%);
    padding: 12px 35px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
 }
 .main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
 }
 
 .main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #55db33;
    transition: all 0.35s;
    border-radius: 4px;
 }
 
 .main__btn:hover {
    color: #fff;
 }
 .main__btn:hover:after {
    width: 100%;
 }

 
 /* Mobile Responsive */
 @media screen and (max-width: 760px) {
    .main__container {
       display: grid;
       grid-template-columns: auto;
       align-items: center;
       justify-self: center;
       width: 100%;
       margin: 0 auto;
       height: 90vh;
    }
    .main__content {
       text-align: center;
       margin-bottom: 4rem;
    }
    .main h1 {
       font-size: 3rem;
       margin-top: 2rem;
    }
    .main__content h2 {
       font-size: 2rem;
    }
    .main h3 {
      font-size: 1.8rem;
    }
    .main__content p {
       margin-top: 1rem;
       font-size: 1.5rem;
    }
    .about__container {
      display: grid;
      grid-template-columns: auto;
      align-items: center;
      justify-self: center;
      margin: 0 auto;
      height: fit-content;
   }
   .about__pic {
      height: 20rem;
      width: auto;
      margin: 0 auto;
   }
   .about h1 {
      font-size: 2rem;
      margin-top: 1.5rem;
   }
   .about h2 {
      font-size: 1.5rem;
   }
   .value {
      align-items: center;
      justify-self: center;
      place-items: center;
   }
   .value__container {
      display: flex;
      flex-direction: column;
      margin-bottom: 4rem;
   }
   
 }
 
 @media screen and(max-width: 480px) {
   .contact__container {
      align-items: center;
      text-align: center;
   }
   #contact__column1{
      display: flex;
      align-items: center;
      text-align: center;
   }
    .main__content h1 {
       font-size: 2rem;
       margin-top: 3rem;
    }
    .main__content h2 {
       font-size: 2rem;
    }
    .main__content p {
       margin-top: 2rem;
       font-size: 1.5rem;
    }
    .main__btn {
       padding: 12px 36px;
       margin: 2.5rem 0;
    }
 }
 
 .about {
   background-color: #fff;
   background-image: linear-gradient(rgba(82, 87, 98, 0.6), rgba(118, 136, 151, 0.6)), url(images/pic3v2.jpg);
   background-position: center;
   background-size: cover;
}
 
 .about__container {
    display: flex;
    grid-template-columns: auto;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: fit-content;
    z-index: 1;
    padding: 0 50px;
 }
 .about__pic {
   float: right;
   border-radius: 50%;
   height: 15rem;
   width: auto;
 }
 .about__column {
   display: grid;
   margin: 0 auto;
 }
 .about h1 {
   text-align: center;
   width: 400px;
   margin: 0 auto;
   padding-top: 5rem;
   font-size: 3.5rem;
   color: #fff;
 }
 .about h2 {
   padding-top: 2rem;
   font-size: 2rem;
   color: #fff;
 }
 .about h3 {
   font-size: 1.5rem;
   color: #9bb5df;
 }
 .about p {
   color: #fff;
   font-size: 1rem;
 }
 .intro {
   background-color: #fff;
   background-image: linear-gradient(rgba(51, 53, 60, 0.5), rgba(65, 75, 79, 0.5)), url(images/pic14v2.jpg);
   background-position: center;
   background-size: cover;
   height: fit-content;
   padding-bottom: 20px;
 }
 .intro__container {
   align-items: center;
   justify-content: center;
   margin: 0 auto;
   min-height: 80vh;
   z-index: 1;
   width: 100%;
   max-width: 1300px;
   padding: 50px;
   position: relative;
 }
 .intro h1 {
   text-align: center;
   padding-top: 5rem;
   margin: 0 auto;
   font-size: 3.5rem;
   color: #fff;
 }
 .intro__box {
   width: 90vw;
   margin: 0;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);

 }
 .intro h2 {
   justify-content: center;
   text-align: center;
   font-weight: 600;
   padding-top: 1rem;
   margin: 0;
   font-size: 2rem;
   color: #fff;
 }
 #intro__AGlink {
   align-items: center;
   text-align: center;
   margin-top: 1rem;
   font-size: 2rem;
   font-weight: 600;
   color: #9bcef8;
 }
 #intro__AGlink:hover {
   color: #f5ff6a;
   transition: all 0.3s ease;
 }
 #intro__AClink {
   align-items: center;
   text-align: center;
   margin-top: 1rem;
   font-size: 2rem;
   font-weight: 600;
   color: #9bcef8;
 }
 #intro__AClink:hover {
   color: #f5ff6a;
   transition: all 0.3s ease;
 }

 .core {
   background-color: #fff;
   background-image: linear-gradient(rgba(51, 53, 60, 0.5), rgba(65, 75, 79, 0.5)), url(images/pic13v3.jpg);
   background-position: center;
   background-size: cover;
   height: fit-content;
   padding-bottom: 20px;
   padding: 10px;
 }
 .core__container {
   display: flex;
   margin: 0 auto;
   height: fit-content;
   z-index: 1;
   width: 100%;
   max-width: 1300px;
  padding: 20px;
 }
 .core__column1 {
   display: flex;
  flex-direction: column;
 }
 .core__column2 {
   display: flex;
  flex-direction: column;
 }
 .core h1 {
   text-align: center;
   width: 600px;
   padding-top: 5rem;
   margin: 0 auto;
   font-size: 3.5rem;
   color: #fff;
 }
 .core h2 {
   text-align: center;
   font-weight: 600;
   padding-top: 1rem;
   margin: 0 20px;
   font-size: 2rem;
   color: #7ec5ff;
 }
 .core p {
   text-align: center;
   padding-top: 1rem;
   margin: 0 50px;
   font-size: 1.2rem;
   color: #fff;
 }
 .vision {
   background-color: #fff;
   background-image: linear-gradient(rgba(51, 53, 60, 0.5), rgba(65, 75, 79, 0.5)), url(images/pic15v2.jpg);
   background-position: center;
   background-size: cover;
   min-height: 110vh;
   height: fit-content;
   padding-bottom: 20px;
 }
 .vision__container {
   align-items: center;
   justify-content: center;
   margin: 0;
   min-height: 70vh;
   z-index: 1;
   width: 100%;
   max-width: 1300px;
   padding: 10px;
 }
 .vision h1 {
   text-align: center;
   padding-top: 5rem;
   margin: 0 auto;
   font-size: 4rem;
   color: #fff;
 }
 .vision h2 {
   vertical-align: middle;
   justify-content: center;
   text-align: center;
   font-weight: 600;
   padding-top: 1rem;
   margin: 0 20px;
   font-size: 3rem;
   color: #9bcef8;
 }
 .vision h3 {
   text-align: center;
   padding-top: 1rem;
   margin: 0 50px;
   font-size: 2rem;
   color: #fff;
 }
 .value {
   background-color: #fff;
   background-image: linear-gradient(rgba(51, 53, 60, 0.5), rgba(65, 75, 79, 0.5)), url(images/pic17v4.jpg);
   background-position: center;
   background-size: cover;
   height: fit-content;
   padding-bottom: 20px;
   width: auto;
   text-align: center;
   align-items: center;
 }
 .value__container {
   display: flex;
   margin: 0 auto;
   height: fit-content;
   z-index: 1;
   width: 100%;
   max-width: 1300px;
   padding: 10px;
 }
 .value__column1 {
   display: flex;
  flex-direction: column;
  text-align: center;

 }
 .value__column2 {
   display: flex;
  flex-direction: column;
  text-align: center;
 }
 .value h1 {
   text-align: center;
   width: auto;
   padding-top: 5rem;
   margin: 0 auto;
   font-size: 3.5rem;
   color: #fff;
 }
 .value h2 {
   text-align: center;
   font-weight: 600;
   padding-top: 1rem;
   margin: 0 20px;
   font-size: 2rem;
   color: #9bcef8;
 }
 .value p {
   text-align: center;
   padding-top: 10px;
   padding-bottom: 20px;
   margin: 0 50px;
   font-size: 1.2rem;
   color: #fff;
 }
 #value__foot {
   font-size: 1.5rem;
   font-weight: 500;
 }
 .service {
   background-color: #fff;
   background-image: linear-gradient(#577bdf, rgba(140, 192, 235, 0.7));
   background-position: center;
   background-size: cover;
   padding-bottom: 50px;
}
 
 .service__container {
   text-align: center;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: fit-content;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
 }
 .service__row {
   display: flex;
   flex-direction: row;
 }
 .service__row2 {
   flex-wrap: wrap;
   background-color: #fff;
   background-image: linear-gradient(rgba(244, 69, 69, 0.447), rgba(192, 0, 0, 0.493)), url(images/pic18v2.jpg);
   background-position: center;
   background-size: cover;
   border-radius: 20px;
   display: inline-block;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   padding: 20px;
 }
 .service h1 {
   text-align: center;
   width: 600px;
   padding-top: 5rem;
   margin: 0 auto;
   font-size: 3.5rem;
   color: #fff;
 }
 #service__column1, #service__column2 {
   display: flex;
   width: 40%;
   margin: 50px;
 }
 .service h2 {
   width: auto;
   text-align: center;
   font-weight: 600;
   margin: 0 auto;
   padding: 20px;
   font-size: 2rem;
   color: #fff
 }
 #service__column1  {
   float: left;
   flex-wrap: wrap;
   background-color: #fff;
   background-image: linear-gradient(rgba(108, 81, 44, 0.447), rgba(131, 80, 49, 0.493)), url(images/pic5.jpg);
   background-position: center;
   background-size: cover;
   border-radius: 20px;
   height:25rem;
   
 }
 #service__column2  {
   float: right;
   flex-wrap: wrap;
   background-color: #fff;
   background-image: linear-gradient(rgba(70, 109, 40, 0.388), rgba(48, 106, 49, 0.53)), url(images/pic6v2.jpg);
   background-position: center;
   background-size: cover;
   border-radius: 20px;
   height:25rem;
 }
 .service li {
   text-align: center;
   font-weight: 500;
   padding-top: 1.5rem;
   margin: 0 20px;
   font-size: 1.2rem;
   list-style-type: none;
   color: #fff
 }
 #service__p {
   padding-top: 50px;
   font-size: 1.8rem;
   font-weight: 600;
   text-align: center;
   color: #fff;
 }
 #service__link {
   font-size: 1.8rem;
   font-weight: 650;
   color: #b5ffb1;
   text-decoration: none;
 }
 #service__link:hover {
   color: #eff3be;
   transition: all 0.3s ease;
 }

 .contact {
   background-color: #fff;
   background-image: linear-gradient(rgba(60, 65, 66, 0.489), rgba(104, 109, 113, 0.308)), url(images/pic7v2.jpg);
   background-position: center;
   background-size: cover;
}
 
 .contact__container {
    display: flex;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: fit-content;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 50px;
 }
 .contact__map {
   position: relative;
}
#contact__column1 {
  
  flex-direction: column;
}
.contact__column2 {
   align-content: center;
   margin: 0 10vw;
   padding: 0 10vw;
   flex-direction: column;
}
.contact__map iframe {
   height: 50vh;
   width: 30vw;
   left: 10vw;
   top: 0;
   position: relative;
   border-radius: 20px;
   margin: 20vh auto;
   
}
#contact_btn {
   padding: 20px auto;
}
.contact h1 {
   text-align: center;
   width: 600px;
   padding-top: 5rem;
   margin: 0 auto;
   font-size: 3.5rem;
   color: #fff;
 }
 .contact h2 {
   text-align: left;
   font-weight: 600;
   margin: 0 auto;
   padding-top: 4rem;
   font-size: 2rem;
   color: #fff
 }
 .contact li {
   text-align: left;
   font-weight: 500;
   padding-top: 8px;
   margin: 0 20px;
   font-size: 1.2rem;
   list-style-type: none;
   color: #fff;
 }
 #contact__link {
   text-align: left;
   font-size: 1.4rem;
   font-weight: 600;
   color: #21dad6;
 }
 #contact__link:hover {
   color: #e47660;
 }
 #contact__email {
   text-align: left;
   font-weight: 600;
   color: #21dad6;
 }
 #contact__email:hover {
   color: #e47660;
 }
 .footer-container {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 0;
   background-color: #3c7be76d;
 }
#footer__email {
   display: flex;
   padding: 10px;
} 
 .footer-container ul {
   display: flex;
   padding: 0;
   gap: 24px;
   list-style-type: none;
   margin: auto;
 }

.footer__logo {
   height: 35px;
   width: auto;
   margin: auto;
   align-items: center;
} 

/* Mobile Responsive */
@media screen and (max-width: 760px) {
   .core {
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      height: fit-content;
      padding-bottom: 20px;
   }
   .core__container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      height: fit-content;
   }
   .core__column1 {
      display: flex;
   }
   .core__column2 {
      display: flex;
   }
   
   .core h1 { 
      font-size: 3rem;
      text-align: center;
   }
   .core h2 {
      font-size: 3rem;
   }
   .core p {
      margin-top: 1rem;
      font-size: 2rem;
      
   }
   .service {
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      height: 250vh;
      place-items: center;
   }
   .service__container {
      align-items: center;
      display: flex;
      flex-direction: column;
      margin-bottom: 4rem;
   }
   .scolumn {
      margin: 3rem;
   }
   .service h1 {
      font-size: 2rem;
      margin-top: 2rem;
      text-align: center;
   }
   .service h2 {
      font-size: 3rem;
   }
   .service li {
      margin-bottom: 1rem;
      font-size: 1rem;
   }
   .contact__column2 {
      align-items: center;
   }

   .contact__map {
      margin-right: 35vw;
      margin-bottom: 20rem;
      position: relative;
   }
   .contact__map iframe {
      height: 50px;
      width: 100px;
      left: 0;
      top: 0;
      position: absolute;
      border-radius: 20px;
   }
   .contact h1 {
      font-size: 3rem;
      margin-top: 2rem;
      text-align: center;
   }
   .contact h2 {
      font-size: 2rem;
   }
   .contact li {
      margin-bottom: 1rem;
      font-size: 1.5rem;
   }

}

@media screen and (max-width: 660px) {
   .main__content h1 {
      font-size: 2rem;
      margin-top: 3rem;
   }
   .main__content h2 {
      font-size: 2rem;
   }
   .main__content p {
      margin-top: 2rem;
      font-size: 1.5rem;
   }
   .main__btn {
      padding: 12px 36px;
      margin: 2.5rem 0;
   }
   .about {
      height: fit-content;
   }
   .about__container {
      display: inline;
      align-items: center;
      justify-self: center;
      margin: 0 auto;
      height: fit-content;
   }
   .about__pic {
      height: 5rem;
      width: auto;
      margin: 0 auto;
   }
   .about h1 {
      width: auto;
      text-align: center;
      font-size: 2rem;
   }
   .about h2 {
      text-align: center;
      font-size: 1.5rem;
   }
   .about h3 {
      text-align: center;
      font-size: 1.2rem;
   }
   .about p {
      text-align: center;
      font-size: 0.8rem;
      padding-bottom: 20px;
   }
   .core {
      height: fit-content;
      padding-bottom: 20px;
   }
   .core__container {
      align-items: center;
      justify-self: center;
      width: 100%;
      margin: 0 auto;
      height: fit-content;
   }
   .core h1 {
      width: auto;
      text-align: center;
      font-size: 3rem;
   }
   .core h2 {
      text-align: center;
      font-size: 1.5rem;
   }
   .core p {
      width: 100%;
      margin: auto;
      text-align: left;
      font-size: 1rem;
   }
   .service {
      padding: 20px;
      margin: 0;
      height: fit-content;
   }
   .service__container {
      align-items: center;
      justify-self: center;
      width: auto;
      height: fit-content;
   }
   .service h1 {
      width: auto;
      margin: 20px;
      text-align: center;
      font-size: 2rem;
   }
   .service h2 {
      text-align: center;
      font-size: 1.5rem;
   }
   #service__column1 {
      padding-left: -5rem;
      text-align: center;
      margin: 0 auto;
      margin-bottom: 50px;
      width: fit-content;
      padding: auto 20px;
      height: auto;

   }
   #service__column2 {
      padding-left: -5rem;
      text-align: center;
      margin: 0 auto;
      margin-bottom: 50px;
      width: fit-content;
      padding: auto 20px;
      height: auto;
   }
   .contact {
      padding: 20px;
      margin: 0;
      height: fit-content;
   }
   .contact__container {
      display: block;
      align-items: center;
      justify-self: center;
      width: auto;
      height: fit-content;
   }
   #contact__column1 {
      padding: 50px 0;
   }
   .contact__column2{
      display: flex;
      height: auto;
      width: auto;
   }
   .contact h1 {
      width: auto;
      margin: 10px;
      text-align: center;
      font-size: 3rem;
   }
   .contact h2 {
      text-align: center;
      font-size: 2rem;
   }
   .contact li {
    
      font-size: 1.5rem;
      text-align: center;
      align-items: center;
   }
   #contact__email {
      font-size: 1rem;
      text-align: center;
      align-items: center;
      margin: auto;
      
   }
   .contact__map iframe {
      margin: 0 auto;
      height: 50vh;
      width: 60vw;
      left: 0;
      top: 0;
      position: absolute;
      border-radius: 20px;
   }
}