@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

header {
  width: 100%;
  padding: 20px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
}

header .left {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .left .logo {
  display: flex;
  align-items: center;
}
header .left .logo h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #30a8d5;
}
header .left .logo img {
  width: 9rem;
  object-fit: cover;
}
header .left nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 2rem;
}
header .left nav a {
  text-decoration: none;
  color: rgb(87, 87, 87);
  cursor: pointer;
  font-size: 1.2rem;
}
header .left nav a:hover {
  color: #30a8d5;
}
header .left nav a.active {
  color: #30a8d5;
}

header .right {
  width: 40%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
header .right p, header .right .link {
  color: rgb(87, 87, 87);
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}
header .right button, header .right .button{
  padding: 0.6rem;
  border: 2px solid #30a8d5;
  outline: none;
  border-radius: 4px;
  background: transparent;
  color: #30a8d5;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease-in;
}

header .right button:hover, header .right .button:hover  {
  background: #30a8d5;
  color: #fff;
}

header .mobile-nav {
  display: none;
}

header .mobile-nav button, header .mobile-nav .button {
  border: none;
  outline: none;
  font-size: 1.5rem;
  background: transparent;
  cursor: pointer;
}
header .mobile-content {
  width: 50%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fafafa;
  height: 100%;
  padding: 1rem;
  display: none;
}
header .mobile-content.active {
  display: block;
}

header .mobile-content span.close {
  font-size: 1.2rem;
  cursor: pointer;
}

header .mobile-content nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.5rem;
}
header .mobile-content nav a {
  text-decoration: none;
  color: rgb(108, 108, 108);
  font-size: 0.9rem;
}
header .mobile-content nav a.active {
  color: #30a8d5;
}
header .mobile-content .content {
  width: 100%;
  margin-top: 1rem;
}
header .mobile-content .content h5 {
  font-size: 0.8rem;
  color: rgb(108, 108, 108);
  font-weight: 600;
}
header .mobile-content .content p {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: rgb(108, 108, 108);
}

header .mobile-content button, header .mobile-content .button {
  margin-top: 1rem;
  width: 100%;
  height: 30px;
  border: none;
  outline: none;
  background: #30a8d5;
  color: #ffff;
  border-radius: 3px;
}

@media (max-width: 1600px) {
  header .left nav a {
    font-size: 1rem;
  }
  header .right p {
    font-size: 1rem;
  }
}

@media (max-width: 1020px) {
  header {
    padding: 10px;
  }
}
@media (max-width: 900px) {
  header .left nav {
    display: none;
  }
  header .left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .left .logo h2 {
    font-size: 0.9rem;
  }
  header .right {
    display: none;
  }
  header .mobile-nav {
    display: block;
    position: relative;
  }
}

section.hero {
  width: 100%;
  height: calc(100vh - 70px);
  padding: 0px 100px;
  padding-right: 0;
  min-height: 477px;
}
section.hero .wrap {
  width: 100%;
  height: 100%;
  display: flex;
}
section.hero .wrap .left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
}
section.hero .wrap .left h1 {
  font-size: 6rem;
  font-weight: 900;
  color: #232323;
}
section.hero .wrap .left h1 span {
  color: #30a8d5;
}
section.hero .wrap .left p {
  width: 70%;
  margin-top: 0.5rem;
  color: #474747;
  text-align: justify;
  line-height: 1.5rem;
  font-size: 1.2rem;
}
section.hero .wrap .left p.small {
  font-size: 1rem;
  color: #30a8d5;
  line-height: normal;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
section.hero .wrap .left .set {
  margin-top: 1rem;
}
section.hero .wrap .left .set button.active-btn, section.hero .wrap .left .set .button.active-btn {
  padding: 1rem 1.2rem;
  border: none;
  outline: none;
  background: #30a8d5;
  color: #ffff;
  border-radius: 3px;
  font-weight: 500;
  border: 2px solid #30a8d5;
  font-size: 1.1rem;
}
section.hero .wrap .left .set button.active-btn:hover, section.hero .wrap .left .set .button.active-btn:hover {
  border: 2px solid #30a8d5;
  background: #fff;
  color: #30a8d5;
}
section.hero .wrap .left .set button, section.hero .wrap .left .set .button{
  padding: 1rem 1.2rem;
  border: none;
  outline: none;
  border-radius: 3px;
  font-weight: 500;
  color: #5c5c5c;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1.2rem;
}
section.hero .wrap .left .set button:nth-child(2), section.hero .wrap .left .set .button:nth-child(2) {
  margin-left: 0.5rem;
}
section.hero .wrap .right {
  width: 50%;
  height: 100%;
}
section.hero .wrap .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1700px) {
  section.hero .wrap .left h1 {
    font-size: 4rem;
  }
}
@media (max-width: 1600px) {
  section.hero .wrap .left h1 {
    font-size: 3rem;
  }
  section.hero .wrap .left p {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  section.hero .wrap .left p.small {
    font-size: 0.8rem;
  }
  section.hero .wrap .left .set button.active-btn,   section.hero .wrap .left .set .button.active-btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  section.hero .wrap .left .set button,   section.hero .wrap .left .set .button {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 1000px) {
  section.hero {
    padding: 10px;
  }
}

@media (max-width: 900px) {
  section.hero .wrap {
    width: 100%;
    /* border: 1px solid red; */
  }
  section.hero .wrap .right {
    display: none;
    padding: 0;
  }
  section.hero .wrap .left {
    width: 100%;
    padding-right: 0;
  }
}

section.about {
  width: 100%;
  height: fit-content;
  padding: 10px 100px;
  margin-top: 6rem;
}
section.about .wrap {
  width: 100%;
  display: flex;
  gap: 10px;
}
section.about .wrap .card {
  width: 32%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
section.about .wrap .card h2 {
  color: #5c5c5c;
  font-size: 2rem;
}
section.about .wrap .card p {
  font-size: 1.1rem;
}

@media (max-width: 1000px) {
  section.about {
    padding: 10px;
  }
}
@media (max-width: 800px) {
  section.about .wrap {
    flex-direction: column;
    gap: 20px;
  }
  section.about .wrap .card {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

section.about2 {
  width: 100%;
  height: auto;
  padding: 10px 100px;
  margin-top: 6rem;
  margin-bottom: 0rem;
}
section.about2 .wrap {
  width: 100%;
  display: flex;
}
section.about2 .wrap .left {
  width: 50%;
  padding-right: 1rem;
}
section.about2 .wrap .left img {
  width: 90%;
}
section.about2 .wrap .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 1rem;
}
section.about2 .wrap .right h2 {
  font-size: 2.5rem;
  color: #3f3f3f;
}
section.about2 .wrap .right h2 span {
  color: #30a8d5;
}
section.about2 .wrap .right p {
  line-height: 1.4rem;
  color: #2e2e2e;
  text-align: justify;
}
section.about2 .wrap .right button, section.about2 .wrap .right .button {
  width: 100px;
  height: 40px;
  border: 2px solid #30a8d5;
  background: white;
  color: #30a8d5;
  border-radius: 3px;
  font-weight: 500;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.about2 .wrap .right button:hover, section.about2 .wrap .right .button:hover {
  background: #30a8d5;
  color: #fff;
}

@media (max-width: 1000px) {
  section.about2 {
    padding: 10px;
  }
}

@media (max-width: 900px) {
  section.about2 {
    height: auto;
  }
  section.about2 .wrap {
    flex-direction: column;
    gap: 50px;
  }
  section.about2 .wrap .left {
    width: 100%;
  }
  section.about2 .wrap .right {
    width: 100%;
  }
}

section.feature {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 10px 100px;
  margin-top: 2rem;
  margin-bottom: 5rem;
}
section.feature .wrap {
  width: 100%;
  display: flex;
  align-items: center;
}
section.feature .wrap .left {
  width: 50%;
  height: fit-content;
  padding-right: 1rem;
}
section.feature .wrap .left h1 {
  font-size: 2.3rem;
  font-weight: 600;
}
section.feature .wrap .left h1 span {
  color: #30a8d5;
}
section.feature .wrap .left p.text {
  margin-top: 0.5rem;
  color: #474747;
  line-height: 1.4rem;
  text-align: justify;
}
section.feature .wrap .left ul {
  margin-top: 1.5rem;
}
section.feature .wrap .left ul li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #5c5c5c;
}
section.feature .wrap .left ul li i {
  color: #30a8d5;
  margin-top: 2px;
}
section.feature .wrap .right {
  width: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.feature .wrap .right img {
  border-radius: 63% 37% 50% 50%/70% 68% 32% 30%;
}
section.feature .wrap2 {
  width: 100%;
  display: flex;
  margin-top: 7rem;
  gap: 30px;
}
section.feature .wrap2 .card {
  width: 30%;
  height: 14rem;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0px 0px 40px 0px rgb(48 168 213 / 12%) !important;
  align-items: center;
  justify-content: flex-end;
}
section.feature .wrap2 .card h4 {
  text-align: center;
  color: #5c5c5c;
}
section.feature .wrap2 .card p {
  color: #a7abaf;
  padding: 1rem;
  text-align: center;
  line-height: 1.4rem;
}
section.feature .wrap2 .card .case {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: -225px;
  bottom: 0;
  margin: auto;
  background: #30a8d5;
  border-radius: 15px;
  transform: rotate(45deg);
  z-index: 99;
  width: 80px;
  height: 80px;
  font-size: 3rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.feature .wrap2 .card .case i {
  transform: rotate(-45deg);
}

@media (max-width: 1000px) {
  section.feature {
    padding: 10px;
  }
}

@media (max-width: 900px) {
  section.feature .wrap {
    flex-direction: column-reverse;
    width: 100%;
  }
  section.feature .wrap .left {
    width: 100%;
  }
  section.feature .wrap .right {
    width: 100%;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
  }
  section.feature .wrap .right img {
    width: 100%;
    object-fit: contain;
  }
  section.feature .wrap2 {
    flex-direction: column;
    padding: 1rem 1.5rem;
  }
  section.feature .wrap2 .card {
    width: 100%;
    margin-bottom: 4rem;
  }
}

footer {
  width: 100%;
  height: fit-content;
  background: #26292d;
  padding: 10px 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
footer .wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
footer .wrapper .top-bar {
  width: 100%;
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .wrapper .top-bar img {
  width: 80%;
  object-fit: contain;
}
footer .wrapper .top-bar2 {
  margin-top: 1rem;
  color: #fff;
}
footer .wrapper .top-bar2 h2 {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  font-weight: 300;
  text-transform: capitalize;
}
footer .wrapper .top-bar2 button, footer .wrapper .top-bar2 .button {
  background: #30a8d5;
  color: #fff;
  border: none;
  outline: none;
  padding: 0.7rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  margin-top: 1rem;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}
footer .wrapper .top-bar2 button:hover, footer .wrapper .top-bar2 .button:hover {
  transform: translateY(-5px);
}
footer .wrapper .top-bar2 button span, footer .wrapper .top-bar2 .button span {
  border-left: 1px solid #fff;
  padding-left: 0.5rem;
}

footer .wrapper .contents {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 4rem;
  margin-bottom: 3rem;
  justify-content: space-evenly;
}
footer .wrapper .contents .col-1 {
  width: 32%;
  display: flex;
  flex-direction: column;
}
footer .wrapper .contents .col-1 h4 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
}
footer .wrapper .contents .col-1 p {
  color: #a7abaf;
  text-align: justify;
  margin-top: 0.5rem;
}
footer .wrapper .contents .col-1 a.read {
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
footer .wrapper .contents .col-1 a.read:hover {
  color: #30a8d5;
}
footer .wrapper .contents .col-1 .card {
  width: 100%;
  display: flex;
  margin-top: 1rem;
  gap: 10px;
  padding: 0.5rem;
}
footer .wrapper .contents .col-1 .card .card-left {
  width: fit-content;
}
footer .wrapper .contents .col-1 .card .card-left img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}
footer .wrapper .contents .col-1 .card .card-right {
  width: 100%;
}
footer .wrapper .contents .col-1 .card .card-right h5 {
  color: #30a8d5;
  font-size: 1rem;
  font-weight: 500;
}
footer .wrapper .contents .col-1 .card2 {
  width: fit-content;
  display: flex;
  margin-top: 1rem;
  gap: 10px;
  padding: 0.5rem;
  align-items: flex-start;
}
footer .wrapper .contents .col-1 .card2 .card2-left {
  width: fit-content;
}
footer .wrapper .contents .col-1 .card2 .card2-left i {
  color: #30a8d5;
  font-size: 1.2rem;
}
footer .wrapper .contents .col-1 .card2 .card2-right p {
  margin-top: 0;
  text-transform: none;
}
footer .wrapper .contents .col-1 .card2 .card2-right p a{
  color: #fff;
  text-decoration: none;
}

footer .last p {
  color: #a7abaf;
  padding-bottom: 0.5rem;
}

@media (max-width: 1020px) {
  footer {
    padding: 10px;
  }
}
@media (max-width: 900px) {
  footer .wrapper .contents {
    width: 100%;
    flex-direction: column;
  }
  footer .wrapper .contents .col-1 {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  footer .wrapper .top-bar img {
    width: 700px;
  }
  footer .wrapper .top-bar2 h2 {
    font-size: 1.2rem;
  }
  footer .wrapper .top-bar2 button, footer .wrapper .top-bar2 .button  {
    font-size: 0.8rem;
  }
  footer .wrapper .contents .col-1 h4 {
    font-size: 1.2rem;
  }
}

section.contact {
  width: 100%;
  height: fit-content;
  padding: 10px 100px;
  margin-bottom: 2rem;
}
section.contact .wrap {
  width: 100%;
  height: auto;
  display: flex;
  margin-bottom: 1rem;
}
section.contact .wrap .left {
  width: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.contact .wrap .left img {
  border-radius: 5px;
  width: 80%;
  object-fit: cover;
  border-radius: 63% 37% 50% 50% / 70% 68% 32% 30%;
}
section.contact .wrap .right {
  width: 50%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section.contact .wrap .right h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #5c5c5c;
}

section.contact .wrap .right .bar {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
  align-items: flex-start;
}
section.contact .wrap .right .bar i {
  font-size: 2rem;
  color: #30a8d5;
}
section.contact .wrap .right .bar span {
  font-size: 1.2rem;
  margin-top: 5px;
}

@media (max-width: 1000px) {
  section.contact {
    padding: 10px;
  }
}

@media (max-width: 900px) {
  section.contact .wrap {
    flex-direction: column;
    gap: 20px;
  }
  section.contact .wrap .left {
    width: 100%;
    padding: 0;
  }
  section.contact .wrap .left img {
    width: 100%;
  }
  section.contact .wrap .right {
    width: 100%;
  }
  section.contact .wrap .right .bar i {
    font-size: 1.5rem;
  }
  section.contact .wrap .right .bar span {
    font-size: 0.9rem;
  }
}

section.features {
  width: 100%;
  height: auto;
  padding: 10px 100px;
  min-height: 100vh;
}

section.features .wrap {
  width: 100%;
  display: flex;
  margin-top: 1.5rem;
  padding: 2rem;
}
section.features .wrap .left {
  width: 50%;
  display: flex;
  flex-direction: column;
}
section.features .wrap .left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2e2e2e;
}
section.features .wrap .left h2 span {
  color: #30a8d5;
}
section.features .wrap .left p {
  color: #5c5c5c;
  text-align: justify;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
section.features .wrap .left h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  color: #30a8d5;
}
section.features .wrap .left ul {
  margin-top: 1rem;
}
section.features .wrap .left ul li {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 1rem;
  gap: 10px;
  color: #5c5c5c;
}
section.features .wrap .left ul li i {
  color: #30a8d5;
  font-size: 1.2rem;
}
section.features .wrap .right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
section.features .wrap .right img {
  border-radius: 5px;
  width: 80%;
  border-radius: 63% 37% 50% 50% / 70% 68% 32% 30%;
}





@media (max-width: 1000px) {
  section.features {
    padding: 10px;
  }
  section.features .wrap {
    padding: 0;
  }
}
@media (max-width: 900px) {
  section.features .wrap {
    flex-direction: column-reverse;
  }
  section.features .wrap .left {
    width: 100%;
    margin-top: 2rem;
  }
  section.features .wrap .left h2 {
    font-size: 2rem;
  }
  section.features .wrap .right {
    width: 100%;
  }
  section.features .wrap .right img {
    width: 100%;
  }
}

section.about3 {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 10px 100px;
}
