@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;400;500;600;700&display=swap");

:root {
  --pantone: #004851;
  --pantone-c: #00587c;
  --gradient: linear-gradient(90deg, var(--pantone), var(--pantone-c));
}

* {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #f9f9f9;
}

section {
  padding: 0 9%;
  padding-top: 7.5rem;
  padding-bottom: 2rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 2rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

header img {
  height: 60px;
  width: 200px;
}

header .navbar a {
  font-size: 1.7rem;
  margin-left: 2rem;
  color: var(--pantone);
}

header .navbar a:hover {
  color: var(--pantone-c);
}

header input {
  display: none;
}

header label {
  font-size: 3rem;
  color: var(--pantone);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

/* Banner */

.banner-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 0;
  padding-bottom: 2rem;
}
.banner {
  display: flex;
  flex-direction: row;
  padding-top: 7.5rem;
}

.banner .banner-content {
  flex-direction: column;
  margin-left: 150px;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.banner .banner-content h5 {
  color: #00587c;
  font-size: 32px;
  font-size: bold;
  margin-bottom: 15px;
}

.banner .banner-content i {
  color: red;
}

.banner .banner-content p {
  color: black;
  font-size: 24px;
  font-weight: 300;
}

.banner .banner-image {
  width: auto;
}

.banner .banner-image img {
  width: auto;
  height: 600px;
}

/* Main Content */

.aboutus-maincontent {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: #00587c;
}

.aboutus-maincontent .container .main-content {
  display: flex;
  flex-direction: row;
}

.aboutus-maincontent .container .main-content .main-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.aboutus-maincontent .container .main-content .main-content-right {
  width: 100%;
}

.aboutus-maincontent .container .main-content h3 {
  align-self: left;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 1rem;
  font-size: 32px;
  margin-bottom: 30px;
}

.aboutus-maincontent .container .main-content p {
  font-size: 18px;
  color: #fff;
  padding-bottom: 20px;
  padding-right: 10px;
}

.aboutus-maincontent .container .main-content .main-content-right img {
  width: auto;
  height: 400px;
}

/* Our History */

.ourhistory {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: #00587c;
}

.ourhistory .container .ourhistory-content {
  display: flex;
  flex-direction: row;
}

.ourhistory .container .ourhistory-content .ourhistory-content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.ourhistory .container .ourhistory-content .ourhistory-content-left {
  width: 100%;
}

.ourhistory .container .ourhistory-content h3 {
  align-self: left;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 1rem;
  font-size: 32px;
  margin-bottom: 30px;
  padding-left: 10px;
}

.ourhistory .container .ourhistory-content p {
  font-size: 18px;
  color: #fff;
  padding-bottom: 20px;
  padding-left: 10px;
}

.ourhistory .container .ourhistory-content .ourhistory-content-left img {
  width: 100%;
  height: 300px;
}

/* Our Skills */

.ourskills-maincontent {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: white;
}

.ourskills-maincontent .container .ourskills-main-content {
  display: flex;
  flex-direction: row;
}

.ourskills-maincontent
  .container
  .ourskills-main-content
  .ourskills-main-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.ourskills-maincontent
  .container
  .ourskills-main-content
  .ourskills-main-content-right {
  width: 100%;
}

.ourskills-maincontent .container .ourskills-main-content h3 {
  align-self: left;
  color: #00587c;
  text-decoration: underline;
  text-underline-offset: 1rem;
  font-size: 32px;
  margin-bottom: 30px;
}

.ourskills-maincontent .container .ourskills-main-content p {
  font-size: 18px;
  color: black;
  padding-bottom: 20px;
  padding-right: 10px;
}

.ourskills-maincontent
  .container
  .ourskills-main-content
  .ourskills-main-content-right
  img {
  width: auto;
  height: 400px;
  margin-top: 80px;
}

/* Footer */

.footer {
  padding-top: 3rem;
  /* background: url(../images/footer-bg.png) no-repeat; */
  background-color: #00587c;
  background-size: cover;
  background-position: center;
}

.footer .box-container {
  display: flex;
  flex-wrap: wrap;
}

.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2rem;
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  padding: 1rem 0;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 1rem;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  padding: 0.5rem 0;
  color: #eee;
}

.footer .box-container .box a {
  display: block;
  font-size: 1.5rem;
  padding: 0.5rem 0;
  color: #eee;
}

.footer .box-container .box i {
  margin-right: 10px;
}

.footer .box-container .box a:hover {
  text-decoration: underline;
}

.footer .box-container .box .info {
  display: flex;
  align-items: center;
}

.footer .box-container .box .info i {
  margin: 0.5rem 0;
  margin-right: 1rem;
  border-radius: 50%;
  background: #fff;
  color: var(--pantone);
  font-size: 1.5rem;
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
}

.footer .credit {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #fff;
  border-top: 0.1rem solid #fff5;
  padding: 2.5rem 1rem;
  text-align: center;
}

/* media queries  */

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 991px) {
  section {
    padding: 0 3%;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
  }
}

@media only screen and (max-width: 1080px) and (min-width: 375px) {
  header label {
    visibility: visible;
    opacity: 1;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 2rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: 0.2s linear;
  }

  header .navbar a {
    display: block;
    margin: 2rem 0;
    font-size: 2rem;
  }

  header input:checked ~ .navbar {
    transform: scaleY(1);
    opacity: 1;
  }

  header input:checked ~ label::before {
    content: "\f00d";
  }

  .home {
    flex-flow: column-reverse;
  }

  .banner-section .banner {
    display: flex;
    flex-direction: column-reverse;
  }

  .banner-section .banner .banner-content {
    margin-top: 50px;
    margin-left: 50px;
    margin-bottom: 20px;
    margin-right: 50px;
  }

  .banner-section .banner .banner-content h5 {
    font-size: 28px;
  }

  .banner-section .banner .banner-content p {
    font-size: 18px;
    font-weight: 500;
  }

  .banner-section .banner .banner-image {
    width: 100%;
  }

  .banner-section .banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .home .image img {
    width: 100%;
  }

  .home .content h3 {
    font-size: 3.6rem;
  }

  .home .content p {
    font-size: 1.5rem;
  }

  .aboutus-maincontent .container .main-content {
    display: flex;
    flex-direction: column;
  }

  .aboutus-maincontent .container .main-content .main-content-right img {
    width: 100%;
  }

  .ourhistory .container .ourhistory-content {
    display: flex;
    flex-direction: column-reverse;
  }

  .ourhistory .container .ourhistory-content .main-content-left img {
    width: 100%;
  }

  .ourskills-maincontent .container .ourskills-main-content {
    display: flex;
    flex-direction: column;
  }

  .ourskills-maincontent
    .container
    .ourskills-main-content
    .ourskills-main-content-right
    img {
    width: 100%;
    margin-top: 30px;
  }
}
