@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=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow: hidden;
  background: rgba(223, 223, 223, 1);
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

:root {
  --dark-blue-color: rgba(13, 30, 48, 1);
  --white-color: #ffffff;
  --blue-color: rgba(64, 147, 206, 1);
  --light-color: rgba(223, 223, 223, 1);

  --font-01: "Poppins", sans-serif;
  --font-02: "Urbanist", sans-serif;
}

.darkBlueBTN,
.blueBTN {
  padding: 8px 28px 8px 29px;
  border-radius: 8px;
  background-color: var(--dark-blue-color);
  color: var(--white-color);
  font-family: var(--font-01);
  font-weight: 500;
  font-size: 18px;
  line-height: calc(18px * 1.5);
  text-transform: capitalize;
  border: 1px solid transparent;
}
.darkBlueBTN:hover {
  border-color: var(--dark-blue-color);
  color: var(--dark-blue-color);
  background-color: transparent;
}
.blueBTN {
  background-color: var(--blue-color);
}
.blueBTN:hover {
  border-color: var(--blue-color);
  color: var(--blue-color);
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.noSelect:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}
:focus {
  outline: none !important;
}

.animateElement {
  transform: scale(0.9) translateY(10px);
}

/* loader */
/* ====== */
.main_loader {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #dfdfdf;
  z-index: 4;
}
.main_loader.removeLoader {
  visibility: hidden;
  opacity: 0;
}
.loader {
  width: 15px;
  aspect-ratio: 1;
  position: relative;
}
.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--dark-blue-color);
}
.loader::before {
  box-shadow: -25px 0;
  animation: l8-1 1s infinite linear;
}
.main_loader.removeLoader .loader::before,
.main_loader.removeLoader .loader::after {
  animation-play-state: paused;
}
.loader::after {
  transform: rotate(0deg) translateX(25px);
  animation: l8-2 1s infinite linear;
}

@keyframes l8-1 {
  100% {
    transform: translateX(25px);
  }
}
@keyframes l8-2 {
  100% {
    transform: rotate(-180deg) translateX(25px);
  }
}

/* **** header **** */
/* *************** */

header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--light-color);
  padding: 61px 12px 24px;
  z-index: 2;
}
header.active {
  padding: 18px 24px;
  box-shadow: 0 0 2px 0 rgb(118 144 163 / 36%);
}
header .desktopView {
  width: 1395px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
header.active .desktopView {
  align-items: center;
}
header .desktopView h1 a {
  font-family: var(--font-02);
  font-weight: 700;
  font-size: 90px;
  line-height: calc(0.7px * 90);
  color: var(--dark-blue-color);
  text-transform: uppercase;
}
header.active .desktopView h1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
header.active .desktopView h1 a {
  font-size: 70px;
}
header .desktopView nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 69px;
}
header .desktopView nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
header .desktopView nav ul li a {
  font-size: 18px;
  font-family: var(--font-01);
  font-weight: 500;
  color: var(--dark-blue-color);
  text-transform: capitalize;
  position: relative;
  line-height: calc(18px * 1.5);
}
header .desktopView nav ul li a::before,
header .desktopView nav ul li a.active::before {
  content: "";
  width: 0%;
  height: 2px;
  border-radius: 6px;
  background-color: rgb(64 147 206);
  box-shadow: 0 4px 4px 0 rgba(234, 234, 234, 0.1);
  position: absolute;
  bottom: 0px;
}
header .desktopView nav ul li a:hover::before,
header .desktopView nav ul li a.active::before {
  width: 100%;
}
/* heroSection */
/* *********** */

.heroSection {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(223 223 223);
  position: relative;
}
.heroSection .shape {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
}
.heroSection .shape img {
  width: 100%;
  object-fit: cover;
}
/* .heroSection::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(223, 223, 223, 1);
  border-radius: 0 0 550px 540px;
} */
.heroSection .center_content {
  width: 1377px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 221px;
  z-index: 1;
  padding-bottom: 1.2rem;
}
.heroSection .center_content .leftSide {
  padding-top: 94px;
  display: flex;
  flex-direction: column;
}
.heroSection .center_content .leftSide .blueColor {
  font-size: 18px;
  font-family: var(--font-01);
  font-weight: 500;
  line-height: 26px;
  color: var(--blue-color);
  margin: 0;
}
.heroSection .center_content .leftSide h1 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--font-01);
  color: var(--dark-blue-color);
  margin-top: 8px;
}
.heroSection .center_content .leftSide h1 .blueColor {
  color: var(--blue-color);
  font-size: 48px;
  font-weight: 700;
  line-height: unset;
}
.heroSection .center_content .leftSide p {
  font-size: 18px;
  font-family: var(--font-01);
  font-weight: 300;
  line-height: 28px;
  color: rgba(55, 65, 81, 1);
  margin-top: 15px;
}
.heroSection .center_content .leftSide .btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 46px;
}
.heroSection .center_content .rightSide {
  width: 725px;
  height: 648px;
  display: flex;
}
.heroSection .center_content .rightSide img {
  width: 100%;
  object-fit: contain;
}

/* services */
/* ======== */

.services {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(64, 147, 206, 0.2);
  padding-top: 66px;
  padding-bottom: 38px;
}
.services .center_content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 57.66px;
}
.services .center_content .card01 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.services .center_content .card01:nth-child(2) {
  margin-left: 12.340000000000003px;
  margin-top: 5px;
}
.services .center_content .card01:nth-child(1) {
  margin-top: 20px;
}
.services .center_content .card01:nth-child(1) img {
  width: 180.02px;
  height: 79.12px;
}
.services .center_content .card01:nth-child(2) img {
  width: 69px;
  height: 92.83px;
}
.services .center_content .card01:nth-child(3) img {
  width: 56.61px;
  height: 99px;
}
.services .center_content .card01 h1 {
  text-transform: uppercase;
  font-size: 18px;
  font-family: var(--font-01);
  font-weight: 600;
  line-height: calc(18px * 1.5);
  color: rgba(55, 65, 81, 1);
  margin-top: 18.88px;
}
.services .center_content .card01 p {
  font-size: 16px;
  font-family: var(--font-01);
  font-weight: 400;
  line-height: 26px;
  color: rgba(55, 65, 81, 1);
  margin-top: 12px;
}
.services .center_content .card01 a {
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-family: var(--font-01);
  font-weight: 500;
  line-height: 28px;
  color: rgba(55, 65, 81, 1);
  margin-top: 17px;
}
.services .center_content .card01 a img {
  width: unset !important;
  height: unset !important;
}
.services .center_content .card01 a span {
  position: relative;
}
.services .center_content .card01 a span::before {
  content: "";
  width: 0%;
  height: 1px;
  background-color: rgba(55, 65, 81, 1);
  position: absolute;
  bottom: 0;
  border-radius: 10px;
}
.services .center_content .card01 a:hover span::before {
  width: 100%;
}

/* aboutUs */
/* ======= */

.aboutUs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(231, 231, 231, 1);
}
.aboutUs .center_content {
  padding: 91px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 98px;
}
.aboutUs .center_content .topPart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.aboutUs .center_content .topPart h4 {
  font-size: 18px;
  font-family: var(--font-01);
  font-weight: 500;
  line-height: 26px;
  color: var(--blue-color);
}
.aboutUs .center_content .topPart h1 {
  font-size: 40px;
  font-family: var(--font-01);
  font-weight: 600;
  color: var(--dark-blue-color);
  text-transform: uppercase;
  position: relative;
}
.aboutUs .center_content .topPart h1 span {
  z-index: 1;
  position: inherit;
}
.aboutUs .center_content .topPart h1::before {
  content: "";
  width: 100%;
  height: 15px;
  border-radius: 25px;
  background-color: rgba(64, 147, 206, 0.3);
  box-shadow: 0 4px 4px 0 rgba(234, 234, 234, 0.1);
  position: absolute;
  bottom: 11px;
}
.aboutUs .center_content .bottomPart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
}
.aboutUs .center_content .bottomPart .leftSide h1 {
  font-size: 24px;
  font-family: var(--font-01);
  font-weight: 600;
  line-height: calc(24px * 1.5);
  color: var(--dark-blue-color);
  text-transform: uppercase;
}
.aboutUs .center_content .bottomPart .leftSide h1 .blueColor {
  color: var(--dark-blue-color);
}
.aboutUs .center_content .bottomPart .leftSide p {
  font-size: 16px;
  font-family: var(--font-01);
  font-weight: 300;
  line-height: 26px;
  color: var(--dark-blue-color);
  margin-top: 15px;
}
.aboutUs .center_content .bottomPart .leftSide .btns {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
}
.aboutUs .center_content .bottomPart .rightSide {
  width: 679px;
  height: 452px;
  display: flex;
}
.aboutUs .center_content .bottomPart .rightSide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* footer */
/* ====== */

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(223, 223, 223, 1);
  padding: 133px 0 53px;
}
footer .center_content {
  width: 1381px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 76px;
}
footer .center_content .topPart {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .center_content .topPart .col01 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .center_content .topPart .col01 div p {
  font-family: var(--font-01);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--blue-color);
}
footer .center_content .topPart .col01 div a {
  font-size: 20px;
  line-height: 30px;
  font-family: var(--font-02);
  font-weight: 700;
  color: var(--dark-blue-color);
  position: relative;
}
footer .center_content .topPart .col01 div a::before {
  content: "";
  width: 0%;
  height: 1px;
  border-radius: 10px;
  background-color: var(--dark-blue-color);
  position: absolute;
  bottom: 0;
}
footer .center_content .topPart .col01 div a:hover::before {
  width: 100%;
}
footer .center_content .topPart .col01 div .icons {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
footer .center_content .topPart .col01 div .icons a {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background-color: var(--dark-blue-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .center_content .topPart .col01 div .icons a:hover {
  background-color: var(--blue-color);
}
footer .center_content .topPart .col01 div .icons a:nth-child(1) img {
  position: relative;
  bottom: -1.4px;
}
footer .center_content .topPart .col01 div .icons a:nth-child(2) img {
  position: relative;
  bottom: -0.8px;
  left: 0.3px;
}
footer .center_content .topPart .col01 div .icons a:nth-child(3) img {
  position: relative;
  left: -0.6px;
  top: 0.6px;
}
footer .center_content .topPart .col01 h1 {
  font-size: 52px;
  font-family: var(--font-02);
  font-weight: 800;
  color: var(--dark-blue-color);
  text-transform: uppercase;
}
footer .center_content .bottomPart p {
  font-size: 18px;
  line-height: 28px;
  font-family: var(--font-01);
  font-weight: 400;
  color: var(--dark-blue-color);
}

/* Mobile Navbar */
/* ============ */

.hamburger {
  display: flex;
  width: 22px;
  justify-content: center;
  align-items: center;
  display: none;
}
.mobileNavbar {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #dfdfdf;
  visibility: hidden;
  opacity: 0;
}
.mobileNavbar.active {
  visibility: visible;
  opacity: 1;
}
.mobileNavbar .logo {
  position: absolute;
  top: 22px;
  left: 5rem;
}
.mobileNavbar .logo a {
  font-family: var(--font-02);
  font-weight: 700;
  font-size: 70px;
  line-height: calc(0.7px * 60);
  color: var(--dark-blue-color);
  text-transform: uppercase;
}
.mobileNavbar .closeIcon {
  width: 22px;
  position: absolute;
  top: 2rem;
  right: 5rem;
}
.mobileNavbar nav {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 38px;
}
.mobileNavbar nav ul,
.mobileNavbar nav ul li {
  width: 100%;
}
.mobileNavbar nav ul li a {
  width: 100%;
  font-family: var(--font-01);
  font-weight: 500;
  color: var(--dark-blue-color);
  text-transform: capitalize;
  position: relative;
  font-size: 16px;
  line-height: calc(16px * 1.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--dark-blue-color);
}
.mobileNavbar nav ul li a.active {
  border-bottom-color: var(--blue-color);
  color: var(--blue-color);
}
.mobileNavbar nav ul li:last-child a {
  border-bottom: 0;
}

/* Media Query */
/* ********** */

@media screen and (max-width: 1580px) {
  .heroSection .center_content {
    margin-top: 180px;
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 1440px) {
  .heroSection .center_content,
  header .desktopView,
  .services .center_content,
  .aboutUs .center_content,
  footer .center_content {
    width: 90%;
  }
  .services .center_content {
    flex-wrap: wrap;
  }
  .heroSection .center_content .leftSide h1 {
    font-size: 44px;
    line-height: 56px;
  }
  .heroSection .center_content .leftSide p {
    font-size: 16px;
    line-height: 26px;
  }
  .darkBlueBTN,
  .blueBTN {
    font-size: 16px;
    line-height: calc(16px * 1.5);
  }
  .heroSection .center_content .leftSide .blueColor {
    line-height: 24px;
    font-size: 16px;
  }
  header .desktopView h1 a {
    font-size: 84px;
    line-height: calc(0.7px * 84);
  }
  header.active .desktopView h1 a {
    line-height: calc(0.7px * 70);
  }
  header .desktopView nav ul li a {
    font-size: 16px;
    line-height: calc(16px * 1.5);
  }
  .heroSection .center_content .rightSide {
    width: 625px;
    height: 548px;
  }
  .services .center_content .card01 h1 {
    font-size: 16px;
    line-height: calc(16px * 1.5);
  }
  .services .center_content .card01 p {
    line-height: 24px;
    font-size: 14px;
  }
  .services .center_content .card01 a {
    font-size: 16px;
    line-height: 26px;
  }
  .aboutUs .center_content .topPart h4 {
    font-size: 16px;
    line-height: 24px;
  }
  .aboutUs .center_content .topPart h1 {
    font-size: 38px;
  }
  .aboutUs .center_content .bottomPart .leftSide h1 {
    font-size: 22px;
    line-height: calc(22px * 1.5);
  }
  .aboutUs .center_content .bottomPart .leftSide p {
    font-size: 14px;
    line-height: 26px;
  }
  .aboutUs .center_content .bottomPart .rightSide {
    width: 579px;
    height: 352px;
  }
  footer .center_content .topPart .col01 div p {
    font-size: 14px;
    line-height: 24px;
  }
  footer .center_content .topPart .col01 div a {
    font-size: 18px;
    line-height: 28px;
  }
  footer .center_content .topPart .col01 h1 {
    font-size: 50px;
  }
  footer .center_content .bottomPart p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media screen and (max-width: 1400px) {
  .heroSection .center_content .rightSide {
    width: 610px;
    height: 534px;
  }
  .heroSection .center_content .leftSide {
    padding-top: 60px;
  }
}

@media screen and (max-width: 1357px) {
  .heroSection .center_content .rightSide {
    width: 525px;
    height: 448px;
  }
  .heroSection .center_content .leftSide {
    padding-top: 26px;
  }
  .heroSection .center_content {
    gap: 30px;
  }
}

@media screen and (max-width: 1260px) {
  .services .center_content {
    gap: 34.66px;
  }
  .aboutUs .center_content .bottomPart .rightSide {
    width: 490px;
    height: 330px;
  }
  .aboutUs .center_content .bottomPart {
    gap: 50px;
  }
}

@media screen and (max-width: 1235px) {
  .heroSection .center_content {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .heroSection .center_content .leftSide {
    padding: 0;
  }
  .heroSection .center_content .rightSide {
    width: 550px;
    height: 473px;
  }
}

@media screen and (max-width: 1207px) {
  .aboutUs .center_content .bottomPart {
    flex-wrap: wrap-reverse;
  }
  .aboutUs .center_content .bottomPart .rightSide {
    width: 540px;
    height: 358px;
  }
  .aboutUs .center_content {
    gap: 75px;
  }
  .aboutUs .center_content .bottomPart {
    gap: 40px;
  }
  .aboutUs .center_content {
    padding: 90px 0 45px;
  }
}

@media screen and (max-width: 1171px) {
  header .desktopView nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  header .desktopView h1 a {
    font-size: 72px;
    line-height: calc(0.7px * 72);
  }
}

@media screen and (max-width: 600px) {
  header .desktopView h1 a {
    font-size: 36px;
    line-height: calc(0.7px * 36);
  }
  .heroSection .center_content .rightSide,
  .aboutUs .center_content .bottomPart .rightSide {
    width: 100%;
    height: unset;
  }
  .heroSection .center_content .leftSide h1 {
    font-size: 24px;
    line-height: 24px;
  }
  .heroSection .center_content .leftSide h1 br,
  .heroSection .center_content .leftSide p br {
    display: none;
  }
  .heroSection .center_content .leftSide .blueColor {
    line-height: 22px;
    font-size: 14px;
  }
  .heroSection .center_content .leftSide p {
    font-size: 14px;
    line-height: 24px;
  }
  footer .center_content .topPart {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer .center_content .topPart .col01:nth-child(2) {
    order: 1;
  }
  footer .center_content .topPart .col01:nth-child(1) {
    order: 2;
  }
  footer .center_content .topPart .col01:nth-child(3) {
    order: 3;
  }
  footer {
    padding: 60px 0 40px;
  }
  footer .center_content {
    gap: 56px;
  }
  header {
    padding: 40px 12px 24px;
  }
  .hamburger {
    width: 18px;
  }
  .darkBlueBTN,
  .blueBTN {
    font-size: 14px;
    line-height: calc(14px * 1.5);
  }
  header.active {
    padding: 18px 0;
  }
  header .desktopView {
    align-items: center;
  }
  header.active .desktopView h1 a {
    font-size: 34px;
  }
  header {
    padding: 30px 0px 24px;
  }
  .heroSection .center_content {
    margin-top: 120px;
    padding-bottom: 5rem;
  }
  .heroSection .center_content .leftSide .btns {
    margin-top: 34px;
  }
  .services .center_content .card01:nth-child(1) img {
    width: 130.02px;
    height: unset;
  }
  .services .center_content .card01:nth-child(2) img {
    width: 59px;
    height: unset;
  }
  .services .center_content .card01 p br {
    display: none;
  }
  .services .center_content .card01:nth-child(2),
  .services .center_content .card01:nth-child(1) {
    margin: 0;
  }
  .services .center_content .card01:nth-child(3) img {
    width: 46.61px;
    height: unset;
  }
  .aboutUs .center_content .topPart h4 {
    font-size: 14px;
    line-height: 22px;
  }
  .aboutUs .center_content .topPart h1 {
    font-size: 24px;
  }
  .aboutUs .center_content .topPart h1::before {
    height: 5px;
  }
  .aboutUs .center_content .topPart h1::before {
    bottom: 9px;
  }
  .aboutUs .center_content .bottomPart .leftSide h1 {
    font-size: 18px;
    line-height: calc(18px * 1.5);
  }
  .aboutUs .center_content .bottomPart .leftSide p br {
    display: none;
  }
  footer .center_content .topPart .col01 h1 {
    font-size: 36px;
  }
  .mobileNavbar .logo a {
    font-size: 34px;
    line-height: calc(0.7px * 36);
  }
  .mobileNavbar .logo {
    top: 18px;
    left: 19px;
  }
  .mobileNavbar .closeIcon {
    top: 24px;
    right: 19px;
    width: 18px;
  }
  footer .center_content .topPart .col01 div a {
    font-size: 16px;
    line-height: 26px;
  }
  .services .center_content {
    gap: 24.66px;
  }
}
