/**
* Template Name: UpConstruction
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #364d59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #feb900; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.55);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #feb900; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne.ttf') format('truetype'),
	url('../fonts/Melbourne.woff') format('woff'),
	url('../fonts/Melbourne.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

/* Bold */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Bold.ttf') format('truetype'),
	url('../fonts/Melbourne-Bold.woff') format('woff'),
	url('../fonts/Melbourne-Bold.otf') format('opentype');
	font-weight: bold;
	font-style: normal;
}

/* Italic */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Italic.ttf') format('truetype'),
	url('../fonts/Melbourne-Italic.woff') format('woff'),
	url('../fonts/Melbourne-Italic.otf') format('opentype');
	font-weight: normal;
	font-style: italic;
}

/* Bold Italic */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Bold-Italic.ttf') format('truetype'),
	url('../fonts/Melbourne-Bold-Italic.woff') format('woff'),
	url('../fonts/Melbourne-Bold-Italic.otf') format('opentype');
	font-weight: bold;
	font-style: italic;
}

/* Light */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Light.ttf') format('truetype'),
	url('../fonts/Melbourne-Light.woff') format('woff'),
	url('../fonts/Melbourne-Light.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
}

/* Light Italic */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Light-Italic.ttf') format('truetype'),
	url('../fonts/Melbourne-Light-Italic.woff') format('woff'),
	url('../fonts/Melbourne-Light-Italic.otf') format('opentype');
	font-weight: 300;
	font-style: italic;
}

/* Medium */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Medium.ttf') format('truetype'),
	url('../fonts/Melbourne-Medium.woff') format('woff'),
	url('../fonts/Melbourne-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

/* Medium Italic */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Medium-Italic.ttf') format('truetype'),
	url('../fonts/Melbourne-Medium-Italic.woff') format('woff'),
	url('../fonts/Melbourne-Medium-Italic.otf') format('opentype');
	font-weight: 500;
	font-style: italic;
}

/* Semi Bold */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Semi-Bold.ttf') format('truetype'),
	url('../fonts/Melbourne-Semi-Bold.woff') format('woff'),
	url('../fonts/Melbourne-Semi-Bold.otf') format('opentype');
	font-weight: 600;
	font-style: normal;
}

/* Semi Bold Italic */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Semi-Bold-Italic.ttf') format('truetype'),
	url('../fonts/Melbourne-Semi-Bold-Italic.woff') format('woff'),
	url('../fonts/Melbourne-Semi-Bold-Italic.otf') format('opentype');
	font-weight: 600;
	font-style: italic;
}

/* Thin */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Thin.ttf') format('truetype'),
	url('../fonts/Melbourne-Thin.woff') format('woff'),
	url('../fonts/Melbourne-Thin.otf') format('opentype');
	font-weight: 100;
	font-style: normal;
}

/* Thin Italic */
@font-face {
	font-family: 'Melbourne';
	src: url('../fonts/Melbourne-Thin-Italic.ttf') format('truetype'),
	url('../fonts/Melbourne-Thin-Italic.woff') format('woff'),
	url('../fonts/Melbourne-Thin-Italic.otf') format('opentype');
	font-weight: 100;
	font-style: italic;
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #3B85FB;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}
.hero .info h1 {
  font-size: 50px;
  color: #545454;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0%;
  font-family: 'Melbourne', sans-serif;
}
.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-family: 'Melbourne', sans-serif;
  font-size: 56px;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: #CA8900;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0%;
		font-family: "Montserrat", sans-serif;
    color: #545454;
}
.hero .info .button1{
  margin-right: 2rem;
  background: #3B85FB; 
  font-size:18px;
  font-weight: 800;
  font-family:'Montserrat', sans-serif;
  padding: 12px;
}
.hero .info .button2{
  font-size:18px;
  font-weight: 800;
  padding: 12px;
  font-family:'Montserrat', sans-serif;
  color: #3B85FB; 
  background: #fff; 
  border-color: #CA8900;
}
.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #CA8900;
}

.hero .info .btn-get-started:hover {
  background: #CA8900;
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}
