*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-collapse: separate;
}

html {
  font-family: "Titillium Web", sans-serif;
  scroll-behavior: smooth;
}
img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
}

a {
  display: block;
  text-decoration: none;
}

:root {
  --first: #359947;
  /* --second: rgb(255, 0, 0); */
  --second: #000;
  --third: #359947;
  --fourth: #e14d2a;
  --fifth: #5c86b6;

  /* @link https://utopia.fyi/type/calculator?c=320,14.25,1.067,1240,20.75,1.067,10,6,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */

  --step--6: clamp(0.6rem, calc(0.51rem + 0.48vw), 0.88rem);
  --step--5: clamp(0.64rem, calc(0.54rem + 0.51vw), 0.94rem);
  --step--4: clamp(0.69rem, calc(0.58rem + 0.55vw), 1rem);
  --step--3: clamp(0.73rem, calc(0.62rem + 0.58vw), 1.07rem);
  --step--2: clamp(0.78rem, calc(0.66rem + 0.62vw), 1.14rem);
  --step--1: clamp(0.84rem, calc(0.7rem + 0.66vw), 1.22rem);
  --step-0: clamp(0.89rem, calc(0.75rem + 0.71vw), 1.3rem);
  --step-1: clamp(0.95rem, calc(0.8rem + 0.75vw), 1.38rem);
  --step-2: clamp(1.01rem, calc(0.85rem + 0.8vw), 1.48rem);
  --step-3: clamp(1.08rem, calc(0.91rem + 0.86vw), 1.58rem);
  --step-4: clamp(1.15rem, calc(0.97rem + 0.92vw), 1.68rem);
  --step-5: clamp(1.23rem, calc(1.04rem + 0.98vw), 1.79rem);
  --step-6: clamp(1.31rem, calc(1.11rem + 1.04vw), 1.91rem);
  --step-7: clamp(1.4rem, calc(1.18rem + 1.11vw), 2.04rem);
  --step-8: clamp(1.5rem, calc(1.26rem + 1.19vw), 2.18rem);
  --step-9: clamp(1.6rem, calc(1.34rem + 1.27vw), 2.33rem);
  --step-10: clamp(1.7rem, calc(1.43rem + 1.35vw), 2.48rem);

  /* //color  */

  /* //white  */
  --white: #fff;

  /* -black  */
  --black: #000;

  /* paragraph  */
  --ptag: rgb(82, 82, 82);
}

/* // header  */

.header_container {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: sticky;
  top: 0;
  z-index: 99999;
}

.header_width {
  width: 80%;
  margin: 0 auto;
  padding: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_width > div {
  width: 40%;
}
.header_link {
  width: fit-content !important;
}
.header_link a {
  background-color: var(--first);
  color: var(--white);
  font-size: var(--step-0);
  padding: 8px 30px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  background: linear-gradient(-60deg, var(--second) 23%, var(--first) 0%);
  font-weight: 500;
}

.header_link a i {
  margin-right: 10px;
}

.banner_container {
  /* The image used */
  background-image: linear-gradient(
      90deg,
      rgba(53, 153, 71, 0.475) 0%,
      rgba(53, 153, 71, 0.37) 35%
    ),
    url("./assets/arpitha-banner.jpg");

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
}

.banner_width {
  width: 90%;
  margin: 0 auto;
  position: relative;
  color: var(--white);

  display: grid;
  grid-template-columns: 56% 40%;
  justify-content: space-between;
  gap: 2%;
}
.banner_width > div {
}
.banner_content h1 {
  font-size: calc(var(--step-10) + 5px);
}

.banner_content > p {
  font-size: var(--step-0);
  margin: 15px 0px 25px;
}
.banner_btns {
  display: flex;
  gap: 20px;
}
.banner_btns > div {
  cursor: pointer;
}
.banner_btn {
  border: 2px solid var(--white);

  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  color: var(--white);
  font-size: var(--step-0);
  padding-left: 15px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.banner_btn p {
  padding-right: 20px;
  border-radius: initial;
  transition: 0.5s;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--white);
}
.banner_btn a {
  padding-right: 20px;
  border-radius: initial;
  transition: 0.5s;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--white);
}
.banner_btn span {
  display: block;
  background-color: var(--white);
  padding: 10px 10px;
}

.banner_btn::after {
  position: absolute;
  content: " ";
  right: 0;
  bottom: 0;
  width: 0%;
  background-color: var(--white);
  height: 100%;
  z-index: -1;
  transition: 0.5s;
}

.banner_btn i {
  color: var(--black);
  transition: 0.5s;
  font-size: var(--step-0);
}

.banner_btn:hover::after {
  width: 100%;
}

.banner_btn:hover p {
  color: var(--first);
}
.banner_btn:hover a {
  color: var(--first);
}
.banner_btn:hover i {
  color: var(--first);
}

.banner_form form {
  width: 70%;
  margin: 0 auto;
  background-color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
}
.banner_form form > div {
  margin-top: 15px;
}
.banner_form input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: 2px solid var(--first);
  font-size: 16px;
}
.banner_form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: 2px solid var(--first);
  font-size: 16px;
}
.banner_form input[type="submit"] {
  background-color: var(--first);
  color: var(--white);
  font-weight: bold;
  cursor: pointer;
}
/* ///about  */

.about_container {
  margin: 70px 0px;
}

.about_width {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
}

.about_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_img img {
  width: 50%;
  height: 60%;
  border: 5px solid var(--white);
}
.about_img_background {
  width: 40%;
  position: absolute;
  height: 100%;
  background-color: var(--first);
  z-index: -1;
  left: 0;
}
.about_experience {
  position: absolute;
  background-color: var(--white);
  right: 10%;
  height: 20%;
  bottom: 10%;
  padding: 20px;
  border-bottom: 5px solid var(--second);
}
.about_experience p {
  color: var(--first);
  text-align: center;
  font-size: var(--step--1);
  font-weight: 600;
}
.about_experience p strong {
  display: block;
  /* font-size: var(--step-1); */
}

/* ///what we offer  */
.offer_container {
  margin: 60px 0px 50px;
}
.offer_width {
  width: 75%;
  margin: 0 auto;
}

.offer_width > p {
  font-size: var(--step--1);
  text-align: center;
}

.offer_width > h3 {
  font-size: var(--step-4);
  text-align: center;
  color: var(--first);
}
.offer_items {
  display: flex;
  gap: 3%;
  flex-wrap: wrap;
  justify-content: center;
}
.offer_items > section {
  width: 45%;
  margin-top: 30px;
  /* */
}
.offer_item {
  display: flex;
  flex-direction: column;
  padding: 2%;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
.offer_hover_img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  transition: 0.5s;
}
.offer_item:hover .offer_hover_img {
  left: -0%;
}
.offer_item img {
  width: 100%;
  height: 100%;
  /* border: 2px solid green; */
}

.offer_item h3 {
  margin: 8px 0px 5px;
  font-size: var(--step-2);
  transition: inherit;
}
.offer_item p {
  font-size: var(--step--2);
  color: var(--ptag);
  width: 90%;
  transition: inherit;
  display: none;
  /* overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; */
}
.offer_item a {
  margin: 10px 0px;
  color: var(--first);
  font-weight: bold;
  font-size: var(--step--1);
  transition: inherit;
}
.offer_item a i {
  font-size: var(--step--6) !important;
  margin-left: 5px;
}
/* .offer_item:hover {
  background-color: var(--first);
  transform: scale(1.05);
}
.offer_item:hover h3,
.offer_item:hover p,
.offer_item:hover a {
  color: var(--white) !important;
} */

/* //projects content  */
.projects_container {
  margin-bottom: 40px;
}
.projects_slider_container {
  margin: 30px 0px;
}
.project_slider_item {
  background-color: red;
}
.project_slider_item img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.project_content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.project_content h3 {
  font-size: var(--step-3);
  color: var(--first);
}
.project_content p {
  font-size: var(--step--1);
  line-height: calc(var(--step-0) + 10px);
  color: var(--ptag);
}
.project_swiper_arrows {
  display: flex;
  justify-content: space-between;
}

/* //aobout content  */

.about_content {
  padding: 50px 10px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about_content:hover {
  flex-direction: column;
}

.about_content h3 {
  font-size: var(--step-6);
  color: var(--first);
}

.about_content > p {
  font-size: var(--step--1);
  line-height: calc(var(--step-0) + 10px);
  color: var(--ptag);
}
.about_content a{ 
	color: #fff;
}

.dual_button_icon {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5%;
  background: linear-gradient(-60deg, var(--first) 23%, var(--second) 0%);
  width: 30%;
  padding: 10px 0px;
  color: var(--white);
  border-radius: 5px;
  border: none;
  outline: none;
}

.dual_button_icon p {
  font-size: var(--step--5);
  font-weight: 600;
}

/* offer */
.offer_container h2 {
  text-transform: uppercase;
  text-align: center;
  padding: 1%;
  font-size: var(--step-6);
  color: var(--first);
}
.offer_main {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.offer_section {
  width: 30%;
  margin: 1%;
  padding: 2% 4%;
  box-shadow: rgba(0, 0, 0, 0.35) 10px 10px 10px;
  cursor: pointer;
}
.offer_section img {
  padding: 2%;
}
.offer_section h3 {
  padding: 2% 0%;
  font-size: var(--step-3);
  color: var(--first);
}
.offer_section p {
  font-size: var(--step--1);
  line-height: calc(var(--step-0) + 10px);
  color: var(--ptag);
}
.offer_main > div:hover {
  background-color: var(--fifth);
}
.offer_section:hover * {
  color: var(--white);
}

/* counters */

.counters_container {
  background-color: var(--first);
  padding: 10px 0px;
}
.counters_section {
  width: 80%;
  margin: 0 auto;
}
.counters_section > h3 {
  text-transform: uppercase;
  color: var(--white);
  font-size: var(--step-10);
  text-align: center;
}
.counters_cards {
  display: flex;
  gap: 3.3333%;
  color: var(--white);
}
.counters_cards > article {
  width: 30%;
  padding: 10px;
  text-align: center;
}
.counters_item h3 {
  font-size: var(--step-7);
  margin: 10px 0px;
}
.counters_item p {
  font-size: var(--step-0);
  margin: 10px 0px;
  font-weight: bold;
  letter-spacing: 1px;
}
.counters_item h3::after {
  content: "";
  display: block;
  border: 2px solid var(--white);
  width: 10%;
  margin: 0 auto;
  margin-top: 10px;
}
/* clients */
.clients_main {
  padding: 3% 0%;
  width: 80%;
  margin: 3% auto;
}
.clients_main h2 {
  text-transform: uppercase;
  font-size: var(--step-6);
  color: var(--first);
}
.clients_content {
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 10px 10px 10px;
  display: grid;
  /* grid-template-columns: 67% 28%; */
  gap: 5%;
  background-color: var(--first);
}

.clients_section {
  padding: 3% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.clients_content p {
  font-size: var(--step--1);
  line-height: calc(var(--step-0) + 10px);
  color: var(--white);
}
.clients_content i {
  font-size: var(--step-9);
}
.clients_content img {
  height: 100%;
  width: 100%;
}
.clients_author h3 {
  color: var(--white);
  margin: 10px 0px 5px;
  font-size: var(--step-3);
}
.clients_author p {
  font-size: var(--step--2);
  line-height: calc(var(--step-0) + 10px);
  color: var(--white);
}
.swiper_arrows {
  text-align: center;
  position: relative;
  width: 20%;
  margin: 10px auto 10px;
}
.swiper_arrows > div {
  margin: 0 !important;
  background-color: var(--fourth);
  padding: 10px 20px;
  color: var(--white);
  border-radius: 5px;
}
.swiper_arrows > div {
  margin: 0 !important;
}
.swiper_arrows > div::after {
  display: none;
}

/* footer */
.executive_container {
  margin: 30px 0px;
  padding: 30px 0px;
  background-color: #ccc;
}

.excutive_width {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.excutive_content h3 {
  font-size: var(--step-4);
  color: var(--first);
}

.excutive_content p {
  font-size: var(--step--1);
  line-height: calc(var(--step-0) + 10px);
  color: var(--ptag);
}

.excutive_cards {
  display: flex;
  justify-content: space-around;
  gap: 3%;
  margin: 40px 0px;
  overflow: hidden;
}

.excutive_cards > article {
  width: 35.33%;
  isolation: isolate;
}

.excutive_card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.excutive_card h3 {
  font-size: var(--step-2);
  color: var(--first);
}

.excutive_card p {
  font-size: var(--step---1);
  line-height: calc(var(--step-0) + 10px);
  color: var(--ptag);
}

.excutive_card_content {
  background-color: var(--white);
  color: var(--white);
  padding: 10px;
  z-index: 1;
  width: 100%;
  position: relative;
}

/* footer */

.footer_main_container {
  background-color: var(--first);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.footer_width_container {
  width: 100%;
  margin: 0 auto;
}

.footer_items {
  display: grid;
  grid-template-columns: 30% 70%;
}

.footer_logo_container {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 10px 10px 10px;
  padding: 10px;
}

.footer_logo_container img {
  margin: 0 auto;
}

.footer_items > div {
  padding: 50px 20px;
}

.footer_social_media ul {
  list-style: none;
  margin-top: 20px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 30px 0px 0px;
}
.footer_social_media ul i {
  font-size: var(--step-8);
  color: var(--first);
  cursor: pointer;
}
.footer_contents {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
}

.footer_call {
  color: var(--white);
  font-weight: bold;
  font-weight: 500;
  font-size: var(--step-3);
}

.footer_link_a {
  background-color: var(--white);
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--first);
  font-weight: bold;
  font-size: var(--step-2);
}

.footer_contents address {
  font-size: var(--step-1);
}

.test_container {
  width: 55%;
  margin: 0 auto;
  background: lightblue;
  padding: 30px;
}

.test_container article {
  display: flex;
  gap: 5%;
  justify-content: space-evenly;
}

.test_container article > div {
  width: 45%;
}

.test_container label {
  display: block;
}

.test_container input {
  width: 100%;
  height: 30px;
  padding: 10px;
  border: 1px solid #ccc;
  outline: 1px solid #ccc;
}

.text_name div:first-child {
  flex: 4;
}

.text_name div:last-child {
  flex: 2;
}

/* //sponsors start */
.sponsors_width_container {
  width: 90%;
  margin: 100px auto 50px;
}
.sponsors_width_container .swiper-slide {
}
.sponsors_width_container .swiper-slide img {
  width: 50%;
  aspect-ratio: 3/2;
  object-fit: contain;
  margin: 0 auto;
  mix-blend-mode: color-burn;
}
.swipera_arrows_sponsors {
  width: 60%;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
/* //sponsors end */

.dialog_cta_box_container {
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 99999;
  position: fixed;
  right: 0;
  margin: unset;
  inset-inline-start: unset;
  background-color: rgb(0 0 0 / 0.4);
}
.cta_dialog_box_width {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta_dialog_box_items {
  width: 40%;
  margin: 0 auto;
  background-color: var(--white);
}
.cta_dialog_box_items > div {
  padding: 5px 20px;
  border-bottom: 2px solid var(--black);
  text-align: right;
  cursor: pointer;
}
.cta_dialog_box_form {
  padding: 0px 20px 20px;
}
.cta_dialog_box_form > div {
  margin-top: 15px;
}
.cta_dialog_box_form input {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 2px solid #ccc;
  outline: none;
}
.cta_dialog_box_form textarea {
  width: 100%;
  padding: 8px;
  height: 80px;
  border: 2px solid #ccc;
  outline: none;
}
.cta_dialog_box_form input[type="submit"] {
  background-color: var(--first);
  color: var(--white);
  width: fit-content;
  padding: 10px 20px;
}
.cta_dialog_form_dual {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}
.cta_dialog_form_dual > div {
  width: 47%;
}

/* // video dialog box  */
.dialog_vid_box_container {
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 99999;
  position: fixed;
  right: 0;
  margin: unset;
  inset-inline-start: unset;
  background-color: rgb(0 0 0 / 0.4);
}
.vid_dialog_box_width {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vid_dialog_box_items {
  width: 40%;
  margin: 0 auto;
  background-color: var(--white);
}
.vid_dialog_box_items iframe {
  display: block;
  width: 90%;
  margin: 20px auto;
  aspect-ratio: 16/9;
}
.vid_dialog_box_items > div {
  padding: 5px 20px;
  border-bottom: 2px solid var(--black);
  text-align: right;
  cursor: pointer;
}

@media (max-width: 800px) {
  .swipera_arrows_clients {
    width: 60%;
  }
}
/* //mobile optimization start  */
@media (max-width: 600px) {
  .banner_container {
    height: fit-content;
    padding-bottom: 50px;
    padding-top: 30px;
  }
  .banner_width {
    width: 90%;
    left: 5%;
    margin: 0 auto;
    position: static;
    grid-template-columns: 100%;
    gap: 50px;
  }

  .banner_form form {
    width: 90%;
    margin: 0 auto 0 0;
  }
  .counters_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
  }
  .counters_cards > article {
    width: 48%;
  }
  .counters_item p {
    font-size: var(--step-1);
  }

  .offer_width {
    width: 90%;
  }

  .offer_width > p {
    font-size: var(--step-0);
  }

  .offer_width > h3 {
    font-size: var(--step-7);
  }

  .offer_items {
    display: flex;
    flex-direction: column;
  }
  .offer_items > section {
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
    border: 2px solid #ccc;
  }
  .offer_item img {
    margin: 0 auto;
  }

  .offer_item h3 {
    margin: 8px 0px 5px;
    font-size: var(--step-3);
  }

  .offer_item p {
    font-size: var(--step-1);
    width: 100%;
  }

  .project_content h3 {
    margin: 8px 0px 5px;
    font-size: var(--step-3);
  }

  .project_content p {
    font-size: var(--step-1);
    width: 100%;
  }
  .project_swiper_arrows {
    gap: 20px;
  }
  .about_width {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100%;
  }
  .about_experience {
    padding: 15px;
    height: fit-content;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .about_img_background {
    width: 25%;
  }
  .about_img img {
    width: 70%;
    height: 60%;
    border: 5px solid var(--white);
  }
  .offer_main {
    width: 90%;
    flex-direction: column;
  }
  .offer_section {
    text-align: center;
    padding: 30px 0px;
  }
  .offer_section img {
    margin: 0 auto;
  }
  .offer_section h3 {
    font-size: var(--step-6);
  }
  .offer_section p {
    font-size: var(--step-0);
    width: 90%;
    margin: 0 auto;
  }
  .excutive_cards {
    display: flex;
    flex-direction: column;
  }

  .excutive_cards > article {
    width: 97%;
    isolation: isolate;
    margin-top: 30px;
  }

  .excutive_cards img {
    height: 350px;
    object-fit: cover;
  }
  .clients_content {
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 10px 10px 10px;
    display: grid;
    grid-template-columns: 100%;
    gap: 5%;
    background-color: var(--first);
    padding-bottom: 70px;
  }
  .clients_content img {
    height: 150px;
    width: 150px;
    display: block;
    margin: 0 auto;
  }
  .swipera_arrows_clients {
    margin-top: 20px;
  }
  .swipera_arrows_clients {
    width: 40%;
  }

  .footer_items {
    grid-template-columns: 100%;
  }

  .cta_dialog_box_items {
    width: 90%;
  }
  .dual_button_icon {
    width: 35%;
  }

  .dual_button_icon p {
    font-size: var(--step--1);
  }
}

@media (max-width: 500px) {
  .banner_btns {
    display: flex;
    flex-direction: column;
  }
  .counters_cards {
    flex-direction: column;
  }
  .counters_cards > article {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .cta_dialog_form_dual {
    display: flex;
    flex-direction: column;
  }
  .cta_dialog_form_dual > div {
    width: 100%;
    margin-top: 13px;
  }
}
/* //mobile optimization end  */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--first);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

.thanks_banner_width {
  width: 90%;
  margin: 0 auto;
  position: relative;
  color: var(--white);
  height: 60vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
