@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
::-webkit-scrollbar {
  background-color: var(--Background);
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--green), var(--orange));
  border-radius: 10px;
}

@keyframes left {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.FromLeft {
  animation: left linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes bottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.FromBottom {
  animation: bottom linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}

@keyframes Top {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.FromTop {
  animation: Top linear;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}

@keyframes right {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.FromRight {
  animation: right linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--black);
  font-family: "Rubik", serif;
  letter-spacing: 0.5px;
}

:root {
  --Background: #F9F9F9;
  --black: #191949;
  --orange: #FE6062;
  --grey: #707070;
  --green: #6CA891;
  --lightGrey: #c2b6b6;
}

body {
  background: var(--Background);
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
  background: var(--green);
}

.progress-bar {
  background: var(--orange);
  height: 5px;
  width: 0%;
}

.smallMenu {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  display: none;
  opacity: 0.9;
}
.smallMenu i {
  font-size: 40px;
  color: var(--orange);
  padding: 10px;
  margin-left: calc(100% - 55px);
  cursor: pointer;
  transition: 0.4s;
}
.smallMenu i:hover {
  color: var(--Background);
}
.smallMenu ul {
  border-top: 1px solid var(--orange);
}
.smallMenu ul li {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--orange);
  cursor: pointer;
  transition: 0.4s;
}
.smallMenu ul li:hover {
  background: var(--orange);
}
.smallMenu ul li a {
  text-decoration: none;
  color: var(--Background);
  font-size: 20px;
  font-weight: 900;
  transition: 0.4s;
}
.smallMenu ul li a:hover {
  color: var(--Background);
}
.smallMenu button {
  margin-block: 20px;
  margin-inline: auto;
  display: block;
  background: var(--orange);
  border: none;
  padding-block: 13px;
  padding-inline: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.4s;
  font-size: 20px;
}
.smallMenu button:hover {
  color: var(--orange);
  background: var(--Background);
}

.active {
  display: block;
}

header {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 40px;
  padding-block: 10px;
  height: 100px;
  z-index: 2;
  background: rgba(255, 242, 242, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header .left img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  header .left img {
    width: 200px;
  }
}
@media screen and (max-width: 480px) {
  header .left img {
    width: 150px;
  }
}
header .right {
  display: flex;
  align-items: center;
}
header .right ul li {
  display: inline-block;
  padding: 0 10px;
  margin: 0 10px;
  list-style: none;
}
header .right ul li a {
  text-decoration: none;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  transition: 0.4s;
}
header .right ul li a:hover {
  color: var(--orange);
}
header .right ul li .active {
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  header .right ul {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header .right ul {
    display: none;
  }
}
header .right button {
  background: transparent;
  border: 2px solid var(--black);
  padding-block: 13px;
  padding-inline: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.4s;
  font-size: 20px;
}
header .right button:hover {
  color: var(--orange);
  border: 2px solid var(--orange);
}
@media screen and (max-width: 768px) {
  header .right button {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header .right button {
    display: none;
  }
}
header .right i {
  display: none;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  header .right i {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  header .right i {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding-inline: 10px;
    padding-block: 5px;
  }
}
@media screen and (max-width: 480px) {
  header {
    padding-inline: 10px;
    padding-block: 5px;
  }
}

.main {
  margin-top: 100px;
  position: relative;
  height: 100vh;
  padding-inline: 40px;
  background-color: var(--Background);
  color: #6ca891;
  display: flex;
}
.main .social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-inline: 20px;
}
.main .social i {
  font-size: 40px;
  color: var(--green);
  cursor: pointer;
  transition: 0.4s;
}
.main .social i:hover {
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .main .social {
    padding-inline: 5px;
  }
}
@media screen and (max-width: 480px) {
  .main .social {
    display: none;
  }
}
.main img {
  position: absolute;
  right: 0;
  width: 70%;
  height: 80%;
  top: 60%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .main img {
    right: 0%;
  }
}
@media screen and (max-width: 480px) {
  .main img {
    right: 0;
    width: 100%;
  }
}
.main .bol {
  position: absolute;
  top: 7%;
  right: 16%;
  width: 520px;
  height: 520px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: inset 0 7px 30px #fff;
}
@media screen and (max-width: 768px) {
  .main .bol {
    top: 7%;
    right: 10%;
    width: 520px;
    height: 520px;
  }
}
@media screen and (max-width: 480px) {
  .main .bol {
    top: 7%;
    right: 10%;
    width: 320px;
    height: 320px;
  }
}
.main .content {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(244, 242, 242, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding-left: 20px;
}
.main .content .left {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: left;
  gap: 20px;
  width: 50%;
}
.main .content .left .heading {
  display: flex;
  align-items: center;
  gap: 15px;
}
.main .content .left .heading .line {
  width: 60px;
  height: 4px;
  background: var(--grey);
}
@media screen and (max-width: 480px) {
  .main .content .left .heading .line {
    width: 50px;
  }
}
.main .content .left .heading .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  animation: scale 2s infinite ease-in-out;
}
@media screen and (max-width: 480px) {
  .main .content .left .heading .dot {
    width: 15px;
    height: 15px;
  }
}
.main .content .left .heading h3 {
  color: var(--grey);
  font-size: 25px;
}
@media screen and (max-width: 480px) {
  .main .content .left .heading h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .main .content .left .heading {
    gap: 4px;
  }
}
.main .content .left h1 {
  color: var(--black);
  font-size: 25px;
}
@media screen and (max-width: 480px) {
  .main .content .left h1 {
    font-size: 20px;
  }
}
.main .content .left h2 {
  color: var(--orange);
  font-size: 50px;
  font-weight: 900;
}
@media screen and (max-width: 480px) {
  .main .content .left h2 {
    font-size: 35px;
  }
}
.main .content .left .getstart {
  width: 250px;
  position: relative;
  display: flex;
  align-items: center;
}
.main .content .left .getstart .g {
  width: 100%;
  height: 3px;
  background: var(--grey);
}
@media screen and (max-width: 768px) {
  .main .content .left .getstart .g {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .main .content .left .getstart .g {
    display: none;
  }
}
.main .content .left .getstart button {
  position: absolute;
  display: flex;
  width: 170px;
  gap: 4px;
  right: 0;
  align-items: center;
  font-size: 20px;
  background: var(--Background);
  padding: 10px;
  border: none;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .main .content .left .getstart button {
    background: transparent;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  .main .content .left .getstart button {
    background: transparent;
    left: 0;
  }
}
.main .content .left .getstart .dott {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.main .content .left .getstart:hover > button {
  right: calc(100% - 170px);
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .main .content .left {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .main .content .left {
    width: 100%;
  }
}
.main .content p {
  width: 50%;
  color: var(--grey);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .main .content p {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .main .content p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main .content {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .main .content {
    flex-direction: column;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .main {
    padding-inline: 0px;
  }
}

@keyframes scale {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
.speciality {
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.speciality .box {
  width: calc(50% - 20px);
  display: flex;
  border: 1px solid var(--green);
  border-radius: 5px;
  align-items: center;
}
.speciality .box img {
  width: 190px;
}
@media screen and (max-width: 768px) {
  .speciality .box img {
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .speciality .box img {
    width: 100px;
  }
}
.speciality .box .text h4 {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .speciality .box .text h4 {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  .speciality .box .text h4 {
    font-size: 23px;
  }
}
.speciality .box .text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--grey);
}
@media screen and (max-width: 768px) {
  .speciality .box .text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .speciality .box .text p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .speciality .box {
    width: 100%;
    padding-block: 15px;
  }
}
@media screen and (max-width: 480px) {
  .speciality .box {
    width: 100%;
    padding-block: 15px;
  }
}
@media screen and (max-width: 768px) {
  .speciality {
    flex-direction: column;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .speciality {
    flex-direction: column;
    padding-inline: 10px;
  }
}

.about {
  padding-inline: 40px;
  display: flex;
  padding-top: 90px;
  padding-bottom: 30px;
}
.about .left {
  width: 50%;
}
.about .left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .about .left img {
    height: 100%;
  }
}
@media screen and (max-width: 480px) {
  .about .left {
    width: 100%;
  }
}
.about .right {
  width: 50%;
  padding-left: 30px;
}
.about .right .heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about .right .heading .line {
  width: 60px;
  height: 3.6px;
  background: var(--grey);
}
.about .right .heading .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}
.about .right .heading h3 {
  color: var(--grey);
  font-size: 25px;
}
.about .right h1 {
  font-size: 30px;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  .about .right h1 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 480px) {
  .about .right h1 {
    font-size: 20px;
    line-height: 30px;
  }
}
.about .right p {
  font-size: 14px;
  color: var(--grey);
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .about .right p {
    font-size: 12px;
    line-height: 17px;
  }
}
@media screen and (max-width: 480px) {
  .about .right p {
    font-size: 11px;
    line-height: 15px;
  }
}
.about .right button {
  position: relative;
  height: 45px;
  padding-inline: 20px;
  margin-block: 40px;
  background: var(--orange);
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 20px;
  transition: 0.4s;
  color: var(--Background);
  overflow: hidden;
  cursor: pointer;
}
.about .right button::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 100%;
  background: var(--green);
  transform: skewX(30deg);
  left: -30px;
  top: 0;
  transition: 0.25s;
}
.about .right button:hover::before {
  left: calc(100% + 20px);
}
.about .right button:hover {
  background: var(--green);
}
@media screen and (max-width: 768px) {
  .about .right button {
    margin-block: 20px;
  }
}
@media screen and (max-width: 480px) {
  .about .right button {
    margin-block: 15px;
  }
}
@media screen and (max-width: 768px) {
  .about .right {
    padding-left: 5px;
  }
}
@media screen and (max-width: 480px) {
  .about .right {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .about {
    padding-inline: 10px;
    flex-direction: column;
  }
}

.knowus {
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.knowus .heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.knowus .heading .line {
  width: 400px;
  height: 3.6px;
  background: var(--grey);
}
@media screen and (max-width: 480px) {
  .knowus .heading .line {
    width: 300px;
  }
}
.knowus .heading .text {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--Background);
  gap: 10px;
  padding-inline: 10px;
}
.knowus .heading .text .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}
.knowus .heading .text h3 {
  color: var(--grey);
  font-size: 45px;
}
@media screen and (max-width: 480px) {
  .knowus .heading .text h3 {
    font-size: 30px;
  }
}
.knowus h1 {
  font-size: 50px;
}
.knowus .kbody {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  height: 100vh;
}
.knowus .kbody .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--orange);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 20px;
}
.knowus .kbody .line .dot {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  justify-content: center;
}
.knowus .kbody .line .dot::before {
  content: "";
  width: 2px;
  height: 80px;
  background: var(--orange);
  border-radius: 20px;
}
.knowus .kbody .line .dot::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: var(--Background);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .knowus .kbody .line .dot:last-child {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .knowus .kbody .line .dot:last-child {
    display: block;
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .knowus .kbody .line {
    display: none;
  }
}
.knowus .kbody .kbox {
  width: calc(33.3333333333% - 20px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px;
}
.knowus .kbody .kbox img {
  width: 100%;
  height: calc(50% - 20px);
  transition: 0.4s;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  filter: grayscale(100%);
}
.knowus .kbody .kbox .text {
  height: calc(50% - 20px);
}
.knowus .kbody .kbox .text h1 {
  font-size: 70px;
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  transition: 0.4s;
}
.knowus .kbody .kbox .text p {
  font-size: 16px;
  color: var(--grey);
}
.knowus .kbody .kbox .text h2 {
  font-size: 30px;
  transition: 0.4s;
}
.knowus .kbody .kbox:hover h1, .knowus .kbody .kbox:hover h2 {
  color: var(--orange);
}
.knowus .kbody .kbox:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}
@media screen and (max-width: 768px) {
  .knowus .kbody .kbox {
    width: calc(50% - 20px);
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .knowus .kbody .kbox {
    width: 100%;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 768px) {
  .knowus .kbody .kbox:last-child {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .knowus .kbody .kbox:last-child {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .knowus {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .knowus {
    padding-inline: 10px;
    height: 330vh;
  }
}

.service {
  position: relative;
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service .heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.service .heading .line {
  width: 400px;
  height: 3.6px;
  background: var(--grey);
}
@media screen and (max-width: 480px) {
  .service .heading .line {
    width: 300px;
  }
}
.service .heading .text {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--Background);
  gap: 10px;
  padding-inline: 10px;
}
.service .heading .text .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}
.service .heading .text h3 {
  color: var(--grey);
  font-size: 45px;
}
@media screen and (max-width: 480px) {
  .service .heading .text h3 {
    font-size: 30px;
  }
}
.service h1 {
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .service h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .service h1 {
    font-size: 25px;
  }
}
.service .sbody {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}
.service .sbody .line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--orange);
}
@media screen and (max-width: 768px) {
  .service .sbody .line {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .service .sbody .line {
    display: none;
  }
}
.service .sbody .sbox {
  width: calc(50% - 20px);
  height: 100vh;
  margin-bottom: 30px;
}
.service .sbody .sbox .text {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 480px) {
  .service .sbody .sbox .text {
    height: 150px;
  }
}
.service .sbody .sbox .text h1 {
  font-size: 40px;
  color: var(--orange);
}
@media screen and (max-width: 480px) {
  .service .sbody .sbox .text h1 {
    font-size: 25px;
  }
}
.service .sbody .sbox .text p {
  font-size: 20px;
  color: var(--grey);
}
@media screen and (max-width: 480px) {
  .service .sbody .sbox .text p {
    font-size: 15px;
  }
}
.service .sbody .sbox .imgback {
  width: 100%;
  height: calc(100% - 200px);
  background: var(--black);
  border-radius: 10px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.service .sbody .sbox .imgback img {
  height: 100%;
  width: 100%;
  transition: 0.4s;
  cursor: pointer;
  filter: grayscale(100%);
}
.service .sbody .sbox .imgback img:hover {
  filter: grayscale(0%);
}
@media screen and (max-width: 768px) {
  .service .sbody .sbox {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .service .sbody .sbox {
    width: 100%;
    height: 80vh;
  }
}
@media screen and (max-width: 768px) {
  .service {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .service {
    padding-inline: 10px;
  }
}

.pricing {
  position: relative;
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing .heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.pricing .heading .line {
  width: 400px;
  height: 3.6px;
  background: var(--grey);
}
@media screen and (max-width: 480px) {
  .pricing .heading .line {
    width: 300px;
  }
}
.pricing .heading .text {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--Background);
  gap: 10px;
  padding-inline: 10px;
}
.pricing .heading .text .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}
.pricing .heading .text h3 {
  color: var(--grey);
  font-size: 45px;
}
@media screen and (max-width: 480px) {
  .pricing .heading .text h3 {
    font-size: 30px;
  }
}
.pricing h1 {
  font-size: 50px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .pricing h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .pricing h1 {
    font-size: 25px;
  }
}
.pricing .pbody {
  width: 100%;
  height: 100vh;
  padding-block: 40px;
  position: relative;
  overflow: hidden;
}
.pricing .pbody .swiper {
  width: 100%;
  height: 100%;
}
.pricing .pbody .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  border: 2px solid var(--orange);
  border-radius: 10px;
}
.pricing .pbody .swiper-slide .label {
  position: absolute;
  background: var(--orange);
  left: 20px;
  height: 150px;
}
.pricing .pbody .swiper-slide .label h1 {
  color: var(--Background);
  font-size: 20px;
  padding: 5px 5px;
  border-radius: 5px;
  writing-mode: vertical-lr;
}
.pricing .pbody .swiper-slide .label .cone {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  background: var(--Background);
  height: 35px;
  transform: rotateZ(45deg);
}
.pricing .pbody .swiper-slide img {
  width: 100px;
  margin-top: 10px;
}
.pricing .pbody .swiper-slide h6 {
  color: var(--orange);
  font-size: 30px;
  margin-block: 10px;
}
.pricing .pbody .swiper-slide h4 {
  color: var(--green);
  font-size: 20px;
  margin-block: 10px;
}
.pricing .pbody .swiper-slide p {
  color: var(--lightGrey);
  font-size: 18px;
  margin-block: 3px;
}
.pricing .pbody .swiper-slide p del {
  color: var(--lightGrey);
}
.pricing .pbody .swiper-slide p i {
  color: var(--orange);
}
.pricing .pbody .swiper-slide span {
  margin-block: 10px;
  color: var(--orange);
  font-weight: 700;
}
.pricing .pbody .swiper-slide .btnsc {
  padding: 10px;
}
.pricing .pbody .swiper-slide .btnsc button {
  width: calc(100% - 40px);
  height: 50px;
  background: var(--orange);
  border: none;
  outline: none;
  font-size: 25px;
  color: var(--Background);
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.4s;
}
.pricing .pbody .swiper-slide .btnsc button:hover {
  background: var(--green);
  box-shadow: 5px 5px 0px var(--black);
}
@media screen and (max-width: 768px) {
  .pricing {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .pricing {
    padding-inline: 10px;
  }
}

.gallery {
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery .heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.gallery .heading .line {
  width: 400px;
  height: 3.6px;
  background: var(--grey);
}
@media screen and (max-width: 480px) {
  .gallery .heading .line {
    width: 300px;
  }
}
.gallery .heading .text {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--Background);
  gap: 10px;
  padding-inline: 10px;
}
.gallery .heading .text .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}
.gallery .heading .text h3 {
  color: var(--grey);
  font-size: 45px;
}
@media screen and (max-width: 480px) {
  .gallery .heading .text h3 {
    font-size: 30px;
  }
}
.gallery h1 {
  font-size: 50px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .gallery h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .gallery h1 {
    font-size: 25px;
  }
}
.gallery .imgs {
  width: 100%;
  display: flex;
}
.gallery .imgs .small {
  width: 300px;
  height: 35vh;
  background: var(--black);
}
@media screen and (max-width: 480px) {
  .gallery .imgs .small {
    width: 100%;
  }
}
.gallery .imgs .small img {
  width: 100%;
  height: 100%;
}
.gallery .imgs .big {
  width: calc(100% - 600px);
  background: var(--orange);
  height: 35vh;
}
@media screen and (max-width: 480px) {
  .gallery .imgs .big {
    width: 100%;
  }
}
.gallery .imgs .big img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .gallery .imgs {
    flex-direction: column;
  }
}
.gallery .bottom {
  width: 100%;
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery .bottom .bool {
  display: flex;
  align-items: center;
  position: relative;
}
.gallery .bottom .bool .bol {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--orange);
}
@media screen and (max-width: 480px) {
  .gallery .bottom .bool .bol {
    width: 60px;
    height: 60px;
  }
}
.gallery .bottom .bool h1 {
  position: absolute;
  left: 30px;
  top: 25px;
}
@media screen and (max-width: 480px) {
  .gallery .bottom .bool h1 {
    left: 23px;
    top: 20px;
  }
}
.gallery .bottom .bool h1 span {
  color: var(--Background);
}
.gallery .bottom p {
  width: 50%;
  color: var(--grey);
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  .gallery .bottom p {
    width: 100%;
  }
}
.gallery .bottom .btn {
  width: 250px;
  position: relative;
  display: flex;
  align-items: center;
}
.gallery .bottom .btn .line {
  width: 100%;
  height: 3px;
  background: var(--grey);
}
@media screen and (max-width: 768px) {
  .gallery .bottom .btn .line {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .gallery .bottom .btn .line {
    display: none;
  }
}
.gallery .bottom .btn button {
  position: absolute;
  display: flex;
  width: 170px;
  gap: 4px;
  right: 0;
  align-items: center;
  font-size: 20px;
  background: var(--Background);
  padding: 10px;
  border: none;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .gallery .bottom .btn button {
    background: transparent;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  .gallery .bottom .btn button {
    background: transparent;
    left: 0;
  }
}
.gallery .bottom .btn .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.gallery .bottom .btn:hover > button {
  right: calc(100% - 170px);
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .gallery {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .gallery {
    padding-inline: 10px;
  }
}

.team {
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.team .heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.team .heading .line {
  width: 400px;
  height: 3.6px;
  background: var(--grey);
}
@media screen and (max-width: 480px) {
  .team .heading .line {
    width: 300px;
  }
}
.team .heading .text {
  position: absolute;
  display: flex;
  align-items: center;
  background: var(--Background);
  gap: 10px;
  padding-inline: 10px;
}
.team .heading .text .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}
.team .heading .text h3 {
  color: var(--grey);
  font-size: 45px;
}
@media screen and (max-width: 480px) {
  .team .heading .text h3 {
    font-size: 30px;
  }
}
.team h1 {
  font-size: 50px;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .team h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .team h1 {
    font-size: 25px;
  }
}
.team .teamBody .swiper {
  width: 100%;
  cursor: grab;
}
.team .teamBody .swiper-wrapper {
  display: flex;
}
.team .teamBody .swiper-slide {
  background: #e1d9d9;
  text-align: center;
}
.team .teamBody .swiper-slide .teamBox {
  background: var(--lightGrey);
  height: 65vh;
  filter: grayscale(100%);
  transition: 0.4s;
}
.team .teamBody .swiper-slide .teamBox img {
  width: 100%;
  height: 100%;
}
.team .teamBody .swiper-slide .teamBox:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .team .teamBody .swiper-slide .teamBox {
    height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  .team {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 480px) {
  .team {
    padding-inline: 10px;
  }
}

.contact {
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .heading {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact .heading .line {
  width: 60px;
  height: 4px;
  background: var(--grey);
}
@media screen and (max-width: 480px) {
  .contact .heading .line {
    width: 50px;
  }
}
.contact .heading .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  animation: scale 2s infinite ease-in-out;
}
@media screen and (max-width: 480px) {
  .contact .heading .dot {
    width: 15px;
    height: 15px;
  }
}
.contact .heading h3 {
  color: var(--grey);
  font-size: 25px;
}
@media screen and (max-width: 480px) {
  .contact .heading h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .contact .heading {
    gap: 4px;
  }
}
.contact .container {
  width: 100%;
  padding-top: 40px;
}
.contact .container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact .container form .row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline: 40px;
}
.contact .container form .row select {
  width: calc(50% - 20px);
  height: 50px;
  background: none;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .contact .container form .row select {
    width: 100%;
  }
}
.contact .container form .row input {
  width: calc(50% - 20px);
  height: 50px;
  background: none;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
}
.contact .container form .row input::-moz-placeholder {
  color: var(--orange);
  font-size: 20px;
}
.contact .container form .row input::placeholder {
  color: var(--orange);
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .contact .container form .row input {
    width: 100%;
  }
}
.contact .container form .row textarea {
  width: calc(100% - 20px);
  height: 20vh;
  background: none;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
  resize: none;
}
.contact .container form .row textarea::-moz-placeholder {
  color: var(--orange);
  font-size: 20px;
}
.contact .container form .row textarea::placeholder {
  color: var(--orange);
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .contact .container form .row textarea {
    height: 15vh;
  }
}
.contact .container form .row button {
  background: transparent;
  border: 2px solid var(--orange);
  padding-block: 13px;
  padding-inline: 20px;
  border-radius: 4px;
  width: 150px;
  color: var(--orange);
  cursor: pointer;
  transition: 0.4s;
  font-size: 20px;
}
.contact .container form .row button:hover {
  color: var(--orange);
  border: 2px solid var(--black);
  background: var(--black);
}
@media screen and (max-width: 480px) {
  .contact .container form .row {
    padding-inline: 0;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .contact .container form .row {
    padding-inline: 0;
  }
}
@media screen and (max-width: 480px) {
  .contact {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding-inline: 10px;
  }
}

.footer {
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  gap: 10px;
  background: var(--black);
}
.footer .note {
  width: 50%;
  height: 100%;
}
.footer .note img {
  width: 300px;
}
@media screen and (max-width: 480px) {
  .footer .note img {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .footer .note img {
    width: 200px;
  }
}
.footer .note p {
  color: var(--Background);
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .footer .note p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .footer .note p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .footer .note {
    width: 100%;
    padding-left: 0;
  }
}
.footer .contactf {
  width: 33.3333333333%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 10px;
}
.footer .contactf h1 {
  font-size: 40px;
  color: var(--lightGrey);
}
.footer .contactf p {
  color: var(--Background);
  cursor: pointer;
  transition: 0.4s;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .footer .contactf p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .footer .contactf p {
    font-size: 16px;
  }
}
.footer .contactf p:hover {
  color: var(--orange);
}
@media screen and (max-width: 480px) {
  .footer .contactf {
    width: 100%;
    padding-left: 0;
  }
}
.footer .linkf {
  width: 33.3333333333%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 10px;
}
.footer .linkf h1 {
  font-size: 40px;
  color: var(--lightGrey);
}
.footer .linkf p {
  color: var(--grey);
  cursor: pointer;
  transition: 0.4s;
  font-size: 20px;
  color: var(--Background);
}
@media screen and (max-width: 480px) {
  .footer .linkf p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .footer .linkf p {
    font-size: 16px;
  }
}
.footer .linkf p:hover {
  color: var(--orange);
}
@media screen and (max-width: 480px) {
  .footer .linkf {
    width: 100%;
    padding-left: 0;
  }
}
.footer .follow {
  width: 33.3333333333%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 10px;
}
.footer .follow h1 {
  font-size: 40px;
  color: var(--lightGrey);
}
.footer .follow .icon {
  display: flex;
  gap: 20px;
}
.footer .follow .icon i {
  color: var(--grey);
  cursor: pointer;
  transition: 0.4s;
  font-size: 25px;
  color: var(--Background);
}
@media screen and (max-width: 480px) {
  .footer .follow .icon i {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .footer .follow .icon i {
    font-size: 16px;
  }
}
.footer .follow .icon i:hover {
  color: var(--orange);
}
@media screen and (max-width: 480px) {
  .footer .follow {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding-inline: 10px;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-inline: 10px;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 40px;
  padding-block: 20px;
  background: var(--black);
  border-top: 1px solid var(--orange);
}
footer .copy {
  display: flex;
  gap: 20px;
  font-size: 17px;
}
footer .copy p {
  color: var(--Background);
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  footer .copy p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  footer .copy p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  footer .copy {
    width: 100%;
  }
}
footer .copy a {
  text-decoration: none;
  color: var(--Background);
}
@media screen and (max-width: 480px) {
  footer {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding-inline: 10px;
  }
}

.amain {
  margin-top: 120px;
}
.amain .title {
  padding-inline: 40px;
  height: 150px;
  background: var(--green);
}
.amain .title h1 {
  text-align: left;
  font-size: 60px;
}
.amain .title p {
  font-size: 30px;
  cursor: pointer;
  color: var(--Background);
}
.amain .title p a {
  text-decoration: none;
}

.portfolio {
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
}
.portfolio .imgs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.portfolio .imgs .img {
  width: calc(25% - 20px);
  height: 300px;
  border-radius: 10px;
}
.portfolio .imgs .img img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

.contactp {
  padding-inline: 40px;
  padding-top: 50px;
  padding-bottom: 20px;
}
.contactp .chead {
  display: flex;
}
.contactp .chead .left {
  width: 50%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.contactp .chead .left img {
  width: 150px;
}
.contactp .chead .left h1 {
  font-size: 40px;
  color: var(--orange);
}
.contactp .chead .right {
  width: 50%;
}
.contactp .chead .right p {
  font-size: 20px;
}

.termtext {
  padding-inline: 40px;
  padding-block: 40px;
}
.termtext h1 {
  font-size: 35px;
  line-height: 50px;
}
.termtext p {
  line-height: 30px;
}

.faq {
  margin: 0 auto;
  padding: 4rem;
  width: 48rem;
}
@media screen and (max-width: 480px) {
  .faq {
    width: 100%;
    padding: 0.5rem;
  }
}
.faq h1 {
  text-align: center;
  color: var(--primery);
  font-size: 40px;
}
@media screen and (max-width: 480px) {
  .faq h1 {
    font-size: 20px;
  }
}

.accordion .accordion-item {
  border-bottom: 1px solid var(--grey);
}

.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid var(--primery);
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--grey);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
@media screen and (max-width: 480px) {
  .accordion button {
    font-size: 1rem;
    padding: 0.5em 0;
  }
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: var(--primery);
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: var(--primery);
  border: 1px solid var(--primery);
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded=true] {
  color: var(--primery);
}

.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
@media screen and (max-width: 480px) {
  .accordion .accordion-content {
    max-height: 0;
  }
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
@media screen and (max-width: 480px) {
  .accordion .accordion-content p {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */