@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* .root {
  width: 100%;
  background: #ffff;
} */

#btn a {
  text-decoration: none;
  color: #ffff;
}
#btn2 a {
  text-decoration: none;
  color: #068afd;
}

.container1 {
  padding-top: 30px;
  width: 100%;
  height: 100dvh;
  background-color: #eaf8fb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left {
  width: 40%;
}
.left h5 {
  font-size: 5em;
  margin-bottom: 30px;
}
span {
  color: #068afd;
}
.left p {
  font-size: 23px;
  margin-bottom: 20px;
}
.right {
  margin-left: 50px;
  padding: 10px;
  width: 40%;
}
.right img {
  width: 80%;
}
.buttons {
  margin-top: 40px;
}
button {
  padding: 15px 50px;
  margin-right: 20px;
  border-radius: 0.5em;
  font-size: 18px;
  font-weight: 400;
}
.btn1 {
  border: none;
  color: #ffff;
  background-color: #068afd;
}
.btn2 {
  border: solid 1px #068afd;
  background-color: #eaf8fb;
  color: #068afd;
}
.about {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 30px 0px;
}
.ab-left {
  display: flex;
  align-items: start;
  flex-direction: column;
  width: 30%;
}
.ab-left h2,
h4 {
  margin-bottom: 20px;
}
.ab-left h4 {
  color: #068afd;
  font-weight: 600;
}
.ab-left h2 {
  font-size: 30px;
}
.ab-left p {
  font-size: 20px;
}
.ab-right {
  width: 40%;
}
.ab-right img {
  width: 100%;
}
.link {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.link a {
  text-decoration: none;
  color: #068afd;
  margin-right: 10px;
}
.link i {
  font-size: 20px;
  color: #068afd;
}
.service {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #d3f5fc;
  padding: 30px 110px;
}

.head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.what h3 {
  color: #068afd;
  margin-bottom: 20px;
}
.serve {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0px;
  gap: 10px;
}
.row-1 {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.card {
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #ffff;
}
.card p {
  font-size: 1em;
  color: #2a2a2a;
  margin-bottom: 20px;
}
.card i {
  font-size: 10em;
  color: #068afd;
  margin-bottom: 20px;
}

.contact-us {
  margin-top: 30px;
  padding: 30px 0px;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 60px;
}
.us {
  width: 65%;
}
.us h1 {
  width: 50%;
  font-size: 3rem;
  margin-bottom: 20px;
}
.us p {
  width: 50%;
  font-size: 1rem;
  margin-bottom: 70px;
}

#cont a {
  color: #ffff;
  text-decoration: none;
}

/* new ways of making buttons */

.btn {
  --color: #068afd;
  --color2: rgb(255, 255, 255);
  padding: 0.8em 1.75em;
  background-color: transparent;
  border-radius: 6px;
  border: 0.3px solid var(--color);
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-weight: 300;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--color);
  margin-right: 20px;
}

.btn::after,
.btn::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  transition: 0.5s ease-out;
  background-color: var(--color);
}

.btn::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.btn:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.btn:hover {
  color: var(--color2);
}

.btn:active {
  filter: brightness(0.7);
  transform: scale(0.98);
}

@media screen and (max-width: 480px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  .container1 {
    margin-top: 50px;
    width: 100%;
    background: #eaf8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 30px;
  }
  .left h5 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
  }
  span {
    color: #068afd;
  }
  .left p {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  .buttons {
    width: 100%;
    display: flex;
    font-size: 18px;
    padding: 0px 0px;
  }
  .right {
    margin-left: 50px;
    padding: 10px 30px;
    width: 100%;
  }
  .right img {
    width: 80%;
  }
  /* wowow have to make count */

  .btn {
    --color: #068afd;
    --color2: rgb(255, 255, 255);
    padding: 0.8em 1.75em;
    background-color: transparent;
    border-radius: 6px;
    border: 0.3px solid var(--color);
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-weight: 300;
    font-size: 17px;
    text-transform: uppercase;
    color: var(--color);
    margin-right: 20px;
  }

  .btn::after,
  .btn::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    transform: skew(90deg) translate(-50%, -50%);
    position: absolute;
    inset: 50%;
    left: 25%;
    z-index: -1;
    transition: 0.5s ease-out;
    background-color: var(--color);
  }

  .btn::before {
    top: -50%;
    left: -25%;
    transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
  }

  .btn:hover::before {
    transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
  }

  .btn:hover::after {
    transform: skew(45deg) translate(-50%, -50%);
  }

  .btn:hover {
    color: var(--color2);
  }

  .btn:active {
    filter: brightness(0.7);
    transform: scale(0.98);
  }
  /* the end of the crazy code  */
  .about {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
  }
  .ab-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }
  .ab-left h4 {
    margin-bottom: 20px;
  }
  .ab-left p {
    font-size: 2em;
  }
  .ab-right {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 10px;
  }
  .ab-right img {
    width: 100%;
  }
  .ab-left p {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .link a {
    margin-right: 10px;
    text-decoration: none;
    color: #068afd;
  }
  .link i {
    color: #068afd;
  }

  .service {
    width: 100%;
    background-color: #c9f5ff;
    padding: 10px 20px;
  }
  .head {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .what {
    margin-bottom: 20px;
  }
  .serve {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  .row-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .row-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .card {
    background-color: #ffff;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .card p {
    margin-top: 30px;
  }
  .card i {
    font-size: 10em;
    margin-top: 30px;
  }

  .contact-us {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
  }
  .us h1 {
    text-align: center;
    font-size: 2em;
    width: 100%;
    margin-bottom: 20px;
  }
  .us p {
    text-align: center;
    width: 100%;
    font-size: 1em;
    margin-bottom: 30px;
  }
  .cont-btn {
    margin-bottom: 100px;
  }
  #cont a {
    color: #ffff;
  }
}
