
/* Fonts */
:root {
  /*--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
  --font-default: "Hind", sans-serif;
  /*--font-primary: "Montserrat", sans-serif;*/
  --font-primary: "Cal Sans", sans-serif;
  --font-secondary: "Hind", sans-serif;
}

/* Colors */
:root {

  --color-background: #181818;
  --color-default: #111111; 
  --color-primary: #000;
  --color-secondary: #515151;
  --color-accent: #199999;  
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
#main{
  position: relative;
}
body {
  background-color: var(--color-background);
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
.leadin{
  font-size: clamp(17px, 3vw, 22px)
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 150px 15px;
  color: #fff;
}
section a{
  color: #fff;
}
section img{
  border-radius: 8px;
}

#about,
#process,
#testimonials{
  background-color: var(--color-secondary);
}
.accent-color{
  color: var(--color-accent);
}
.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-secondary);
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 85px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-accent);
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  section {
    padding: 50px 15px;
  }

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
  background: var(--color-primary);
  padding: 12px 0;
}

.header .logo img {
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-secondary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
.navbar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 80vw;
  bottom: 0;
  transition: 0.3s;
  z-index: 9997;
}

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-secondary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("img/usp-hero-bg.jpg") bottom right;
  background-size: contain;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  color: #fff;
}
@media (min-width: 1034px) {

  .hero::after {
    position: absolute;
    content: "";
    width: 50%;
    background: var(--color-primary);
    top: 0;
    bottom: 0;
  }

}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.8;
}
.hero h1 {
  color: #fff;
  font-size: clamp(50px, 5vw, 65px);
  font-weight: 800;
}
@media (max-width: 1266px) {
  .hero {
    background-size: cover;
  }  
}
@media (max-width: 1034px) {
 
  .hero::before {
    background: rgba(0, 0, 0, .8);
  }

}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}


.hero .btn-get-started {
  font-family: var(--font-secondary);
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-secondary);
  min-width: 50%;
  text-align: center;
}

.hero .btn-get-started:hover {
  background: var(--color-accent);
}




@media (max-width: 900px) {
  .hero .hero-focus{
    max-width: 100%;
  }

  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started {
    font-size: 13px;
    min-width: 100%;
  }

}





/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  width: 100%;
  min-height: 100vh;
  background: url("img/about-upside-projects.jpg") left center no-repeat;
  background-size: contain;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  color: #fff;
}

@media (min-width: 1034px) {
  .about::after {
    position: absolute;
    content: "";
    width: 50%;
    background: var(--color-primary);
    top: 0;
    bottom: 0;
    right: 0; /* move background colour to right side */
  }
}

.about::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.8;
}

.about h1 {
  color: #fff;
  font-size: clamp(50px, 5vw, 65px);
  font-weight: 800;
}

@media (max-width: 1266px) {
  .about {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 1034px) {
  .about::before {
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}
.about .container {
  z-index: 1;
}


.about .btn-get-started {
  font-family: var(--font-secondary);
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 10px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-secondary);
  min-width: 50%;
  text-align: center;
}

.about .btn-get-started:hover {
  background: var(--color-accent);
}


/*--------------------------------------------------------------
# Works Section
--------------------------------------------------------------*/
.works {
  width: 100%;
  min-height: 100vh;
  background: url("img/services-upside-projects.jpg") bottom right;
  background-size: contain;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  color: #fff;
}
@media (min-width: 1034px) {

  .works::after {
    position: absolute;
    content: "";
    width: 50%;
    background: var(--color-primary);
    top: 0;
    bottom: 0;
  }

}

.works::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.8;
}
.works h1 {
  color: #fff;
  font-size: clamp(50px, 5vw, 65px);
  font-weight: 800;
}
@media (max-width: 1266px) {
  .works {
    background-size: cover;
  }  
}
@media (max-width: 1034px) {
 
  .works::before {
    background: rgba(0, 0, 0, .8);
  }

}

.works .container {
  z-index: 3;
}






@media (max-width: 900px) {
  .works .works-focus{
    max-width: 100%;
  }

  .works h2 {
    font-size: 36px;
    line-height: 1;
  }

  .works .btn-get-started {
    font-size: 13px;
    min-width: 100%;
  }

}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: var(--color-default);
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: clamp(50px, 5vw, 65px);
  font-weight: 800;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: var(--color-primary);
  border: 0;
}

.call-to-action .cta-btn:hover {
  background: var(--color-secondary);
}

.call-to-action .emailer-form {
  padding: 2em;
  background-color: #fff;
  border-radius: 20px;
}

.call-to-action .phoneHolder, .call-to-action .envelopeHolder {
  height: 40px;
  margin-bottom: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  background-color: var(--color-background);
  color: #fff;
  border-radius: 50px;
  padding-left: 20px;
}


a.usp_link:hover {
  color: var(--color-accent) !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {

}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 28px;
  font-weight: bold;
  margin: 40px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-name{
  color: #fff;
  text-align: right;
}

@media (max-width: 1199px) {
  .phoneHolder, .envelopeHolder {
    font-size: clamp(17px, 3vw, 22px);
    word-break: break-word;
  }
  .testimonials .testimonial-item {
    margin: 40px 20px;
    flex-wrap: wrap;
  }

}

@media (min-width: 1200px) {

}

@media (max-width: 768px) {

  .testimonials .testimonialFlex {
    margin: 40px 20px;
    flex-wrap: wrap;
  }
  .testimonials .testimonial-name{
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}

.footer .footer-content {
  background-color: #f7f9fc;
  background-size: contain;
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
  margin-bottom: 25px;
  line-height: 1;
}

.footer .footer-content .footer-info .logo img {

}

.footer .footer-content .footer-info .logo span {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  padding-right: 20px;
}

.footer .footer-content .footer-info p {
  font-size: 15px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-secondary);
}

.footer  .social-links{
  display: flex;
}
.footer .footer-content .social-links a {
  font-size: 14px;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: var(--color-secondary);
  margin-right: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
  background-color: #38618e;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  position: relative;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: #31547c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .footer-content .footer-contact p {
  line-height: 26px;
  color: var(--color-secondary);
}

.footer .footer-legal-stuff {
  background: #fff;
  padding: 30px 0;
}

.footer .footer-legal-stuff .copyright {
  text-align: center;
  color: var(--color-secondary);
}

@media (max-width: 990px) {

  .footer .logo {
    flex-wrap: wrap !important;
    justify-content: center;
    text-align: center;
  }

  .footer .footer-content {
    padding: 60px 20px 30px;
  }
  
  .footer .col-lg-2,
  .footer .col-lg-3{
    margin-top: 0;
  }
  .social-links {
    display: flex;
    flex-flow: inherit;
    justify-content: center;
  }


}