*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
        height: 100vh;
        width: 100vw;
       overflow-x: hidden;
      
   }
   body::-webkit-scrollbar{
       display: none;
   }
   .topnav{
    height: 0px;
    /* display: none; */
   }
   .navigation{
    display: none;
   }
   .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999; /* Ensure it's above other content */
  }
  
  .whatsapp-icon img {
    width: 50px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%; /* Makes it round */
    box-shadow:rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; /* Optional: Adds shadow */
  }
   .navbar{
    z-index: 2;
        height: 100px;
        width: 100%;
        background-color:white;
        position: fixed;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
   }
   .n1{
    /* margin-top: 100%; */
    height: 100%;
    width: 30%;
    /* background-color: darkblue; */
    overflow: hidden;
   }
   .n1 img{
    height: 100%;
    width: 100%;
    object-fit:cover;
   }
   .n2{
    height: 100%;
    width: 40%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
   }
   .n2 a{
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    text-decoration: none;
    color: #3c3c3c;
   }
   .n2 a:hover{
    color: #3c87c8;
   }
   .n3{
    height: 100%;
    width: 20%;
    /* background-color: rgb(18, 8, 7); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.n3 a{
    color: white;
    font-size: 15px;
    font-family: "Barlow", sans-serif;
    padding: 13px;
    border-radius: 3px;
    text-decoration: none;
    background-color:#e41646;
}
.topi{
  margin-top: 100px;
  height: 731px;
  width: 100%;
  background-image:url(../img/contact.avif);
  background-position:center;
  background-size:cover;
  background-repeat: no-repeat;
}
.subtopi{
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.671);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.subtopi h1{
  text-transform: capitalize;
  font-size: 50px;
  color: #e41646;
  font-weight: 400;
  /* margin-bottom: 200px; */
  font-family: "Barlow", sans-serif;
}
.subtopi p{
  text-transform: capitalize;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.489);
  font-weight: 200;
  margin-bottom: 200px;
  font-family: "Barlow", sans-serif;
}

body,
input,
textarea {
  font-family: "Poppins", sans-serif;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #1abc9c;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #1abc9c;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #1abc9c;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #1ABC9C;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #1abc9c, #149279);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1abc9c;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}
.topii{
  margin-top: 100px;
  height: 431px;
  width: 100%;
  background-image:url(../img/caro.avif);
  background-position:center;
  background-size:cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.subtopii{
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.684);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.subtopii h1{
  text-transform: capitalize;
  font-size: 50px;
  color: #e4164682;
  font-weight: 400;
  /* margin-bottom: 200px; */
  font-family: "Barlow", sans-serif;
}
.subtopii p{
  text-transform: capitalize;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.489);
  font-weight: 200;
  /* margin-bottom: 200px; */
  font-family: "Barlow", sans-serif;
}
.topic{
  margin-top: 60px;
  height: 120px;
  width: 100%;
  padding: 20px;
}
.subtopic{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.subtopic h1{
  font-family: "Overpass", sans-serif;
  font-size: 32px;
  font-weight: 100;
  line-height: 50px;
  text-transform: capitalize;
  /* color:#3c3c3c; */
  color: #e41646;
}
.subtopic p{
  font-size: 17px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 10px;
  letter-spacing: 2px;
  /* color:#e41646; */
  color: #3c3c3c;
}
.mappi{
  margin-top: 50px;
  height: 400px;
  width: 100%;
  margin-bottom: 50px;
}
.mappi iframe{
  height: 100%;
  width: 100%;
}



.pic{
  height: 300px;
  width: 100%;

}
.pic img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}




























































  .summa{
    height: 100px;
    width: 100%;
    background-color: white;
  }
  @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);

.ft{
    height: 450px;
    width: 100%;
    /* display: inline-block; */
}

.summa{
    height: 20px;
    width: 100%;
    background-color:white;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left:10px;
  
  }
  .summa p{
    height: 50%;
    width: 0.6%;
   border-radius: 100%;
   background-color: rgb(240, 59, 59);
  }
  #np1{
    height: 50%;
    width: 0.6%;
    border-radius: 100%;
    background-color: rgb(236, 190, 52);
    /* padding-left: 5px; */
    margin-left: 3px;
  }
  #np2{
    height: 50%;
    width: 0.6%;
    border-radius: 100%;
    background-color: rgb(10, 141, 28);
    margin-left: 3px;
  }

.footer-distributed{
  background: #102136;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right,
.ftr{
  display: inline-block;
  vertical-align: top;
} */

/* Footer left */

.footer-distributed .footer-left{
  width: 30%;
  height: 100%;
  overflow: hidden;
}
.footer-left .coo{
    height: 40%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
}
.footer-left img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* The company logo */

.footer-distributed h3{
  color:  #ffffff;
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}

.footer-distributed h3 span{
  color:  lightseagreen;
}

/* Footer links */

.footer-distributed .footer-links{
  color:  #ffffffb5;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}
.footer-links a:hover{
    color: #2c73df;
}

.footer-distributed .footer-company-name{
    margin-top: 50px;
  color:#e31746;
  font-size: 20px;
  font-weight: 600;
  /* font-weight: normal; */
  font-family: "Barlow", sans-serif;
  /* margin: 0; */
}

/* Footer Center */
.c2{
    display: flex;
    align-items: center;
    justify-content: left;
    height: 20%;
    width: 100%;
}
.c22{
    display: flex;
    align-items: center;
    justify-content: left;
    height: 20%;
    width: 100%;
    padding-left: 70px;
}
.c22 h1{
    font-size: 24px;
    color: #e31746;
    font-family: "Poppins", sans-serif;
}
.c2 h1{
    font-size: 24px;
    color: #e31746;
    font-family: "Poppins", sans-serif;
}
.footer-distributed .footer-center{
  width: 22%;
  height:100%;
}

.footer-distributed .footer-center i{
  background-color:  #e31746;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p{
  display: inline-block;
  color: #ffffff;
  font-weight:400;
  vertical-align: middle;
  margin:0;
  /* margin-top: 20px; */

}
.sss{
    margin-top: 30px;
    height: 40%;
}
.sss p{
    color: #ffffff;
  font-weight:400;
  vertical-align: middle;
}
.sss p span{
    color: #ffffff;
  font-weight:400;
  vertical-align: middle;
}
.footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-distributed .footer-center p a{
  color:  lightseagreen;
  text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
  width: 20%;
  height: 100%;
}

.footer-distributed .footer-company-about{
  line-height: 20px;
  color:  #92999f;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons{
  margin-top: 25px;
}

.footer-distributed .footer-icons a{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color:  #33383b;
  border-radius: 2px;

  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}
.ftr{
    font-family: "Poppins", sans-serif;
    height: 100%;
    width: 20%;
}
.ftr iframe{
    height: 70%;
    width: 100%;
}
.copyarea{
    background: #0c1928;
    padding: 25px 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   .copyright-text p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #878787;
   }
   .copyright-text p a{
    color: #ff5e14;
    font-family: "Poppins", sans-serif;
   }
/* If you don't want the footer to be responsive, remove these media queries */

@media screen and (max-width:600px) {
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
        height: 100vh;
        width: 100vw;
       overflow-x: hidden;
      
   }
   body::-webkit-scrollbar{
       display: none;
   }
   :root {
    --clr:white;
  }
  .topnav{
    height: 80px;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 2;
    font-family: "Poppins", sans-serif;
  }
  .navigation {
    position: relative;
    width: 100%;
    height:100%;
    background:#e41646;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0px 0px;
  }
  .navigation ul {
    display: flex;
    width: 350px;
  }
  .navigation ul li {
    position: relative;
    list-style: none;
    width: 70px;
    height: 70px;
    z-index: 1;
  }
  .navigation ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
  }
  .navigation ul li a .icon {
    position: relative;
    display: block;
    line-height: 75px;
    font-size: 1.5em;
    text-align: center;
    transition: 0.5s;
    color: var(--clr);
  }
  .navigation ul li.active a .icon {
    transform: translateY(-42px);
    /* text-align: center; */
    padding-left: 5px;
  }
  .navigation ul li a .text {
    position: absolute;
    color: var(--clr);
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(20px);
  }
  .navigation ul li.active a .text {
    opacity: 1;
    transform: translateY(10px);
  }
  .indicator {
    position: absolute;
    top: -50%;
    width: 70px;
    height: 70px;
    background: rgb(42, 93, 176);
    border-radius: 50%;
    border: 6px solid var(--clr);
    transition: 0.5s;
  }
  
  /* Indicator Transitions */
  .navigation ul li:nth-child(1).active ~ .indicator {
    transform: translateX(calc(70px * 0));
  }
  .navigation ul li:nth-child(2).active ~ .indicator {
    transform: translateX(calc(70px * 1));
  }
  .navigation ul li:nth-child(3).active ~ .indicator {
    transform: translateX(calc(70px * 2));
  }
  .navigation ul li:nth-child(4).active ~ .indicator {
    transform: translateX(calc(70px * 3));
  }
  .navigation ul li:nth-child(5).active ~ .indicator {
    transform: translateX(calc(70px * 4));
  }
  .whatsapp-icon {
    position: fixed;
    bottom: 150px;
    right: 30px;
    z-index: 9999; /* Ensure it's above other content */
}

.whatsapp-icon img {
    width: 45px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%; /* Makes it round */
    box-shadow:rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; /* Optional: Adds shadow */
}
   .navbar{
    display: none;
    z-index: 2;
        height: 100px;
        width: 100%;
        background-color:white;
        position: fixed;
        top: 0;
        /* display: flex; */
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
   }
   .n1{
    /* margin-top: 100%; */
    height: 100%;
    width: 30%;
    /* background-color: darkblue; */
    overflow: hidden;
   }
   .n1 img{
    height: 100%;
    width: 100%;
    object-fit:cover;
   }
   .n2{
    height: 100%;
    width: 40%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
   }
   .n2 a{
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    text-decoration: none;
    color: #3c3c3c;
   }
   .n2 a:hover{
    color: #3c87c8;
   }
   .n3{
    height: 100%;
    width: 20%;
    /* background-color: rgb(18, 8, 7); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.n3 a{
    color: white;
    font-size: 15px;
    font-family: "Barlow", sans-serif;
    padding: 13px;
    border-radius: 3px;
    text-decoration: none;
    background-color:#e41646;
}





.topi{
  margin-top: 0px;
  height: 731px;
  width: 100%;
  background-image:url(../img/contact.avif);
  background-position:center;
  background-size:cover;
  background-repeat: no-repeat;
}
.subtopi{
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.671);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.subtopi h1{
  text-transform: capitalize;
  font-size: 32px;
  color: #e41646;
  font-weight: 400;
  /* margin-bottom: 200px; */
  font-family: "Barlow", sans-serif;
}
.subtopi p{
  text-transform: capitalize;
  text-align: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.489);
  font-weight: 200;
  margin-bottom: 200px;
  font-family: "Barlow", sans-serif;
}

body,
input,
textarea {
  font-family: "Poppins", sans-serif;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #1abc9c;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #1abc9c;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #1abc9c;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #1ABC9C;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #1abc9c, #149279);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1abc9c;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}
.topii{
  margin-top: 100px;
  height: 431px;
  width: 100%;
  background-image:url(../img/caro.avif);
  background-position:center;
  background-size:cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.subtopii{
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.684);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.subtopii h1{
  text-transform: capitalize;
  font-size: 32px;
  color: #e4164682;
  font-weight: 400;
  /* margin-bottom: 200px; */
  font-family: "Barlow", sans-serif;
}
.subtopii p{
  text-transform: capitalize;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.489);
  font-weight: 200;
  /* margin-bottom: 200px; */
  font-family: "Barlow", sans-serif;
}
.topic{
  margin-top: 60px;
  height: 120px;
  width: 100%;
  padding: 20px;
}
.subtopic{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.subtopic h1{
  font-family: "Overpass", sans-serif;
  font-size: 32px;
  font-weight: 100;
  line-height: 50px;
  text-transform: capitalize;
  /* color:#3c3c3c; */
  color: #e41646;
}
.subtopic p{
  font-size: 17px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 10px;
  letter-spacing: 2px;
  /* color:#e41646; */
  color: #3c3c3c;
}
.mappi{
  margin-top: 50px;
  height: 400px;
  width: 100%;
  margin-bottom: 50px;
}
.mappi iframe{
  height: 100%;
  width: 100%;
}



.pic{
  height: auto;
  width: 100%;

}
.pic img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}






















































  .summa{
    height: 100px;
    width: 100%;
    background-color: white;
  }
  @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,300,700);

.ft{
    height: auto;
    width: 100%;
    /* display: inline-block; */
}

.summa{
  height: 15px;
  width: 100%;
  background-color:white;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left:10px;

}
.summa p{
  height: 50%;
  width: 1.7%;
 border-radius: 100%;
 background-color: rgb(240, 59, 59);
}
#np1{
  height: 50%;
  width: 1.7%;
  border-radius: 100%;
  background-color: rgb(236, 190, 52);
  /* padding-left: 5px; */
  margin-left: 3px;
}
#np2{
  height: 50%;
  width: 1.7%;
  border-radius: 100%;
  background-color: rgb(10, 141, 28);
  margin-left: 3px;
}
.footer-distributed{
  background: #102136;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding:20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* .footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right,
.ftr{
  display: inline-block;
  vertical-align: top;
} */

/* Footer left */

.footer-distributed .footer-left{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.footer-left .coo{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
}
.footer-left img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* The company logo */

.footer-distributed h3{
  color:  #ffffff;
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}

.footer-distributed h3 span{
  color:  lightseagreen;
}

/* Footer links */

.footer-distributed .footer-links{
  color:  #ffffffb5;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  inherit;
}
.footer-links a:hover{
    color: #2c73df;
}

.footer-distributed .footer-company-name{
    margin-top: 50px;
  color:#e31746;
  font-size: 20px;
  font-weight: 600;
  /* font-weight: normal; */
  font-family: "Barlow", sans-serif;
  /* margin: 0; */
}

/* Footer Center */
.c2{
    display: flex;
    align-items: center;
    justify-content:left;
    height: 100%;
    
    width: 100%;
}
.c22{
    display: flex;
    align-items: center;
    justify-content: left;
    height: 20%;
    width: 100%;
    padding-left:0px;
}
.c22 h1{
  margin-top: 30px;
  margin-bottom: 30px;
  /* text-align: left; */
    font-size: 24px;
    color: #e31746;
    font-family: "Poppins", sans-serif;
}
.c2 h1{
  margin-top: 30px;
  margin-bottom: 30px;
    font-size: 24px;
    text-align: left;
    color: #e31746;
    font-family: "Poppins", sans-serif;
}
.footer-distributed .footer-center{
  width: 100%;
  height:100%;
}

.footer-distributed .footer-center i{
  background-color:  #e31746;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p{
  display: inline-block;
  color: #ffffff;
  font-weight:400;
  vertical-align: middle;
  margin:0;
  /* margin-top: 20px; */

}
.sss{
    margin-top: 30px;
    height: 40%;
}
.sss p{
    color: #ffffff;
  font-weight:400;
  vertical-align: middle;
}
.sss p span{
    color: #ffffff;
  font-weight:400;
  vertical-align: middle;
}
.footer-distributed .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-distributed .footer-center p a{
  color:  lightseagreen;
  text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
  width: 100%;
  height: 100%;
}

.footer-distributed .footer-company-about{
  line-height: 20px;
  color:  #92999f;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons{
  margin-top: 25px;
}

.footer-distributed .footer-icons a{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color:  #33383b;
  border-radius: 2px;

  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}
.ftr{
    font-family: "Poppins", sans-serif;
    height: 100%;
    width: 100%;
}
.ftr iframe{
    height: 70%;
    width: 100%;
}
.copyarea{
  background: #0c1928;
  padding: 0px;
  height:60px;
  width: 100%;
  border-bottom: 1px solid #0c1928;
  margin: none;
  display: flex;
  align-items: center;
  justify-content: center;
  
 }
 .copyright-text p {
  
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #878787;
 }
 .copyright-text p a{
  text-decoration: none;
  color: #ff5e14;
  font-family: "Poppins", sans-serif;
 }
 .last{
  height: 115px;
  background-color: #0c1928;
 }
  }