@font-face {
    font-family: CenturyGothic-Regular;
    src: url('../fonts/CenturyGothic-Regular.ttf');
}

@font-face {
    font-family: CenturyGothic-Bold;
    src: url('../fonts/CenturyGothic-Bold.TTF');
}

:root {
    --theme-color-1: #223ccf;
    --theme-color-2: #8d3fd0;
    --theme-color-3: #ed3d63;
    --theme-color-4: #161b7f;
    --theme-color-5: #06b3d7;
    --bg-white: #ffffff;
    --bg-black: #07070a;
    --font-color: #646464;
    --heading-color: #15161d;
    --font-white: #ffffff;
    --font-black: #000000;
    --bg-color1: #d6c5e2;
    --bg-color2: #ede4da;
}


body {
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}

h1,
h2,
h3 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-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: 30px;
    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: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #2c41b9;
}

.btn-secondary {
    color: var(--font-white);
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-secondary:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #642997;
}

.btn-red {
    color: var(--theme-color-3);
    background-color: var(--font-white);
    transition: all .5s ease-out;
}

.btn-red:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #b91e40;
}

.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: -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;
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}
.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: relative;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: var(--font-white);
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
    transition: none !important;
    height: auto;
    flex-direction: column;
    padding: 8px 0px;
} 

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-color);
    font-family: 'CenturyGothic-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: 7px;
    font-size: 13px;
    margin-top: 4px;
}

.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) !important;
}

.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-1);
}

.navbar.fixed-top .nav-link:hover{
    color: var(--theme-color-1) !important;
}

.nav-item.search .btn-main{
    white-space: nowrap;
}

@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 15px 0px;
} 

.dropdown-menu li:last-child{
    margin-bottom: 0px;
}

.dropdown-menu li a{
    color: var(--font-color);
    font-size: 14px;
    font-family: 'CenturyGothic-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;
}

.navbar.fixed-top .topbar-contact-wrapper ul li a{
    color: var(--font-black);
}

.navbar.fixed-top .topbar-contact-wrapper ul li a i{
    color: var(--theme-color-1);
}

.navbar.fixed-top .topbar-social li a{
    color: var(--theme-color-1)
}

.navbar-brand img{
    width: 160px;
}

.largemenu{
    position: initial;
}

.largemenu .dropdown-menu{
    min-width: 100%;
    left: 0%;
}

.largemenu-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    column-count: 4;
    gap: 20px;
    padding: 25px;
}

.largemenu-wrapper .largemenu-item{
    flex: 1;
}

.largemenu-heading{
    margin-bottom: 25px;
    font-size: 18px;
}

.largemenu-item ul li{
    margin-bottom: 15px;
}

.largemenu-item ul li:last-child{
    margin-bottom: 0px;
}

.section-description{
    font-family: 'CenturyGothic-Regular', sans-serif;
    color: var(--font-black);
    text-align: center;
}

.demo-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 587px;
    background-image: url('../images/banner-bg-img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: inherit;
    z-index: 10;
}

.demo-banner-container::after{
    background-image: url('../images/banner-layer.png');
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: inline-block;
    content: '';
}

.demo-banner-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    z-index: 15;
}

.dbanner-small-heading{
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--font-white);
    text-align: center;
}

.dbanner-heading{
    font-size: 45px;
    margin-bottom: 20px;
    color: var(--font-white);
    text-shadow: 2px 2px 4px #2c2c2c;
    text-align: center;
}

.dbanner-heading span{
    color: #f9af0f;
}

.dbanner-description{
    margin-bottom: 25px;
    color: var(--font-white);
    text-align: center;
}

.section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 5rem 0rem;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    z-index: 11;
}

.section-heading{
    font-size: 45px;
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-heading span{
    color: var(--theme-color-1);
}

.find-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 5px;
}

.find-card-wrapper span{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background-color: var(--theme-color-4);
    margin: auto;
}

.find-card-wrapper h3{
    font-size: 22px;
    text-align: center;
    margin-top: 20px;
    color: var(--heading-color);
}

.section-layer-bg{
    position: absolute;
    display: inline-block;
    z-index: 1;
}

.section-layer-bg.left{
    left: -50px;
    bottom: -50px;
}

.section-layer-bg.right{
    right: 0px;
}

.features-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 8px;
    border: 2px solid var(--font-white);
    height: 100%;
    z-index: 5;
}

.features-content{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
}

.features-content h3{
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.features-content p{
    text-align: center;
}

.features{
    background-color: #f4f5fa;
}

.features-image{
    width: 100%;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    padding-bottom: 0px;
}

.features-logo-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.projects{
    background-color: #f4f5fa;
}

.project-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    background-color: var(--font-white);
    border: 10px solid var(--font-white);
    border-radius: 8px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    transition: ease-in 0.3s;
}

.project-info{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-top: 1px solid #ddd;
    flex-direction: column;
}

.project-info h3{
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
}

.project-info p{
    text-align: center;
}

.project-image{
    width: 100%;
    height: 400px;
    display: inline-block;
}

.project-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-wrapper:hover{
    transition: ease-in 0.3s;
    margin-top: -10px;
}

.whychoose-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 8px;
    background-color: #1e1e28;
    height: 100%;
    transition: ease-in 0.3s;
}

.whychoose-wrapper:hover{
    margin-top: -10px;
    transition: ease-in 0.3s;
}

.whychoose-image{
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid var(--theme-color-1);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-1);
    margin: auto;
}

.whychoose-image h4{
    color: var(--theme-color-1);
    font-size: 20px;
}

.whychoose-info{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.whychoose-info h3{
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--font-white);
}

.whychoose-info p{
    text-align: center;
    color: var(--font-white);
}

.whychoose{
    background-color: #15161d;
}

footer{
    width: 100%;
    position: relative;
    background-image: url('../images/footer-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0px;
}

footer::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 5%);
    z-index: 9;
}

.footer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 11;
}

.footer-wrapper h2{
    font-size: 45px;
    text-align: center;
    margin-bottom: 20px;
}

.footer-wrapper p{
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}