@font-face {
    font-family: Lato-Regular;
    src: url('../fonts/Lato-Regular.ttf');
}

@font-face {
    font-family: Lato-Bold;
    src: url('../fonts/Lato-Bold.ttf');
}

@font-face {
    font-family: Lato-Black;
    src: url('../fonts/Lato-Black.ttf');
}

:root {
    --theme-color-1: #fbd13a;
    --theme-color-2: #1e1e1e;
    --theme-color-3: #4D163D;
    --theme-color-4: #840037;
    --theme-color-5: #BD0034;
    --theme-color-6: #BD0034;
    --bg-white: #ffffff;
    --bg-black: #07070a;
    --font-color: #808080;
    --heading-color: #141414;
    --font-white: #ffffff;
    --bg-color1: #19191a;
}

body {
    background-color: var(--bg-black);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'Lato-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}


h1,
h2,
h3 {
    color: var(--font-white);
    margin-bottom: 0;
    font-family: 'Lato-Black', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--font-white);
    margin-bottom: 0;
    font-family: 'Lato-Bold', 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: 25px;
    height: 46px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--bg-black);
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #d3a20d;
}

.main-content-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

@media (min-height: 30em) {
    main {
        scroll-snap-type: y mandatory;
        height: 100vh;
        overflow-y: scroll;
    }
}

.section {
    position: relative;
    scroll-snap-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    color: var(--font-white)
}

@media (min-height: 30em) {
    .section {
        height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (min-height: 30em) {
    .section__content>* {
        opacity: 0;
        transform: translate3d(0, 3rem, 0);
        transition: opacity 1000ms var(--delay), transform 1000ms cubic-bezier(0.13, 0.07, 0.26, 0.99) var(--delay);
    }
}

.is-visible .section__content>* {
    opacity: 1;
    transform: translate3d(0, 2rem, 0);
}

.section__content{
    width: 100%;
    position: relative;
    display: inline-block;
}

header{
    height: 80px;
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 999;
    background-color: transparent;
}

.header-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menubaricon{
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.menubaricon img{
    width: 50px;
}

.header-left{
    display: flex;
    align-items: center;
}

.header-brand{
    margin-left: 15px;
}

.header-brand img{
    width: 160px;
}

.dropdown-menu-left {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, 110px) !important;
    border-radius: 30px;
    min-width: 500px;
    height: auto;
    background-color: #1c1c1c;
    padding: 40px 20px 20px 20px;
    min-height: 350px;
    overflow: auto;
    max-height: 350px;
}

.header-left .dropdown{
    position: initial;
}

.dropdown-menu-left .dropdown-item{
    color: var(--font-white);
    padding: 15px 20px;
    font-size: 24px;
    text-align: center;
    border-radius: 12px;
}

.dropdown-menu-left .dropdown-item:focus, .dropdown-menu-left .dropdown-item:hover{
    background-color: #2f2f2f;
}

.dropdown-menu-left .dropdown-item.active, .dropdown-menu-left .dropdown-item:active{
    background-color: #2f2f2f;
}

.dropdownclose{
    position: absolute;
    left: 15px;
    top: 10px;
    cursor: pointer;
}

.dropdownclose img{
    width: 25px;
}
 
body::before,
body::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #fff;
    height: 100%;
    opacity: 0.1;
    z-index: 9;
}
  
body::before {
    left: 33.33%;
}
  
body::after {
    right: 33.33%;
}

.banner-heading-wrapper{
    width: 100%;
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-heading{
    font-size: 45px;
    margin-bottom: 20px;
}

.banner-description{
    margin-bottom: 0px;
}

.banner-heading span{
    color: var(--theme-color-1)
}

.banner-image-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content-container{
    width: 100%;
    position: relative;
    display: inline-block;
}

.banner-layer-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0.5;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem
}

.section-heading{
    font-size: 36px;
    margin-bottom: 15px;
}

.services-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: #1f1e1a;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 11;
    transition: ease-in 0.3s;
    border-bottom-width: 3px;
    height: 100%;
}

.services-card-wrapper:hover{
    transition: ease-in 0.3s;
    border-bottom-color: var(--theme-color-4);
}

.services-icon{
    background-color: #424242;
    width: 70px;
    height: 70px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 10px;
}

.services-content{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
    text-align: center;
}

.services-content h3{
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.services-content p{
    text-align: center;
    margin-bottom: 0;
}

.service-detail-link{
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 6px;
    margin: auto;
    margin-top: 20px;
    display: inline-block;
    width: auto;
    text-align: center;
    transition: ease-in 0.3s;
}

.service-detail-link i{
    margin-left: 10px;
}

.services-layer-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    width: auto;
}

.service-detail-link:hover{
    border-color: var(--theme-color-1);
    color: var(--theme-color-1);
}

svg {
    display: block;
    font-size: 10.5em;
    width: 960px;
    height: 250px;
    margin: 0 auto;
}

.text-copy {
    fill: none;
    stroke: white;
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
	stroke: #4D163D;
	animation-delay: -1;
}

.text-copy:nth-child(2){
	stroke: #840037;
	animation-delay: -2s;
}

.text-copy:nth-child(3){
	stroke: #BD0034;
	animation-delay: -3s;
}

.text-copy:nth-child(4){
	stroke: #BD0034;
	animation-delay: -4s;
}

.text-copy:nth-child(5){
	stroke: var(--theme-color-1);
	animation-delay: -5s;
}

@keyframes stroke-offset{
	100% {stroke-dashoffset: -35%;}
}

.about-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 200px;
    background-color: #1f1e1a;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 11;
}

.about-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 11;
}

.about-content-wrapper p{
    margin-bottom: 20px;
}

.about-content-wrapper ul li{
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.about-content-wrapper ul li span{
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    font-size: 20px;
    color: var(--bg-black);
    margin-right: 10px;
}

.about-content-wrapper ul li p{
    margin-bottom: 0;
}

.partner-wrapper{
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: ease-in 0.3s;
    background: linear-gradient(to left, var(--theme-color-3), var(--theme-color-4));
}

.partner-wrapper:hover{
    background-color: var(--theme-color-3);
    transition: ease-in 0.3s;
}

.partner-wrapper img{
    width: 170px;
    height: 50px;
    object-fit: contain;
}

.latest-work-wrapper{
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    transition: ease-in 0.3s;
    background-color: #1f1e1a;
    z-index: 11;
    border-bottom-width: 3px;
}

.latest-work-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.latest-work-content h3{
    font-size: 20px;
}

.latest-work-image{
    width: 100%;
    height: 200px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.latest-work-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.latest-work-link{
    transition: ease-in 0.3s;
}

.latest-work-link:hover{
    transition: ease-in 0.3s;
    color: var(--theme-color-1);
}

.latest-work-wrapper:hover{
    transition: ease-in 0.3s;
    border-bottom-color: var(--theme-color-4);
}

.testimonial-item{
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 4rem;
    border-radius: 12px;
    height: 100%;
    transition: ease-in 0.3s;
    background-color: #1f1e1a;
    z-index: 11;
    border-bottom-width: 3px;
}

.testimonial-item:hover{
    transition: ease-in 0.3s;
    border-bottom-color: var(--theme-color-4);
}

.testimonial-item p{
    text-align: center;
}

.testimonial-author{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    flex-direction: column;
}

.testimonial-author img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-author h4{
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p{
    text-align: center;
}

/* the slides */
.slick-slide {
    margin: 0 24px;
}

/* the parent */
.slick-list {
    margin: 0 -24px;
}

.ourteam-wrapper{
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    transition: ease-in 0.3s;
    background-color: #1f1e1a;
    z-index: 11;
    border-bottom-width: 3px;
    text-align: center;
}

.ourteam-wrapper img{
    width: 100%;
    position: relative;
    display: inline-block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
}

.ourteam-wrapper h4{
    text-align: center;
    font-size: 20px;
}

.ourteam-wrapper p{
    text-align: center;
}

.ourteam-wrapper ul{
    margin-top: 15px;
}

.ourteam-wrapper ul li{
    display: inline-block;
}

.ourteam-wrapper ul li a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 5px;
    background-color: var(--theme-color-1);
    color: var(--bg-black);
    border-radius: 50%;
    transition: ease-in 0.3s;
}

.ourteam-wrapper ul li a:hover{
    transition: ease-in 0.3s;
    color: #fff;
    background-color: #d3a20d;
}

.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: 'Lato-Bold', sans-serif;
    border-radius: 6px;
}

.faq-wrapper .accordion-button:not(.collapsed){
    box-shadow: none;
    background-color: var(--theme-color-5);
    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;
}

.contact-from-wrapper{
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: ease-in 0.3s;
    background-color: transparent;
    z-index: 11;
}

.contact-input-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: #1f1e1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--font-white);
    border-radius: 6px;
}

.contactus-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.contactus-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.footer{
    width: 100%;
    position: relative;
    display: inline-block;
    height: auto;
    min-height: auto;
    margin-top: 3rem;
}

.footer-top-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0rem;
    border-bottom: 1px solid #323232;
    margin-bottom: 0px;
}

.footer-brand{
    width: 160px;
    display: inline-block;
    position: relative;
}

.footer-menu li{
    display: inline-block;
}

.footer-menu li a{
    margin: 0px 10px;
}

.footer-social li{
    display: inline-block;
}

.footer-social li a{
    margin: 0px 10px;
}

.footer-bottom-wrapper{
    padding-top: 32px;
    text-align: center;
    color: var(--font-white);
    margin-bottom: 32px;
}

#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
}

.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: -8px;
    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;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}

.check-success-icon{
    padding: 10px;
    margin-right: 10px;
	color: #fff;
}
.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;
}