:root {
  --color: red;
  --sora-font: "Sora", sans-serif;
  --AgencyFB: "AgencyFB", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  line-height: 1.4;
  overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
/* Reset Css here */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
textarea {
  resize: vertical;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
p {
  margin: 0;
  padding: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
/* Common css here */
.btn {
  display: block;
}
/* End Common css here */
/* custome build */
.cards {
  display: block;
}
/* section header */
/* .section__header {
  text-align: center;
} */
.section__title {
  display: inline-block;
  position: relative;
  text-align: center;
  font-family: var(--AgencyFB);
  color: #353535;
  font-weight: 700;
  font-size: 60px;
  margin-top: 20px;
}
.section__title::after {
  position: absolute;
  content: "";
  background-image: url("../img/title-shape.png");
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  top: -6px;
  right: -30px;
}
/* end custome build */
/* main css here */
header {
  padding: 25px 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 99;
  position: relative;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .logo img {
  height: 36px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
header nav .main__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
header nav .main__menu li a {
  display: block;
  padding: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--sora-font);
  color: #353535;
}
/* mobile bar */
.mobile__bar {
  height: 25px;
  width: 30px;
  display: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  margin-top: 10px;
}
.mobile__bar span {
  display: block;
  height: 3px;
  width: 30px;
  margin-bottom: 4px;
  background: #111;
  border-radius: 8px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.mobile__bar.active span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translateY(10px);
  -ms-transform: rotate(-45deg) translateY(10px);
  transform: rotate(-45deg) translateY(10px);
}
.mobile__bar.active span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.mobile__bar.active span:nth-child(3) {
  -webkit-transform: rotate(45deg) translateY(-10px);
  -ms-transform: rotate(45deg) translateY(-10px);
  transform: rotate(45deg) translateY(-10px);
}
/* hero area */
.hero__area {
  padding-top: 120px;
  padding-bottom: 50px;
}
.hero__area::before {
  position: absolute;
  left: 0;
  background: url("../img/hero-shape.png");
  content: "";
  height: 500px;
  width: 500px;
  top: -70px;
  z-index: -1;
}
.hero__wrapper {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 1fr 70px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 70px;
  position: relative;
  z-index: 1;
}
.hero__text h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 90%;
  font-family: var(--AgencyFB);
  color: #353535;
  padding-bottom: 35px;
}
.hero__text h1 span {
  color: #349dab;
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(21.75%, rgba(0, 0, 0, 0.5)),
      to(rgba(0, 0, 0, 0))
    ),
    url(.jpg), #000000;
  background: -o-linear-gradient(
      top,
      rgba(0, 0, 0, 0.5) 21.75%,
      rgba(0, 0, 0, 0) 100%
    ),
    url(.jpg), #000000;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 21.75%,
      rgba(0, 0, 0, 0) 100%
    ),
    url(.jpg), #000000;
  border-radius: 16px;
  position: relative;
}
.hero__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}
.video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 79px;
  height: 81px;
  background: #349dab;
  border-radius: 110px;
  border: none;
  outline: none;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* end hero area */
.journey {
  margin-top: 150px;
  padding: 20px 0;
  padding-bottom: 180px;
  background: #349dab;
  position: relative;
  z-index: 1;
}
.journey::before,
.journey::after {
  position: absolute;
  height: 800px;
  width: 800px;
  border-radius: 50%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  background-image: url("../img/circles-group.png");
}
.journey::before {
  left: -400px;
  bottom: -300px;
}
.journey::after {
  right: -450px;
  top: -400px;
}
.journey__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.journey__text {
  color: #fff;
}
.joueney__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 90%;
  font-family: var(--AgencyFB);
  color: #ffffff;
  padding-bottom: 40px;
}
.journey__list {
  padding-left: 30px;
  position: relative;
}
.journey__list::before {
  position: absolute;
  left: 4px;
  overflow: hidden;
  top: 20px;
  height: 80%;
  content: url("../img/line-dots.png");
}
.single__list {
  position: relative;
  padding-bottom: 50px;
}
.journey__list .single__list:last-child {
  padding-bottom: 0;
}
.single__list::before {
  position: absolute;
  left: -33px;
  top: 11px;
  height: 16px;
  width: 16px;
  content: "";
  background: #fff;
  border-radius: 50%;
}
.single__list span {
  display: inline-block;
}
.single__list h3 {
  padding-top: 25px;
  padding-bottom: 17px;
  font-weight: 700;
  font-size: 32px;
  line-height: 90%;
  font-family: var(--sora-font);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  color: #ffffff;
}
.single__list p {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}
.journey__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.journey__images img {
  height: 100%;
  width: 100%;
}
.journey__images-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.journey__list .ct__date {
  padding: 10px 30px;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 20px;
  line-height: 90%;
  right: 35px;
  top: 35px;
  font-family: var(--AgencyFB);
  display: inline-block;
}
.journey__list .single__list:nth-child(1) .ct__date {
  background: #bb8344;
}
.journey__list .single__list:nth-child(2) .ct__date {
  background: #135567;
}
.journey__list .single__list:nth-child(3) .ct__date {
  background: #42e2d6;
}
.journey__list .single__list:nth-child(4) .ct__date {
  background: #2d7c76;
}
.journey__bottom-shapes,
.journey__top-shapes {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
}
.journey__bottom-shapes {
  bottom: -15px;
}
.journey__top-shapes {
  top: -95px;
}
.journey__bottom-shapes,
.journey__top-shapes {
  height: 100px;
  width: 100%;
}
/* event */
.event {
  padding: 70px 0;
  position: relative;
  z-index: 99;
}
.event .section__header {
  text-align: center;
  padding-bottom: 100px;
}
.event .section__title {
  text-align: center;
  margin-bottom: 20px;
}
.event .section__title::after {
  position: absolute;
  content: "";
  background-image: url("../img/quote.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 40px;
  width: 40px;
  top: -6px;
  right: inherit;
  left: -44px;
}
.event .section__pragrap {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.event__conent {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.8fr 1fr;
  grid-template-columns: 0.8fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.event__image {
  position: relative;
  z-index: 1;
}
.event__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 40px;
}
.even__overlaw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  border-radius: 40px;
  height: 100%;
  background: #00000083;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  z-index: 99;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.event__image:hover .even__overlaw {
  opacity: 1;
  visibility: visible;
}
.event__text {
  background: #ffffff;
  -webkit-box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 80px;
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
  width: 110%;
  position: relative;
  z-index: 99;
}
.event__text-content h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: 90%;
  font-family: var(--AgencyFB);
  color: #349dab;
}
.event__text-content h2 {
  padding: 30px 0;
  font-weight: 700;
  font-size: 54px;
  line-height: 90%;
  font-family: var(--sora-font);
  color: #353535;
}
.event__text-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #353535;
}
/* end event */
/* protfolio */
.protfolio {
  padding: 70px 0;
}
.protfolio .section__header {
  padding-bottom: 30px;
}
.protfolio .section__header {
  text-align: center;
}
.protfolio__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}
.cards__image {
  height: 300px;
  text-align: right;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 8px;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.cards__image img {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.single__protfolio {
  padding: 25px;
  background: #ffffff;
  -webkit-box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  position: relative;
}
.single__protfolio:hover {
  -webkit-box-shadow: 0px 12px 16px rgba(52, 157, 171, 0.25);
  box-shadow: 0px 12px 16px rgba(52, 157, 171, 0.25);
}
.single__protfolio:hover .cards__image img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.protfolio__content .ct__date {
  padding: 10px 30px;
  background: #42e2d6;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 90%;
  right: 35px;
  top: 35px;
  font-family: var(--AgencyFB);
  display: inline-block;
  position: absolute;
}
.protfolio__content .single__protfolio:nth-child(2) .ct__date {
  background: #bb8344;
}
.protfolio__content .single__protfolio:nth-child(3) .ct__date {
  background: #135567;
}
.cards__text small {
  padding: 16px 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 90%;
  color: #353535;
  display: block;
}
.cards__text h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #353535;
  font-family: var(--sora-font);
  padding-bottom: 16px;
}
.cards__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #353535;
}
/* end protfolio */
/* pardners */
.pardners__wrapper {
  padding: 70px 0;
}
.pardners__wrapper .section__header {
  text-align: center;
  padding-bottom: 30px;
}
.client__content {
  padding-top: 40px;
}
.all_client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
.single__client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.single__client img {
  height: 35px !important;
  width: 120px !important;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.client__content .owl-dots {
  padding-top: 20px;
}
.partners .section__title::after {
  position: absolute;
  content: "";
  background-image: url("../img/title-shape.png");
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  top: -20px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: -30px;
  right: inherit;
}
/* end pardners */
/* footer area */
.footer__top {
  padding: 70px 0;
}
.footer__top-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 100px 1fr;
  grid-template-columns: 400px 1fr;
  -webkit-column-gap: 100px;
  -moz-column-gap: 100px;
  column-gap: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 30px;
}
.footer__social ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 16px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 16px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
}
.footer__social ul li a img {
  width: 46px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__social ul li a span {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #353535;
}
.footer__bottom {
  background: #14394d;
  padding: 30px 0;
}
.footer__bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__logo a {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 90%;
  color: #ffffff;
}
.footer__bottom p {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
}
/* end footer area */
/* end main css here */
