@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
  transition: 0.2s all ease-in-out;
}

img {
  transition: 0.3s all ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

:focus {
  outline: none !important;
}

p {
  line-height: 28px;
  font-size: 16px;
}

/* styling scroll bar*/
::-webkit-scrollbar {
  width: 5px;
  height: 6px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
}

::-webkit-scrollbar-thumb {
  background: #221F1F;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #221F1F;
}

html, body {
  overflow-x: clip;
}

body {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  color: #221F1F;
  font-weight: 500;
  background-color: #f5f5f5;
}

.p70 {
  padding: 70px 0px;
}

.progress-wrap {
  position: fixed;
  right: 10px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background-color: #221F1F;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: #FFF;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.lightScrollIcon::after {
  color: #ecedf3 !important;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  background-image: linear-gradient(298deg, #221F1F, #C9A887);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg {
  filter: brightness(1);
}

.progress-wrap svg.progress-circle path {
  stroke: #FFF;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.whiteHeader {
  position: fixed;
  background: #FFF;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.0509803922);
}
.whiteHeader .logo {
  padding: 0px !important;
  display: flex;
}
.whiteHeader .logo img {
  width: 190px !important;
  filter: brightness(1) invert(0) !important;
}

header {
  width: 100%;
  padding: 30px 0px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  transition: all 0.2s ease-in-out;
}
header .header-sec {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header-sec .logo img {
  filter: brightness(0) invert(1);
  transition: 0.3s all ease-in-out;
}
header .header-sec .nav-sec {
  display: flex;
}
header .header-sec .nav-sec li a {
  padding: 10px 20px;
  color: #FFF;
  display: inline-block;
  position: relative;
}
header .header-sec .nav-sec li a:after {
  content: "";
  background: #FFF;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
  border-radius: 6px;
}
header .header-sec .nav-sec li a.active {
  font-weight: 700;
}
header .header-sec .nav-sec li a:hover {
  scale: 1.1;
}
header .header-sec .right-sec {
  display: flex;
}
header .header-sec .right-sec .call {
  display: flex;
  align-items: center;
  padding-right: 30px;
}
header .header-sec .right-sec .call .icon {
  padding-right: 10px;
}
header .header-sec .right-sec .call .numbers p {
  font-size: 15px;
  color: #FFF;
  margin: 0;
  line-height: 18px;
}
header .header-sec .right-sec .call .numbers h5 {
  margin: 0px;
  font-weight: 700;
}
header .header-sec .right-sec .call .numbers h5 a {
  color: #FFF;
}
header .header-sec .right-sec .contact-btn {
  display: flex;
  align-items: center;
}
header .header-sec .mb-nav {
  display: none;
}
header.inner-header {
  background-color: #FFF;
  padding: 22px 0px;
}
header.inner-header .logo img {
  filter: brightness(1) invert(0);
}
header.inner-header .header-sec .nav-sec li a {
  color: #221F1F;
}
header.inner-header .header-sec .right-sec .call .icon svg {
  filter: brightness(0) invert(0);
}
header.inner-header .header-sec .right-sec .call .numbers p, header.inner-header .header-sec .right-sec .call .numbers h5 a {
  color: #221F1F;
}
header.inner-header .header-sec .right-sec .btn-style {
  border: 1px solid #221F1F;
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
}
header.inner-header .header-sec .right-sec .btn-style span {
  color: #FFF;
}
header.inner-header .header-sec .mb-nav img {
  filter: brightness(1) invert(0);
}

.hide-header {
  transform: translateY(-100%);
}

.whiteHeader {
  z-index: 9999;
  padding: 22px 0px;
}
.whiteHeader .nav-sec li a {
  color: #221F1F !important;
}
.whiteHeader .right-sec .call .numbers p {
  color: #221F1F !important;
}
.whiteHeader .right-sec .call .numbers h5 a {
  color: #221F1F !important;
}
.whiteHeader .right-sec .call .icon svg {
  filter: brightness(0) invert(0);
}
.whiteHeader .right-sec .btn-style {
  border: 1px solid #221F1F;
  background-color: #221F1F;
}
.whiteHeader .right-sec .btn-style span {
  color: #FFF;
}

.inner-banner {
  width: 100%;
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
  padding: 80px 0px;
  position: relative;
  margin-top: 88px;
}
.inner-banner .container {
  position: relative;
  z-index: 9;
}
.inner-banner::before {
  content: "";
  position: absolute;
  width: 221px;
  height: 110px;
  background-image: url(../images/banner-shape1.svg);
  left: 100px;
  bottom: 0;
}
.inner-banner::after {
  content: "";
  position: absolute;
  width: 184px;
  height: 55px;
  background-image: url(../images/banner-shape2.svg);
  right: 100px;
  top: 0;
}
.inner-banner h1 {
  text-align: center;
  font-size: 36px;
  color: #FFF;
  font-weight: 700;
}
.inner-banner .breadcrumb {
  display: flex;
  justify-content: center;
}
.inner-banner .breadcrumb li {
  color: #8095b3;
}
.inner-banner .breadcrumb li::before {
  color: #526581;
}
.inner-banner .breadcrumb li a {
  color: #FFF;
}

.mb-logo {
  padding: 17px 33px;
}
.mb-logo img {
  filter: brightness(0) invert(1);
}

.media {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 6px 31px;
  gap: 5px;
}
.media a {
  width: 43px;
  height: 43px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFF;
  border-radius: 50%;
  color: #FFF;
  padding: 0;
}

.btn-style {
  padding: 10px 20px;
  background-color: #FFF;
  display: inline-block;
  color: #221F1F;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  border: 1px solid #FFF;
}
.btn-style span {
  display: block;
  position: relative;
  z-index: 10;
  color: #221F1F;
}
.btn-style::before, .btn-style::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-style::before {
  content: "";
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}
.btn-style::after {
  content: "";
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
  transform: translate3d(0, -101%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn-style:hover span {
  animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
  color: #FFF;
}
.btn-style:hover span img {
  filter: brightness(0) invert(1);
}
.btn-style:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn-style:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/dots.svg);
  background-repeat: repeat;
  z-index: 1;
  left: 0;
  top: 0;
}
.banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(34, 31, 31) 0%, rgba(34, 31, 31, 0) 100%);
  left: 0;
  top: 0;
}
.banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner_title {
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: 99;
  left: 0;
  right: 0;
  margin: auto;
  color: #FFF;
  margin-top: -86px;
  display: flex;
  align-items: center;
  padding: 0px 90px;
}
.banner .banner_title h1 {
  font-size: 64px;
  font-weight: 700;
}
.banner .banner_title a {
  margin-top: 10px;
}
.banner .social-media {
  width: 42px;
  height: 197px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 99;
}
.banner .social-media a {
  width: 43px;
  height: 43px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFF;
  border-radius: 50%;
  color: #FFF;
  padding: 0;
  margin: 5px 0px;
}
.banner .social-media a:hover {
  scale: 1.1;
  background-color: #FFF;
  color: #221F1F;
}

footer {
  width: 100%;
}
footer .footer {
  width: 100%;
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 30px 0px 20px 0px;
}
footer .footer .box {
  width: 100%;
  padding: 20px;
}
footer .footer .box .f-logo {
  width: 100%;
  margin-bottom: 15px;
  display: inline-block;
}
footer .footer .box .f-logo img {
  width: 220px;
  filter: brightness(0) invert(1);
}
footer .footer .box .f-media {
  width: 100%;
  display: flex;
  gap: 3px;
}
footer .footer .box .f-media a {
  width: 43px;
  height: 43px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFF;
  border-radius: 50%;
  color: #FFF;
  padding: 0;
  margin: 5px 0px;
}
footer .footer .box .f-media a:hover {
  scale: 1.1;
  background-color: #221F1F;
  color: #FFF;
}
footer .footer .box h4 {
  font-size: 20px;
  color: #FFF;
  font-weight: 600;
}
footer .footer .box p {
  color: #a9a9a9;
}
footer .footer .box .f-contact {
  width: 100%;
  padding: 20px;
  background-color: #383838;
  border-radius: 10px;
}
footer .footer .box .f-contact a {
  color: #a9a9a9;
}
footer .footer .box .f-contact a:hover {
  color: #FFF;
}
footer .footer .box .f-contact h5 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 12px;
}
footer .footer .box .f-contact h5 a {
  color: #FFF;
}
footer .footer .f-links ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer .f-links ul li {
  padding-right: 25px;
}
footer .footer .f-links ul li a {
  color: #a9a9a9;
  display: inline-block;
}
footer .footer .f-links ul li a:hover {
  color: #FFF;
}
footer .footer .copyright {
  display: flex;
  justify-content: flex-end;
}
footer .footer .copyright p {
  margin: 0;
  color: #a9a9a9;
}
footer hr {
  border-color: #a9a9a9;
}

.about-sec {
  width: 100%;
  background-image: url(../images/about-bg.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}
.about-sec .aboutImg-sec {
  width: 100%;
  position: relative;
}
.about-sec .aboutImg-sec img {
  width: 100%;
  border-radius: 10px;
}
.about-sec .aboutImg-sec .experience {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(45deg, rgba(10, 11, 11, 0.7) 0%, rgb(52, 53, 53) 100%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.about-sec .aboutImg-sec .experience .icon {
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
}
.about-sec .aboutImg-sec .experience .icon img {
  width: 40px;
}
.about-sec .aboutImg-sec .experience h6 {
  font-size: 38px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}
.about-sec .aboutImg-sec .experience p {
  color: #FFF;
  margin: 0;
}
.about-sec .btn-style {
  border: 1px solid #221F1F;
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
}
.about-sec .btn-style span {
  color: #FFF;
}
.about-sec .btn-style span img {
  filter: brightness(0) invert(1);
}
.about-sec .content {
  padding-left: 20px;
}
.about-sec .content h2 {
  font-size: 24px;
  font-weight: 500;
}
.about-sec .content h3 {
  font-size: 34px;
  font-weight: 700;
}
.about-sec .content h4 {
  font-size: 20px;
  font-weight: 700;
}

.ventures-sec {
  width: 100%;
}
.ventures-sec .head-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ventures-sec .head-title .main-head h5 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0px;
}
.ventures-sec .head-title .main-head h4 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
.ventures-sec .head-title .btn-style {
  border: 1px solid #221F1F;
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
}
.ventures-sec .head-title .btn-style span {
  color: #FFF;
}
.ventures-sec .head-title .btn-style span img {
  filter: brightness(0) invert(1);
}
.ventures-sec .item {
  padding: 0px 10px;
}
.ventures-sec .box {
  width: 100%;
  background-color: #FFF;
  padding: 20px;
  border-radius: 10px;
}
.ventures-sec .box .logo-sec {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.ventures-sec .box .logo-sec img {
  width: 80%;
}
.ventures-sec .box .content {
  width: 100%;
  min-height: 90px;
  text-align: center;
}
.ventures-sec .box .content h6 {
  font-size: 26px;
  font-weight: 700;
}
.ventures-sec .box .link-sec {
  width: 100%;
  display: flex;
  justify-content: center;
}
.ventures-sec .box .link-sec .btn-style {
  border: 1px solid #221F1F;
}

.what-we-do {
  width: 100%;
  padding: 30px;
}
.what-we-do .sub-sec {
  width: 100%;
  background-color: #221F1F;
  border-radius: 20px;
  background-image: url(../images/h1-bg01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
}
.what-we-do .sub-sec::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 141px;
  background-image: url(../images/name-bg.svg);
  background-size: 99% 100%;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  opacity: 0.05;
}
.what-we-do .container {
  position: relative;
  z-index: 1;
}
.what-we-do .content {
  width: 100%;
  padding-right: 60px;
}
.what-we-do .content h5 {
  font-size: 36px;
  font-weight: 700;
  color: #FFF;
}
.what-we-do .content p {
  color: #FFF;
}
.what-we-do .box {
  width: 100%;
  min-height: 220px;
  background-color: #FFF;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s all ease-in-out;
}
.what-we-do .box .icon {
  width: 100%;
  margin-bottom: 10px;
  transition: 0.7s ease-in-out;
}
.what-we-do .box h6 {
  font-size: 20px;
  font-weight: 500;
}
.what-we-do .box:hover {
  transform: translateY(-12px);
}
.what-we-do .box:hover .icon {
  transform: rotateY(360deg);
}
.what-we-do .second-sec {
  padding-top: 50px;
}

.who-we-are {
  width: 100%;
}
.who-we-are .img-sec {
  width: 80%;
  position: relative;
}
.who-we-are .img-sec img {
  width: 100%;
  border-radius: 10px;
}
.who-we-are .img-sec .img2 {
  width: 230px;
  height: 280px;
  position: absolute;
  right: -80px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.who-we-are .img-sec .img2 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 0px 50px #221F1F;
}
.who-we-are .content {
  width: 100%;
}
.who-we-are .content h4 {
  font-size: 36px;
  font-weight: 700;
}
.who-we-are .content a {
  padding: 8px 20px 8px 8px;
  border-radius: 6px;
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
  display: inline-block;
  color: #FFF;
}
.who-we-are .content a img {
  margin-right: 10px;
}
.who-we-are .content a:hover img {
  scale: 1.1;
}

.faq-sec {
  width: 100%;
}
.faq-sec .faq {
  width: 100%;
  background-image: url(../images/question.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding-bottom: 190px;
}
.faq-sec .faq h4 {
  font-size: 36px;
  font-weight: 700;
}
.faq-sec .faq a {
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
  border: 1px solid #221F1F;
  color: #FFF;
}
.faq-sec .faq a span {
  color: #FFF;
}
.faq-sec .faq a span img {
  filter: brightness(0) invert(1);
}
.faq-sec .tab-sec {
  width: 100%;
  padding-left: 50px;
}
.faq-sec .tab-sec .accordion-item {
  margin-bottom: 5px;
  border-radius: 10px;
  overflow: hidden;
}
.faq-sec .tab-sec .accordion-button {
  font-size: 20px;
  font-weight: 500;
  padding: 22px 24px;
}
.faq-sec .tab-sec .accordion-body {
  padding: 22px 24px;
}
.faq-sec .tab-sec .accordion-button:not(.collapsed) {
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
  color: #FFF;
}
.faq-sec .tab-sec .accordion-button:not(.collapsed)::after {
  width: 30px;
  height: 30px;
  background-position: center;
  border-radius: 50%;
  background-color: #FFF;
}

.article-sec {
  width: 100%;
}
.article-sec .head-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-sec .head-title .main-head h5 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0px;
}
.article-sec .head-title .main-head h4 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
.article-sec .head-title .link-sec a {
  background: linear-gradient(45deg, rgb(10, 11, 11) 0%, rgb(52, 53, 53) 100%);
}
.article-sec .head-title .link-sec a span {
  color: #FFF !important;
}
.article-sec .head-title .link-sec a span img {
  filter: brightness(0) invert(1);
}
.article-sec .box {
  width: 100%;
}
.article-sec .box .img-sec {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.article-sec .box .img-sec img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all ease-in-out;
}
.article-sec .box .img-sec span {
  padding: 5px 10px;
  background-color: #FFF;
  border-radius: 6px;
  color: #221F1F;
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.article-sec .box:hover img {
  scale: 1.1;
}
.article-sec .box .content {
  width: 100%;
  padding: 10px 0px;
}
.article-sec .box .content h6 {
  font-size: 16px;
}
.article-sec .box .content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-sec .box .content .btn-style {
  border: 1px solid #221F1F;
  background-color: transparent;
}
.article-sec .box .content .btn-style span {
  color: #221F1F !important;
}
.article-sec .box .content .btn-style:hover span {
  color: #FFF !important;
}
.article-sec .box .content a {
  color: #221F1F;
}
.article-sec .item {
  padding: 0px 10px;
}

.mission-sec {
  width: 100%;
  background-image: url(../images/bgn-cases-3.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.mission-sec .box {
  width: 100%;
  height: 100%;
  padding: 60px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #FFF;
}
.mission-sec .box h4 {
  font-size: 28px;
  font-weight: 600;
}

.heading-sec h5 {
  font-size: 36px;
  color: #221F1F;
  font-weight: 700;
}

.meet-team {
  width: 100%;
  background-image: url(../images/bgn-cases-3.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.meet-team .box {
  width: 100%;
  background-color: #FFF;
  border-radius: 10px;
  overflow: hidden;
}
.meet-team .box .img-sec {
  width: 100%;
}
.meet-team .box .img-sec img {
  width: 100%;
}
.meet-team .box .content {
  width: 100%;
  padding: 20px;
}
.meet-team .box .content h5 {
  font-size: 16px;
  position: relative;
  padding-left: 25px;
}
.meet-team .box .content h5::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #221F1F;
  top: 10px;
  left: 0;
}
.meet-team .box .content h6 {
  font-size: 24px;
  font-weight: 600;
}
.meet-team .item {
  padding: 0px 10px;
}

.inner .box {
  height: 100%;
}

.milestone {
  width: 100%;
}
.milestone h4 {
  font-size: 36px;
  font-weight: 700;
}
.milestone .content {
  padding-top: 20px;
  padding-right: 20px;
  position: relative;
}
.milestone .content::after {
  content: "";
  position: absolute;
  right: -42px;
  top: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #221F1F;
}
.milestone .timeline {
  padding-left: 50px;
  position: relative;
}
.milestone .timeline::before {
  width: 2px;
  height: 100%;
  background-color: #bfcbdf;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.milestone .timeline .item-box {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #FFF;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
}
.milestone .timeline .item-box::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #221F1F;
  left: -70px;
  background-color: #e9eef5;
  top: 20px;
}
.milestone .timeline .item-box h5 {
  font-weight: 700;
}

.blog-sec {
  width: 100%;
}
.blog-sec .blog-list-box {
  width: 100%;
  padding-right: 30px;
}
.blog-sec .category-sec {
  width: 100%;
  margin-bottom: 20px;
}
.blog-sec .category-sec .category {
  padding: 5px 10px;
  background-color: #221F1F;
  border-radius: 6px;
  color: #FFF;
  margin-right: 10px;
}
.blog-sec .category-sec .post {
  font-size: 18px;
  margin-bottom: 12px;
}
.blog-sec .blog-img {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}
.blog-sec .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.blog-sec h3 {
  font-size: 30px;
  font-weight: 700;
  color: #221F1F;
}
.blog-sec .category-list {
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #FFF;
}
.blog-sec .category-list h4 {
  font-size: 22px;
  font-weight: 700;
  color: #221F1F;
  margin-bottom: 15px;
}
.blog-sec .category-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.blog-sec .category-list ul li a {
  background-color: #d3deef;
  color: #26406c;
  padding: 8px 10px;
  border-radius: 6px;
  position: relative;
  display: inline-block;
}
.blog-sec .category-list ul li a:hover {
  background-color: #221F1F;
  color: #ABB7CB;
}
.blog-sec .latest-post {
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #FFF;
}
.blog-sec .latest-post h4 {
  font-size: 22px;
  font-weight: 700;
  color: #221F1F;
  margin-bottom: 15px;
}
.blog-sec .latest-post ul li {
  width: 100%;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 26px;
}
.blog-sec .latest-post ul li .bimg {
  width: 80px;
}
.blog-sec .latest-post ul li .bimg img {
  width: 100%;
  border-radius: 6px;
}
.blog-sec .latest-post ul li .content {
  flex: 1;
}
.blog-sec .latest-post ul li .content .date {
  font-size: 16px;
  margin-bottom: 5px;
}
.blog-sec .latest-post ul li .content h5 {
  font-size: 18px;
  font-weight: 600;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-sec .latest-post ul li .content h5 a {
  color: #221F1F;
}

.contact-sec {
  width: 100%;
}
.contact-sec .box {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #FFF;
  border-radius: 10px;
}
.contact-sec .box h6 {
  font-size: 20px;
  font-weight: 600;
}
.contact-sec .box h6 img {
  width: 34px;
  margin-right: 12px;
}
.contact-sec .box p {
  margin: 0;
}
.contact-sec .box p a {
  color: #221F1F;
}
.contact-sec .box h5 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.contact-sec .box h5 a {
  color: #221F1F;
}
.contact-sec .contact-form .form-control {
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #FFF;
  border-radius: 10px;
  font-weight: 600;
}
.contact-sec .contact-form .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(51, 65, 87, 0.25);
}
.contact-sec .contact-form .txtarea {
  height: 150px;
}
.contact-sec .contact-form .btn-sp {
  height: 59px;
  padding: 10px 39px;
  font-weight: 600;
  border: 1px solid #221F1F;
  background-color: #221F1F;
}
.contact-sec .contact-form .btn-sp span {
  color: #FFF;
}
.contact-sec .map {
  width: 100%;
  display: flex;
  gap: 15px;
}
.contact-sec .map iframe {
  width: 100%;
  height: 300px;
  background-color: #221F1F;
  padding: 10px;
  border-radius: 10px;
}

.popup-sec {
  width: 100%;
  position: relative;
  padding: 30px;
}
.popup-sec .btn-close {
  position: absolute;
  right: 0;
  opacity: 1;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  top: 0;
  border: 1px solid #221F1F;
}
.popup-sec .venture-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.popup-sec .venture-logo img {
  width: 200px;
}
.popup-sec .content {
  width: 100%;
}
.popup-sec .content h6 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.popup-sec .content h5 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.popup-sec .content p {
  text-align: center;
}

.modal {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.modal-content {
  border: none;
}

.cmn-sec {
  width: 100%;
}
.cmn-sec h4 {
  font-size: 24px;
  font-weight: 700;
}
.cmn-sec p {
  text-align: justify;
}
.cmn-sec p a {
  font-weight: 700;
  color: #221F1F;
  text-decoration: underline !important;
}
.cmn-sec ul {
  margin-bottom: 20px;
}
.cmn-sec ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.cmn-sec ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 9px;
  background-color: #221F1F;
  border-radius: 50%;
}

.advantage {
  width: 100%;
}
.advantage .box-item {
  width: 100%;
  height: 100%;
  padding: 60px 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  overflow: hidden;
}
.advantage .box-item .content {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #FFF;
  padding: 20px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.advantage .box-item .content h6 {
  font-size: 28px;
  color: #221F1F;
  font-weight: 700;
  margin-bottom: 10px;
}
.advantage .box-item .content ul li {
  background-image: url(../images/arrow-icon.svg);
  background-repeat: no-repeat;
  background-position: -7px -4px;
  padding-left: 23px;
  margin-bottom: 8px;
  background-size: 28px;
  color: #221F1F;
}

@media (max-width: 1200px) {
  .banner .banner_title h1 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  header .header-sec .nav-sec, header .header-sec .right-sec {
    display: none;
  }
  header .header-sec .mb-nav {
    display: block;
  }
  .banner .social-media {
    display: none;
  }
  .banner .banner_title {
    padding: 0px 0px;
  }
  footer .footer .box {
    border: 1px solid #3F526E;
    border-radius: 15px;
    margin-bottom: 10px;
  }
  footer .footer .f-links ul {
    justify-content: center;
  }
  footer .footer .f-links ul li {
    padding: 0px 15px;
    margin-bottom: 10px;
  }
  footer .footer .copyright {
    justify-content: center;
  }
  .p70 {
    padding: 30px 0px;
  }
  .about-sec {
    background-size: cover;
  }
  .about-sec .aboutImg-sec {
    height: 300px;
    margin-bottom: 20px;
  }
  .about-sec .aboutImg-sec img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-sec .content {
    padding-left: 0px;
  }
  .what-we-do .second-sec {
    padding-top: 0;
  }
  .what-we-do .content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .who-we-are .img-sec .img2 {
    right: 24px;
    top: inherit;
    bottom: 4px;
    margin: inherit;
  }
  .who-we-are .img-sec {
    width: 100%;
    height: 330px;
    margin-bottom: 20px;
  }
  .who-we-are .img-sec img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .faq-sec .faq {
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
  .faq-sec .tab-sec {
    padding-left: 0px;
  }
  .article-sec .head-title {
    display: block;
  }
  .article-sec .head-title .link-sec {
    display: flex;
    justify-content: center;
  }
  .article-sec .head-title .main-head {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .article-sec .head-title {
    justify-content: center;
  }
  .mission-sec .box {
    padding: 20px;
    margin-bottom: 10px;
    height: auto;
  }
  .inner-banner::before {
    left: 20px;
  }
  .inner-banner::after {
    right: 20px;
  }
  .blog-sec .blog-list-box {
    padding-right: 0px;
  }
  .milestone .content::after {
    display: none;
  }
  .milestone .timeline .item-box::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 23px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #221F1F;
    z-index: 1;
  }
  .milestone .timeline::before {
    left: 19px;
  }
  .milestone .timeline .item-box::after {
    left: -51px;
  }
  .advantage .box-item {
    padding: 8px;
  }
  .inner-banner {
    margin-top: 83px;
  }
}
@media (max-width: 768px) {
  .p70 {
    padding: 20px 0px;
  }
  .about-sec .content h3 {
    font-size: 28px;
  }
  .about-sec .content p {
    text-align: justify;
  }
  .ventures-sec .head-title {
    display: block;
  }
  .ventures-sec .head-title .link-sec {
    display: flex;
    justify-content: center;
  }
  .ventures-sec .head-title .main-head {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .ventures-sec .head-title {
    justify-content: center;
  }
  .banner .banner_title h1 {
    font-size: 39px;
  }
  footer .footer {
    padding: 15px 2px;
  }
  .faq-sec .faq h4, .who-we-are .content h4, .what-we-do .content h5, .ventures-sec .head-title .main-head h4, .article-sec .head-title .main-head h4, .heading-sec h5, .inner-banner h1 {
    font-size: 28px;
  }
  .inner-banner {
    padding: 40px 0px;
  }
  .contact-sec .map {
    display: block;
  }
}
@media (max-width: 576px) {
  .ventures-sec .head-title .main-head {
    margin-bottom: 20px;
  }
  .banner .banner_title h1 {
    font-size: 23px;
  }
  footer, .what-we-do {
    padding: 4px;
  }
  footer .footer .box .f-logo {
    justify-content: center;
    display: flex;
  }
  footer .footer .box .f-logo img {
    width: 200px;
  }
  footer .footer .box .f-media {
    justify-content: center;
  }
  .inner-banner::before, .inner-banner::after {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */