@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/Poppins-Bold.ttf');
}

:root {
    --theme-color-1: #130b20;
    --theme-color-2: #ff6b3d;
    --theme-color-3: #47bc82;
    --theme-color-4: #0f012a;
    --thmee-color-5: #191753;
    --thmee-color-5: #340b7a;
    --bg-white: #ffffff;
    --bg-black: #000000;
    --font-color: #ffffff;
    --heading-color: #141414;
    --font-white: #ffffff;
    --font-black: #000000;
    --bg-color1: #19191a;
}

body {
    background-color: var(--theme-color-4);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Poppins-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}


h1,
h2,
h3 {
    color: var(--font-color);
    margin-bottom: 0;
    font-family: 'Poppins-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--font-color);
    margin-bottom: 0;
    font-family: 'Poppins-SemiBold', sans-serif;
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 16px;
    height: 46px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
    border: 1px solid var(--font-white);
    white-space: nowrap;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #dd3c0a;
}

.btn-main i{
    margin-left: 15px;
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

.error-msg{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    left: 0px;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #2e7dab;
    font-size: 14px;
    z-index: 10;
    top: 65px;
    left: 0;
	color: #fff;
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.check-success-icon{
	margin-right: 10px;
    padding: 10px;
    color: #fff;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -38px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #001941;
    font-size: 14px;
    z-index: 10;
    bottom: 50px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}
.success-msg-contact p{
    margin-bottom: 0px;
}
.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
    height: 75px;
} 

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'Poppins-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome", sans-serif; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar.fixed-top{
    position: fixed;
    background-color: var(--bg-white);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}

.navbar.fixed-top .nav-link{
    color: var(--font-black);
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-2);
}

.navbar.fixed-top .nav-link:hover{
    color: var(--theme-color-2);
}

.nav-item.search .btn-main{
    white-space: nowrap;
}

.navbar .navbar-brand .white{
    display: block;
}

.navbar .navbar-brand .black{
    display: none;
}

.navbar.fixed-top .navbar-brand .white{
    display: none;
}

.navbar.fixed-top .navbar-brand .black{
    display: block;
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-black);
    font-size: 16px;
    font-family: 'Poppins-Regular', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.topbar{
    background-color: var(--bg-black);
    padding: 12px 0px;
}

.topbar-contact-wrapper ul li{
    display: inline-block;
    margin-right: 15px;
}

.topbar-contact-wrapper ul li a{
    color: var(--font-white);
}

.topbar-contact-wrapper ul li a i{
    color: var(--theme-color-1);
    margin-right: 10px;
}

.topbar-social{
    text-align: right;
    display: flex;
}

.topbar-social li{
    display: inline-block;
    margin-left: 5px;
}

.topbar-social li a{
    color: var(--font-black);
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--font-white);
    border-radius: 5px;
}

.topbar-contact-wrapper{
    position: relative;
    margin-right: 2rem;
}

.navbar-brand img{
    min-width: 250px;
    width: 250px;
}

.header-btns{
    display: flex;
    align-items: center;
}

.header-btns a{
    margin-left: 15px;
}

.header-btns a:first-child{
    margin-left: 0px;
}

.banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/banner-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    overflow: hidden;
    /* background-color: var(--theme-color-4); */
    padding-top: 80px;
}

.banner-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner-small-heading{
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Poppins-Medium', sans-serif;
    color: var(--theme-color-2);
}

.banner-heading{
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'Poppins-SemiBold', sans-serif;
}

.banner-heading span{
    color: var(--theme-color-1);
}

.banner-description{
    color: var(--font-white);
    margin-bottom: 20px;
}

section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
    overflow: hidden;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-heading-wrapper img{
    width: 20px;
    margin-right: 15px;
}

.section-heading{
    font-size: 38px;
    margin-top: 15px;
}

.section-samll-heading{
    font-size: 18px;
    color: var(--theme-color-2);
}

.section-heading-wrapper.middle .section-samll-heading{
    text-align: center;
}

.section-heading-wrapper.middle .section-heading{
    text-align: center;
}

.section-heading-wrapper.left .section-samll-heading{
    text-align: left;
}

.section-heading-wrapper.left .section-heading{
    text-align: left;
}

.section-description{
    color: var(--font-black);
    text-align: center;
    font-size: 18px;
}

#my-map-canvas img {
    max-height: none;
    max-width: none !important;
    background: none !important;
}

.faq-wrapper .accordion-item{
    margin-bottom: 20px;
    background-color: #1f1e1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--font-white);
    border-radius: 6px;
}

.faq-wrapper .accordion-button{
    background-color: #1f1e1a;
    border: none;
    color: var(--font-white);
    font-family: 'Poppins-Medium', sans-serif;
    border-radius: 6px;
}

.faq-wrapper .accordion-button:not(.collapsed){
    box-shadow: none;
    background-color: var(--theme-color-3);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.faq-wrapper .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\f068';
    font-family: 'Fontawesome', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-wrapper .accordion-button::after{
    background-image: none;
    content: '\f067';
    font-family: 'Fontawesome', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.btn-nobg{
    padding-left: 0;
    padding-right: 0;
}

.btn-nobg i {
    margin-left: 15px;
}

.banner-card-icons{
    width: 100%;
    display: flex;
    align-items: center;
    margin-top:30px;
}

.banner-card-icons li{
    border-radius: 6px;
    margin-right: 10px;
    padding: 15px;
    background-color: var(--theme-color-1);
    height: 60px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-card-icons li img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wallet-card-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    padding: 2rem;
}

.wallet-card-wrapper.bitcoin{
    background-color: #16232c;
}

.wallet-card-wrapper.dogecoin{
    background-color: #181b36;
}

.wallet-card-wrapper.ripple{
    background-color: #231135;
}

.wallet-card-wrapper .wallet-card-icon{
    position: relative;
	width: 50px;
    min-width: 50px;
	height: 50px;
	clip-path: polygon( 50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 12px;
    margin-right: 25px;
}
 
.wallet-card-wrapper.bitcoin .wallet-card-icon{
    background: #fb942f;
}

.wallet-card-wrapper.dogecoin .wallet-card-icon{
    background: #657de5;
}

.wallet-card-wrapper.ripple .wallet-card-icon{
    background: #b661e7;
}

.wallet-card-content h3{
    font-size: 18px;
    font-family: 'Poppins-Medium', sans-serif;
}

.wallet-card-content h2{
    font-size: 26px;
    margin: 25px 0px;
}

.percentBadge{
    padding: 5px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.percentBadge.bg-green{
    background-color: #47bb81;
}

.percentBadge.bg-blue{
    background-color: #657de5;
}

.percentBadge.bg-orange{
    background-color: #fd693d;
}

.percntage-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.percntage-wrapper img{
    width: 125px;
    margin-left: 30px;
}

.wallet-info-wrapper{
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 2.5rem;
}

.wallet-info-icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: transparent;
    border: 1px solid var(--font-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border-radius: 50%;
}

.wallet-info-content h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.section-heading-wrapper.left{
    padding-right: 6rem;
}

.about-fact-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    height: 100%;
}

.about-fact-wrapper h2{
    font-size: 32px;
    color: var(--theme-color-3);
    margin-bottom: 10px;
    font-family: 'Poppins-SemiBold', sans-serif;
}

.about-fact-wrapper p{
    text-align: center;
}

.about-container{
    background-color: var(--theme-color-1);
}

.process-card-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 35px;
    z-index: 11;
}

.process-card-wrapper img{
    width: 50px;
    margin-bottom: 20px;
}

.process-card-wrapper span{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
}

.process-card-wrapper h3{
    font-size: 24px;
    margin: 25px 0px;
    text-align: center;
}

.process-card-wrapper p{
    text-align: center;
}

.process-card-wrapper.odd::after{
    width: 60%;
    position: absolute;
    top: 0;
    left: 50%;
    content: '';
    background-image: url('../images/arc-downside.png');
    z-index: 10;
    background-position: center;
    display: inline-block;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(38%, -46%);
}

.process-card-wrapper.even::after{
    width: 60%;
    position: absolute;
    top: 0;
    left: 50%;
    content: '';
    background-image: url('../images/arc-upside.png');
    z-index: 10;
    background-position: center;
    display: inline-block;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(38%, -34%);
}

.process-card-wrapper.last::after{
    display: none;
}

.learn-large-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.learn-image{
    width: 100%;
    height: 400px;
    position: relative;
    display: inline-block;
    border-radius: 12px;
}

.learn-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.learn-content{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
    padding-right: 6rem;
}

.learn-content a h3{
    font-size: 24px;
    margin-bottom: 20px;
}

.learn-small-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.learn-small-content{
    flex: 50%;
}

.learn-small-image{
    flex: 50%;
    height: 175px;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    margin-left: 40px;
}

.learn-small-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.learn-small-content a h3{
    font-size: 24px;
    margin-bottom: 20px;
}

.speciality-card-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    padding: 2rem 3rem;
    text-align: center;
}

.speciality-card-wrapper.one{
    background-color: #0e1a2e;
}

.speciality-card-wrapper.two{
    background-color: #20083f;
}

.speciality-card-wrapper.three{
    background-color: #160d3f;
}

.speciality-card-wrapper img{
    width: 50px;
}

.speciality-card-wrapper h3{
    margin: 20px 0px;
    font-size: 20px;
}

.earn-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 0px 4rem;
}

.earn-content-wrapper li{
    margin-bottom: 30px;
}

.earn-content-wrapper li:last-child{
    margin-bottom: 0px;
}

.earn-inner-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.earn-inner-right p{
    text-align: right;
    color: var(--theme-color-3);
}

.earn-inner-left{
    display: flex;
    align-items: center;
}

.earn-inner-icon{
    margin-right: 20px;
    background-color: var(--font-white);
    border-radius: 50%;
    padding: 4px;
}

.earn-inner-left h3{
    font-size: 20px;
}

.earn-inner-left h3 span{
    font-family: 'Poppins-Regular', sans-serif;
    margin-left: 15px;
}

.earn-inner-icon img{
    width: 30px;
}

.wallet-info-wrapper.portfolio1{
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    background-color: #0e1a2e;
    margin-bottom: 0;
}

.wallet-info-wrapper.portfolio2{
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    background-color: #160d3f;
    margin-bottom: 0;
}

.wallet-info-wrapper.portfolio3{
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    background-color: #20083f;
    margin-bottom: 0;
}

.wallet-info-wrapper.portfolio4{
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    background-color: #1b1a2e;
    margin-bottom: 0;
}

.info-banner-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--thmee-color-5);
    border-radius: 12px;
    padding: 3rem;
    z-index: 10;
}

.info-banner-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/ingo-banner-bg.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 9;
}

.info-banner-wrapper h2{
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
    z-index: 11;
    position: relative;
}

.info-banner-wrapper p{
    text-align: center;
    margin-bottom: 2rem;
    z-index: 11;
    position: relative;
}

.info-banner-wrapper a{
    margin: auto;
    z-index: 11;
    position: relative;
}

.testimonial-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    background-color: var(--theme-color-1);
    border-radius: 12px;
}

.testimonial-top{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-top img{
    width: 18px;
}

.testimonial-star{
    display: flex;
    align-items: center;
}

.testimonial-star li{
    margin-left: 5px;
    font-size: 14px;
    color: #fb942f;
}

.testimonial-middle{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 30px 0px;
}

.testimonial-bottom{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-author-img{
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 20px;
}

.testimonial-author-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author-info h3{
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author-info p{
    margin-bottom: 0px;
    font-size: 12px;
}

footer{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-1);
    padding: 4rem 0rem 0rem 0rem;
}

.footer-bottom{
    width: 100%;
    position: relative;
    padding: 30px 0px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p{
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom ul{
    display: flex;
}

.footer-bottom ul li{
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-logo img{
    width: 250px;
}

.footer-links{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links ul li{
    margin-bottom: 15px;
}

.footer-links ul li:last-child{
    margin-bottom: 0;
}

.footer-links ul li a{
    color: rgba(255, 255, 255, 0.8);
}

.footer-subscribe p{
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-subscribe form{
    width: 100%;
    position: relative;
    display: inline-block;
}

.footer-subscribe-form{
    width: 100%;
    position: relative;
    display: inline-block;
}

.subscribe-input{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 30px;
    color: var(--font-white);
}

.subscribe-btn{
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: var(--theme-color-2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    padding: 5px;
    border-radius: 50%;
    border: none;
}

.wallet-layer-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: -1;
}

.process-layer-wrapper{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.2;
    z-index: -1;
}

.learn-layer-wrapper{
    position: absolute;
    top: 50%;
    right: 50%;
    opacity: 0.4;
    z-index: -1;
    transform: translate(50%, -50%);
}

.portfolio-layer-wrapper{
    position: absolute;
    top: 50%;
    right: 50%;
    opacity: 0.4;
    z-index: -1;
    transform: translate(50%, -50%);
}

.testimonial-layer-wrapper{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.2;
    z-index: -1;
}

.footerleft-layer-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    z-index: 1;
    height: 350px;
}

.footerleft-layer-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footerright-layer-wrapper{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.2;
    z-index: 1;
    height: 350px;
}

.footerright-layer-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}