* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

body{
  background-color: #FDFDFD;
}

img {
  width: 100%;
  max-width: 100%;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 2rem;
}

p {
  font-family: 'Poppins' ,sans-serif;
  text-align: justify;
  line-height: 25px;
  color: #505050;
}

.container {
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

header {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(/Images/bg-1.png), #5EC9E7;
  background: url(/Images/bg-1.png), linear-gradient(122deg, #5EC9E7 26%, #202D5D 77%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b8fb9",endColorstr="#17039b",GradientType=1);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode:screen;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52.5px;
  overflow: hidden;
  z-index: 10;
}

nav.hide{
  opacity: 0;
  transition: all 0.8s, opacity 0.8s;
}

nav::before{
  content:"";
  position: fixed;
  top: 0;
  right: 0;
  float: right;
  width: 10%;
  height: 52.5px;
}

nav.scrolled{
  background-color: #202D5D;
  transition: all 0.2s ease-in-out;
}

nav.scrolled::before{
  background-color: #202D5D;
  transition: all 0.2s ease-in-out;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 52px;
  background-color: #f5ecec;
  width: 100%;
  left: 0;
  -webkit-transform: translate(-101%);
          transform: translate(-101%);
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  opacity: 0;
}

ul.active {  
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: initial;
}

nav ul li {
  padding: 15px;
}

nav ul li a {
  display: inline-block;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 1rem 0;
  cursor: pointer;
  color: #000000;
}

nav ul li a:hover {
  color: #EF396A;
}

.menu-toggle {
  position: absolute;
  top: 7px;
  right: 15px;
  width: 50px;
  height: 40px;
  z-index: 10;
  padding: 2px;
  overflow: hidden;
  border-radius: 5px;
}

.menu-toggle .bar {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  margin: 7px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo-bg {
  position: fixed;
  height: 55px;
  top: -2px;
  left: 0;
  width: 50%;
}

.logo .logo-img {
  position: relative;
  width: 50%;
  padding: 0.5rem 0;
  z-index: 100;
}

.hero-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: white;
  line-height: 1.2;
  transform: scale(0.94);
  animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  overflow: hidden;
}

span:nth-child(1) {
  animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
  animation-delay: 0.3s;
}

span:nth-child(2) {
  animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
  animation-delay: 0.6s;
}

span:nth-child(3) {
  animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
  animation-delay: 0.9s;
}

span:nth-child(4) {
  animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
  animation-delay: 1.2s;
}

span:nth-child(5) {
  animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
  animation-delay: 1.5s;
}

@keyframes scale {
  100% {
    transform: scale(1);
  }
}

@keyframes fade-in {
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

span {
  display: inline-block;
  margin: 0;
  padding: 0;
  opacity: 0;
  filter: blur(4px);
  overflow: hidden;
}

.about-section {
  background: url(/Images/bg-2.png), #ffffff;
  background: url(/Images/bg-2.png), linear-gradient(122deg, #fdfdfd 26%, #ffffff 77%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 2rem 0;
  padding: 2rem 0;
  overflow: hidden;
}

.ab-p{
  text-align: center;
  margin: 2rem 0;
}

.about-section img {
  margin-top: 2rem;
}

.desktop-img{
  display: none;
}

.about-section .about-content h1 {
  position: relative;
  padding: 2rem 0;
  color: #040549;
}

.about-section .about-content h1::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  bottom: 23px;
  background-color: #EF396A;
}

.about-info p{
  margin-bottom: 1rem;
}

.about-info-2{
  margin-top: 2rem;
}

.about-info-2 h1{
  text-align: right;
}

.about-info-2 .about-content div div{
  margin-bottom: 1rem;
}

.about-section .about-info-2 h1::before {
  right: 0;
}

.about-info-2 h4{
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  color: #202D5D;
  margin-top: 3rem;
  margin-bottom: .5rem;
}

.about-info-2 li {
  font-size: 1rem;
  /* font-weight: 600; */
  font-family: 'Poppins', sans-serif;
  list-style: none;
  line-height: 30px;
  color: #505050;
}

.services-section {
  background: url(/Images/bg-2.png), #5EC9E7;
  background: url(/Images/bg-2.png), linear-gradient(122deg, #5EC9E7 26%, #447DBF 77%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0b8fb9",endColorstr="#17039b",GradientType=1);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 4rem 0.5rem;
  color: #f0f0f0;
  border-radius: 20px;
}

.services-section h1 {
  position: relative;
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
}

.services-section h1::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  background-color: #5EC9E7;
}

.services-section p {
  text-align: center;
  color: #f0f0f0;
  margin-bottom: 3rem;
}

.services-cards {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  width: 100%;
  overflow: hidden;
  margin-top: 1rem;
}

.services-card {
  display: -ms-grid;
  display: grid;
  width: 100%;
  padding: 1rem 1rem;
  overflow: hidden;
}

.services-card h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  padding: 1.3rem 0;
}

.services-card li {
  font-size: .8rem;
  font-family: 'Poppins', sans-serif;
  list-style: inside;
  line-height: 30px;
  margin-left: 2.5rem;
}

.services-card li span{
  font-size: .65rem;
  line-height: 13px; 
  display: inline-block;
}

.services-card li .service-li{
  font-size: 5px;
}

.services-card .card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.card-img img {
  width: 120px;
  height: 120px;
}

.hidden {
  opacity: 0;
}

.contact-section {
  background: url(/Images/bg-3.jpg), #ffffff;
  background: url(/Images/bg-3.jpg), linear-gradient(122deg, #fdfdfd 26%, #ffffff 77%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
  padding: 2rem 0;
  margin: 3rem 0;
}

.contact-details div {
  margin: 1rem 0;
  overflow: hidden;
}

.contact-section h3 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #eb5b08;
}

.contact-section h1 {
  position: relative;
  text-align: center;
  color: #040549;
  margin-bottom: 1rem;
}

.contact-content {
  position: relative;
  overflow: hidden;
}

.contact-content::before {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 70%;
  height: 1px;
  top: 0;
  left: 0;
  right: 0;
  background-color: #d3d1d1;
  text-align: center;
}

.contact-details{
  height: 100%;
  overflow: hidden;
}

.contact-details div p {
  text-align: center;
}

.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.icon i {
  margin-right: 1rem;
  font-size: 1.7rem;
  text-align: center;
  color: #f88b32;
}

.c-title {
  font-weight: 600;
  color: #040549;
  margin-right: 1rem;
}

.ikhono-logo {
  display: flex;
  justify-content: center;
}

.ikhono-logo img{
  width: 70%;
  margin-top: 2rem;
}

.c-line {
  display: block;
  background-color: #505050;
  width: 100%;
  height: 1px;
  margin: 2rem 0;
}

.map-section {
  margin: 2rem 0;
}

.map {
  border-radius: 10px;
}

footer{
  background-color: rgb(80, 80, 80);
  width: 100%;
  margin-top: 3rem;
  padding: 1rem 0;
}

footer p{
  float: right;
  color: #fff;
}

footer p a{
  text-decoration: none;
  color: #fff;
}

/*Media Queries*/
@media screen and (min-width: 480px) {
  .container {
    max-width: 570px;
  }
  nav{
    max-width: 570px;
  }
  .logo-bg {
    width: 23%;
  }
}

@media screen and (min-width: 540px) {
  .logo-bg {
    width: 40%;
  }
  .about-section img {
    width: 100%;
    height: 50%;
  }
  .contact-details div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-details div p {
    text-align: initial;
  }
  .icon {
    display: block;
    width: 50px;
  }
  .c-title {
    width: 150px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  nav{
    max-width: 720px;
  }
  .about-contents {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .about-section img {
    margin-top: 5rem;
  }
  .desktop-img{
    display: initial;
  }
  .mobile-img{
    display: none;
  }
  .hero-section h1 {
    font-size: 3.5rem;
    color: white;
    width: 70%;
  }

  .card-content div{
    display: grid;
    justify-content: center;
  }

  .services-card li {
    margin-left: 0;
  }
}

@media screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 960px;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: initial;
    top: initial;
    background-color: initial;
    width: 100%;
    left: initial;
    height: initial;
    -webkit-transform: initial;
            transform: initial;
    text-align: center;
    overflow: hidden;
    padding-top: .5rem;
    transition: none;
    opacity: initial;
  }
  nav ul li a {
    /* margin-top: 1rem; */
    font-size: 1rem;
    padding: initial;
    color: #f5f0f0;
  }
  .menu-toggle {
    display: none;
  }
  .logo-bg {
    width: 27%;
  }
  .hero-section h1 {
    font-size: 3.5rem;
    width: 70%;
  }
  .about-section img {
    position: relative;
    float: right;
    right: 50px;
    margin-top: 5rem;
    width: 70%;
  }

  .about-section .about-info-2 img {
    position: relative;
    float: left;
    left: 1px;
    margin-top: 5rem;
    width: 90%;
  }

  .services-section p {
    margin: 0 auto;
    width: 70%;
  }
  .contact-content {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: 550px 1fr;
        grid-template-columns: 550px 1fr;
  }
  .c-addrss {
    margin-top: 1.7rem;
    width: 50%;
  }
  .contact-details {
    position: relative;
  }
  .contact-details::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 90%;
    bottom: 0;
    right: 50px;
    background-color: #d3d1d1;
  }

  .ikhono-logo img{
    width: 70%;
    margin-right: 4rem;
    margin-top: 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  nav{
    max-width: 1140px;
  }
}

@media screen and (min-width: 2000px) {
  .logo-bg {
    width: 40%;
  }
}
/*# sourceMappingURL=main.css.map */