/* -------------------------------------
	Project     :  My Project

  Author      :  Sudhir Deolalikar

  File Type   :  SCSS stylesheets

  Version     :  v1.0
------------------------------------- */
/* -------------------------------------
	01. Imports
------------------------------------- */
/* -------------------------------------
	Imports
------------------------------------- */
/* -------------------------------------
	Font Imports
------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
/*
font-family: "Raleway", sans-serif;
*/
/* -------------------------------------
	Theme Colors
------------------------------------- */
@import "./bootstrap.min.css";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
:root {
  --primary-color: #ee560c;
  --secondary-color: #2aa3ef;
  --footer-bg: #222222;
  --white: #fff;
  --black: #000;
  --border-color: #cccccc;
  --font-color: #666666;
  --font-color-light: #767676;
  --font-color-dark: #25304c;
  --primary-font: "Roboto", sans-serif;
  --custom-font: "Raleway", sans-serif;
  --icon-font: "bootstrap-icons";
}

/* -------------------------------------
	Mixins
------------------------------------- */
/* -------------------------------------
	Utilities
------------------------------------- */
.no-border {
  border: 0;
}

.width-auto {
  width: auto;
}

.bg-color-primary {
  background-color: var(--primary-color) !important;
}

.bg-color-secondary {
  background-color: var(--secondary-color) !important;
}

.text-color-primary {
  color: var(--primary-color) !important;
}

.text-color-secondary {
  color: var(--secondary-color) !important;
}

.height-100 {
  height: 100%;
}

.custom-font {
  font-family: var(--custom-font) !important;
}

.z-index-2 {
  z-index: 2 !important;
}

/* -------------------------------------
	02. Reset Styles
------------------------------------- */
html,
body {
  background-color: var(--white);
  color: var(--font-color);
  font: 400 0.95rem/1.1rem var(--primary-font);
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.c-contentHolder {
  background-color: var(--white);
  padding: 3rem 0;
}
.c-contentHolder.bg-primary-light {
  background-color: rgba(43, 163, 239, 0.3);
}
.c-contentHolder.bg-gray {
  background-color: #eeeeee;
}

/* -------------------------------------
	  Component :: Header
--------------------------------------- */
.c-header {
  padding: 12px 0;
  z-index: 997;
  transition: all 0.5s;
}
.c-header .logo-white {
  display: block;
}
.c-header .logo-colored {
  display: none;
}
.c-header.header-scrolled {
  background-color: var(--white);
  box-shadow: 0 0 8px #818181;
  -moz-box-shadow: 0 0 8px #818181;
  -webkit-box-shadow: 0 0 8px #818181;
  -ms-box-shadow: 0 0 8px #818181;
  -o-box-shadow: 0 0 8px #818181;
}
.c-header.header-scrolled .logo-white {
  display: none;
}
.c-header.header-scrolled .logo-colored {
  display: block;
}
.c-header.header-scrolled a,
.c-header.header-scrolled a:focus {
  color: var(--font-color);
}
.c-header.header-scrolled a.active,
.c-header.header-scrolled a:focus.active {
  color: var(--secondary-color);
}
.c-header.header-scrolled .mobile-nav-toggle {
  color: var(--font-color);
}

/* -------------------------------------
	  Component :: Menubar
--------------------------------------- */
.navbar {
  padding: 0;
}
.navbar ul {
  align-items: center;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar ul li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 0.85rem;
  font-weight: 600;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  text-transform: uppercase;
  line-height: 1.1rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a {
  text-decoration: none !important;
}
.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--secondary-color);
}
.navbar .dropdown ul {
  background: var(--white);
  display: block;
  left: 14px;
  margin: 0;
  opacity: 0;
  padding: 10px 0;
  position: absolute;
  top: calc(100% + 30px);
  visibility: hidden;
  z-index: 99;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  -moz-box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  -webkit-box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  -ms-box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  -o-box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul li:hover > a {
  color: var(--secondary-color) !important;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
  text-decoration: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover {
  color: var(--secondary-color) !important;
}
.navbar .dropdown ul.active:hover {
  color: var(--secondary-color) !important;
}
.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 ul:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  background-color: var(--white);
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  border-radius: 6px !important;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--secondary-color);
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--secondary-color);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/* -------------------------------------
	 Component :: Content Slider
------------------------------------- */
.c-slider {
  position: relative;
  height: 560px;
  overflow: hidden;
  width: 100%;
}
.c-slider .carousel-inner {
  position: relative;
}
.c-slider .carousel-item {
  position: relative;
}
.c-slider .carousel-item .carousel-content {
  content: "";
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
}
.c-slider .carousel-item::before {
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

@media (max-width: 991px) {
  .c-slider {
    height: 480px;
    min-height: 360px;
  }
  .c-slider .carousel-item {
    padding: 82px 0 0 0;
  }
  .c-slider .carousel-item img {
    position: relative;
    top: -94px;
    width: auto !important;
  }
}
/* -------------------------------------
	04. Component :: Grids
------------------------------------- */
.c-cardGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 16px;
}
.c-cardGrid.type-4x4 {
  grid-template-columns: repeat(4, 1fr);
}
.c-cardGrid.type-2x2 {
  grid-template-columns: repeat(2, 1fr);
}
.c-cardGrid.type-fullWidth {
  grid-template-columns: repeat(1, 1fr);
}
.c-cardGrid.no-gap {
  gap: 0;
}
.c-cardGrid.custom {
  overflow: hidden;
}
.c-cardGrid .gridItem.bordered {
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  margin: -1px 0 0 -1px;
}

@media all and (max-device-width: 960px) {
  .c-cardGrid.type-4x4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-device-width: 768px) {
  .c-cardGrid {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .c-cardGrid.type-4x4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-device-width: 600px) {
  .c-cardGrid {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-cardGrid.type-4x4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* -------------------------------------
	Component :: card
------------------------------------- */
.grid-card {
  background-color: var(--white);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}
.grid-card.dark {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.grid-card .card {
  text-align: center;
}
.grid-card .card-icon {
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  height: 56px;
  width: 56px;
}
.grid-card .card-icon .icon {
  color: var(--page-bg-color);
  font-size: 4.3rem;
}
.grid-card .card-icon img {
  height: 56px;
  width: 56px;
}
.grid-card .card-icon.image {
  background-color: #eeeeee;
  height: 160px;
  padding: 4px;
  width: 160px;
  -webkit-border-radius: 100px !important;
  -moz-border-radius: 100px !important;
  border-radius: 100px !important;
}
.grid-card .card-icon.image img {
  height: 152px;
  width: 152px;
  -webkit-border-radius: 100px !important;
  -moz-border-radius: 100px !important;
  border-radius: 100px !important;
}

@media all and (max-device-width: 960px) {
  .grid-card {
    padding: 16px;
  }
}
/* -------------------------------------
	Component :: CTA
------------------------------------- */
.c-callToAction {
  background-color: var(--page-bg-color);
  padding: 60px 0;
  position: relative;
}
.c-callToAction.bg-image {
  background-image: url("../images/parallax-2.jpg");
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.c-callToAction.bg-image::before {
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

@media all and (max-device-width: 768px) {
  .c-callToAction {
    padding: 40px 20px;
  }
  .c-callToAction .cta-title, .c-callToAction .cta-description {
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.5rem;
  }
  .c-callToAction .cta-description {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
/* ----------------------------------------------
  Component :: Footer
------------------------------------------------- */
.c-footerCustom .footer-top {
  border-top: 3px solid #222;
  background-color: #222;
  padding: 24px 0;
  min-height: 300px;
}
.c-footerCustom .footer-top .info-section {
  position: relative;
  padding-left: 28px;
  max-width: 480px;
}
.c-footerCustom .footer-top .info-section.no-icon {
  padding-left: 0;
}
.c-footerCustom .footer-top .info-section .icon {
  color: var(--white);
  font-size: 1rem;
  position: absolute;
  height: 16px;
  width: 16px;
  top: 0;
  left: 0;
}
.c-footerCustom .footer-top .footer-logo {
  margin-bottom: 16px;
}
.c-footerCustom .footer-top .footer-logo img {
  max-width: 120px;
}
.c-footerCustom .footer-bottom {
  background: #222222;
  padding: 12px 0;
}
.c-footerCustom .footer-bottom .footerLinks {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  flex-wrap: wrap;
}
.c-footerCustom .footer-bottom .footerLinks li {
  border-right: 1px solid RGBA(255, 255, 255, 0.5);
  line-height: 0.9rem;
}
.c-footerCustom .footer-bottom .footerLinks li:first-child a {
  padding-left: 0;
}
.c-footerCustom .footer-bottom .footerLinks li:last-child {
  border: 0;
}
.c-footerCustom .footer-bottom .footerLinks li a {
  font-size: 0.7rem;
  line-height: 0.7rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  padding: 0 16px;
  letter-spacing: 0.4px;
  text-decoration: none;
}
.c-footerCustom .footer-bottom .footerText {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
}

.c-footerSocialIcons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-footerSocialIcons .social-element {
  background: transparent;
  color: var(--white);
  display: grid;
  place-content: center;
  height: 36px;
  width: 36px;
  text-decoration: none;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  transition: background-color ease 0.3s;
  -moz-transition: background-color ease 0.3s;
  -webkit-transition: background-color ease 0.3s;
  -o-transition: background-color ease 0.3s;
  -ms-transition: background-color ease 0.3s;
}
.c-footerSocialIcons .social-element .icon {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 0;
  position: relative;
  top: 1px;
  transition: color ease 0.3s;
  -moz-transition: color ease 0.3s;
  -webkit-transition: color ease 0.3s;
  -o-transition: color ease 0.3s;
  -ms-transition: color ease 0.3s;
}
.c-footerSocialIcons .social-element:hover {
  background-color: var(--white);
}
.c-footerSocialIcons .social-element:hover .icon {
  color: var(--primary-color);
}
.c-footerSocialIcons.colored .social-element .icon {
  color: var(--font-color);
}
.c-footerSocialIcons.colored .social-element:hover {
  background-color: #eee;
}
.c-footerSocialIcons.colored .social-element:hover .icon {
  color: var(--secondary-color);
}

.c-footerLogos ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style-type: none;
  gap: 16px;
}

.c-footerLogos ul li img {
  display: inline-block;
  height: 54px;
}

.sitemap-links {
  display: block;
}
.sitemap-links ul {
  display: block;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.sitemap-links ul li {
  display: block;
  position: relative;
  margin-bottom: 8px;
}
.sitemap-links ul li a {
  color: #cccccc;
  display: block;
  font-size: 14px;
  line-height: 18px;
  padding: 2px 0 2px 16px;
}
.sitemap-links ul li a::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: #ccc;
  font-size: 10px;
  font-family: var(--icon-font);
  content: "\f231";
}
.sitemap-links ul li a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .c-footerCustom .footer-bottom .footerText {
    text-align: center;
    margin-top: 12px;
  }
  .c-footerSocialIcons,
  .sitemap-links {
    margin-bottom: 16px;
  }
}
/* ----------------------------------------------
    Component :: carousel
------------------------------------------------- */
.c-carousel {
  position: relative;
}
.c-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 30px);
  left: -40px;
  height: 60px;
  width: calc(100% + 80px);
  padding: 8px 0;
}
.c-carousel .owl-nav .owl-prev,
.c-carousel .owl-nav .owl-next {
  background-color: transparent !important;
  color: var(--font-color-light) !important;
  display: grid;
  font-size: 2.4rem !important;
  height: 42px;
  place-items: center;
  width: 32px;
}
.c-carousel .owl-nav .owl-prev {
  float: left;
}
.c-carousel .owl-nav .owl-next {
  float: right;
}
.c-carousel .owl-dots {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 12px;
  margin-top: 24px;
}
.c-carousel .owl-dots .owl-dot {
  display: inline-block;
  background: #c9c9c9;
  height: 12px;
  width: 12px;
  -webkit-border-radius: 100px !important;
  -moz-border-radius: 100px !important;
  border-radius: 100px !important;
}
.c-carousel .owl-dots .owl-dot.active {
  background-color: var(--primary-color);
}

.c-testimonialBlock {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  padding: 24px;
  text-align: center;
  margin: 40px 0 10px;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  border-radius: 6px !important;
}
.c-testimonialBlock .blog-image {
  border: 4px solid var(--white);
  margin: -60px auto 24px;
  height: 80px;
  width: 80px;
  -webkit-border-radius: 100% !important;
  -moz-border-radius: 100% !important;
  border-radius: 100% !important;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}
.c-testimonialBlock .blog-image img {
  height: 72px;
  width: 72px;
  -webkit-border-radius: 100% !important;
  -moz-border-radius: 100% !important;
  border-radius: 100% !important;
}

/* ----------------------------------------------
    Component :: Contact Form elements
------------------------------------------------- */
.formContainer {
  background-color: var(--white);
  padding: 24px;
  box-shadow: 0 8px 100px -10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 8px 100px -10px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 8px 100px -10px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 8px 100px -10px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 8px 100px -10px rgba(0, 0, 0, 0.15);
}
.formContainer.clean {
  background-color: transparent;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
}
.formContainer.colored {
  background-color: #eeeeee;
}

.modal-content.custom {
  border: 0;
  background: url(../images/bg-column.svg) right center no-repeat #f2f2f2;
  justify-content: center;
  border-radius: 0;
}
.modal-content.custom .modal-body {
  padding: 44px;
}

.info-section {
  position: relative;
  padding-left: 40px;
  min-height: 42px;
  max-width: 280px;
}
.info-section.large {
  max-width: 100%;
}
.info-section .g-icon {
  position: absolute;
  height: 36px;
  left: 0;
  top: 0;
  width: 36px;
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.closeModal {
  border: 0;
  background-color: transparent;
  position: absolute;
  top: 6px;
  right: 0;
}
.closeModal .g-icon {
  color: var(--font-color);
}

@media (max-width: 960px) {
  .formContainer {
    padding: 12px;
  }
  .modal-content.custom .modal-body {
    padding: 12px;
  }
}
/* ----------------------------------------------
    Component :: Image gallery
------------------------------------------------- */
.galleryNavigation {
  border-bottom: 1px solid var(--border-color);
  gap: 24px;
}
.galleryNavigation .filter-button {
  background-color: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--font-color);
  display: block;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 12px 12px;
}
.galleryNavigation .filter-button.active {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

/*# sourceMappingURL=styles.css.map */
