@import "./font-awesome-4.7.0/css/font-awesome.min.css";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  animation: opacitys 1s linear;
}
* ::-webkit-scrollbar {
  display: none;
  scroll-behavior: smooth;
}

@keyframes opacitys {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotator {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(45deg);
  }
}
nav {
  z-index: 9;
  position: fixed;
  height: 100px;
  overflow: hidden;
  margin: 0;
  align-items: center;
  display: flex;
}
nav .nav-btn {
  position: fixed;
  z-index: 10;
}
nav .nav-btn img {
  height: 100px;
  width: auto;
  filter: invert(2);
}
nav .nav-model {
  position: fixed;
  top: 0;
  width: 90vw;
  height: 90vh;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 5px 5px 5px grey;
  z-index: 9;
  transition: all1 2s linear;
  background-color: white;
}
nav .nav-model ul li {
  list-style: none;
  text-transform: capitalize;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
}

.site-footer {
  overflow: hidden;
  margin: 0;
  background-color: #145365;
  padding: 1% 10%;
  font-size: 15px;
  line-height: 24px;
  color: #b3b3b3;
}
.site-footer .container .row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-column-gap: 2rem;
  padding: 1rem;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5;
}

.site-footer hr.small {
  margin: 20px 0;
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer a {
  color: #b3b3b3;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  display: block;
}

.footer-links a {
  color: #b3b3b3;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block;
}

.site-footer .social-icons {
  text-align: right;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #0c303a;
}

.copyright-text {
  margin: 0;
}

@media (max-width: 991px) {
  .site-footer {
    margin-bottom: 30px;
  }
  .site-footer .container .row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center;
  }
}
.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px;
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px;
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  transition: all 0.2s linear;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe;
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px;
}

.social-icons a.facebook:hover {
  background-color: #3b5998;
}

.social-icons a.twitter:hover {
  background-color: #00aced;
}

.social-icons a.linkedin:hover {
  background-color: #007bb6;
}

.social-icons a.dribbble:hover {
  background-color: #ea4c89;
}

@media (max-width: 767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600;
  }
}
.hero {
  position: relative;
  min-height: 150vh;
  width: 100vw;
  overflow: hidden;
  background-color: #0c303a;
}
.hero .hero-div-1 {
  background-color: #fd6f3b;
  top: -45%;
  left: 40%;
  width: 20%;
  height: 200vh;
  position: absolute;
  animation: rotator 2s linear;
  transform: rotate(45deg);
}
.hero .hero-div-2 {
  background-color: #fe946d;
  top: -45%;
  left: 60%;
  width: 20%;
  height: 200vh;
  position: absolute;
  animation: rotator 3s linear;
  transform: rotate(45deg);
}
.hero .hero-div-3 {
  background-color: #fea787;
  top: -45%;
  left: 80%;
  width: 20%;
  height: 200vh;
  position: absolute;
  animation: rotator 4s linear;
  transform: rotate(45deg);
}
.hero .hero-div-4 {
  background-color: #feb9a0;
  top: -45%;
  left: 100%;
  width: 20%;
  height: 200vh;
  position: absolute;
  animation: rotator 5s linear;
  transform: rotate(45deg);
}
.hero .text-box {
  position: absolute;
  background-color: white;
  border: 1px solid white;
  padding: 3rem;
  border-radius: 0 10px 10px 0;
  z-index: 1;
  width: 80vw;
  top: 30%;
  padding-left: 20%;
  align-items: center;
  text-align: justify;
}
.hero .text-box h1 {
  color: black;
}
.hero .text-box p {
  color: gray;
}

.section-2 {
  position: relative;
  overflow: hidden;
  background-color: #0c303a;
  min-height: 100vh;
  transition: all 2s linear;
}
.section-2 .sub-section {
  min-height: auto;
  position: relative;
  width: 100vw;
  height: auto;
  overflow: hidden;
  z-index: 5;
  display: flex;
  flex-direction: row;
  padding: 10%;
  gap: 40px;
}
.section-2 .sub-section .text-box {
  background-color: white;
  box-shadow: 5px 5px 5px grey;
  width: 50vw;
  top: 40%;
  left: 20%;
  align-items: center;
  text-align: justify;
  border: 1px solid white;
  padding: 25px;
  border-radius: 10px;
}
.section-2 .sub-section .text-box h2 {
  color: #1a1a1a;
}
.section-2 .sub-section .text-box p {
  color: gray;
}
.section-2 .sub-section .text-box a {
  text-decoration: none;
  font-size: 1rem;
  color: rgb(11, 10, 10);
  margin-top: 0.2rem;
  padding: 20px 40px;
  background-color: gray;
  border-radius: 10px;
}
.section-2 .hero-div-21 {
  background-color: #cccccc;
  top: -45%;
  left: 20%;
  width: 100%;
  height: 200vh;
  position: absolute;
  transition: all 1s;
}

.section-3 {
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #0c303a;
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-3 h1 {
  color: white;
}
.section-3 p {
  text-align: justify;
  padding-top: 2rem;
  color: #cccccc;
}
.section-3 .sub-section-3 {
  width: 90vw;
  overflow: hidden;
  z-index: 5;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 10%;
  gap: 40px;
  border: 1px solid white;
  border-radius: 5px;
  background-color: #b3b3b3;
}
.section-3 .sub-section-3 .icon-box {
  background-color: #0c303a;
  box-shadow: 5px 5px 5px grey;
  width: 10vw;
  height: 20vh;
  transition: all 3s;
  align-items: center;
  text-align: center;
  border: 1px solid white;
  padding: 25px;
  border-radius: 10px;
}
.section-3 .sub-section-3 .icon-box i {
  font-size: 2rem;
  color: white;
}
.section-3 .sub-section-3 .icon-box strong {
  color: #e6e6e6;
}
.section-3 .hero-div-2 {
  top: -45%;
  right: 20%;
  width: 100%;
  height: 200vh;
  position: absolute;
  transform: rotate(45deg);
}

@media (width < 700px) {
  .hero {
    min-height: 100vh;
  }
  .hero .text-box h1 {
    font-size: 0.8rem;
  }
  .hero .text-box p {
    font-size: 0.5rem;
  }
  .section-2 .sub-section {
    gap: 0.4rem;
  }
  .section-2 .sub-section .text-box h2 {
    font-size: 0.8rem;
  }
  .section-2 .sub-section .text-box p {
    font-size: 0.5rem;
  }
  .section-2 .sub-section .text-box a {
    font-size: 0.5rem;
    margin-top: 0.2rem;
    padding: 0.2rem 0.4rem;
  }
  .section-3 h1 {
    font-size: 0.8rem;
  }
  .section-3 p {
    font-size: 0.5rem;
    padding: 0.5rem;
  }
  .section-3 .sub-section .icon-box {
    width: 20vw;
  }
  .section-3 .sub-section .icon-box i {
    font-size: 1rem;
  }
  .section-3 .sub-section .icon-box strong {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */