/*
Theme Name: smartboost Child Theme
Version: 1.0
Description: A child theme of Understrap
Author: smartboost
Template: understrap
*/

@import url("../understrap/style.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

@font-face {
    font-family: 'Louis George Cafe';
    src: url('https://eaglepromotions.smartboost.dev/wp-content/themes/smartboost-child-theme/fonts/LouisGeorgeCafe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Louis George Cafe';
    src: url('https://eaglepromotions.smartboost.dev/wp-content/themes/smartboost-child-theme/fonts/LouisGeorgeCafeBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* ********** GENERAL ********** */

:root {
  	--orange:   #F27400;
	--blue:     #0554F2;
	--black:    #000000;
	--white:    #FFFFFF;
	--offwhite: #F7F7F7;
}

html {
	margin-top: 0 !important;
}

body {
    font-family: 'Louis George Cafe', sans-serif !important;
	background-color: var(--offwhite) !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Louis George Cafe', sans-serif;
	line-height: 1.1em !important;
	font-weight: 700 !important;
	color: var(--black);
}

h1 {
	font-size: 100px !important;
	text-transform: uppercase;
}

h1.h1-small {
	font-size: 60px !important;
}

h2 {
	font-size: 50px !important;
}

h3 {
	font-size: 22px !important;
}

h4 {
	font-size: 26px !important;
}

h5 {
	font-size: 20px !important;
}

p {
	font-size: 20px !important;
	font-weight: 400;
}

p.p-small {
	font-size: 16px !important;
}

.text-black {
	color: var(--black) !important;
}

p.p-large {
	font-size: 24px !important;
}

p.p-large-two {
	font-size: 20px !important;
}

.btn-cta {
	display: inline-block;
	background-color: var(--orange);
	padding: 12px 24px;
	border: 2px solid var(--orange);
	border-radius: 100px;
	color: var(--white);
	font-weight: 700;
	text-decoration: none;
	transition: all .5s;
}

.btn-cta:hover {
	background-color: var(--black);
	color: var(--white);
	border-color: var(--black);
	transition: all .5s;
}

.btn-cta-transparent {
	background-color: transparent;
	border-color: var(--black);
	color: var(--black);
}

.btn-cta-transparent:hover {
	background-color: var(--black);
	color: var(--white);
	border-color: var(--black);
	transition: all .5s;
}

.btn-cta-dark {
	background-color: var(--black);
	color: var(--white);
	border-color: var(--black);
}

.btn-cta-dark:hover {
	background-color: transparent;
	border-color: var(--black);
	color: var(--black);
	transition: all .5s;
}

.text-blue {
	color: var(--blue);
}

.rounded-20 {
	border-radius: 20px;
}

.bg-white {
	background-color: var(--white);
}

.bg-offwhite {
	background-color: var(--offwhite);
}

.box-shadow {
	box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05) !important;
}

.py-6 {
	padding-top: 6rem !important;
	padding-bottom: 6rem !important;
}

.pt-6 {
	padding-top: 6rem !important;
}

.pb-6 {
	padding-bottom: 6rem !important;
}

.relative {
	position: relative !important;
}

.absolute {
	position: absolute !important;
}

.box-shadow {
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15) !important;
}

.container {
	max-width: 90% !important;
}

.bg-transparent {
	background-color: transparent !important;
}

.mw-1050 {
	max-width: 1050px;
	margin-left: auto;
	margin-right: auto;
}

.mw-725 {
	max-width: 725px;
	margin-left: auto;
	margin-right: auto;
}

.mw-620 {
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

/* Button Animation */

.btn-cta.nav-cta.nav-cta-desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 24px;
  border: 2px solid #f27400;
  border-radius: 100px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s;
}

.btn-cta.nav-cta.nav-cta-desktop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
	to left,
	#f27400,
	#ff9c4a,
	#ffc093,
	#ffb066,
	#f27400,
	#f27400
  );
  background-size: 400% 100%;
  z-index: -1;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% {
	background-position: 100% 0;
  }
  100% {
	background-position: 0% 0;
  }
}

.btn-text {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.chat-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  animation: iconRise 1s forwards 0.3s;
}

@keyframes iconRise {
  0% {
	transform: translateY(20px);
	opacity: 0;
  }
  100% {
	transform: translateY(0);
	opacity: 1;
  }
}

.btn-cta.nav-cta.nav-cta-desktop:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 116, 0, 0.3);
}

.btn-cta.nav-cta.nav-cta-desktop:hover .chat-icon {
  animation: iconBounce 0.8s infinite alternate;
}

@keyframes iconBounce {
  0% {
	transform: translateY(0);
  }
  100% {
	transform: translateY(-3px);
  }
}

@keyframes gradient-move {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Icon Animation */
.btn-cta.nav-cta.nav-cta-desktop .cta-icon {
    position: absolute;
    left: 16px;
    bottom: -30px;
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.btn-cta.nav-cta.nav-cta-desktop:hover .cta-icon,
.btn-cta.nav-cta.nav-cta-desktop:focus .cta-icon {
    transform: translateY(-30px);
    opacity: 1;
}

.btn-cta.nav-cta.nav-cta-desktop span {
    position: relative;
    z-index: 2;
}

/* Button Animation */

.btn-cta.nav-cta.nav-cta-desktop {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 12px 24px;
      border: none !important;
      border-radius: 100px;
      color: white;
      font-weight: 700;
      text-decoration: none;
      overflow: hidden;
      transition: all 0.5s;
      background-color: transparent; 
    }

    /* Gradient animation */
    .btn-cta.nav-cta.nav-cta-desktop::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        to left,
        #f27400,
        #ff9c4a,
        #ffc093,
        #ffb066,
        #f27400,
        #ff9c4a,
        #ffc093,
        #ffb066,
        #f27400
      );
      background-size: 200% 100%;
      z-index: 0;
      animation: gradientMove 6s linear infinite;
    }

    @keyframes gradientMove {
      0% {
        background-position: 0% 0;
      }
      100% {
        background-position: -200% 0;
      }
    }

    .btn-text {
      position: relative;
      display: flex;
      align-items: center;
      z-index: 1;
    }

    /* Icon animation with shorter pause */
	.chat-icon {
	  width: 15px;
	  height: auto;
	  margin-left: 8px;
	  position: relative;
	  opacity: 0;
	  animation: iconCycle 5s ease-in-out infinite;
	}

	@keyframes iconCycle {
	  0%, 100% {
		transform: translateY(20px);
		opacity: 0;
	  }
	  10% {
		transform: translateY(0);
		opacity: 1;
	  }
	  70% {
		transform: translateY(0);
		opacity: 1;
	  }
	  80% {
		transform: translateY(0);
		opacity: 0;
	  }
	  90% {
		transform: translateY(20px);
		opacity: 0;
	  }
	}

    .btn-cta.nav-cta.nav-cta-desktop:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(242, 116, 0, 0.3);
    }

    /* Override the cycling animation on hover */
    .btn-cta.nav-cta.nav-cta-desktop:hover .chat-icon {
      animation: iconBounce 0.8s infinite alternate;
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes iconBounce {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-3px);
      }
    }

/* ********** NAVIGATION ********** */

#wpadminbar {
	display: none !important;
}

header {
	position: fixed;
	width: 100%;
	height: 56px;
	top: 0;
	left: 0;
	z-index: 1000;
}

header .container {
	max-width: 90% !important;
	background-color: var(--white);
	padding: 15px !important;
	border-top-left-radius: 20px;
    border-top-right-radius: 20px;
	transition: max-width 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
}

.navbar {
	background-color: transparent;
	padding-bottom: 0 !important;
}

.navbar-brand img {
	max-height: 48px;
	width: auto;
}

.offcanvas-body li {
	margin: 0 32px;
	margin: 0 16px;
}

.offcanvas-body li a {
	color: var(--black);
	transition: all .5s;
	font-size: 16px;
	font-weight: bold;
}

.offcanvas-body li a:hover {
	color: var(--orange);
	transition: all .5s;
}

.nav-cta a {
	background-color: var(--orange);
	padding: 5px 25px 7px 25px;
/* 	border: 2px solid var(--orange); */
	border-radius: 5px;
	color: var(--white);
	text-decoration: none;
	transition: all .5s;
}

.nav-cta a:hover {
	background-color: var(--black);
	color: var(--white);
	border-color: var(--black);
	transition: all .5s;
}

.nav-cta-mobile {
	display: none !important;
}

header.scrolled .offcanvas-body li a:hover {
	color: var(--orange);
	transition: all .5s;
}

header.scrolled .navbar {
	padding-top: 0 !important;
}

header.scrolled .container {
	border-bottom: 1px solid #e6e6e6;
}

header.scrolled .container {
    border-radius: 0;
    max-width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

.offcanvas {
	background-color: var(--black) !important;
}

.logo-offcanvas {
	display: none !important;
	display: block !important;
	margin-bottom: 20px !important;
	max-width: 225px;
}

.nav-announcement {
    padding: 15px;
	opacity: 1;
	max-height: 55.25px;
    overflow: hidden;
    transition: height 0.25s ease, padding 0.25s ease;
}

.nav-announcement.shrink {
    height: 0;
    padding: 0;
    opacity: 0;
}

.nav-announcement a {
	color: var(--blue);
	text-decoration: none;
	transition: all .5s;
}

.nav-announcement a:hover {
	color: var(--black);
	text-decoration: none;
	transition: all .5s;
}

header.scrolled .nav-announcement {
	opacity: 0;
    max-height: 0;
	padding: 0 !important;
}

.dropdown-item:focus, .dropdown-item:hover,
.offcanvas .dropdown-item.active, .dropdown-item:active {
	background-color: var(--white) !important;
}

.offcanvas .dropdown-item:hover {
	color: var(--orange) !important;
}

.dropdown:hover > .dropdown-menu {
	display: block;
}

.dropdown > .dropdown-toggle:active {
	pointer-events: none;
}

.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background-image: url('/wp-content/uploads/2025/04/chevron-down.png');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/* ********** HOME ********** */

.hero {
	background-size: cover;
	background-repeat: no-repeat;
}

.home-hero {
	margin-top: 127px;
}

.home-hero h1 {
	margin-left: auto;
	margin-right: auto;
}

.home-hero p.p-large {
	max-width: 630px;
	margin-left: auto;
	margin-right: auto;
}

.home-hero .container {
	padding-top: 100px !important;
	padding-bottom: 25px !important;
	
	max-width: 90% !important;
    background-color: var(--white);
    padding: 15px !important;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;	
}

.row-logos .row {
	--bs-gutter-x: 0 !important;
}

.row-logos .slick-list {
	margin: 0 !important;
}

.slick-slide img {
	height: 40px;
	margin: 0 auto;
}

.slick-slide img.dark {
  filter: brightness(.5);
}

/* Set logo height to 50px and maintain aspect ratio */
.partner-slider .slick-slide img {
  height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Add spacing between items */
.partner-slider .slick-slide {
  width: auto !important;
  margin: 0 75px; /* Adjust this value to control the spacing */
}

/* Make sure the slider doesn't cut off the spacing */
.partner-slider .slick-list {
  margin: 0 -15px; /* Should match the margin value above */
}

.row-home-two p {
	max-width: 620px;
}

.row-home-four p.p-large {
	max-width: 90%;
}

.testimonial-content {
    width: calc(33.333% - 20px) !important;
    margin: 10px;
}

p.testimonial-name {
	font-size: 22px !important;
}

.row-listing a {
	color: var(--black);
	text-decoration: none;
}

.row-home-six .container {
	background-image: url('/wp-content/uploads/2024/11/eagle_promotions_home_bg_01.webp');
}

.row-home-seven .col-md-4 {
	margin: 10px;
	width: calc(33.333% - 20px) !important;
	background-color: var(--white);
}

.row-listing-solutions a {
	color: var(--black);
	transition: all .5s;
}

.row-listing-solutions a:hover {
	color: var(--black);
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05) !important;
	transition: all .5s;
}

.read-more-container {
	position: relative;
}

.read-more-link {
	margin-top: 10px;
	text-align: right;
}

.read-more-toggle {
	display: inline-block;
	color: var(--orange);
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.read-more-toggle:hover {
	color: var(--orange);
	text-decoration: underline;
}

.hidden-content {
	margin-top: 10px;
}

.read-more-container p:last-child {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	
	.row-listing-solutions .col-lg-4 {
		margin: 0 10px;
		width: calc(33.333% - 20px) !important;
		background-color: var(--white);
	}
	
}

.row-home-eight .container {
	background-image: url('/wp-content/uploads/2024/11/eagle_promotions_home_bg_01.webp');
}

.row-home-nine .image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    display: block;
}

.row-home-nine .image-wrapper img.w-100 {
    transition: transform 0.75s ease;
    will-change: transform;
    display: block;
}

.row-home-nine .image-wrapper:hover img.w-100 {
    transform: scale(1.1);
}

.row-home-nine h3.absolute {
    bottom: 25px;
    left: 5%;
    z-index: 1;
	max-width: 75%;
}

.row-home-nine img.absolute {
    bottom: 25px;
    right: 5%;
    z-index: 1;
}

.accordion-button {
	padding-left: 0 !important;
	font-size: 24px !important;
}

.accordion-body {
	padding-top: 0 !important;
	padding-left: 0 !important;
	max-width: 80%;
}

.accordion-button,
.accordion-body,
.accordion-item {
	background-color: transparent !important;
	border: none !important;
}

.accordion-button {
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	color: var(--black) !important;
}

.accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    width: auto;
    height: auto;
	font-size: 36px;
	position: relative;
	top: -12px;
}

.accordion-button:not(.collapsed)::after {
    content: '-' !important;
    transform: none !important;
}

.accordion-body {
	font-size: 17px !important;
}

.accordion-item a {
	color: var(--black);
}

.blur-content {
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
}

.row-home-sixteen .blur-content {
	min-width: 800px;
}

/* ********** SWAG ********** */

.single-hero .container {
	max-width: 90% !important;
    background-color: var(--white);
    padding: 15px !important;
    padding-top: 200px !important;
    border-radius: 20px;
}

/* .single-hero p {
	font-size: 24px !important;
} */

.swag-hero ul {
	padding-left: 19px;
}

.row-swag-single-two .col-md-6 {
	margin: 10px;
	width: calc(25% - 20px) !important;
	flex-direction: column;
    justify-content: space-between;
    display: flex;
}

.row-swag-single-two img {
	width: 40px;
}

.swag-hero .col-md-6 p {
	margin-bottom: 0 !important;
}

.row-swag-single-three h2 {
	bottom: 5%;
	left: 5%;
	max-width: 750px;
}

.arrow-icon {
	top: 5%;
	right: 5%;
}

/* ********** APPAREL ********* */

/* .apparel-hero {
	margin-top: 200px;
} */

.apparel-hero p {
	font-size: 24px !important;
}

.apparel-hero ul {
	padding-left: 19px;
}

.row-single-apparel-retail-five .absolute {
	bottom: 5%;
    left: 3.5%;
}

/* ********** SOLUTIONS ********** */

.hidden-technique {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.hidden-technique.show {
    opacity: 1;
}

.product-card {
   display: block;
   text-decoration: none;
   position: relative;
}

/* ********** INDUSTRY ********** */

.product-title {
	bottom: 5%;
	left: 5%;
}

.product-arrow {
	bottom: 5%;
	right: 5%;
}

.product-listing .product-item {
	margin: 10px;
    width: calc(50% - 20px) !important;
	
    background-color: #F2F2F2;
    border-radius: 10px;
}

.product-listing .wp-post-image {
	padding-bottom: 5%;
}

.product-listing h3 {
	max-width: 75%;
}

/* ********** INDUSTRY SINGLE ********** */

body.industry-template-default .product-listing {
	display: none;
}

/* ********** CUSTOM ********** */

.home-hero.custom-hero h1 {
	max-width: initial;
}

.home-hero.custom-hero p.p-large {
	max-width: initial;
}

.row-custom-two .col-lg-4 {
	margin: 0 10px;
	width: calc(33.333% - 20px) !important;
}

.row-custom-two a,
.row-custom-two a:hover {
	color: var(--black) !important;
}

.row-carousel .carousel-control-prev,
.row-carousel .carousel-control-next {
	opacity: 1 !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	display: flex !important;
    justify-content: center;
    align-items: center;
}

.carousel-control-prev-icon img,
.carousel-control-next-icon img {
	width: 10px;
	height: 19px;
}

.row-carousel .carousel-control-prev span,
.row-carousel .carousel-control-next span {
	background-color: #fff;
    background-image: none;
    opacity: 1;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
}

.carousel-indicators button {
	width: 10px !important;
	height: 10px !important;
	border-radius: 50%;
}

.row-about-five .col-lg-4 {
	margin: 10px;
	width: calc(33.333% - 20px) !important;
}

/* ********** SHOWROOM ********** */

.row-showroom-four table {
	font-weight: 600;
}

.row-showroom-four .container {
	background-color: var(--white);
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.row-showroom-four .col-logo {
	width: 20%;
}

/* ********** START YOUR PROJECT ********* */

.quote-hero .row {
	max-width: 800px;
	margin: 0 auto;
}

.hs-form-private {
	text-align: left !important;
}

.hs-form-field {
    margin-bottom: 15px;
}

.hs-form-private label {
    margin-bottom: 3px;
}

.hs-form-private input,
.hs-form-private select,
.hs-form-private textarea {
	width: 100%;
    border-radius: 20px;
    border: 1px solid #dddddd;
    padding: 10px;
}

.hs-form-private input:focus-visible,
.hs-form-private select:focus-visible,
.hs-form-private textarea:focus-visible {
	outline: 1px solid #9b9b9b;
}

.hs-form-private textarea {
	height: 125px !important;
}

.hs-form-private input[type="submit"] {
	display: block !important;
	margin-top: 15px;
    background-color: var(--orange);
    padding: 12px 24px;
    border: 2px solid var(--orange);
    border-radius: 100px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: all .5s;
    width: 100%;
}

ul.no-list {
	list-style: none;
    padding-left: 0;
    font-size: 14px;
    color: var(--orange);
    font-weight: 600;
}

/* MODAL */

.modal-dialog.modal-dialog-centered {
	max-width: 800px;
}

.modal-content {
	padding: 30px;
    border-radius: 20px !important;
}

.modal-header {
	border: none !important;
    margin-bottom: 15px;
}

.modal-title {
	font-size: 30px !important;
    text-align: center;
    display: block;
    width: 100%;
}

@media (max-width: 825px) {
	.modal-dialog.modal-dialog-centered {
		max-width: 95%;
	}
}

/* ********** FOOTER ********** */

footer {
	background-color: var(--white);
	padding-top: 75px !important;
	padding-bottom: 0px !important;
}

.footer-logo {
	max-height: 48px;
}

footer p {
	font-size: 18px !important;
	font-weight: 400;
}

footer h4 {
	font-size: 22px !important;
	font-weight: 600;
	text-transform: uppercase;
}

footer ul {
	list-style: none;
	padding-left: 0;
}

footer li a {
	font-size: 18px;
	color: var(--black);
	text-decoration: none;
	display: inline-block;
	margin-bottom: 5px;
}

.footer-contact {
	align-items: flex-start;
}

.contact-container {
	font-size: 15px;
}

.contact-container div {
	opacity: .7;
}

.contact-container img {
	position: relative;
	top: 1.5px;
}

.contact-container a {
	color: var(--black);
	opacity: 1;
	text-decoration: none;
}

footer a {
	transition: all .5s;
}

footer a:hover {
	color: var(--orange);
	transition: all .5s;
}

.subfooter {
	font-size: 12px;
	color: var(--black);
}

.subfooter a {
	color: var(--black);
}

.col-social a {
	margin-left: 17px;
}

.col-social a i:hover {
	border-color: var(--orange);
}

.col-social i {
	padding: 7px;
    border: 1px solid rgba(255, 255, 255, .5);
    font-size: 20px;
}

/* ********** MEDIA QUERIES ********** */

/* @media (min-width: 1400px) {
	
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 95% !important;
		max-width: 1920px !important;
    }
	
} */

/* @media (min-width: 1400px) {
	
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 95% !important;
		max-width: 1920px !important;
    }
	
} */

@media (min-width: 2436px) {
	
	.postid-71 .hero .btn-cta {
		display: block;
		max-width: 250px;
		margin: 0 auto;
	}
	
}

/* @media (min-width: 1921px) {
	
	.container,
	header .container,
	.single-hero .container,
	.home-hero .container,
	header {
		max-width: 1920px !important;
	}
	
} */

@media (max-width: 1300px) {
	
	/* GENERAL */
	h1 {
		font-size: 75px !important;
	}
	
	h2 {
		font-size: 40px !important;
	}
	
	/* NAVIGATION */
    .navbar-brand img {
		max-height: 35px;
	}
	
	.offcanvas-body li {
		margin: 0 8px;
	}
	
	.btn-cta {
		padding: 8px 15px;
		font-size: 14px;
	}
	
}

@media (max-width: 1199px) {
	
	.row-about-four img {
		height: 750px;
		object-fit: cover;
	}
	
}

@media (max-width: 1050px) {
	
	.offcanvas-body li {
        margin: 0 6px;
    }
	
	.offcanvas-body li a {
		font-size: 15px;
	}
	
}

/* TABLET */

@media (max-width: 991px) {
	
	/* GENERAL */
	h1 {
		font-size: 65px !important;
	}
	
	h2 {
		font-size: 35px !important;
	}
	
	h3 {
		font-size: 20px !important;
	}
	
	p {
		font-size: 16px !important;
	}
	
	p.p-large {
		font-size: 20px !important;
	}
	
	.container {
		max-width: 95% !important;
	}
	
	/* HOME */
	.home-hero .col {
		flex: initial;
		width: 33.333%;
        margin: 10px 0 !important;
		padding: 0 5px !important;
	}
	
	.testimonial-content.p-5 {
		padding: 2rem !important;
	}
	
	.row-home-nine .col-md-12 {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important;
	}
	
	.row-home-nine h3 {
		font-size: 18px !important;
	}
	
	.blur-content.p-5 {
		padding: 1.5rem !important;
	}
	
	/* NAVIGATION */
	.offcanvas {
		background-color: var(--white) !important;
	}
	
	.offcanvas .dropdown-menu {
		border: none;
	}
	
	#main-menu .dropdown-menu {
		display: block;
	}
	
	.nav-cta-desktop {
		display: none !important;
	}
	
	.nav-cta-mobile {
		display: block !important;
	}
	
	.nav-cta-mobile a {
		margin-top: 5px !important;
		padding: 5px 18px !important;
		display: inline-block !important;
		color: var(--white) !important;
	}
	
	.offcanvas .btn-close {
		background: none !important;
		opacity: 1 !important;
		width: 1.25em !important;
    	height: 1.25em !important
	}
	
	.offcanvas .btn-close i {
		font-size: 30px;
	}
	
	header button:focus:not(:focus-visible) {
		box-shadow: none;
	}
	
	/* HOME */
	.testimonial-content {
		width: calc(100% - 20px) !important;
	}
	
	.row-home-five .col-md-3 {
		width: 50%;
	}
	
	/* SWAG SINGLE */
	.row-swag-single-two .col-md-6 {
		width: calc(50% - 20px) !important;
	}
	
	/* RETAIL SOLUTIONS */
	.row-custom-two .col-lg-4 {
		margin: 0 10px;
		width: calc(50% - 20px) !important;
	}
	
	/* ABOUT */
	.row-about-five .col-lg-4 {
		margin: 10px;
		width: calc(50% - 20px) !important;
	}
	
	/* FOOTER */
	.col-footer {
		margin-bottom: 2rem !important;
	}
	
}

/* MOBILE */

@media (max-width: 767px) {
	
	/* GENERAL */
	h1,
	h1.h1-small {
		font-size: 40px !important;
	}
	
	h2 {
        font-size: 28px !important;
    }
	
	p,
	p.p-large-two,
	.single-hero p {
		font-size: 15px !important;
	}
	
	p.p-large {
		font-size: 18px !important;
	}
	
	.col-md-6.ps-5 {
		padding-left: calc(var(--bs-gutter-x)* .5) !important;
		margin-top: 5%;
	}
	
	.col-md-6.pe-5 {
		padding-right: calc(var(--bs-gutter-x)* .5) !important;
		margin-bottom: 5%;
	}
	
	/* NAVIGATION */
	header {
		position: initial;
	}
	
	.nav-announcement {
		font-size: 13px;
		display: none !important;
	}
	
	/* HOME */
	.home-hero {
		margin-top: 20px;
	}
	
	.home-hero .d-flex {
		display: block !important;
	}
	
	.home-hero .btn-cta {
		display: block !important;
		max-width: 250px;
		margin-left: auto !important;
		margin-right: auto !important;
		margin-bottom: 10px !important;
		margin-top: 10px !important;
	}
	
	.partner-item.slick-slide.slick-cloned {
		display: none;
	}
	
	.partner-slider .slick-slide {
		margin: 0 25px;
	}
	
	.partner-slider .slick-slide img {
		height: 25px;
	}
	
	.row-home-five .col-md-3 {
        width: 100%;
    }
	
	.row-home-fourteen .col-md-4 {
		margin-top: 10px !important;
		margin-bottom: 10px !important;
	}
	
	.row-home-ten img {
		height: 300px;
		object-fit: cover;
	}
	
	.row-home-ten .blur-content {
		width: 80%;
	}
	
	.accordion-button {
		font-size: 18px !important;
	}
	
	p.testimonial-text {
		font-size: 15px !important;
	}
	
	p.testimonial-name {
		font-size: 17px !important;
	}
	
	.testimonial-quote-icon {
		width: 35px !important;
	}
	
	/* SWAG */
	.swag-hero img {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	/* SWAG SINGLE */
	.single-hero.py-5 {
		padding-top: 0 !important;
		border-top-left-radius: 0;
		border-top-right-radius: 0;	
	}
	
	.row-swag-single-two .col-md-6 {
		width: calc(100% - 20px) !important;
	}
	
	.single-hero .container {
		padding-top: 75px !important;
	}
	
	.row-swag-single-two img {
		width: 30px;
	}
	
	.row-swag-single-three img {
		height: 350px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	.row-swag-single-three h2 {
		bottom: 5%;
		left: 5%;
		max-width: 750px;
		font-size: 24px !important;
		max-width: 85%;
	}
	
	/* APPAREL */
	.apparel-hero img {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	/* RETAIL SOLUTIONS */
	.retail-hero .hero-image {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	.row-custom-two .col-lg-4 {
        margin: 0 10px;
        width: calc(100% - 20px) !important;
    }
	
	.row-single-apparel-retail-five img {
		height: 400px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	/* CUSTOM */
	.custom-hero img {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	.row-custom-eight .col-md-4 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
	}
	
	.row-home-nine .row-two .col-lg-7 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.row-home-nine .row-three .col-lg-7 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	/* SOLUTIONS */
	.solutions-hero img {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	/* SOLUTIONS SINGLE */
	.single-solutions-hero img {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	/* INDUSTRIES SINGLE */
	.product-listing .product-item {
		width: calc(100% - 20px) !important;
	}
	
	/* SOLUTIONS SINGLE */
	.about-hero img {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	/* ABOUT */
	.row-home-ten.row-about-four img {
        height: 560px;
        object-fit: cover;
    }
	
	.row-about-five .col-lg-4 {
		margin: 10px;
		width: calc(100% - 20px) !important;
	}
	
	.row-about-five .col-lg-4.p-5 {
        padding: 2rem !important;
    }
	
	/* SHOWROOM */
	.showroom-hero img {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	.row-showroom-four.row-home-ten img {
		height: initial !important;
	}
	
	/* CAREERS */
	.careers-hero img {
		height: 250px;
		object-fit: cover;
		border-radius: 20px;
	}
	
	/* START YOUR PROJECT */
	.modal-content {
		padding: 20px;
	}
	
	.modal-title {
		font-size: 22px !important;
	}
	
	/* FOOTER */
	footer h4 {
		font-size: 17px !important;
	}
	
	footer li a {
		font-size: 16px;
	}
	
	.footer-logo {
		max-height: 35px;
	}
	
	.subfooter {
		text-align: center;
	}
	
	.col-social.text-end {
		text-align: center !important;
		margin-top: 10px;
	}
	
	footer span.mx-2 {
		display: none;
	}
	
	footer .uc,
	footer .sb {
		display: block;
	}
	
	.col-social a {
		margin: 0 10px;
	}
	
}

@media (max-width: 500px) {
	
	/* ABOUT */
	.row-home-ten.row-about-four img {
        height: 750px;
        object-fit: cover;
    }
	
}




