@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
/* font-family: 'Dancing Script', cursive; */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
  color: #000;
}

a {
  text-decoration: none;
  color: #021f68;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

.ae {
  font-size: inherit;
  /* color: #C75911; */
  text-transform: uppercase;
}

.ae::before {
  content: "a";
  color: #021f68 !important;
}

.ae::after {
  content: "e";
  color: #c75911 !important;
}

.gold {
  color: #c75911;
}

.blue {
  color: #021f68;
}

.container {
  max-width: 1140px;
}

.header {
  width: 100%;
  display: flex;
  box-shadow: 0 0.125rem 0.25rem rgb(193 94 16 / 15%) !important;
  /* border-bottom: 1px solid #dee2e6 !important; */
  position: sticky;
  top: 0;
  z-index: 10;
}


.nav {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  /* max-width: 1140px; */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background-color: white;
}

.nav .logo {
  height: 4rem;
}
.nav .logo img {
  width: auto;
  height: 100%;
}
.nav .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem;
  font-size: 0.8rem;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  /* width: 100%; */
}

.nav .links .menu {
  position: relative;
}

.nav .links .menu .nav-link {
  display: flex;
  align-items: center;
}



.nav .links .menu .dropdown {
  display: none;
  position: absolute;
  top: 150%;
  padding: 1rem;
  background-color: white;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 3px;
}

.nav .links .menu .dropdown.show {
  display: block;
}

.nav .links .menu .dropdown a {
  /* font-family: "Roboto", sans-serif; */
  /* font-size: .8rem; */
  font-size: 1rem;
  font-weight: 400;
  display: block;
}
.nav .links .menu .dropdown1 {
  display: none;
  position: absolute;
  top: 150%;
  padding: 1rem;
  background-color: white;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 3px;
}

.nav .links .menu .dropdown1.show {
  display: block;
}

.nav .links .menu .dropdown1 a {
  /* font-family: "Roboto", sans-serif; */
  /* font-size: .8rem; */
  font-size: 1rem;
  font-weight: 400;
  display: block;
}

.nav .links .nav-link {
  margin-right: 2rem;
  text-transform: uppercase;
  color: #000;
  /* C75911 */
  /* color: #021F68; */
  font-weight: 600;
}

.nav .flyer {
  background-color: green;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 20%;
  padding: 2rem;
  border-radius: 50%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.first-section {
  /* background-color: antiquewhite; */
}

.first-section .intro {
  display: flex;
}

.first-section .intro .first {
  flex-basis: 60%;
  padding: 1rem 2rem;
}

.vision {
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  color: #000;
  /* color: #C75911; */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.visions {
  font-family:"Dancing Script", cursive;
  color: #000;
  /* color: #C75911; */
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.visions span{
  color: green;
}

.vision-header {
  animation-name: moveUp;
  /* animation-duration: 5s; */
}

.vision-text {
  text-align: justify;
  opacity: 0;
  animation-name: showNow;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  /* animation-delay: 9s; */
}

@keyframes moveUp {
  from {
    transform: translateY(500%);
  }
  to {
    transform: translateY(0%);
  }
}

@keyframes showNow {
  from {
    transform: scale(0) rotate(90deg);
    /* opacity: 0; */
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.first-section .intro .second {
  flex-basis: 40%;
  padding: 2rem;
}
.first-section .intro .first .owner-detail {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.first-section .intro .first .owner-detail .owner {
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-basis: 30%;
}

.first-section .intro .first .owner-detail .owner .image {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
}

.first-section .intro .first .owner-detail .owner .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.first-section .intro .first .owner-detail .owner .details {
  margin-top: 1rem;
  text-align: center;
}

.first-section .intro .first .owner-detail .owner .details .name {
  margin-top: 0;
  line-height: 1;
  margin-bottom: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.first-section .intro .first .owner-detail .owner .details span {
  font-size: 0.7em;
  font-style: italic;
}

.first-section .intro .first .owner-detail .owner .details .title {
  font-size: 0.8rem;
  margin-top: 0;
  line-height: 1.3;
}

.first-section .intro .first .owner-detail .saying {
  border-left: 4px solid rgb(219, 219, 219);
  padding-left: 1rem;
  flex-basis: 70%;
}
.first-section .intro .first .owner-detail .saying p {
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  /* color: rgb(107, 107, 107); */
  color: rgb(121, 121, 121);
}

.first-section .intro .first .owner-detail .owner .saying {
  /* flex-basis: 60%; */
}

.first-section .who {
  /* background-image: url(./../images/istock-661805558-1582569921-1254x837.jpg); */
  background-size: cover;
}
.first-section .who p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(121, 121, 121);
}

.first-section .who p span {
  /* color: #021F68; */
  font-weight: bold;
}

.second-section {
  padding: 2rem;
}

.section-heading {
  text-align: center;
  font-weight: 600;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.center {
  text-align: center;
}
.flex {
  display: flex;
}
.map-section{
  padding-top: 40px;
  width: 100%;
  padding-bottom: 40px;
}
#map {
  height: 400px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}
.map-section .heading {
  font-size: 1.0rem;
  /* margin-bottom: 1rem; */
  padding: 1rem;
  font-weight: 600;
}
.col-50 {
  flex-basis: 50%;
}
.col-33 {
  float: left;
  width: 33.33%;
  padding: 10px;
}
.col-20 {
  float: left;
  width: 20%;
  padding: 10px;
}
.col-47 {
  float: left;
  width: 47%;
  padding: 10px;
}
.col-33 {
  float: left;
  width: 33%;
  padding: 10px;
}
@media screen and (max-width: 600px) {
  .col-20 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .col-47 {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .col-33 {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .col-50 {
    width: 100%;
  }
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.what-we-provide {
  padding: 2rem;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  margin-bottom: 2rem;
}

.what-we-provide .heading {
  font-size: 1.2rem;
  /* margin-bottom: 1rem; */
  padding: 1rem;
  font-weight: 600;
}

.what-we-provide p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(34, 34, 34);
  padding: 1rem;
  text-align: left;
  margin-top: 0;
}

.what-we-provide img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px #ebebf0, 0 15px 30px 0 rgb(0 0 0 / 15%);
}

.h-100 {
  height: 100% !important;
}

.what-we-provide .image {
  padding: 2rem;
}

.what-we-provide .flex {
  margin-bottom: 4rem;
}

.gas img{
  float: left;
  width: 500px;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.management {
  padding: 2rem;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.management .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.col-30 {
  flex-basis: 30%;
  width: 30%;
  max-width: 30%;
  padding: 1rem;
}

.management .profile {
  width: 100%;
}

.management .profile img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.management .profile .info {
  margin-top: 1rem;
  text-align: center;
}

.our-solution {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.our-solution .body {
  margin-bottom: 2rem;
}

.our-solution .body p {
  text-align: center;
}

.our-solution p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(34, 34, 34);
  padding: 1rem;
  text-align: left;
  margin-top: 0;
}

.our-solution .other {
  display: flex;
}

.our-solution .tab {
  flex-basis: 50%;
  padding: 1rem;
}
.our-solution .tab p {
  padding: 0;
}

.our-solution .image {
  padding: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.our-solution img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

.our-solution img.img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  /* object-fit: cover; */
  box-shadow: inset 0 0 0 1px #ebebf0, 0 15px 30px 0 rgb(0 0 0 / 15%);
}

.our-solution .list {
  list-style: none;
}

.our-solution .list li {
  padding: 1rem;
  line-height: 1.7;
}

.our-solution h2 {
  text-align: center;
}
.our-solution ul li {
  padding: 0.4rem;
  line-height: 1.7;
}

.photo-gallery .gallery-holder {
  height: 500px;
  padding: 1rem;
}

.photo-gallery .gallery-holder img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
}

.contact-us {
  padding: 2rem 4rem;
}
.contact-us .contact {
  display: flex;
}

.contact-us .contact .info {
  flex-basis: 40%;
  padding: 1rem 3rem 1rem 5rem;
}

.contact-us .contact .form {
  flex-basis: 60%;
  padding: 1rem 5rem;
}

.contact-us .contact button {
  width: 100%;
  padding: 1rem 5rem;
  text-align: center;
  cursor: pointer;
  background-color: #021f68;
  border: none;
  border-radius: 3px;
  color: #fff;
}

.contact-us .form .input {
  padding: 0.8em 1.2em;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.textarea {
  height: 10em;
  padding: 0.8em 1.2em;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

.contact-us .contact .name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-us .contact .address {
  color: rgb(46, 46, 46);
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.contact-us .contact .phone {
  color: rgb(46, 46, 46);
  line-height: 1.5;
  font-size: 1rem;
}

.contact-us .contact .phone span {
  font-weight: 600;
}

.contact-us .contact .career .heading {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 3rem;
}

.contact-us .contact .career p {
  line-height: 1.5;
}
.contact-us .contact .career a {
  color: #021f68;
  text-decoration: underline;
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }

  .nav .links {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav .links .nav-link {
    margin-right: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .first-section .intro .first .owner-detail {
    display: block;
  }

  .vision {
    font-size: 1.6rem;
  }
  .visions {
    font-size: 1.6rem;
  }
  .first-section .intro {
    display: block;
  }

  .contact-us .contact {
    display: block;
  }

  .our-solution .other {
    flex-wrap: wrap;
  }

  .flex {
    display: block;
  }

  .contact-us {
    padding: 1rem 1rem;
  }

  .contact-us .contact .info {
    flex-basis: 100%;
    padding: 1rem 1rem 1rem 1rem;
  }

  .contact-us .contact .form {
    flex-basis: 100%;
    padding: 1rem;
  }

  .nav .flyer {
    display: none;
    position: static;
    font-size: 0.8rem;
  }

  .col-30 {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
  }

  .management .flex {
    flex-flow: wrap;
  }
}

.thanks {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.thanks a {
  color: #021f68;
  font-weight: 600;
}

.thanks h2 {
  margin-bottom: 0rem;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.owl-prev {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 40%;
  left: 20px;
  display: block !important;
  border:0px solid black;
  color: black;
}

.owl-next {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 40%;
  right: 20px;
  display: block !important;
  border:0px solid black;
  color: #000;
}
.owl-prev i, .owl-next i {transform : scale(1,6); color:rgb(253, 216, 7);font-size: 2rem;}
