@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

html {
  margin: 0 !important;
  overflow-x: clip; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block; }

a:visited {
  color: var(--navy-black-color); }

.small-text {
  font-size: 14px; }

.large-text {
  font-size: 18px; }

ol,
ul {
  list-style: none; }

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: .4s ease; }

a:hover {
  color: var(--primary-color); }

blockquote,
q {
  quotes: none; }

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }
  table thead tr th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px; }
  table thead tr th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px; }
  table thead th {
    font-weight: 800;
    font-size: 20px; }
  table td, table th {
    padding: 24px !important;
    text-align: left; }
  table td {
    border-bottom: 1px solid gainsboro; }

:root {
  --primary-color: rgba(202, 33, 40, 1);
  --secondary-color: rgba(24, 170, 157, 1);
  --black-color: #000000;
  --text-black-color: rgba(34, 34, 34, 1);
  --white-color: #ffffff;
  --primary-font: "Mulish", sans-serif; }

body {
  line-height: 26px;
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 400;
  color: var(--text-black-color);
  overflow-x: clip; }

.primary-color {
  color: var(--primary-color) !important; }

.secondary-color {
  color: var(--secondary-color) !important; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
  font-weight: 800;
  color: var(--black-color); }

.fw-700 {
  font-weight: 700; }

.fw-600 {
  font-weight: 700; }

.fw-800 {
  font-weight: 800; }

.fs-18 {
  font-size: 18px; }

h1 {
  font-size: 50px;
  line-height: 100%;
  font-weight: 700; }

h1.small-text {
  font-size: 50px;
  line-height: 100%; }

h2 {
  font-size: 40px;
  line-height: 100%; }

h3 {
  font-size: 30px;
  line-height: 120%; }

h4 {
  font-size: 24px;
  line-height: 120%; }

h5 {
  font-size: 20px;
  line-height: 130%; }

h6 {
  font-size: 18px;
  line-height: 130%; }

figure {
  margin: 0; }

figure img {
  display: block;
  width: 100%;
  height: auto; }

.bg-primary-color {
  background-color: var(--primary-color); }

.bg-light-gray {
  background-color: #f6f6f6; }

.p-sticky {
  position: sticky;
  top: 120px; }

.px-60 {
  padding: 0 100px; }

.pb-60 {
  padding-bottom: 60px; }

.pt-60 {
  padding-top: 60px; }

.pb-80 {
  padding-bottom: 80px; }

.pt-80 {
  padding-top: 80px; }

.block {
  padding: 100px 0; }

.object-fit-cover {
  object-fit: cover; }

.object-fit-contain {
  object-fit: contain; }

.object-position-center {
  object-position: center; }

.section-title {
  padding-bottom: 24px; }
  .section-title.pb-mid {
    padding-bottom: 35px; }

.mw-mid {
  max-width: 700px; }

.section-head {
  padding-bottom: 30px; }

.br-12 {
  border-radius: 12px; }

.desc-mb-0 p:last-of-type {
  margin-bottom: 0; }

.quick-contact .col-md-6 {
  width: 100%; }
.quick-contact textarea {
  height: 100px; }

.img-hover {
  overflow: hidden; }
  .img-hover img {
    transition: 0.6s ease-in-out; }
  .img-hover:hover img {
    transform: scale(1.2);
    transition: 0.6s ease-in-out; }

.btn-primary {
  display: inline-block;
  height: auto;
  width: auto;
  padding: 16px 24px;
  text-align: center;
  width: auto;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  background: var(--primary-color) !important;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 100% !important;
  color: var(--white-color) !important;
  transition: .6s ease-in-out;
  position: relative;
  margin-top: 30px; }
  .btn-primary:after {
    content: '\f061';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-family: FontAwesome;
    font-weight: 400;
    visibility: hidden;
    opacity: 0;
    transition: .6s ease; }
  .btn-primary.white {
    background: #fff !important;
    color: var(--primary-color) !important; }
  .btn-primary:hover {
    color: var(--white-color) !important;
    border-color: var(--secondary-color) !important;
    background: var(--secondary-color) !important;
    transition: .6s ease-in-out;
    padding-right: 40px; }
    .btn-primary:hover:after {
      visibility: visible;
      opacity: 1; }
  .btn-primary.no-arrow:after {
    display: none; }
  .btn-primary.no-arrow:hover {
    padding-right: 24px; }

.btn-secondary {
  display: inline-block;
  height: auto;
  width: auto;
  padding: 16px 24px;
  text-align: center;
  width: auto;
  border: 1px solid var(--secondary-color);
  border-radius: 6px;
  background: var(--secondary-color) !important;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 100% !important;
  color: var(--white-color) !important;
  transition: .6s ease-in-out;
  position: relative;
  margin-top: 30px;
  margin-top: 30px; }
  .btn-secondary:after {
    content: '\f061';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    font-family: FontAwesome;
    font-weight: 400;
    visibility: hidden;
    opacity: 0;
    transition: .6s ease; }
  .btn-secondary.btn-on-primary:hover {
    background: #fff !important;
    color: var(--primary-color) !important; }
  .btn-secondary.white {
    background: var(--white-color) !important;
    color: #000 !important; }
  .btn-secondary:hover {
    color: var(--white-color) !important;
    border-color: var(--primary-color) !important;
    background: var(--primary-color) !important;
    transition: .6s ease-in-out;
    padding-right: 40px; }
    .btn-secondary:hover:after {
      visibility: visible;
      opacity: 1; }
  .btn-secondary.no-arrow:after {
    display: none; }
  .btn-secondary.no-arrow:hover {
    padding-right: 24px; }

.modal-header {
  padding: 0;
  border: none; }

.modal-header .btn-close {
  background-color: #00ffff;
  color: #fff;
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  right: -6px;
  filter: invert(1); }

.modal-body {
  padding: 45px; }

.drop-shadow {
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.12); }

strong {
  font-weight: 700; }

.link {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  transition: .4s ease;
  position: relative; }
  .link:after {
    content: '\f061';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    font-family: FontAwesome;
    font-weight: 300;
    visibility: hidden;
    opacity: 0; }
  .link:hover {
    color: var(--primary-color);
    padding-right: 20px; }
    .link:hover:after {
      visibility: visible;
      opacity: 1;
      right: 0;
      transition: .6s ease; }

input[type="submit"] {
  border-radius: 6px !important;
  padding: 16px 24px !important;
  margin-top: 10px; }

.bullet-list {
  list-style: disc;
  padding-left: 20px; }
  .bullet-list li {
    margin-bottom: 8px; }

.accordion-item {
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden !important;
  border: none; }

.accordion-item {
  padding: 12px 30px; }
  .accordion-item button {
    padding: 0;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background: #fff !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 20px;
    font-weight: 800; }

.accordion-button::after {
  content: "" !important;
  font-family: FontAwesome;
  background: none !important;
  font-size: 18px;
  width: auto;
  height: auto; }

.accordion-button.collapsed::after {
  font-family: FontAwesome;
  content: "+" !important;
  background: none !important;
  font-size: 18px;
  width: auto;
  height: auto; }

.accordion-item:first-of-type {
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important; }

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
  overflow: hidden; }

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px; }

.accordion-item:last-of-type {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px; }

.accordion-button:not(.collapsed) {
  color: var(--black-color);
  background: var(--white-color) !important; }

.accordion-body {
  background: var(--white-color) !important;
  padding: 0; }

.common-banner-section {
  height: 400px;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 1;
  background: var(--secondary-color); }
  .common-banner-section .container {
    height: 100%;
    z-index: 3;
    position: relative; }
    .common-banner-section .container .text {
      height: 100%;
      display: flex;
      justify-content: center;
      flex-direction: column; }
  .common-banner-section:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2; }

/*---------header-css---------*/
header {
  background: var(--white-color); }
  header .main-navigation ul {
    justify-content: flex-end;
    align-items: center; }
    header .main-navigation ul li a {
      color: var(--navy-black-color);
      padding: 5px 20px;
      font-size: 16px;
      font-weight: 400; }
      header .main-navigation ul li a:hover {
        color: var(--primary-color); }
    header .main-navigation ul li.current-menu-item a {
      color: var(--primary-color); }
    header .main-navigation ul li.button a {
      padding: 12px 24px;
      background: var(--secondary-color);
      color: #fff;
      border-radius: 6px; }
      header .main-navigation ul li.button a:hover {
        background: var(--primary-color); }


header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  animation: slideDownFade 0.8s ease forwards;
  z-index: 999; }
header.sticky .top-header {
  height: 0;
	padding:0!important;
  visibility: hidden; }
header.sticky .site-branding img{
	width:65%;
}
@keyframes slideDownFade {
  from {
    transform: translateY(-100%);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }
/* header.hide-header {
  transform: translateY(-100%); }

header.show-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.25); }
  header.show-header .top-header {
    display: none; } */

/*---------header-css-end--------*/
/*---------home-css---------*/
.banner-section .banner-slider .item {
  height: calc(100vh - 150px);
  position: relative;
  z-index: 1; }
  .banner-section .banner-slider .item:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2; }
  .banner-section .banner-slider .item .text {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #fff; }

.investment-section .investment-wrapper {
  margin: -10px; }
.investment-section .item {
  width: 20%;
  padding: 10px; }
  .investment-section .item .icon {
    height: 55px;
    width: 55px; }
    .investment-section .item .icon img {
      height: 100%;
      width: 100%;
      object-fit: contain;
      object-position: center; }
  .investment-section .item .action {
    opacity: 0;
    transition: .6s ease;
    display: inline-block; }
  .investment-section .item .text {
    position: relative;
    bottom: -20px;
    transition: .4s ease; }
  .investment-section .item:hover .text {
    bottom: 0; }
  .investment-section .item:hover .action {
    opacity: 1; }

.about-section {
  position: relative; }
  .about-section:before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: 0px;
    background-image: url("../images/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 180px;
    width: 260px; }
  .about-section figure {
    aspect-ratio: 2 / 1.4; }
    .about-section figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }

.portfolio-section .img-gallery{
	display:grid;
	grid-template-rows: repeat(2, 220px);
	grid-template-columns:repeat(2, 1fr);
	gap:16px;
}

.portfolio-section .img-gallery .item:nth-child(2){
	grid-row:span 2;
}
.portfolio-section .img-gallery .item{
	border-radius:10px;
	overflow:hidden;
}

.portfolio-section .img-gallery .item img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
}

.project-slider {
  margin: 0 -10px; }
  .project-slider .slick-list {
    padding-right: 530px; }
  .project-slider .item {
    padding: 0 10px; }
    .project-slider .item figure {
      aspect-ratio: 2 / 1.3; }
      .project-slider .item figure img {
        width: 100%;
        height: 100%;
        object-position: center;
        object-fit: cover; }

.project-slider .item, .testimonials-content-slider .content-item, .blog-slider .item {
  display: none;
  /* hide everything */ }

.project-slider .item:first-child, .testimonials-content-slider .content-item:first-child, .blog-slider .item:first-child {
  display: block;
  /* show only first slide */ }

/* When slick initializes, it will control display itself */
.project-slider.slick-initialized .item, .testimonials-content-slider.slick-initialized .content-item, .blog-slider.slick-initialized .item {
  display: block; }

.news-blogs-section .container-fluid {
  padding-left: 300px; }

.blog-slider {
  margin: 0 -10px; }
  .blog-slider .slick-list {
    padding-right: 230px; }
  .blog-slider .item {
    padding: 0 10px; }

.feedback-section {
  position: relative; }
  .feedback-section .float-first {
    position: absolute;
    top: 10%;
    left: 0; }
  .feedback-section .float-sec {
    position: absolute;
    bottom: 20%;
    left: 10%; }
  .feedback-section .float-third {
    position: absolute;
    top: 20%;
    right: 5%; }

.image-circle {
  position: relative; }
  .image-circle:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 45px;
    background-image: url("../images/quote.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 70px;
    width: 100px;
    z-index: 3; }
  .image-circle:before {
    content: '';
    position: absolute;
    bottom: 30px;
    left: -15px;
    background-image: url("../images/Ellipse.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 155px;
    width: 145px;
    z-index: 0; }

.image-circle figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 5px solid #e9530b;
  overflow: hidden;
  background: var(--primary-color); }

/* Inner slider moves, but circle remains fixed */
.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; }

.auth {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e6e6e6; }
  .auth h4 {
    font-size: 20px;
    color: var(--primary-color); }

/* Text section */
.slide-content h2 {
  font-size: 36px;
  margin-bottom: 20px; }

.slick-dots li button:before {
  color: #e9530b; }

.cta-section {
  position: relative;
  z-index: 1; }
  .cta-section:after {
    position: absolute;
    z-index: 2;
    content: '';
    background: rgba(24, 170, 157, 0.9);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0; }
  .cta-section .container {
    position: relative;
    z-index: 3; }

/*---------home-css-end--------*/
/*---------about-css---------*/
.mission-section .item {
  padding: 30px 36px; }
  .mission-section .item .icon {
    width: 10%;
    margin-top: 4px; }
  .mission-section .item .text-content {
    width: 90%;
    padding-left: 30px; }
.team-section figure{
	aspect-ratio: 1 / 1.3;
}
.team-section figure img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:top center;
}
.message-section .name {
  padding-top: 16px;
  font-weight: 800;
  font-size: 22px; }
.message-section .position {
  font-size: 20px; }

/*---------about-css-end--------*/
/*---------form-css--------*/
input, select, textarea {
  width: 100%;
  border-radius: 8px !important;
  border: 1px solid #E1E0E0 !important;
  padding: 12px 12px !important;
  background: #fff !important; }

textarea {
  height: 175px; }

input[type="checkbox"], input[type="radio"] {
  width: auto; }

::placeholder {
  color: #888; }

/*---------form-css-end-------*/
.flatpickr-months .flatpickr-month {
  height: 64px; }

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  top: 8px; }

/*---------project-css--------*/
.projects-items-section figure {
  aspect-ratio: 1.5 / 1; }
  .projects-items-section figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.facts {
  padding: 35px 30px; }
  .facts li {
    display: flex; }
    .facts li:not(:last-of-type) {
      margin-bottom: 20px; }
  .facts span {
    width:65%; }
    .facts span:first-of-type {
		width:35%;
      font-weight: 700;
      display: inline-block; }

.gallery-slider {
  margin-bottom: 20px; }
  .gallery-slider .item {
    height: 510px;
    border-radius: 12px;
    overflow: hidden; }
    .gallery-slider .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }

.gallery-slider-nav {
  width: 75%;
  margin: auto;
  gap: 20px; }
  .gallery-slider-nav .item {
    height: 160px;
    padding: 0 10px; }
    .gallery-slider-nav .item img {
      overflow: hidden;
      border-radius: 12px;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }

.progress-bar-wrapper .item {
  position: relative; }
  .progress-bar-wrapper .item:not(:last-of-type) {
    padding-bottom: 60px; }
    .progress-bar-wrapper .item:not(:last-of-type):after {
      content: '';
      height: 40px;
      width: 2px;
      background: #000;
      position: absolute;
      left: 35px;
      top: 80px; }
.progress-bar-wrapper .number {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--secondary-color); }
  .progress-bar-wrapper .number h4 {
    color: #fff; }
.progress-bar-wrapper .text {
  width: calc(100% - 70px);
  padding-left: 20px; }

/*---------project-css-end-------*/
/*---------blog-card-css--------*/
.blog-card {
  position: relative;
  padding-bottom: 145px; }
  .blog-card .card-date {
    color: #888888 !important; }
  .blog-card .card-image {
    aspect-ratio: 2 / 1.3;
    position: relative;
    z-index: 2;
    padding-top: 0 !important; }
    .blog-card .card-image img {
      border-radius: 12px;
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center; }
  .blog-card .card-content {
    border-radius: 12px;
    overflow: hidden;
    padding-top: 120px !important;
    position: absolute;
	  width:100%;
	  height:500px;
    top: 35%;
    z-index: 0;
    transition: .4s ease; }
  .blog-card:hover .card-content {
    box-shadow: 1px 4px 20px 0 rgba(0, 0, 0, 0.15); }
#home-page .blog-card .card-content {
  	padding-top: 75px !important;
}

/*---------blog-card-css-end-------*/
/*---------blog-details-css-end-------*/
.blog-details-page .blog-details .col-md-8 .section-title {
  padding-bottom: 20px; }
.blog-details-page .blog-details .col-md-8 .img-container figure {
  aspect-ratio: 2/1.1;
  border-radius: 15px;
  overflow: hidden; }
  .blog-details-page .blog-details .col-md-8 .img-container figure ├¡mg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
.blog-details-page .blog-details .col-md-8 .details a {
  color: var(--secondary-color); }
.blog-details-page .blog-details .col-md-8 .details h2, .blog-details-page .blog-details .col-md-8 .details h3, .blog-details-page .blog-details .col-md-8 .details h4, .blog-details-page .blog-details .col-md-8 .details h5, .blog-details-page .blog-details .col-md-8 .details h6 {
  margin-bottom: 20px;
  margin-top: 40px; }
.blog-details-page .blog-details .col-md-8 .details h2 {
  font-size: 28px; }
.blog-details-page .blog-details .col-md-8 .details h3 {
  font-size: 22px; }
.blog-details-page .blog-details .col-md-8 .details h4 {
  font-size: 18px; }
.blog-details-page .blog-details .col-md-8 .details ul {
  list-style: disc;
  padding-left: 20px;
  padding-bottom: 20px; }
  .blog-details-page .blog-details .col-md-8 .details ul li {
    margin-bottom: 8px; }
.blog-details-page .blog-details .col-md-8 .details ol {
  list-style: decimal;
  padding-left: 20px;
  padding-bottom: 20px; }
  .blog-details-page .blog-details .col-md-8 .details ol li {
    margin-bottom: 8px; }
.blog-details-page .blog-details .col-md-8 .share .heateor_sss_sharing_ul a {
  margin-right: 10px;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #EDEDED !important;
  transition: .6s ease; }
  .blog-details-page .blog-details .col-md-8 .share .heateor_sss_sharing_ul a:hover {
    background: var(--primary-color) !important; }
    .blog-details-page .blog-details .col-md-8 .share .heateor_sss_sharing_ul a:hover:after {
      color: #fff; }
  .blog-details-page .blog-details .col-md-8 .share .heateor_sss_sharing_ul a span {
    visibility: hidden; }
  .blog-details-page .blog-details .col-md-8 .share .heateor_sss_sharing_ul a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: FontAwesome;
    font-size: 20px;
    color: #515151; }
  .blog-details-page .blog-details .col-md-8 .share .heateor_sss_sharing_ul a:first-of-type:after {
    content: ""; }
  .blog-details-page .blog-details .col-md-8 .share .heateor_sss_sharing_ul a:nth-child(2):after {
    content: '\f0e1'; }
  .blog-details-page .blog-details .col-md-8 .share .heateor_sss_sharing_ul a:nth-child(3):after {
    content: '\f232'; }
.blog-details-page .recent-post-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: #F3F7FD;
  padding: 34px 30px; }
  .blog-details-page .recent-post-wrapper .section-title h3 {
    font-size: 28px;
    font-weight: 600; }
  .blog-details-page .recent-post-wrapper .item .img-container figure {
    height: 80px;
    width: 80px;
    border-radius: 5px;
    overflow: hidden; }
    .blog-details-page .recent-post-wrapper .item .img-container figure img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center; }
  .blog-details-page .recent-post-wrapper .item .content {
    padding-left: 16px; }
    .blog-details-page .recent-post-wrapper .item .content .date {
      color: var(--primary-color); }
    .blog-details-page .recent-post-wrapper .item .content .title {
      transition: .4s ease; }
      .blog-details-page .recent-post-wrapper .item .content .title p {
        font-size: 17px;
        margin-bottom: 0;
        font-weight: 600; }
  .blog-details-page .recent-post-wrapper .item:hover .title {
    color: var(--primary-color); }
  .blog-details-page .recent-post-wrapper .item:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #CACACA; }
.blog-details-page .form-wrapper {
  border-radius: 12px;
  overflow: hidden;
  background: #F3F7FD;
  padding: 34px 30px;
  margin-top: 24px;
  position: sticky;
  top: 120px; }
  .blog-details-page .form-wrapper .col-md-6 {
    width: 100%; }
  .blog-details-page .form-wrapper textarea {
    height: 100px; }

/*---------blog-details-css-------*/
/*---------contact-css--------*/
.contact-form-wrapper {
  padding: 62px 70px; }

.contact-details .details {
  padding: 36px 40px; }
.contact-details a {
  color: var(--text-black-color); }
.contact-details .icon i {
  color: var(--primary-color);
  font-size: 20px; }
.contact-details .icon svg, .contact-details .icon path {
  color: var(--primary-color);
  height: 20px; }
.contact-details li {
  margin-bottom: 24px; }
  .contact-details li a {
    transition: .4s ease; }
    .contact-details li a:hover {
      color: var(--navy-black-color); }

/*---------contact-css-end-------*/
/*---------gallery-css-------*/
.gallery-section .item .img-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 210px; }
  .gallery-section .item .img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center; }
  .gallery-section .item .img-container .image-count-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease; }
    .gallery-section .item .img-container .image-count-badge h4 {
      color: #fff; }
  .gallery-section .item .img-container:after {
    content: '';
    position: absolute;
    background: rgba(202, 33, 40, 0.75);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    /* Ô¡É START FROM CENTER */
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 2; }
.gallery-section .item:hover .img-container .image-count-badge {
  visibility: visible;
  opacity: 1; }
.gallery-section .item:hover .img-container:after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  /* Ô¡É EXPAND FROM CENTER */ }

/*---------gallery-css-end-------*/
/*---------gallery-css-------*/
.gallery-details-section figure a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 210px;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden; }
  .gallery-details-section figure a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center; }
  .gallery-details-section figure a:before {
    content: '\2b';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease;
    font-family: FontAwesome;
    font-weight: 600;
    font-size: 20px;
    color: #fff; }
  .gallery-details-section figure a:after {
    content: '';
    position: absolute;
    background: rgba(202, 33, 40, 0.75);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    /* Ô¡É START FROM CENTER */
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 2; }
  .gallery-details-section figure a:hover:before {
    visibility: visible;
    opacity: 1; }
  .gallery-details-section figure a:hover:after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    /* Ô¡É EXPAND FROM CENTER */ }

/*---------gallery-css-end-------*/
/*---------Faq-css-------*/
.accordion-button, .accordion-body {
  background: #fff !important; }

/*---------Faq-css-end-------*/
/*---------News-details-css-------*/
.news-details .img-container figure {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2 / 1.1; }
  .news-details .img-container figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
.news-details .details h2, .news-details .details h3, .news-details .details h4, .news-details .details h5, .news-details .details h6 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700; }
.news-details .details img {
  border-radius: 12px;
  overflow: hidden; }
.news-details .details ul {
  list-style: disc;
  padding-left: 20px;
  padding-bottom: 20px; }
  .news-details .details ul li {
    margin-bottom: 8px; }
.news-details .details ol {
  list-style: decimal;
  padding-left: 20px;
  padding-bottom: 20px; }
  .news-details .details ol li {
    margin-bottom: 8px; }
.news-details .share .heateor_sss_sharing_ul a {
  margin-right: 10px;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #EDEDED !important;
  transition: .6s ease; }
  .news-details .share .heateor_sss_sharing_ul a:hover {
    background: var(--primary-color) !important; }
    .news-details .share .heateor_sss_sharing_ul a:hover:after {
      color: #fff; }
  .news-details .share .heateor_sss_sharing_ul a span {
    visibility: hidden; }
  .news-details .share .heateor_sss_sharing_ul a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: FontAwesome;
    font-size: 20px;
    color: #515151; }
  .news-details .share .heateor_sss_sharing_ul a:first-of-type:after {
    content: ""; }
  .news-details .share .heateor_sss_sharing_ul a:nth-child(2):after {
    content: '\f0e1'; }
  .news-details .share .heateor_sss_sharing_ul a:nth-child(3):after {
    content: '\f232'; }
.news-details .recent-post-wrapper .item figure {
  height: 90px;
  width: 110px;
  border-radius: 5px; }
  .news-details .recent-post-wrapper .item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
.news-details .recent-post-wrapper .item .content {
  padding-left: 16px; }
  .news-details .recent-post-wrapper .item .content .title p {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px; }

/*---------News-details-css-end------*/
/*---------Investment-detail-css-------*/
.investment-details-page .navs ul li {
  position: relative;
  transition: .4s ease;
  overflow: hidden; }
  .investment-details-page .navs ul li:not(:last-of-type) {
    margin-bottom: 20px; }
  .investment-details-page .navs ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 16px 24px; }
  .investment-details-page .navs ul li:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    height: 35px;
    width: 35px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 7 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.33398 3.00029L0.49998 3.00029M6.33398 3.00029L3.8337 5.50057M6.33398 3.00029L3.8337 0.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: .4s ease; }
  .investment-details-page .navs ul li.active {
    background: var(--primary-color) !important; }
    .investment-details-page .navs ul li.active a {
      color: #fff; }
    .investment-details-page .navs ul li.active:after {
      background-color: #fff;
      /* circle becomes white */
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 7 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.33398 3.00029L0.49998 3.00029M6.33398 3.00029L3.8337 5.50057M6.33398 3.00029L3.8337 0.5' stroke='rgba(202, 33, 40, 1)' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/*---------Investment-detail-css-end------*/
/*---------Investment-card-css-------*/
.investment-card .card-image {
  aspect-ratio: 1 / 1.24; }
  .investment-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

/*---------Investment-card-css-end------*/
/*---------News-card-css-------*/
.news-card .card-date {
  color: #888888; }

.news-card .card-image {
  border-radius: 15px;
  overflow: hidden;
  transition: .6s ease; }

.news-card .card-image .card-title {
  color: #000;
  transition: .6s ease; }

.news-card .card-image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center; }

.news-card:hover .card-image {
  box-shadow: 0px 4px 20px 3px rgba(0, 0, 0, 0.1); }

.news-card:hover .card-title {
  color: var(--primary-color); }

/*---------News-card-css-end-------*/
/*---------Footer-css--------*/
#footer-wrapper .top-footer {
  padding: 80px 0 40px; }
  #footer-wrapper .top-footer h5, #footer-wrapper .top-footer a {
    color: #fff; }
  #footer-wrapper .top-footer svg {
    margin-bottom: 16px; }
    #footer-wrapper .top-footer svg path {
      fill: #fff; }
  #footer-wrapper .top-footer a {
    display: inline-block;
    margin-bottom: 16px;
    transition: .6s ease; }
    #footer-wrapper .top-footer a:hover {
      color: var(--secondary-color); }
  #footer-wrapper .top-footer .menu li a {
    transition: .6s ease; }
    #footer-wrapper .top-footer .menu li a:hover {
      color: var(--secondary-color);
      text-indent: 10px; }
  #footer-wrapper .top-footer .social-footer-icons ul {
    height: 22px; }
  #footer-wrapper .top-footer .social-footer-icons a {
    margin-bottom: 0; }
    #footer-wrapper .top-footer .social-footer-icons a svg {
      transition: .4s ease; }
      #footer-wrapper .top-footer .social-footer-icons a svg path {
        transition: .4s ease; }
    #footer-wrapper .top-footer .social-footer-icons a:hover svg {
      transform: scale(1.1); }
      #footer-wrapper .top-footer .social-footer-icons a:hover svg path {
        fill: var(--secondary-color); }
#footer-wrapper .bottom-footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255, 250, 250, 0.2); }
  #footer-wrapper .bottom-footer p, #footer-wrapper .bottom-footer a {
    color: #fff; }
#footer-wrapper .top-footer, #footer-wrapper .bottom-footer {
  position: relative;
  z-index: 3; }

/*---------Footer-css-ends--------*/

/*# sourceMappingURL=styles.css.map */
