/* variable */
:root {
  --main-color: #033e8c;
    --white: #fff;
    --dark-black: #000;
    --primary-black: #171717;
    --secondary-color: #ffc738;
    --light-black: #171717;
}

* {
    margin: 0;
    padding: 0;
}

/* css reset  */
body {
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Serif", serif;
    letter-spacing: 0.01em;
}

p,
a,
span,
table,
th,
tr,
td,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    font-family: "Petrona", serif;
}

p,
li {
    font-family: "Petrona", serif;
}

a[href^="tel"] {
    text-decoration: none;
    color: inherit;
}

a[href^="mailto"] {
    text-decoration: none;
    color: inherit;
}
 .logo img {
        width:160px;
        height:auto;
        
    }


a {
    text-decoration: none;
    color: var(--main-color);
}

/* custom space */
.container-padding {
    padding: 0 60px;
}

.container-pr {
    padding-right: 60px;
}

.container-pl {
    padding-left: 60px;
}

/* to top  */
/*===== Go To Top Section =====*/
#back-top {
    display: block;
    position: fixed;
    bottom: 140px;
    right: 10px;
    bottom: 10px;
    text-align: center;
    z-index: 99999;
}

#back-top a {
    display: block;
    text-decoration: none;
}

#back-top a .fal {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    border-radius: 50%;
    opacity: 1;
    color: #fff;
    background: var(--main-color);
    outline: var(--main-color) solid 2px;
    outline-offset: 2px;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

#back-top a .fal:hover {
    background: transparent;
    color: var(--purple);
}

/* Wrapper */
.wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* PADDING RESET } */
.pa-lf-0 {
    padding-left: 0;
}


/* custom scroll bar */

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 3px;
}

/* main css  */
/* .more-btn {
  text-decoration: none;
  display: inline-block;
  border: none;
  padding: 16px 40px;
  border-radius: 5px;
  background-color: var(--secondary-color);
  color: var(--secondary-black);
  font-size: 20px;
  transform: scale(0.95);
} */
.mobile-more {
    display: none;
    text-decoration: underline;
    font-size: 16px;
    color: var(--main-color);
}

.more-btn {
    cursor: pointer;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 10px;
    color: #e74c3c;
    display: inline-block;
    font-size: 20px;
    padding: 10px 30px;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-black);
    transition: all 150ms ease-in-out;
    position: relative;
    z-index: 11;
    overflow: hidden;
    transition: all ease .3s;
}

.more-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--secondary-color);
    /*border-radius: 10px;*/
    z-index: -1;
    transition: all ease .3s;
}

.more-btn:hover::after {
    left: -100%;
    /*color:var(--secondary-color);*/
}

.more-btn:hover {
    color: #fff;
}

.more-btn.btn-blue {
    border-color: var(--main-color);
    color: #fff;
}

.more-btn.btn-blue:hover {
    color: var(--main-color);
}

.more-btn.btn-blue::after {
    background: var(--main-color);
}

/*.more-btn:hover,*/
/*.more-btn:focus {*/
/*  color: #fff;*/
/*  outline: 0;*/
/*}*/

/*.more-btn:hover {*/
/*  box-shadow: 0 0 10px 0 var(--secondary-color) inset,*/
/*    0 0 10px 4px var(--secondary-color);*/
/*  color: var(--main-color);*/
/*}*/
.project-detail-info .more-btn:hover {
    color: var(--secondary-color);
}

.csr-wrap .more-btn:hover {
    color: var(--main-color);
}

.about-detail .more-btn {
    margin-top: 30px;
}

.entrepreneur-title .more-btn:hover,
.ready-detail .more-btn:hover,
.contact-left-block .more-btn:hover {
    color: #fff;
}

.blue-btn {

    /*box-shadow: 0 0 40px 40px var(--main-color) inset,*/
    /*  0 0 0 0 var(--main-color);*/
    border-color: var(--main-color);
    color: var(--white);
}

.more-btn.blue-btn::after {
    background: var(--main-color);
}

.ready-detail .blue-btn:hover {
    color: var(--main-color);
}

/* main heading  */
.main-heading h2 .sub-title {
    color: var(--primary-black);
    font-size: 40px;
    display: block;
    font-weight: 400;
}

.main-heading h2 {
    font-size: 63px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.3;
    color: var(--main-color);
}

.introduce-detail .main-heading h2 {
    font-size: 52px;
}

/* .sub-page-main-title */

/* mobile toogle bar  */
/* .toggle-menu,
.mobile-view-banner {
  display: none;
} */
.toggle-menu,
.show-mobile {
    display: none;
}

/* .navbar-wrapper {
  display: none;
} */
.toggle-menu {
    position: relative;
    height: 35px;
    width: 35px;
}

.burger-navbar-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.burger-navbar-toggle span {
    transition: all 1s ease;
    display: block;
    height: 2px;
    background: #fff;
    width: 25px;
    position: absolute;
}

.burger-navbar-toggle span:nth-child(1) {
    top: 0;
    width: 10px;
    right: -18px;
}

.burger-navbar-toggle span:nth-child(2) {
    bottom: -8px;
    width: 18px;
    /* background: blue; */
}

.burger-navbar-toggle span:nth-child(3) {
    bottom: -14px;
    /* background: green; */
    right: -18px;
}

.burger-navbar-toggle.active {
    height: 25px;
}

.burger-navbar-toggle.active span:nth-child(1) {
    transition: all 1s ease;
    width: 30px;
    transform: rotate(45deg);
    top: 10px;
    width: 25px;
    background: var(--main-color);
}

.burger-navbar-toggle.active span:nth-child(2) {
    /* transition: all 1s ease;
  transform: rotate(-45deg);
  top: 10px;
  width: 25px; */
    display: none;
}

.burger-navbar-toggle.active span:nth-child(3) {
    transition: all 1s ease;
    transform: rotate(-45deg);
    top: 10px;
    width: 25px;
    background: var(--main-color);
}

.mobile-menu-logo {
    display: none;
}

/* .burger-navbar-toggle {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  height: 15px;
  position: relative;
  width: 30px;
} */

/* header  */
header {
    padding: 0 40px;
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #f0f0f0;
}

.header nav {
    height: 80px;
    line-height: 70px;
}

nav ul {
    display: flex;
}

ul li {
    list-style: none;
}

.nav-item a {
    color: var(--primary-black);
    padding: 10px 0;
    margin-right: 35px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Petrona", serif;
    display: inline-block;
    position: relative;
    transition: all ease 0.3s;
}

.nav-item a:hover {
    color: var(--main-color);
}

.nav-sub {
    position: absolute;
    display: none;
    flex-direction: column;
    left: 0;
    top: 85px;
    right: 0;
    z-index: 15;
    /* height: calc(100vh - 80px);
  background: #000000aa; */
}

.nav-item:hover .nav-sub {
    animation: hoverAnimation ease 0.4s;
    display: block;
}

.nav-sub-contain-wrapper {
    background: #fff;
    padding-top: 40px;
    /* margin-top: -25px; */
}

.nav-sub-card {
    padding: 10px;
    cursor: pointer;
    display: block;
}

.nav-sub-card:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.nav-sub-card .nav-sub-title {
    font-weight: 700;
    font-family: "Petrona", serif;
    font-size: 20px;
    color: var(--primary-black);
}

.nav-sub-card:hover .nav-sub-title {
    color: var(--main-color);
}

.nav-blank-space {
    height: 100%;
}

.nav-sub-image img {
    width: 100%;
    filter: grayscale(1);
}

.nav-sub-image img {
    transition: all ease 0.3s;
}

.nav-sub-card:hover img {
    filter: grayscale(0);
}

@keyframes hoverAnimation {
    from {
        top: 120px;
        /* opacity: 1; */
    }

    to {
        top: 85px;
        /* opacity: 1; */
    }
}

.nav-item.active a {
    font-weight: 700;
    /* top: -15px; */
    color: var(--main-color);
}

.nav-item.active a::after,
.nav-item a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 25px;
    left: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--secondary-color);
}

.nav-item a:hover::after {
    width: 100%;
    transition: all ease 0.3s;
}

.nav-item a::after {
    width: 0;
}

.nav-item a i {
    margin-left: 15px;
}

/* BANNER  */
.banner {
    /* background: url(../images/banner1.png); */

    position: relative;
    margin-top: 70px;
    /* z-index: -1; */
}

.banner .banner-main-img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.banner video {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.banner .pulsing img {
    position: absolute;
    top: 50%;
    right: 7%;
    transform: translateY(-50%);
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
}

.accordion-item {
    border: none;
    margin-bottom: 30px;
}

.accordion-button:not(.collapsed)::after {
    background: url(../images/dash-lg.svg);
}

.accordion-button::after {
    background: url(../images/plus-lg.svg);
    /* fill: red; */
    font-size: 20px;
    height: 1rem;
    width: 1rem;
    /* background-color: red;
  -webkit-mask-image: url(../images/plus-lg.svg);
  mask-image: url(../images/plus-lg.svg); */
}

/* .icon {
    background-color: red;
    -webkit-mask-image: url(icon.svg);
    mask-image: url(icon.svg);
} */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: transparent;
    color: var(--main-color);
    border-color: blue;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
}

.nav-link {
    color: var(--light-black);
}

.nav-pills .nav-link {
    text-align: left;
    border-bottom: 1px solid var(--primary-black);
    border-radius: 0;
    font-size: 32px;
    font-style: italic;
    margin-bottom: 40px;
}

.tab-img-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}

.tab-img {
    position: relative;
    transition: all ease 0.3s;
    overflow: hidden;
}

.tab-img-detail {
    position: absolute;
    bottom: -65px;
    left: 25px;
    color: var(--white);
    transition: all ease-in-out 0.3s;
}

.tab-img-detail h3 {
    font-size: 24px;
    font-weight: 800;
}

.tab-img-detail p {
    font-size: 16px;
    font-weight: 800;
}

.tab-img:hover img {
    filter: brightness(0.7);
    animation: animation 0.5s ease-in-out;
}

@keyframes animation {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1.1);
    }
}

.tab-img:hover .tab-img-detail {
    bottom: -15px;
}

.csr {
    position: relative;
    height: 500px;
    background: var(--secondary-color);
    clip-path: polygon(50% 0%, 100% 38%, 100% 100%, 0 100%, 0 44%);
}

/* about us  */
.about {
    padding: 70px 0;
    background: #fff;
    position: relative;
    z-index: 11;
}

.about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about-detail p {
    font-size: 16px;
    line-height: 34px;
}

.portfolio {
    background: #f0f0f0;
    padding: 50px 40px;
}

.portfolio .portfolio-title {
    text-align: center;
    font-style: italic;
    font-weight: 700;
    font-size: 40px;
    color: var(--main-color);
    margin-bottom: 50px;
}

.portfolio-logo {
    align-items: center;
    display: flex;
    justify-content: space-around;
}

#banner-video {
    border-radius: 10px;
}

.portfolio-logo img {
    transition: all ease 0.3s;
    cursor: pointer;
    transform: scale(0.9);
    height: 100px;
    width: 100%;
    object-fit: contain;
}

.portfolio-logo img:hover {
    filter: grayscale(0.8);
    transform: scale(1);
}

/* timne  */
.time {
    padding: 90px 0;
}

.time .main-heading {
    margin: 60px 0 120px;
}

hr.underline {
    background-color: #171717;
    width: 80%;
    margin: 50px 0 45px;
    height: 2px;
}

hr.time-underline,
hr.introduce-underline {
    margin: 30px 0 30px;
    width: 87%;
}

.time .time-detail {
    font-size: 16px;
    padding-right: 40px;
}

.time-img {
    height: 700px;
    width: 665px;
    object-fit: cover;
    overflow: hidden;
}

.time-img img {
    width: 100%;
    height: 700px;
    margin-left: 30px;
    transform: scale(1.2);
    transition: all ease 0.4s;
    object-fit: cover;
}

.time-img img:hover {
    margin-left: 0;
}

.time-growth ul li {
    font-weight: 600;
    font-size: 23px;
    color: var(--main-color);
}

.time-growth ul li h2 {
    display: block;
    font-size: 70px;
    font-weight: 700;
    font-family: "Petrona", serif;
    /* text-shadow: -3px -3px 0px blue; */
}

.time-growth ul li span .count {
    display: inline-block;
}

.time-logo img {
    position: relative;
    right: -47.5%;
    height: 700px;
}

.time-growth {
    margin: 100px 0 0 100px;
}

.time-growth ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    grid-gap: 50px;
}

/* CEO  */
.ceo .main-heading {
    margin-top: 100px;
}

.ceo .main-heading h2 .sub-title {
    font-size: 24px;
    margin-top: 5px;
}

hr.ceo-underline {
    width: 90%;
    margin: 25px 0 30px;
}

.ceo-detail p {
    font-size: 14px;
    line-height: 34px;
    color: var(--primary-black);
    margin-bottom: 25px;
}

.ceo-img img {
    width: 100%;
    position: relative;
    right: -100px;
}

/* entrepreneur */
.entrepreneur {
    background: var(--main-color);
    padding: 70px 100px;
    margin-top: 50px;
}

.entrepreneur-title h2 {
    font-size: 60px;
    font-weight: 700;
    font-style: italic;
    color:#ffffff;
}

.entrepreneur-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* investment */
.investment {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.investment::after {
    content: "";
    position: absolute;
    top: -250px;
    left: -100px;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    background: #f0f0f0;
    z-index: -1;
}

.investment .main-heading h2 {
    font-size: 48px;
    /* margin-bottom: 30px; */
}

.investment-img {
    position: relative;
    /* overflow: hidden; */
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    transition: all 0.3s linear;
    transform: translateY(0) scale(1, 1);
    -webkit-transform: translateY(0) scale(1, 1);
}

.investment-img img {
    width: 370px;
    height: 220px;
    margin-bottom: -1px;
    transition: all 0.3s ease-in;
    object-fit: cover;
}

.investment-img:hover img {
    filter: grayscale(0.9);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px) scale(1.02, 1.02);
    -webkit-transform: translateY(-20px) scale(1.02, 1.02);
}

.investment-detail {
    width: 55%;
    align-self: center;
}

.investment-detail h3 .project-no {
    font-size: 16px;
    position: relative;
    display: inline-block;
    margin-left: 65px;
    align-self: center;
}

.investment-detail h3 .project-no::after {
    content: "";
    position: absolute;
    top: 20%;
    left: -35px;
    /* transform: translateY(-50%); */
    height: 7px;
    width: 7px;
    background: var(--primary-black);
    border-radius: 50%;
}

.investment-detail a {
    color: var(--primary-black);
}

.investment-detail h3 {
    font-size: 36px;
    margin-bottom: 55px;
    display: flex;
}

.investment-wrap {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #c9c9c9;
    margin-bottom: 70px;
}

/* .investment-wrap:last-child {
  margin: 0;
} */

/* fund  */
.funds {
    background: var(--primary-black);
    padding: 100px 0;
}

.funds .fund-title {
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    color: var(--main-color);
    margin-top: 30px;
}

.funds .fund-padding {
    padding-left: 100px;
}

.funds .fund-title span {
    display: block;
    font-size: 110px;
    line-height: 1.1;
    color: var(--white);
    margin-top: 10px;
}

.funds div.font-detail {
    color: var(--white);
    line-height: 34px;
    font-size: 14.5px;
    margin-top: 15px;
}

/*.funds .fund-img img {*/
/*  position: relative;*/
/*  width: 90%;*/
/*  right: -60px;*/
/*}*/

.svg-background .svg-top-img {
    height: 100%;
}

.svg-background {
    position: relative;
    left: 60px;
}

/* ready  */
.ready {
    background: url(../images/ready.png) fixed;
    padding: 100px 0 80px;
    background-size: cover;
    text-align: center;
}

.ready-detail h3 {
    font-size: 72px;
    font-weight: 500;
    color: var(--white);
}

.ready-detail p {
    font-size: 18px;
    line-height: 34px;
    color: var(--white);
    width: 70%;
    margin: 35px auto;
}

/* footer  */
.footer {
    padding: 100px 0 50px;
    background: var(--primary-black);
    color: var(--white);
}

.fotter-logo img {
    width: 80%;
    margin-bottom: 40px;
}

.contact-detail-wrap ul {
    list-style: none;
    /* display: flex; */
    flex-wrap: wrap;
}

.contact-detail-wrap ul li {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
}

.contact-detail-wrap ul li:nth-child(2) {
    /* flex: 100%; */
    margin: 35px 0;
}

.contact-detail-wrap .contact-icon {
    margin-right: 25px;
}

.contact-detail-wrap ul li .contact-detail h5 {
    font-size: 16px;
    font-weight: 500;
}

.contact-detail-wrap ul li .contact-detail p,
.contact-detail-wrap ul li .contact-detail a {
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

/* .contact-detail-wrap ul li .contact-detail a {
    margin-top: 10px;
  } */
.newsletter-suscribe {
    /* margin: 50px 0 0 40px; */
    position: relative;
}

/* .newsletter-suscribe::after {
  content: "";
  position: absolute;
  border-left: 1px solid #454545;
  height: 507px;
  width: 1px;
  top: -150px;
  left: -45px;
} */
.newsletter-suscribe h5 {
    font-size: 30px;
    font-weight: 600;
}

.newsletter-suscribe p {
    font-size: 15px;
    font-weight: 500;
    margin: 15px 0;
}

.newsletter-input {
    position: relative;
}

.newsletter-input input {
    background: #414141;
    border: none;
    border-radius: 10px;
    padding: 12px 115px 12px 65px;
    color: #fff;
}

.newsletter-input input::placeholder {
    color: #fff;
    font-size: 16px;
    opacity: .5;
}

.newsletter-input .fal {
    position: absolute;
    top: 30%;
    /* transform: translateY(-50%); */
    left: 18px;
    font-size: 18px;
}

.newsletter-input .newsletter-submit {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: #fff;
    border-radius: 5px;
    color: var(--main-color);
    padding: 5px 20px;
    transition: all ease .3s;
}

.newsletter-input .newsletter-submit:hover {
    transform: scale(1.1);
}

.copyright {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    /* padding-top: 50px; */
    /* border-top: 1px solid #454545; */
}

.social-media-icon {
    margin-top: 100px;
    display: inline-block;
    text-align: center;
}

.social-media-icon p {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.copyright-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media-icon ul li {
    list-style: none;
    margin-right: 10px;
    display: inline-block;
}

.social-media-icon ul li a {
    text-decoration: none;
}

.social-media-icon ul li a img {
    width: auto;
    height:30px;
    transform: scale(0.9);
    transition: all ease .3s;
}

.social-media-icon ul li a img:hover {
    transform: scale(1);
}

.social-media-icon ul li a:hover {
    color: var(--secondary-color);
}

.social-media-icon ul li:last-child {
    margin: 0;
}

.copyright .copyright-text p {
    font-size: 16px;
    font-weight: 600;
}

/* slider css */
#fund-slider.slick-dotted.slick-slider {
    margin: 0;
}

#fund-slider .slick-dots li {
    height: 12px;
    width: 12px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--white);
    display: block;
    margin: 0 auto 15px 0;
    list-style: none;
}

#fund-slider .slick-dots li:last-child {
    margin-bottom: 0;
}

#fund-slider .slick-dots li.slick-active {
    /* height: 15px;
  width: 15px;
  right: 4px; */
    background: var(--white);
}

#fund-slider .slick-dots {
    top: 50%;
    /* transform: translateY(-50%); */
    bottom: -20%;
    left: 4%;
    width: initial;
}

#fund-slider .slick-dots li button:before {
    display: none;
}

/* ABOUT PAGE */
.introduce-logo{
    width: 30%;
    margin-top: 210px;
    margin-bottom:-225px;
}
.let-introduce {
    display:flex;
    padding: 100px  70px;
    position: relative;
}
.introduce-detail{
    width:70%;
}

.introduce-detail p {
    line-height: 34px;
    font-size: 15px;
}

.let-introduce .introduce-logo img {
    position: relative;
    /*width: 80%;*/
    /*top: -90px;*/
    /*right: -740px;*/
    /*pointer-events: none;*/
}

.synigma-vision {
    padding-block: 0 70px;
    /*margin-top: -60px;*/
}

.synigma-vision .synigma-detail-info h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 30px;
}

.synigma-vision .synigma-detail-info p {
    font-size: 16px;
    line-height: 36px;
}

.synigma-vision .synigma-detail-info:nth-child(2) {
    margin: 150px 0 150px;
}

.synigma-vision .more-btn {
    margin-top: 35px;
}

.yellow-color {
    background: url(../images/empower.png),
        linear-gradient(to right, var(--tertiary-color), var(--tertiary-color));
}

.yellow-color .ready-detail h3 {
    font-size: 48px;
    color: #ffffff;
}

.yellow-color .ready-detail p {
    color: #ffffff;
    margin-bottom: 35px;
}

.yellow-color .ready-detail .empowering-list ul {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    flex-wrap: wrap;
}

.yellow-color .ready-detail .empowering-list ul li {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.yellow-color .ready-detail .empowering-list ul li span {
    display: inline-block;
    margin-right: 30px;
}

/* OUT TEAM PAGE */
.outteam-banner {
    padding: 150px 0;
    background: var(--main-color);
}

.outteam-banner h2 {
    text-align: right;
    font-size: 80px;
    font-weight: 700;
    font-style: italic;
    color: var(--secondary-color);
    text-transform: capitalize;
}

.our-team-detail-wrap {
    display: grid;
    grid-template-columns: 600px 1fr;
}

.ourteam-detail-img {
    position: relative;
}

.ourteam-detail-img .team-main-img {
    transform: rotate(-20deg);
    margin-left: 20px;
    width: 400px;
}

.ourteam-detail-img .team-logo {
    position: absolute;
    left: 345px;
    top: 80px;
}

.ourteam-detail-img .team-arrow {
    left: 480px;
    position: absolute;
    top: 240px;
}

.ourteam-detail-info h4 {
    font-size: 250px;
    font-weight: 700;
    line-height: 250px;
    color: #f0f0f0;
}

.ourteam-detail-info p {
    font-size: 14px;
    line-height: 32px;
    margin: 20px 0 100px;
    padding-right: 20px;
}

.ourteam-list {
    display: grid;
    grid-template-columns: 300px auto;
}

.ourteam-list .ourteam-nav-list .nav-link {
    color: var(--primary-black);
    padding: 0;
    margin-bottom: 30px;
    width: 80%;
    font-size: 30px;
    font-style: italic;
    border-color: var(--primary-black);
}

.ourteam-list .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--main-color);
    border-color: var(--main-color);
    font-weight: 700;
}

.tab-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.tab-info-img-wrapper p {
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 40px;
}

.our-team-page .ready {
    margin-top: 30px;
}

/* OUR TEAM DETAIL  */
.content-banner {
    padding: 15px 70px 13px;
    background: var(--primary-black);
    color: var(--white);
}

.content-banner-tabs {
    display: flex;
    align-items: center;
}

.content-banner-tabs .fal {
    font-size: 18px;
    margin: 0 15px;
}

.content-banner-tabs h3.content-banner-title {
    font-size: 16px;
    text-decoration: underline;
    font-weight: 500;
}

.content-banner-tabs h3.content-banner-title a {
    color: var(--white);
}

.content-banner-tabs h3.content-banner-title:hover {
    color: var(--main-color);
}

.content-banner-tabs p {
    font-size: 16px;
    font-weight: 500;
}

.team-detail-page .outteam-banner {
    padding: 60px 0 50px;
}

.team-detail-page .outteam-banner h5 {
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
    text-align: right;
    color: var(--secondary-color);
    margin: 20px 0 50px;
    position: relative;
}

.team-detail-page .outteam-banner h5:after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 0;
    height: 1px;
    width: 400px;
    background-color: #d6d6d66e;
}

.outteam-banner ul {
    text-align: right;
}

.outteam-banner ul li {
    list-style: none;
    display: inline-block;
}

.outteam-banner ul li:nth-child(2) {
    margin: 0 20px;
}

.team-img-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 100px;
    padding-bottom: 150px;
}

.team-img-detail img {
    width: 100%;
    margin-top: -120px;
}

.team-img-detail p {
    margin-top: 75px;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    color: var(--main-color);
}

.teamdetail-brief-wrap {
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-gap: 100px;
}

.teamdetail-brief-wrap .teamdetail-brief-img img {
    width: 100%;
}

.teamdetail-brief-wrap .teamdetail-brief-detail {
    margin-top: 65px;
}

.teamdetail-brief-wrap .teamdetail-brief-detail h5 {
    font-size: 32px;
    font-weight: 600;
    color: var(--main-color);
}

.teamdetail-brief-wrap .teamdetail-brief-detail p {
    font-size: 14px;
    line-height: 28px;
    margin-top: 20px;
}

.awards-recognition-wrap {
    display: flex;
    justify-content: center;
}

.awards-recognition {
    padding: 200px 0 100px;
    text-align: center;
}

.awards-recognition h2 {
    color: var(--main-color);
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.awards-list {
    padding: 15px;
    border-radius: 15px;
    background: #d4e7ff;
    display: inline-block;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.awards-list:first-child {
    margin-right: 35px;
}

.awards-list .awards-icon {
    height: 100px;
    width: 100px;
    display: inline-block;
    background: var(--main-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-right: 20px;
}

.awards-list .awards-detail {
    text-align: left;
}

.awards-list .awards-detail h5 {
    font-size: 26px;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.awards-list .awards-detail h6 {
    color: var(--dark-black);
    font-size: 20px;
}

/* EVENT PAGE  */
.event-page .time {
    padding: 0;
}

.time-logo {
    position: relative;
    overflow: hidden;
}

.event-page .time-logo img {
    top: -15px;
    /* z-index: -1; */
    right: -48%;
}

.event-page p.time-detail {
    position: relative;
}

/*.event-page p.time-detail::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 100px;*/
/*  left: 0;*/
/*  height: 185px;*/
/*  width: 142px;*/
/*  background: url(../images/d-arrow.png) no-repeat;*/
/*}*/
.event-page .time .main-heading {
    margin: 70px 0 220px;
}

.ourteam-detail-info .search-event {
    margin: 0;
}

.search-event {
    margin: -140px 0 80px;
    width: 70%;
}

.search-event-wrap .search-input {
    position: relative;
}

.search-event-wrap .search-input .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    font-size: 14px;
}

.search-event-wrap .search-input input {
    background: #f0f0f0;
    padding: 10px 0 10px 45px;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    width: 450px;
    border: 1px solid #bfbfbf;
    height: 100%;
}

.sort-date label {
    color: var(--main-color);
    font-size: 16px;
}

.search-event-wrap .sort-date select {
    border-radius: 5px 0 0 5px;
}

.search-content input {
    height: 45px;
    line-height: 45px;
}

.search-event-wrap .filter-submit-btn {
    border-radius: 0 5px 5px 0;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
}

.sort-date select {
    background: #f0f0f0;
    padding: 0 10px;
    border: 1px solid #bfbfbf;
    height: 40px;
    line-height: 40px;

}

.search-event-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-event-wrap .sort-date {
    margin-left: 100px;
}

.synigma-img-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

/* .bg-white {
  background: #fff;
} */
/* .synigma-img-wrap .synigma-large-img {
  position: relative;
  z-index: -1;
} */
.synigma-event-img .share-icon {
    display: inline-block;
    height: 55px;
    width: 55px;
    border-radius: 5px;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.synigma-event-img {
    position: relative;
}

.synigma-event-img .share-icon {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.portfolio-list-detail-info .synigma-event-list.synigma-large-img .synigma-event-img .share-icon img {
    width: auto;
}

.synigma-event-list {
    width: 350px;
    margin-bottom: 25px;
}

.synigma-event-img .synigma-main-img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}

.synigma-event-img:hover .synigma-main-img {
    animation: animation 0.5s ease-in-out;
}

a.upcoming-btn {
    text-decoration: none;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 50px;
    padding: 6px 23px;
    display: inline-block;
    margin-top: 15px;
    position: relative;
    z-index: 11;
    overflow: hidden;
}

a.upcoming-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    height: 100%;
    width: 100%;
    background: var(--main-color);
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: -11;
}

a.upcoming-btn:hover::after {
    left: 0;
}

a.upcoming-btn:hover {
    color: var(--white);
}

.synigma-event-detail h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--main-color);
    margin: 15px 0;
    transition: all ease 0.3s;
}

.synigma-event-detail h3:hover {
    color: var(--primary-black);
}

.synigma-event-detail p {
    font-size: 14px;
}

.synigma-event-list.synigma-large-img {
    width: auto;
    grid-column: 2/ -1;
    grid-row: 1/3;
    /* overflow: hidden; */
    /* height: 800px; */
}

.synigma-event-list.synigma-large-img img {
    width: 100%;
    height: 800px;
    transition: 0.3s ease-in-out;
    object-fit: cover;
}

/* .synigma-event-list.synigma-large-img img:hover {
  transform: scale(1.1);
} */
.event-page a.event-load-more {
    text-decoration: none;
    font-weight: 700;
    font-size: 32px;
    display: block;
    margin: 70px 0 100px;
    color: var(--main-color);
    text-align: center;
}

/* EVENTS DETAIL PAGE  */
.event-detail ul {
    list-style: none;
}

.event-detail-title {
    padding: 100px 0 75px;
}

.event-detail-title h2 {
    font-weight: 700;
    font-size: 64px;
    color: var(--main-color);
    margin-bottom: 30px;
    text-transform: capitalize;
}

.event-detail-title ul li {
    display: inline-block;
    font-weight: 500;
    font-size: 17px;
    margin-right: 30px;
    color: #050505;
}

.event-detail-title ul li i {
    margin-right: 10px;
}

.event-detail-image img {
    width: 100%;
}

.event-brief-wrap {
    padding: 100px 0 200px;
}

.event-brief-wrap .event-brief-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--main-color);
}

.event-brief-wrap .event-brief-detail {
    color: var(--dark-black);
    line-height: 28px;
    font-size: 14px;
    padding-left: 30px;
}

.event-loaction-time-wrap {
    background: var(--main-color);
    color: #ffffff;
    min-height: 400px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px 0;
    flex-wrap: wrap;
}

.event-item-box {
    border: 1px solid #5aa1ff;
    height: 150px;
    display: flex;
    justify-content: center;
    padding: 0 50px;
    flex-direction: column;
    text-align: center;
    color: var(--white);
    position: relative;
}

.event-item-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: -1px;
    height: 1px;
    width: 45px;
    background: #fff;
}

.event-item-box::before {
    content: "";
    position: absolute;
    right: -1px;
    top: -1px;
    height: 45px;
    width: 1px;
    background: #fff;
}

.event-location h5 {
    font-size: 34px;
}

.event-item-box p {
    font-size: 18px;
    margin-top: 20px;
}

.event-location-list h6 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.event-attende p {
    font-size: 36px;
    padding: 0 25px;
    margin: 0;
}

.event-time h5 {
    font-size: 20px;
}

.event-time i {
    margin-right: 15px;
}

.event-brief-wrap.event-insights {
    padding: 100px 60px;
}

.event-insights .event-brief-detail {
    font-size: 16px;
}

.event-insights .event-brief-detail-space {
    margin: 20px 0 50px;
}

.event-insights .event-brief-detail.event-brief-detail-color {
    color: var(--main-color);
    font-weight: 500;
    font-style: italic;
}

.event-detail-imgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    padding-bottom: 100px;
}

.event-detail-imgs img {
    width: 100%;
    object-fit: cover;
}

.event-detail-imgs figure {
    position: relative;
    overflow: hidden;
}

.event-detail-imgs figure::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

/* .event-detail-imgs figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 200px;
  width: 200px;
  background: red;
  z-index: 1;
} */
.event-detail-imgs figure:hover::before {
    -webkit-animation: circle 0.75s;
    animation: circle 0.75s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* UPCOMING EVENT PAGE  */
.upcoming-event-location-wrap {
    padding: 50px 0 100px;
}

.upcoming-event-page a.upcoming-btn {
    margin-bottom: 20px;
}

.upcoming-event-page .event-location p {
    margin: 0;
    font-size: 32px;
}

.upcoming-event-location-detail .upcoming-event-detail-info {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 50px;
}

.upcoming-event-location-detail .upcoming-event-contact-list ul li {
    list-style: none;
    font-size: 32px;
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 50px;
    border-bottom: 1px solid #c9c9c9;
}

.upcoming-event-location-detail .upcoming-event-contact-list ul li a {
    text-decoration: none;
    font-size: 32px;
    color: var(--main-color);
    font-weight: 500;
}

.upcoming-event-location-detail .upcoming-event-contact-list ul li .event-contact-list-title {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
    color: var(--dark-black);
}

.upcoming-event-location-wrap .social-media-icon h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #121212;
}

.upcoming-event-map {
    height: 723px;
}

/* SCOPE PAGE  */
.scope-page-img-banner {
    margin-top: 50px;
}

.scope-page-img-banner img {
    width: 100%;
}

.scope-page .outteam-banner h2 {
    text-align: left;
}

.scope-page .outteam-banner {
    padding: 150px 0 50px;
    margin-top: -80px;
}

.scope-page .about-detail p {
    border-top: 1px solid #171717;
    padding-top: 25px;
}

/* BOOTSTRAP PAGINATION  */


.page-item:first-child .page-link,
.page-item:last-child .page-link {

    border: none;
    padding: 0 10px;
    width: 55px;

}

.page-item.disabled .page-link {
    color: #bcbcbc;
}

.page-item:first-child .page-link {
    margin-right: 50px;

}

.page-item:last-child .page-link {
    margin-left: 50px;

}

.page-item .page-link {
    color: var(--main-color);



}

.page-item .page-link:focus {
    box-shadow: none;
}

.page-item.active .page-link {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
}

.pagination {
    justify-content: center;
}

.page-link:hover {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #fff;

}

.page-link {
    padding: 0;
    height: 45px;
    width: 45px;
    border: 1px solid var(--main-color);
    text-align: center;
    border-radius: 50%;
    line-height: 45px;
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
}

.portfolio-wrap nav {
    line-height: 0;
}

/* .page-item:first-child .page-link */

/* OUR PORTFOLIO  */
.portfolio-wrap {
    padding: 100px 0 50px;
}

.portfolio-main-title {
    font-size: 82px;
    text-align: center;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 75px;
    color: var(--main-color);
}

.portfolio-wrap .our-portfolio-lists {
    display: grid;
    grid-template-columns: 300px auto;
    grid-gap: 100px;
}

.portfolio-wrap .our-portfolio-lists .nav-link {
    padding: 0 0 5px;
    cursor: pointer;
}

.portfolio-wrap .our-portfolio-lists .search-event-wrap .search-input input {
    width: 300px;
}

.portfolio-wrap .our-portfolio-lists .sort-date select {
    margin-left: 10px;
}

.portfolio-list-detail-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 75px;
}

.portfolio-list-detail-info .synigma-event-list.synigma-large-img img {
    height: auto;
    /* width: 100%; */
}

.portfolio-list-detail-info .synigma-event-list {
    width: inherit;
    margin: 0;
}

.portfolio-details .search-event {
    margin: 0 0 75px;
}

.portfolio-details .search-event-wrap .sort-date {
    margin-left: 50px;
}

.portfolio-list-detail-info .synigma-event-list.synigma-large-img {
    grid-column: 2/ -1;
    grid-row: 1/2;
}

/* PROJECT DETAIL PAGE */
.project-detail-info {
    text-align: center;
    padding: 60px 0 100px;
}

.project-detail-info p {
    font-size: 16px;
    line-height: 32px;
    padding: 0 250px;
    margin: 50px 0 35px;
}

.project-detail-info .project-detail-img {
    width: 900px;
    height: 650px;
    object-fit: cover;
    display: block;
    margin: 60px auto 0;
}

.portfolio-detail-page .time-logo img {
    right: 10%;
    margin-top: 75px;
}

.portfolio-detail-page .time {
    padding: 0;
}

.portfolio-detail-page .time-growth {
    margin: 0;
}

.project-detail-page-info {
    margin-top: -40px;
}

.project-detail-page-info .project-detail-date {
    color: #f2f5f9;
    /* opacity: 0.5%; */
    font-size: 250px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-detail-page-info p {
    font-size: 14px;
    color: var(--primary-black);
}

.project-detail-page-info p:nth-child(3) {
    margin: 25px 0;
}

.project-investors {
    padding: 100px 60px;
}

.project-investors-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}

.project-investors-img img {
    width: 100%;
}

.project-investors-img .tab-img-detail {
    bottom: -20px;
}

.project-investors-img .tab-img:hover .tab-img-detail {
    bottom: 10px;
}

.media-gallery {
    padding-bottom: 50px;
}

.media-gallery-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
}

.media-gallery-img img {
    width: 100%;
}

.media-gallery-img img:nth-child(2) {
    margin-top: 60px;
}

.media-gallery-img img:nth-child(5) {
    margin-top: -25px;
}

.media-gallery-img img:nth-child(6) {
    margin-top: 69px;
}

/* CSR PAGE  */
.csr-wrap .ourteam-detail-info {
    padding: 75px 0 100px;
}

.csr-wrap .ourteam-detail-info h5 {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
}

.csr-wrap .ourteam-detail-info p {
    margin: 10px 0 20px;
}

/* CSR DETAIL PAGE  */
.event-icon {
    display: block;
    margin: 0 auto;
    position: relative;
}

.event-icon::after {
    content: "";
}

.csr-detail-page .event-detail-title {
    padding: 50px 0 75px;
}

.csr-detail-page .ourteam-detail-info p {
    font-size: 14px;
}

.csr-detail-page .ourteam-detail-img .csr-detail-info {
    font-size: 24px;
    margin-top: 350px;
    font-style: italic;
    line-height: 38px;
    padding-right: 100px;
    color: var(--main-color);
}

.csr-detail-page h5.event-media-title {
    color: var(--main-color);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.csr-detail-page .event-volunteer {
    /* height: 500px; */
    background: var(--secondary-color);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    margin-bottom: 100px;
}



.event-volunter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*gap: 30px;*/
}

.event-volunter-wrap .event-volunter-detail {
    width: 23%;
    margin-top: 100px;
    z-index: 1;
}

.event-volunter-detail .volunter-img {
    width: 100%;
    transform: scale(0.9);
    transition: all ease 0.4s;
}

.event-volunter-detail .volunter-img:hover {
    transform: scale(1);
    filter: grayscale(0.6);
}

/* .hover13 figure:hover img {
    opacity: 1;
    -webkit-animation: flash 1.5s;
    animation: flash 1.5s;
  } */
@-webkit-keyframes flash {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.event-volunteer .event-volunter-title {
    text-align: center;
    font-weight: 700;
    font-style: italic;
    font-size: 52px;
}

.event-volunter-detail .volunter-name {
    font-size: 28px;
    font-weight: 800;
    margin-top: 20px;
}

.event-volunter-detail .volunter-position {
    font-size: 16px;
    margin: 15px 0;
}


.event-detail-imgs .img-item__1 {
    height: 341px;
}

.event-detail-imgs .img-item__2 {
    height: 400px;
}

.event-detail-imgs .img-item__3 {
    height: 341px;
}

.event-detail-imgs .img-item__4 {
    height: 276px;
    margin-top: 50px;
}

.event-detail-imgs .img-item__5 {
    height: 197px;
    margin-top: 95px;
}

.event-detail-imgs .img-item__6 {
    height: 337px;
    margin-top: 50px;
}

.event-detail-imgs .img-item__7 {
    height: 285px;
    margin-top: 10px;
}

.event-detail-imgs .img-item__8 {
    height: 319px;
    margin-top: -25px;
}

.event-detail-imgs .img-item__9 {
    height: 224px;
    margin-top: 70px;
}

/*MEDIA GALLERY GRID CSS*/
.media-gallery-img .media-img__1 {
    height: 314px;
}

.media-gallery-img .media-img__2 {
    height: 225px;
    margin-top: 70px;
}

.media-gallery-img .media-img__3 {
    height: 385px;
}

.media-gallery-img .media-img__4 {
    height: 340px;
    margin-top: 25px;
}

.media-gallery-img .media-img__5 {
    height: 364px;
}

.media-gallery-img .media-img__6 {
    height: 271px;
    margin-top: 90px;
}

/* CONTACT PAGE  */
.contact-page-wrap {
    background: #f9f9fb;
    padding: 75px 0 100px;
}

.contact-page-wrap .contact-us-title {
    text-align: center;
}

.contact-page-wrap .contact-us-title h2 {
    color: var(--main-color);
    font-size: 76px;
    font-weight: 700;
    font-style: italic;
}

.contact-page-wrap .contact-us-title p {
    color: var(--primary-black);
    font-size: 16px;
    margin: 10px 0 50px;
}

.contact-info-detail-wrap {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-detail-wrap .contact-left-block .flip-card-front,
.contact-info-detail-wrap .contact-left-block .flip-card-back {
    background: var(--main-color);
    padding: 35px 30px 20px 30px;
    border-radius: 10px;
    flex: 0 0 35%;
}

.contact-left-block h3.contact-title {
    font-size: 32px;
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-left-block ul li {
    display: flex;
    list-style: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: initial;
}

.contact-left-block ul li .contact-icon {
    width: 35px;
}

.contact-left-block ul li .contact-icon i {
    margin-right: 20px;
}



.contact-left-block .more-btn {
    padding: 8px 110px;
    white-space: nowrap;
}

.flip-card .more-btn.view-map {
    padding: 0;
    width: 100%;
    white-space: nowrap;
    height: 50px;
    line-height: 50px;
}

.flip-card.map .more-btn.view-map {
    width: 45%;
}

.flip-card.map .more-btn.view-map:hover {

    color: var(--main-color);
}

.contact-social-icon {
    display: block;
    margin-top: 100px;
    padding-top: 25px;
    border-top: 1px solid #fff;
}

.contact-social-icon img {
    margin-right: 15px;
    width: auto;
    height:30px;
}

.contact-right-block {
    padding: 25px;
    background-color: var(--white);
    flex: 1;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.volunter-social-icon img {
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.volunter-social-icon:hover img {
    transform: scale(1);
}

.input-block {
    width: 100%;
    background: #f0f0f0;
    font-size: 16px;
    padding: 10px;
    height: 50px;
    outline: none;
    border: none;
    border-radius: 10px !important;
    color: var(--dark-black);
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 30px;
    /* padding:10px 0; */
    transform: translateY(-50%);
    pointer-events: none;
    transition: ease 0.3s;
    color: var(--primary-black);
    font-size: 16px;
}

.input-group .input-block:focus~label,
.input-group .input-block:valid~label {
    top: 2%;
    /* color:#9932CC; */
    letter-spacing: 0;
    left: 15px;
    font-size: 14px;
    /* background: #f0f0f0; */
    padding: 0 15px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.input-group .input-block:focus {
    border: 1px solid var(--main-color);
}

.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n + 3) {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.input-group select {
    color: var(--primary-black);
}

.input-group.text-area-block .input-block {
    height: 100px;
}

.input-group.text-area-block label {
    top: 30%;
}

/* CUSTOM CHECKBOX  */
.input-checkbox-wrap {
    padding: 30px;
    background: #f0f0f0;
    margin-bottom: 30px;
    border-radius: 5px;
}

.input-checkbox-wrap p {
    font-size: 18px;
    color: var(--primary-black);
    margin-bottom: 15px;
}

/* Hide the browser's default checkbox */
.input-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px soild red;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.input-checkbox:hover input~.checkmark {
    background-color: var(--main-color);
}

/* When the checkbox is checked, add a blue background */
.input-checkbox input:checked~.checkmark {
    background-color: var(--main-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.input-checkbox input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.input-checkbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.input-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-right: 50px;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary-black);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.contact-form button {
    background: #fff;
}

/* CARRER PAGE  */
.carrer-page .main-heading {
    padding-top: 70px;
}

.carrer-page .main-heading img {
    margin: 30px 0 40px;
}

.carrer-page .accordion-item:first-of-type .accordion-button {
    color: var(--main-color);
}

.carrer-page .accordion-button {
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
    border-bottom: 1px solid #8b8b8b;
    padding: 0 0 15px 0;
}

.carrer-page .title-description {
    margin-bottom: 30px;
}

.carrer-page .title-description h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.carrer-page .title-description p {
    font-size: 18px;
    color: var(--primary-black);
    line-height: 32px;
}

.carrer-page .accordion-body {
    padding: 20px 0 0 0;
    border-bottom: 1px solid #8b8b8b;
}

.carrer-page .title-description ul li {
    list-style: none;
    margin-top: 5px;
    position: relative;
    padding-left: 25px;
}

.carrer-page .title-description ul li::after {
    position: absolute;
    content: "";
    height: 4px;
    width: 4px;
    background: #8b8b8b;
    border-radius: 50%;
    top: 9px;
    left: 7px;
}

.carrer-page .title-description ul {
    margin-bottom: 30px;
}

.carrer-page .carrer-img-large img {
    width: 100%;
    margin-top: 220px;
}

.ready.carrer-img {
    background: url(../images/carrer-bg.png),
        linear-gradient(to right, var(--dark-black), var(--dark-black));
}

/* BOOTSTRAP  */
.form-control:focus {
    background: #414141;
    border: none;
    box-shadow: none;
    color: #fff;
}

.carrer-page .accordion-wrap {
    padding-bottom: 50px;
}

figure {
    margin: 0;
}

/* .carrer-page .accordion-button:not(.collapsed) {
  border-bottom: none;
} */

/*CARRE POPOP*/
.title-description button {
    border: none;
    outline: none;
    background: #fff;
}

.pa-0-l {
    padding-left: 0;
}

.pa-0-r {
    padding-right: 0;
}

.modal.modal__1 {
    top: -40px;
}

.title-description .modal-dialog {
    max-width: 80%;
    padding: 50px 20px;
    border-radius: 10px;
}

.title-description .modal-content {
    border-radius: 10px;
    border: none;
    padding: 50px 20px;
}

.drop-zone__prompt h6 {
    font-size: 14px;
}

.title-description .modal-header {
    align-items: flex-start;
    border: none;
    padding: 0;
}

.apply-job-form .modal-footer {
    border: none;
}

.apply-job-form .input-group label {
    opacity: 0.5;
}

.input-group {
    display: block;
}

.input-group.drop-wrap label {
    top: 40px;
    left: 50px;
    opacity: 1;
}

.input-group.drop-wrap {
    background: #f0f0f0;
    padding: 50px;
    border-radius: 10px;
}

.apply-job-form .apply-form-title {
    font-size: 32px;
    font-weight: 500;
    font-style: italic;
    color: var(--main-color);
    margin-bottom: 35px;
    text-align: center;
}

.apply-job-form .apply-form-title .apply-form__subtitle {
    font-weight: 700;
    margin-left: 10px;
    text-decoration: underline;
}

.drop-zone .drop-zone__prompt h5 {
    color: var(--main-color);
    margin-bottom: 10px;
}

.drop-zone {
    max-width: 100%;
    height: 155px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 3px dashed #c4c4c4;
    border-radius: 10px;
    margin-top: 30px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

.modal-footer .btn-transparent {
    color: #c9c9c9;
    border-color: #c9c9c9;
    margin-right: 20px;
}

.modal-footer .btn-transparent.more-btn::after {
    background: #c9c9c9;
    left: -100%;
}

.modal-footer .btn-transparent.more-btn:hover::after {
    left: 0;
}

.modal-footer .btn-transparent.more-btn:hover {
    color: var(--secondary-black);
}

.modal-footer .more-btn:hover {
    color: var(--secondary-color);
}

.modal-body .input-group input {
    color: #000;
}

/* responsive */
@media (max-width: 991px) {
.introduce-logo{
    display:none;
    margin:0;
}

.introduce-detail{
    width:100%;
}

    .search-event {
        width: 100%;
    }

    .main-heading h2 {
        font-size: 42px;
    }

    .time-img {
        width: 500px;
    }

    .funds .fund-title span {
        font-size: 80px;
    }

    .ceo .main-heading {
        margin-top: 0;
    }

    .entrepreneur {
        padding-top: 100px;
        margin-top: 50px;
    }

    .entrepreneur-title h2 {
        font-size: 32px;
        
    }

    .contact-detail-wrap ul li {
        flex: 100%;
    }

    .contact-detail-wrap ul li:last-child {
        margin: 0;
    }

    .contact-detail-wrap ul li:nth-child(2) {
        margin: 25px 0;
    }

    .contact-detail-wrap ul li .contact-detail p,
    .contact-detail-wrap ul li .contact-detail a {
        font-size: 20px;
    }

    .let-introduce .introduce-logo img {
        /*width: 85%;*/
        /*top: -300px;*/
        /*right: -500px;*/
    }

    .let-introduce {
        width: 85%;
    }

    .col-sm-6.synigma-full-width {
        width: 100%;
        padding-right: 60px;
    }

    .synigma-vision {
        padding: 75px 0;
    }

    .ready-detail p {
        width: 85%;
    }

    .yellow-color .ready-detail .empowering-list ul li {
        font-size: 20px;
    }



    .contact-social-icon {
        margin-top: 50px;
    }

    .contact-left-block h3.contact-title {
        font-size: 24px;
    }

    .input-checkbox {
        margin-right: 15px;
    }

    .input-checkbox:last-child {
        margin: 0;
    }

    .outteam-banner h2 {
        font-size: 50px;
    }

    .our-team-detail-wrap {
        grid-template-columns: 450px 1fr;
    }

    .ourteam-detail-img .team-main-img {
        width: 350px;
    }

    .ourteam-detail-img .team-logo {
        left: 270px;
    }

    .ourteam-detail-info h4 {
        font-size: 150px;
    }

    .event-item-box {
        padding: 0 30px;
    }

    .event-volunter-wrap .event-volunter-detail {
        width: 30%;
        margin-top: 50px;
    }


    .event-page .time-logo img {
        top: 20px;
        right: -37%;
        height: 500px;
    }

    .search-event {
        margin: -20px 0 80px;
    }

    .synigma-img-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-brief-wrap .event-brief-title {
        font-size: 24px;
    }

    .event-brief-wrap {
        padding: 75px 0;
    }

    .ourteam-list {
        grid-template-columns: 200px auto;
    }

    .ourteam-list .ourteam-nav-list .nav-link {
        font-size: 24px;
    }

    .tab-img-detail h3 {
        font-size: 18px;
    }

    .portfolio-wrap .our-portfolio-lists {
        grid-template-columns: 200px auto;
        grid-gap: 50px;
    }

    .portfolio-wrap .our-portfolio-lists .search-event-wrap .search-input input {
        width: 300px;
    }

    .search-event-wrap .sort-date {
        margin-left: 50px;
    }

    .nav-pills .nav-link {
        font-size: 24px;
    }

    .synigma-event-detail h3,
    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        font-size: 26px;
    }

    .project-detail-info p {
        padding: 0 150px;
    }

    .project-investors-img {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-heading h2 br {
        display: none;
    }

    .upcoming-event-location-detail .upcoming-event-contact-list ul li,
    .upcoming-event-location-detail .upcoming-event-contact-list ul li a {
        font-size: 24px;
    }

    .time-growth {
        margin-left: 50px;
    }

    .time-growth ul li {
        font-size: 18px;
    }

    .time-growth ul li h2 {
        font-size: 62px;
    }

    .nav-item a {
        font-size: 16px;
        margin-right: 20px;
    }

    .event-location h5 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .header nav {
        height: 100vh;
    }

    .container-padding.banner-mobile-space {
        padding: 0;
    }

    .toggle-menu,
    .show-mobile {
        display: block;
    }

    .navbar-wrapper {
        transition: all 1s ease;
        position: absolute;
        width: 100%;
        top: 0;
        /* margin-top: 80px; */
        left: -100%;
        background: #fff;
        padding: 35px 0 0 20px;
        height: 100vh;
        z-index: -1;
    }

    .navbar-wrapper ul {
        display: block;
        margin-top: 80px;
    }

    .nav-item a {
        margin: 0;
        display: block;
        padding: 0;
        line-height: 1;
        margin-bottom: 25px;
        font-size: 20px;
        font-weight: 400;
    }

    .nav-item.active a {
        top: 0;
    }

    .mobile-menu-logo {
        display: block;
    }

    .nav-item.active a::after {
        display: none;
    }

    .navbar-wrapper.active {
        transition: all 1s ease;
        left: 0;
        position: fixed;
    }

    /* .navbar-wrapper {
    display: none;
  } */
  

    .logo img.logo-color {
        filter: none;
    }

    .header {
        height: 100px;
        border: none;
        background: rgba(0, 0, 0, 0.21);
    }

    .header.active {
        /* background: #fff; */
        transition: all ease 0.4s;
        position: fixed;
        width: 100%;
    }

    .banner {
        position: relative;
        top: -100px !important;
        z-index: 20;
        left: 0;
        width: 100%;
        /*height: 100vh;*/
        margin-top: 0;
    }


    .banner .pulsing img {
        right: 50%;
        transform: translate(50%, -50%);
    }

    .about {
        margin-top: 0;
        padding: 0 0 70px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-detail p {
        margin-top: 25px;
    }

    .portfolio-logo {
        flex-wrap: wrap;
    }

    .time-img {
        margin-top: 0 !important;
    }

    .time .main-heading {
        margin: 50px 0 50px;
    }

    .time-img {
        width: 100%;
        height: auto;
    }

    .time-logo img {
        height: 388px;
        right: 0;
    }

    .time-logo {
        text-align: right;
    }

    .time-img img {
        height: 500px;
        transform: scale(1);
        margin-left: 0;
    }

    .ceo-img img {
        right: 0;
        height: calc(100vh - 20vh);
        object-fit: cover;
        /* padding-right: 60px; */
        margin-bottom: 50px;
    }

    #fund-slider .slick-dots {
        top: 102%;
        right: 35%;
    }

    #fund-slider .slick-dots li {
        display: inline-block;
        margin-right: 25px;
    }

    .funds .fund-padding {
        padding-left: 15px;
    }

    .funds .fund-img img {
        width: 70%;
        margin: 0 auto;
        right: 0;
    }

    .entrepreneur {
        margin-top: 0;
    }

    .ceo {
        padding-right: 60px;
    }

    .entrepreneur {
        font-size: 26px;
        padding-top: 100px;
    }

    .entrepreneur-title h2 {
        font-size: 26px;
    }

    .ready-detail p {
        font-size: 16px;
    }

    .ready-detail h3 {
        font-size: 42px;
    }

    .investment-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 35px;
    }

    .investment-detail {
        width: 100%;
        margin-bottom: 35px;
    }

    .newsletter-suscribe {
        margin: 0 0 35px;
        /*margin-bottom: 100px;*/
    }

    .social-media-icon {
        margin-block: 35px;
    }

    .newsletter-suscribe::after {
        height: 1px;
        width: 100%;
        border-left: none;
        border-bottom: 1px solid #454545;
        top: initial;
        bottom: -50px;
        left: 0;
    }

    .contact-detail-wrap ul li:nth-child(2) {
        margin: 35px 0;
    }

    .let-introduce {
        width: 100%;
        padding: 100px 60px;
        height: inherit;
    }

    .let-introduce .introduce-logo img {
        top: 0;
        right: 0;
    }

    .introduce-logo {
        margin-top: 30px;
        text-align: center;
    }

    .copyright .copyright-text p {
        font-size: 16px;
    }

    .container-pl {
        padding-left: 60px;
    }

    .contact-info-detail-wrap {
        flex-wrap: wrap;
    }

    .contact-info-detail-wrap .contact-left-block {
        flex: 0 0 100%;
    }

    .our-team-detail-wrap {
        grid-template-columns: 1fr;
    }

    .search-event {
        margin: 40px 0 0;
    }

    .ourteam-detail-img .team-arrow {
        left: 420px;
    }

    .event-detail-title h2 {
        font-size: 32px;
    }

    .tab-img-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .synigma-event-list {
        width: 100%;
    }

    .search-event-wrap .search-input input {
        width: 350px;
    }

    .search-event-wrap {
        margin-bottom: 50px;
    }

    .event-page a.event-load-more {
        margin-top: 30px;
        font-size: 26px;
    }

    .event-location h5,
    .event-time h5,
    .event-attende p {
        font-size: 18px;
    }

    .event-insights .event-brief-detail,
    .event-brief-wrap .event-brief-detail {
        margin-top: 35px;
        padding-left: 0;
    }

    .portfolio-wrap .our-portfolio-lists .search-event-wrap .search-input input {
        width: 100%;
    }

    .search-event-wrap .sort-date {
        margin-left: 10px;
    }

    .portfolio-wrap .our-portfolio-lists .sort-date select {
        margin-left: 5px;
        padding: 12px 10px 10px;
    }


    .portfolio-list-detail-info {
        grid-template-columns: 1fr;
        grid-gap: 35px;
    }

    .portfolio-details .search-event-wrap .sort-date {
        margin-left: 0;
    }

    .portfolio-wrap .our-portfolio-lists {
        grid-template-columns: 150px auto;
        grid-gap: 30px;
    }

    .portfolio-main-title {
        font-size: 52px;
        margin-bottom: 50px;
    }

    .portfolio-wrap {
        padding: 50px 0;
    }

    .synigma-event-detail h3,
    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link,
    .nav-pills .nav-link {
        font-size: 18px;
    }

    .portfolio-list-detail-info .synigma-large-img.synigma-event-list {
        grid-column: 1/ -1;
        grid-row: 2/3;
    }

    .yellow-color .ready-detail h3 {
        font-size: 32px;
    }

    .teamdetail-brief-wrap {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }

    .team-img-detail {
        padding-bottom: 0;
    }

    .awards-recognition {
        padding: 100px 0;
    }

    .awards-list .awards-detail h5 {
        font-size: 18px;
    }

    .upcoming-event-location-detail .upcoming-event-detail-info {
        margin-top: 35px;
    }

    .mobile-order-1 {
        order: -1;
    }

    .search-event-wrap .sort-date {
        margin: 15px 0 0;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .search-event-wrap .search-input input,
    .sort-date select {
        width: 100%;
    }

    .search-event-wrap {
        display: block;
    }

    .sort-date label {
        flex: 0 0 20%;
    }

    .event-page p.time-detail::after {
        top: 150px;
    }

    .event-detail-imgs,
    .media-gallery-img {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        padding-bottom: 40px;
    }

    .portfolio-wrap .pagination {
        margin-right: 0;
    }

    .portfolio-wrap .pagination {
        justify-content: center;
    }

    .event-volunteer .event-volunter-title {
        font-size: 32px;
    }

    .project-detail-page-info.container-pr {
        padding-left: 30px;
    }

    .project-investors-img {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FORM SUBMIT  */

@media (max-width: 576px) {
    .container-padding {
        padding: 0 15px;
    }

    .container-pl {
        padding-left: 15px;
    }

    .container-pr {
        padding-right: 15px;
    }

    .main-heading h2 {
        font-size: 32px;
    }

    .main-heading h2 .sub-title {
        font-size: 26px;
    }

    .time-growth ul li {
        font-size: 16px;
    }

    .time-growth ul li h2 {
        font-size: 42px;
    }

    .time-img img {
        height: 85vh;
    }

    .ceo {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .entrepreneur-title .more-btn {
        display: none;
    }

    .entrepreneur-title h2 {
        font-size: 32px;
    }

    .investment-img {
        width: 100%;
    }

    .investment-img img {
        width: 100%;
        height: 300px;
    }

    .newsletter-input .fal {
        top: 15%;
    }

    /* #fund-slider .slick-dots {
    top: 102%;
    right: 35%;
  }
  #fund-slider .slick-dots li {
    display: inline-block;
    margin-right: 25px;
  }
  .funds .fund-padding {
    padding-left: 15px;
  }
  .funds .fund-img img {
    width: 80%;
    margin: 0 auto;
    right: 0;
  } */
    .contact-detail-wrap ul li .contact-detail p,
    .contact-detail-wrap ul li .contact-detail a {
        font-size: 16px;
    }

    .investment .main-heading h2 {
        margin-bottom: 30px;
    }

    .newsletter-input .newsletter-submit {
        position: static;
        width: 100%;
        border: none;
        margin-top: 10px;
        background: var(--secondary-color);
        padding: 12px 0;
    }

    .contact-detail-wrap ul {
        padding-left: 20px;
    }

    .copyright {
        margin-top: 0;
        border: none;
        flex-direction: column;
        text-align: center;
    }

    .copyright-wrap {
        display: block;
    }

    .social-media-icon {
        margin-block: 50px;
    }

    .copyright .copyright-text p {
        margin-top: 40px;
    }

    .let-introduce {
        padding: 50px 15px;
    }

    .col-sm-6.synigma-full-width {
        padding-right: 15px;
    }

    .synigma-vision .synigma-detail-info h3 {
        font-size: 28px;
    }

    .synigma-vision .synigma-detail-info p {
        font-size: 14px;
        line-height: 34px;
    }

    .yellow-color .ready-detail .empowering-list ul {
        justify-content: space-around;
        gap: 40px;
    }

    .portfolio .portfolio-title,
    .investment-detail h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .portfolio-logo {
        gap: 30px;
    }

    .investment .main-heading h2 {
        font-size: 42px;
    }

    .investment {
        padding: 50px 0;
    }

    .ourteam-detail-img .team-logo {
        left: 0;
        transform: rotate(80deg);
        top: 195px;
    }

    .ourteam-detail-img .team-arrow {
        left: -10px;
        top: 385px;
        transform: rotate(45deg);
    }

    .ourteam-detail-info h4 {
        font-size: 100px;
        line-height: 150px;
    }

    .ourteam-detail-info h4 {
        margin-top: 235px;
        line-height: 100px;
    }

    .ourteam-list,
    .portfolio-wrap .our-portfolio-lists {
        grid-template-columns: auto;
    }

    .ourteam-list .ourteam-nav-list .nav-link,
    .synigma-event-detail h3,
    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link,
    .nav-pills .nav-link {
        font-size: 16px;
    }

    .ourteam-detail-info p {
        margin-bottom: 75px;
    }

    .navtabs.ourteam-list .nav button,
    .portfolio-wrap .our-portfolio-lists .nav button {
        display: inline-block;
        width: inherit;
        margin-right: 10px;
    }

    .navtabs.ourteam-list .nav button:last-child {
        margin: 0;
    }

    .navtabs.ourteam-list .nav,
    .portfolio-wrap .our-portfolio-lists .nav {
        display: inline-block;
    }

    /* .tab-img-wrapper {
    grid-template-columns: auto;
  }
  .tab-img img {
    width: 100%;
    height: 400px;
  }
  .tab-img-detail {
    bottom: 0;
  } */

    .yellow-color .ready-detail h3 {
        font-size: 50px;
        font-weight: 700;
        font-style: italic;
    }

    .content-banner {
        padding: 15px 0 13px 20px;
    }

    .outteam-banner h2 {
        font-size: 36px;
    }

    .outteam-banner .container-pr {
        padding: 0 0 0 15px;
    }

    .outteam-banner h2,
    .team-detail-page .outteam-banner h5,
    .outteam-banner ul {
        text-align: Left;
    }

    .team-detail-page .outteam-banner h5 {
        font-size: 18px;
    }

    .team-detail-page .outteam-banner {
        padding-bottom: 150px;
    }

    .team-detail-page .outteam-banner h5:after {
        display: none;
    }

    .team-detail-page .outteam-banner h5 {
        border-bottom: 1px solid #d6d6d66e;
        padding-bottom: 20px;
    }

    .team-detail-page .outteam-banner h5 {
        margin-bottom: 15px;
    }

    .team-img-detail img {
        margin-top: -90px;
        width: 75%;
    }

    .team-img-detail {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }

    .team-img-detail p {
        font-size: 18px;
        margin-top: 0;
    }

    .mobile-more {
        display: inline-block;
        margin-top: 15px;
    }

    .awards-recognition h2 {
        font-size: 26px;
    }

    .awards-list:first-child {
        margin: 0 0 15px;
    }

    .awards-recognition-wrap {
        display: block;
    }

    .scope-page .outteam-banner h2 {
        font-size: 42px;
    }

    .scope-page .outteam-banner {
        padding: 50px 0;
        margin-top: 230px;
        width: 90%;
    }

    .scope-page-img-banner img {
        height: 75vh;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }

    .scope-page-img-banner .container-padding {
        padding: 0;
    }

    header {
        padding: 0;
        justify-content: space-around;
    }

    .scope-page .about {
        margin-top: 10px;
    }

    .ready-detail h3 {
        font-style: italic;
    }

    .event-page p.time-detail::after,
    .event-page .time-logo img {
        display: none;
    }

    .event-page .time .main-heading {
        margin-bottom: 10px;
    }

    .synigma-img-wrap {
        grid-template-columns: 1fr;
    }

    .synigma-event-list:nth-child(2) {
        grid-column: 1/ -1;
        /* grid-row: 1/3; */
        display: none;
    }

    .synigma-event-img .share-icon {
        transform: translate(0, -0);
    }

    .event-detail-title {
        padding: 50px 0;
    }

    .event-detail-title ul li {
        margin: 0 0 10px;
        display: block;
    }

    .event-detail-image img {
        height: 100vh;
        object-fit: cover;
    }

    .event-loaction-time-wrap {
        padding: 50px 35px 20px;
        height: auto;
    }

    .event-location-list {
        width: 100%;
        margin-bottom: 50px;
    }

    .event-brief-wrap.event-insights {
        padding: 50px 15px;
    }

    .event-insights .event-brief-detail.event-brief-detail-color {
        font-weight: 600;
    }

    .event-detail-imgs.container-padding {
        padding-bottom: 40px;
    }

    .upcoming-event-page .social-media-icon {
        border: none;
        margin: 0;
        padding: 0;
    }

    .portfolio-main-title,
    .csr-page .ourteam-detail-img,
    .carrer-img-large {
        display: none;
    }

    .portfolio-wrap {
        padding: 50px 0;
    }

    .project-detail-info p {
        padding: 0 15px;
    }

    .portfolio-detail-page .time-logo img {
        display: none;
    }

    .project-detail-page-info .project-detail-date {
        font-size: 100px;
    }

    .project-detail-page-info p {
        padding-left: 15px;
    }

    .csr-wrap .ourteam-detail-info {
        padding: 0 0 50px;
        /*margin-top: 290px;*/
    }

    .csr-wrap .ourteam-detail-img .team-main-img {
        width: 87%;
    }

    .carrer-page .container-pl {
        padding: 0 15px;
    }

    .carrer-page .accordion-button {
        font-size: 18px;
    }

    .contact-right-block {
        padding: 25px 10px;
    }

    .contact-page-wrap {
        padding-bottom: 50px;
    }

    .tab-img-wrapper {
        grid-template-columns: 1fr;
    }

    .tab-img-detail {
        position: relative;
        bottom: -20px;
        left: 0;
    }

    .tab-img-detail {
        color: var(--primary-black);
    }

    .tab-img img,
    .event-volunter-detail .volunter-img {
        height: 80px;
        width: 80px;
        object-fit: cover;
    }

    .tab-img {
        display: flex;
        align-items: center;
        gap: 25px;
        border-bottom: 1px solid #8b8b8b;
        padding-bottom: 30px;
        /* .event-volunter-wrap .event-volunter-detail */
    }

    .tab-img-detail h3 {
        font-weight: 500;
    }

    .tab-info-img-wrapper p {
        font-weight: 400;
    }

    .project-investors-img {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .project-investors-img .tab-img-detail {
        bottom: 0;
    }

    .time-growth {
        margin: 50px 0;
        padding: 0 15px;
    }

    .time {
        padding: 90px 0 50px;
    }

    .ceo .container-pl {
        padding: 0 15px;
    }

    .investment-wrap.border-none {
        border: none;
        margin-bottom: 0px;
    }

    .investment-wrap {
        margin-bottom: 40px;
    }

    .investment .more-btn {
        display: block;
    }

    #fund-slider .slick-dots {
        right: 30%;
    }

    .funds .fund-title span {
        font-size: 64px;
    }

    .mobile-menu-logo img {
        width: 90%;
    }

    .nav-sub-card .nav-sub-title {
        font-size: 14px;
        margin-top: 10px;
    }

    .investment-detail h3 {
        display: block;
    }

    .investment-detail h3 .project-no {
        display: block;
        margin: 20px 0 0;
    }

    .investment-detail h3 .project-no a {
        color: var(--main-color);
        text-decoration: underline;
    }

    .investment-detail h3 .project-no::after {
        display: none;
    }

    .portfolio-wrap .m-hide {
        display: none;
    }

    .page-item:last-child .page-link {
        margin-left: 10px;
    }

    .page-item:first-child .page-link {
        margin-right: 10px;
    }

    .page-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 40px;
    }

    .project-detail-page-info .project-detail-date {
        margin-top: 70px;
    }

    .portfolio-detail-page .portfolio-main-title {
        display: block;
        font-size: 32px;
        text-align: left;
    }

    .portfolio-detail-page .project-investors {
        padding: 50px 15px;
    }

    .csr-detail-page .event-detail-title h2 {
        font-style: italic;
    }

    .csr-detail-page .ourteam-detail-img .csr-detail-info {
        font-size: 20px;
        padding-right: 15px;
    }

    .ourteam-detail-info h4 {
        margin: 50px 0 30px;
    }

    .event-volunteer .event-volunter-title,
    .volunter-social-icon {
        display: none;
    }

    .csr-detail-page .event-volunteer {
        padding: 250px 15px 0;
    }

    .event-volunter-wrap {
        display: block;
    }

    .event-volunter-detail .volunter-name {
        font-size: 22px;
        font-weight: 500;
        margin: 0;
    }

    .csr-detail-page .event-volunter-detail .volunter-img {
        float: left;
        margin: -15px 20px 0 0px;
    }

    .tab-img-detail h3 {
        font-size: 22px;
    }

    .tab-img-detail p {
        font-weight: 400;
    }

    .csr-detail-page .event-volunter-detail .volunter-position {
        margin: 5px 0 0;
    }

    .event-volunter-wrap .event-volunter-detail {
        margin: 0 0 45px;
        width: 100%;
        border-bottom: 1px solid #8b8b8b;
        padding-bottom: 45px;
    }

    .project-investors-img .tab-img:last-child,
    .csr-detail-page .event-volunter-detail:last-child {
        border: none;
    }

    .csr-detail-page h5.event-media-title {
        margin-bottom: 35px;
    }

    .event-detail-imgs,
    .media-gallery-img {
        grid-template-columns: 1fr;
    }

    .media-gallery-img .media-img__2,
    .media-gallery-img .media-img__3,
    .media-gallery-img .media-img__4,
    .media-gallery-img .media-img__5,
    .media-gallery-img .media-img__6 {
        margin-top: 35px;
    }

    .event-detail-imgs .img-item__2,
    .event-detail-imgs .img-item__3,
    .event-detail-imgs .img-item__4,
    .event-detail-imgs .img-item__5,
    .event-detail-imgs .img-item__6,
    .event-detail-imgs .img-item__7,
    .event-detail-imgs .img-item__8,
    .event-detail-imgs .img-item__9 {
        margin-top: 35px;
    }
}

svg.circle-text {
    fill: currentColor;
    height: auto;
    position: absolute;
    z-index: 1000;
    right: 65px;
    margin-top: 140px;
    max-width: 30vmin;
    transform-origin: center;
    width: 60%;
    color: var(--main-color);
}

section.content {
    padding-bottom: 30px;
}

.social-icon {
    width: 50px;
}

.awards-icon img {
    width: 50px;
    height: 100%;
    object-fit: contain;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 100%;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 525px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card.map .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back {
    transform: rotateY(180deg);
    position: relative;
}

.flip-card-back iframe {
    width: 100%;
    height: 100%;
}

.flip-card-back .view-map-wrapper {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    left: 0;
    bottom: 40px;
}

.carrer-page .accordion-button:focus {
    box-shadow: none;

}
.modal-dialog.career-form-model {
    margin: 100px;
    max-width: 100%;
}
.career-form-model .modal-body ,.career-form-model .modal-header{
  padding: 2rem 3rem;
}
