/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500; */
*,
*::after,
*::before {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: var(--cl--3--);
}
html {
  scroll-behavior: smooth;
}
body {
  --cl--1--: #ffffff;
  --cl--2--: #f79901;
  --cl--3--: #252b42;
  --shadow--: 0px 0px 10px rgba(0, 0, 0, 0.25);
  background: var(--cl--1--);
  margin: 0;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.row {
  display: flex;
}

.flex {
  flex-wrap: wrap;
  gap: clamp (2em, 5vw, 5em);
}

.flex {
  flex-wrap: wrap;
  gap: clamp (2em, 5vw, 5em);
}
.flex > * {
  flex: 11 25em;
}
.column {
  display: grid;
}
.container {
  max-width: 90%;
  margin: 0 auto;
}
.bg {
  background: linear-gradient(
    90deg,
    var(--c1) 0%,
    rgba(247, 153, 1, 0.05) 100%
  );

  background-image: url("./imgs/bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 80vh;
}

/* Navigation */
header {
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  padding: 2em 0;
}
.logo {
  font-weight: 900;
  font-size: clamp (30px, 5vw, 40px);
  color: var(--cl--1--);
}

.logo-img {
  width: 30vw;
}

span,
.service h5 {
  color: var(--c1--3--);
}
nav ul {
  align-items: center;
  gap: 2em;
}
I nav a,
.links a {
  font-size: 18px;
  color: var(--cl--1--);
  text-transform: capitalize;
}
nav a:hover,
.links a:hover,
.copy-right a:hover {
  color: var(--c1--2--);
}

.page-btn,
.page-btn.active:hover {
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--c1--1--);
  text-transform: capitalize;
  border: 0;
  outline: 1px solid var(--c1--2--);
  background: var(--cl--2--);
  padding: 0.6em 1.2em;
  border-radius: 10px 0 10px 0;
  -webkit-border-radius: 10px 0 10px 0;
  -moz-border-radius: 10px 0 10px 0;
  -ms-border-radius: 10px 0 10px 0;
  -o-border-radius: 10px 0 10px 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.page-btn:hover,
.page-btn.active {
  background: var(--cl--1--);
  color: var(--cl--2--);
  box-shadow: var(--shadow--);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
/* End Page Button */
/* End Navigation */
/* Hero Section */
.hero {
  align-items: center;
  min-height: calc(100vh 112.8px);
  margin-top: 15rem;
}
.hero div {
  max-width: 800px;
}
h1 {
  font-weight: 700;
  font-size: clamp (50px, 10vw, 80px);
  line-height: clamp (55px, 10vw, 85px);
  color: var(--cl--1--);
}
.hero a {
  margin-top: 2em;
}
/* End Hero Section */
/* Partner */
.partner {
  padding: 4em 0;
}

.heading {
  text-align: center;
  max-width: 60px;
  margin: 0 auto;
}

h5 {
  font-size: 20px;
  color: var(--cl--2--);
  text-transform: uppercase;
  padding-bottom: 0.5em;
}

h2 {
  font-weight: 700;
  font-size: clamp (35px, 5vw, 45px);
  line-height: clamp (40px, 5vw, 50px);
  text-transform: capitalize;
}
h2 span {
  font-weight: 700;
  font-size: clamp (35px, 5vw, 45px);
  line-height: clamp (40px, 5vw, 50px);
  text-transform: capitalize;
  color: var(--cl--2--);
}
.partner-cards {
  grid-template-columns: repeat (auto-fit, minmax(150px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 2em;
}

.partner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*End partner*/

/*services*/
services {
  background: linear-gradient
    (270deg, var(--c1--2--) 0%, rgba(247, 153, 1, 0.05) 100%);
  padding: 4em 0;
  overflow: hidden;
}

.service-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  padding-top: 2em;
}

.g1-svg {
  width: 4rem;
}

.s-card {
  position: relative;
  background: var(--cl--1--);
  padding: 2em;
  box-shadow: var(--shadow--);
}
I .s-card :after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: var(--cl--2--);
  z-index: -1;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.s-card:hover::after {
  transform: scale (1.05) rotate(-5deg);
  -webkit-transform: scale (1.05) rotate(-5deg);
  -moz-transform: scale(1.05) rotate (-5deg);
  -ms-transform: scale (1.05) rotate(-5deg);
  -o-transform: scale(1.05) rotate(-5deg);
}

.s-card .row {
  fill: var(--cl--1--);
  align-items: center;
  justify-content: center;
  background: var(--cl--2--);
  padding: 1em;
  max-width: max-content;
  margin: 0 auto;
  box-shadow: var(--shadow--);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}
.s-card:hover .row {
  fill: var(--c1--2--);
  background: var(--cl--1--);
}
h3 {
  font-weight: 700;
  font-size: clamp (15px, 5vw, 20px);
  line-height: clamp (20px, 5vw, 25px);
  text-transform: uppercase;
  padding: 0.6em 0;
}

P {
  font-size: 16px;
}

/* End Service */

/* About */
.about {
  position: relative;
  padding: 4em 0;
}

.about-img {
  width: 70vw;
}

.about::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  background: linear-gradient
      (90deg, var(--c1--2--) 0%, rgba(247, 153, 1, 0.05) 100%),
    url(./imgs/bg);
  z-index: -1;
}

.about .flex {
  flex-wrap: wrap-reverse;
}
.mySwiper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow--);
}
.swiper-pagination-bullet {
  background: var(--c1--2--);
  opacity: 1;
}

.content {
  background-image: url(./imgs/bg1.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.content p {
  padding-top: 1em;
}
/* End About */
/* Contact */
.contact {
  align-items: center;
  padding: 4em 0;
}

.contact a {
  align-items: center;
  gap: 0.5em;
  fill: var(--cl--2--);
  max-width: max-content;
}
.contact a + a {
  padding-top: 1em;
}
/* End Contact */
I
/* Subscribe */
.subscribe {
  background-image: url(./imgs/dots.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100px;
  justify-content: center;
  padding: 4em 0;
}

form {
  box-shadow: var (-- shadow--);
  padding: 1es 2es;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
form input {
  flex-direction: column;
  gap: 0.5em;
}
label {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
}

input {
  background: transparent;
  border: 1px solid var(--cl--2--);
  outline: 0;
  width: 100%;
  padding: 0.5cm;
}
/* End Subscribe */

/* Footer */
footer {
  background: var(--cl--3--);
  padding: 2em 0;
}

.footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em;
}
.footer-content {
  max-width: 500px;
}
.footer span {
  color: var(--cl--2--);
}
.footer-content p {
  color: var(--cl--1--);
  padding: 1em 0;
}
h4 {
  font-weight: 560;
  font-size: 20px;
  color: var(--cl--2--);
  text-transform: capitalize;
  padding-bottom: 1em;
}

.footer-content ul {
  align-items: center;
  gap: 2em;
}

.footer-content ul a {
  outline: 1px solid var(--cl--2--);
  padding: 0.6em;
}
.footer-content ul img {
  object-fit: cover;
  max-width: 100px;
  height: 100%;
}
.links li + li {
  padding-top: 0.6em;
}

hr {
  border: 0;
  height: 1px;
  background: var(--cl--1--);
  margin: 2em 0;
}
.copy-right {
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
  padding: 0.2em;
}

.copy-right p,
.copy-right a {
  font-size: 10px;
  color: var(--cl--1--);
  text-transform: capitalize;
}
.copy-right ul {
  align-items: center;
  gap: 2em;
}
/* End Footer */

/* Media */
@media screen and (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1000px) {
  .toggleMenu {
    background-image: url(./imgs/open.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    width: 30px;
    height: 30px;
    z-index: 1000;
    transition: background-size 0.3s ease-in-out;
    -webkit-transition: background-size 0.3s ease-in-out;
    -moz-transition: background-size 0.3s ease-in-out;
    -ms-transition: background-size 0.3s ease-in-out;
    -o-transition: background-size 0.3s ease-in-out;
  }
  toggleMenu.active {
    position: fixed;
    right: 5%;
    background-image: url(./imgs/close.svg);
    background-size: 25px;
  }

  .navigation {
    position: absolute;
    inset: 0;
    min-height: 0;
    opacity: 0;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  .navigation.active {
    position: fixed;
    min-height: 100%;
    opacity: 1;
    background: var(--cl--3--);
    z-index: 999;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  nav ul {
    flex-direction: column;
  }
  .about::after {
    height: 25%;
  }
}
