@charset "UTF-8";

/* ===================================================================
 * # SETTINGS
 *
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## fonts 
 * ------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&display=swap');

:root {
	--font-1: "Raleway", sans-serif;

}
:root {
		--font-1: "Raleway", sans-serif;
    --primary: #B74D04;
    --primaryLight: #ffba43;
    --secondary: #353535;
    --secondaryLight: #DEDEE0;
    --headerColor: #fff;
    --bodyTextColor: #161616;
    --bodyTextColorWhite: #ffffff;
    --BgColorDark: #131617;
    --BgColorLight: #F2F3F8;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1.2rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 2.4rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 9.82vw, 9.25rem) 1rem;
    --borderRadius: 6px;
		--color-preloader-bg           : var(--secondary);
		--color-loader                 : var(--primary);
		--color-loader-light           : var(--bodyTextColor);

 
}

@media screen and (min-width: 900px) {
  .mobile{
    display: none !important;
  }
}

@media screen and (max-width: 900px) {
  .desktop{
    display: none !important;
  }
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}
.cs-topper {
    font-size: var(--topperFontSize);
    text-transform: uppercase;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 800;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--bodyTextColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

.bg-texture, .bg-texture .cs-title, .bg-texture .cs-text, .bg-texture .cs-top-link, .dark, .dark .cs-title, .dark .cs-text, .dark .cs-top-link{
    color: var(--bodyTextColorWhite);
}

.bg-texture{
  background-image: url(../images/bg_rockfort.jpg) !important;
}

.cs-button-solid {
    border-radius: var(--borderRadius);
    background-color: var(--primary);
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 2.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColorWhite);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    border-radius: var(--borderRadius);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
}
.cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
}
.cs-button-solid:hover {
    color: #fff;
}
.cs-button-solid:hover:before {
    width: 100%;
}

.noScroll{
  overflow: hidden;
}
                            

/* --------------------------------------------------------------------
 * ## base type styles
 * -------------------------------------------------------------------- */
body {
	font-family: var(--font-1);
	font-size  : var(--base-font-size);
	font-weight: 400;
	line-height: var(--vspace-1);
	color      : var(--color-text);
  margin: 0;
  padding: 0;
 	letter-spacing: .04em;
}


/* ===================================================================
 * # PRELOADER
 * 
 * 
 * -------------------------------------------------------------------
 * - markup:
 *
 * <div id="preloader">
 *     <div id="loader" class="dots-fade">
 *         <div></div>
 *         <div></div>
 *         <div></div>
 *     </div>
 * </div>
 *
 * - loader class:
 * <dots-fade | dots-jump | dots-pulse>
 *
 * ------------------------------------------------------------------- */
#preloader {
	position       : fixed;
	display        : flex;
	flex-flow      : row wrap;
	justify-content: center;
	align-items    : center;
	background     : var(--color-preloader-bg);
	z-index        : 500;
	height         : 100vh;
	width          : 100%;
	opacity        : 1;
	overflow       : hidden;
}

.no-js #preloader {
	display: none;
}

#loader {
	position: relative;
	width   : 4px;
	height  : 4px;
	padding : 0;
	display : inline-block;
}

#loader>div {
	content      : "";
	background   : var(--color-loader);
	width        : 4px;
	height       : 4px;
	position     : absolute;
	top          : 0;
	left         : 0;
	border-radius: 50%;
}

#loader>div:nth-of-type(1) {
	left: 15px;
}

#loader>div:nth-of-type(3) {
	left: -15px;
}

/* dots jump */
.dots-jump>div {
	-webkit-animation      : dots-jump 1.2s infinite ease;
	animation              : dots-jump 1.2s infinite ease;
	-webkit-animation-delay: 0.2s;
	animation-delay        : 0.2s;
}

.dots-jump>div:nth-of-type(1) {
	-webkit-animation-delay: 0.4s;
	animation-delay        : 0.4s;
}

.dots-jump>div:nth-of-type(3) {
	-webkit-animation-delay: 0s;
	animation-delay        : 0s;
}

@-webkit-keyframes dots-jump {
	0% {
		top: 0;
	}

	40% {
		top: -6px;
	}

	80% {
		top: 0;
	}
}

@keyframes dots-jump {
	0% {
		top: 0;
	}

	40% {
		top: -6px;
	}

	80% {
		top: 0;
	}
}

/* dots fade */
.dots-fade>div {
	-webkit-animation      : dots-fade 1.6s infinite ease;
	animation              : dots-fade 1.6s infinite ease;
	-webkit-animation-delay: 0.4s;
	animation-delay        : 0.4s;
}

.dots-fade>div:nth-of-type(1) {
	-webkit-animation-delay: 0.8s;
	animation-delay        : 0.8s;
}

.dots-fade>div:nth-of-type(3) {
	-webkit-animation-delay: 0s;
	animation-delay        : 0s;
}

@-webkit-keyframes dots-fade {
	0% {
		opacity: 1;
	}

	40% {
		opacity: 0.2;
	}

	80% {
		opacity: 1;
	}
}

@keyframes dots-fade {
	0% {
		opacity: 1;
	}

	40% {
		opacity: 0.2;
	}

	80% {
		opacity: 1;
	}
}

/* dots pulse */
.dots-pulse>div {
	-webkit-animation      : dots-pulse 1.2s infinite ease;
	animation              : dots-pulse 1.2s infinite ease;
	-webkit-animation-delay: 0.2s;
	animation-delay        : 0.2s;
}

.dots-pulse>div:nth-of-type(1) {
	-webkit-animation-delay: 0.4s;
	animation-delay        : 0.4s;
}

.dots-pulse>div:nth-of-type(3) {
	-webkit-animation-delay: 0s;
	animation-delay        : 0s;
}

@-webkit-keyframes dots-pulse {
	0% {
		transform: scale(1);
	}

	40% {
		transform: scale(1.3);
	}

	80% {
		transform: scale(1);
	}
}

@keyframes dots-pulse {
	0% {
		transform: scale(1);
	}

	40% {
		transform: scale(1.3);
	}

	80% {
		transform: scale(1);
	}
}

/* ------------------------------------------------------------------- 
 * ## page loaded
 * ------------------------------------------------------------------- */
.ss-loaded #preloader {
	opacity   : 0;
	visibility: hidden;
	transition: all 0.1s 0.3s ease-in-out;
}

.ss-loaded #preloader #loader {
	opacity   : 0;
	transition: opacity 0.1s ease-in-out;
}


/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 1023px) {
  body.cs-open {
    overflow: hidden;
  }
  body.scroll #cs-navigation {
    /* 53px, same height as the cs-top-container */
    transform: translateY(-3.3125rem);
  }
  #cs-navigation {
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 2;
    transition: transform .3s;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation.cs-active .cs-li {
    transform: translateY(0);
    opacity: 1;
  }
  #cs-navigation .cs-top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-top-container {
    width: 100%;
    padding: 1rem 1.5rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  #cs-navigation .cs-top-contact {
    width: auto;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 16px - 24px */
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  #cs-navigation .cs-top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  #cs-navigation .cs-top-link:nth-of-type(2) {
    display: none;
  }
  #cs-navigation .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-top-social {
    visibility: visible;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity .3s, visibility .3s, height .3s;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #cs-navigation .cs-social-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-container {
    width: 100%;
    padding: 1.25rem 1rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }
  #cs-navigation .cs-logo {
    width: auto;
    height: 2.5rem;
    margin: 0 auto 0 0;
    padding: 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-nav {
    order: 2;
  }
  #cs-navigation .cs-toggle {
    width: 2.875rem;
    height: 2.875rem;
    margin: 0 0 0 auto;
    background-color: var(--primary);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .6s;
  }
  #cs-navigation .cs-toggle.cs-active {
    transform: rotate(180deg);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 0.75rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #FAFBFC;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transform-origin: center;
    transition: transform .5s, top .3S, left .3S;
    animation-duration: .7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top .3s, left .3s, transform .5s;
    animation-duration: .7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom .3s, opacity .3s;
  }
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: 100vh;
    opacity: 0;
    background-color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s, opacity .3s;
  }
  #cs-navigation .cs-ul {
    margin: 0;
    padding: 3rem 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
  }
  #cs-navigation .cs-li {
    list-style: none;
    margin-right: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    opacity: 0;
    transition: transform .6s, opacity .9s;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: .05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: .1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: .15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: .2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: .25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: .3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: .35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: .4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: .45s;
  }
  #cs-navigation .cs-li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 4em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: inline-block;
    position: relative;
    background: var(--secondaryLight);
    width: 80%;
    border-radius: var(--borderRadius);
  }
  #cs-navigation .cs-li-link:before {
    /* active state underline */
    content: '';
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: none;
    bottom: -0.125rem;
    left: 0;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-button-solid {
        font-size: clamp(1rem, 3vw, 1.5rem);
        line-height: 4em;
        width: 80%;
        text-transform: uppercase;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cs-navigation .cs-top-link:nth-of-type(2) {
    display: flex;
  }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 1023px) {
  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }
  #cs-navigation .cs-dropdown {
    position: relative;
    color: var(--bodyTextColorWhite);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity .3s;
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }
  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: padding .3s, margin .3s, height .3s, opacity .3s, visibility .3s;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    display: inline-block;
  }
  #cs-navigation .cs-drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    border-bottom: 5px solid var(--primary);
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    z-index: -100;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s, visibility .3s, opacity .3s;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-0.625rem);
    transition: opacity .6s, transform .6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: .05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: .1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: .15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: .2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: .25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: .3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
    transition-delay: .35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
    transition-delay: .4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
    transition-delay: .45s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(10) {
    transition-delay: .5s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(11) {
    transition-delay: .55s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(12) {
    transition-delay: .6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(13) {
    transition-delay: .65s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: 1rem;
    white-space: nowrap;
    line-height: 1.5em;
    text-decoration: none;
    width: 100%;
    padding: 0.75rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    color: var(--bodyTextColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    color: var(--primary);
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  body.scroll #cs-navigation {
    /* 53px, the ssme height as the cs-top-container */
    transform: translateY(-3.3125rem);
    background-color: #000000d9;
  }
  #cs-navigation {
    width: 100%;
    padding: 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    position: fixed;
    z-index: 2;
    transition: transform .3s;
  }
  #cs-navigation .cs-top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cs-navigation .cs-top-container {
    width: 100%;
    max-width: 80rem;
    padding: .7rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.125rem;
    position: relative;
    z-index: 1;
  }

  #cs-navigation .cs-top-container:before {
    /* grey background */
/*    content: '';*/
    width: 100vw;
    height: 100%;
    background: #f7f7f7;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-top-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  #cs-navigation a.cs-top-link:hover {
    text-decoration: underline;
  }
  #cs-navigation div.cs-top-social:hover{
    text-decoration: none;
  }
  #cs-navigation .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-top-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s;
  }
  #cs-navigation .cs-social-link:hover {
    transform: scale(1.1);
  }
  #cs-navigation .cs-social-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: .7rem 0 0 ;
    /* prevents padding from affectin gheight */
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    /* 40px - 44px */
    height: clamp(4rem, 4vw, 2.75rem);
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 1.9375rem 0;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.3vw, 0rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color .3s;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active {
    font-weight: 700;
    color: var(--headerColor);
  }
}

/*-- -------------------------- -->
<---           INICIO           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #inicio {
    		color: var(--bodyTextColorWhite);
        /* Centers button */
        text-align: left;
        /* 200px - 300px - leaving extra space for the navigation */
/*        padding: clamp(12.5rem, 31.95vw, 18.75rem) 1rem 0;*/
        /* 130px - 200px */
        padding-top: clamp(14rem, 16.5vw, 12.5rem);
        padding-bottom: clamp(5.125rem, 16.5vw, 12.5rem);
        position: relative;
        z-index: 1;
    }
    #inicio .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #inicio .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #1a1a1a;
        opacity: 0.84;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #inicio .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        /* makes the top of the image start at the top of the parent */
        object-position: top;
    }
    #inicio .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
    }
    #inicio .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 50.375rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #inicio .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 51.8125rem;
        margin: 0 auto 1rem 0;
        color: var(--bodyTextColorWhite);
        position: relative;
    }
    #inicio .cs-text {
        /* 16px - 20px */
        font-weight: 500;
        font-size: clamp(1rem, 1.95vw, 1.25rem);
        line-height: 1.6em;
        text-align: inherit;
        width: 90%;
        /* 464px - 622px */
        max-width: clamp(28rem, 60vw, 47.785rem);
        margin: 0 0 2.5rem 0;
        color: var(--bodyTextColorWhite);
    }
    #inicio a{
    	color: var(--bodyTextColorWhite);

    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #inicio .cs-content {
        text-align: left;
        align-items: flex-start;
    }
    #inicio .cs-background:before {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.94) 2%,
            rgba(0, 0, 0, 0) 100%
        );
        opacity: .5;
    }
}

/*-- -------------------------- -->
<---         ABOUT           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sobre {
        padding: var(--sectionPadding);
    }
    #sobre .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sobre .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #sobre .cs-text {
        margin-bottom: 1rem;
    }
    #sobre .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sobre .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    #sobre .cs-item {
        list-style: none;
        position: relative;
        display: block;
        width: 100%;
        height: 60vw;
        max-height: 15.625rem;
        font-size: clamp(1rem, 1.7vw, 1.5rem);
        color: #fff;
        /* 16px - 20px top & bottom */
        /* 20px - 24px left & right */
        padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 2vw, 1.5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
    }
    #sobre .cs-h3 {
        /* 16px - 25px */
        font-size: clamp(1rem, 2vw, 1.5625rem);
        font-weight: 700;
        line-height: 1.2em;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
    }
    #sobre .cs-picture {
        display: block;
        width: 100%;
/*        position: absolute;*/
        top: 0;
        left: 0;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }
    #sobre .cs-picture img {
/*        position: absolute;*/
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform .7s;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #sobre .cs-container {
        flex-direction: row;
    }
    #sobre .cs-card-group {
        width: 33%;
        max-width: 54.1875rem;
        flex-direction: row;
        justify-content: space-between;
        /* 16px - 20px */
        gap: clamp(1rem, 1.5vw, 1.25rem);
        flex: none;
    }
    #sobre .cs-item {
        width: 100%;
/*        height: 50vw;*/
/*        max-width: 17.1875rem;*/
/*        max-height: 28.75rem;*/
    }
    #sobre .cs-picture:hover img {
        transform: scale(1.1);
    }
}

/*-- -------------------------- -->
<---         EMPREENDIMENTOS    -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #empreendimentos {
        padding: var(--sectionPadding);
    }
    #empreendimentos .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #empreendimentos .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #empreendimentos .cs-text {
        margin-bottom: 1rem;
    }
    #empreendimentos .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #empreendimentos .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2.5rem;
    }
    #empreendimentos .cs-item {
        cursor: pointer;
        list-style: none;
        position: relative;
        display: block;
        width: 100%;
        height: 70vw;
        font-size: clamp(1rem, 1.7vw, 1.5rem);
        color: #fff;
        /* 16px - 20px top & bottom */
        /* 20px - 24px left & right */
        padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 2vw, 1.5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border-top: 10px solid var(--primary);
    }
    #empreendimentos .cs-h3 {
        /* 16px - 25px */
        text-align: center;
        width: 100%;
        font-size: clamp(1rem, 2vw, 1.3rem);
        font-weight: 700;
        line-height: 1.2em;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: block;
        position: absolute;
        bottom: 0px;
        left: 0;
    }
    #empreendimentos .cs-item:hover .cs-h3{
      text-decoration: underline;
    }
    #empreendimentos .cs-picture {
        cursor: pointer;
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 87%;
/*        z-index: -1;*/
        overflow: hidden;
    }
    #empreendimentos .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform .7s;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #empreendimentos .cs-picture{
      height: 100%;
    }
    #empreendimentos .cs-container {
        flex-direction: row;
    }
    #empreendimentos .cs-card-group {
        width: 50%;
        max-width: 54.1875rem;
        flex-direction: row;
        justify-content: space-between;
        /* 16px - 20px */
        gap: clamp(1rem, 1.5vw, 1.25rem);
        flex: none;
    }
    #empreendimentos .cs-h3 {
        bottom: -40px;
    }
    #empreendimentos .cs-item {
        width: 100%;
        height: 50vw;
/*        max-width: 17.1875rem;*/
        max-height: 28.75rem;
    }
    #empreendimentos .cs-item:hover .cs-picture:before {
        opacity: 0.7;
    }
    #empreendimentos .cs-item:hover .cs-picture img {
        transform: scale(1.1);
    }
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq {
    padding: var(--sectionPadding);
    position: relative;
  }
  #faq .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #faq .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #faq .cs-title {
/*    max-width: 15ch;*/
    margin: 0 0 2rem;
  }
  #faq .cs-faq-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }
  #faq .cs-faq-item {
    list-style: none;
    width: 100%;
    /* clips all corners of the button that overlap the rounded border */
    overflow: hidden;
    transition: border-bottom 0.3s;
  }
  #faq .cs-faq-item p{
    margin: 20px 0;
  }
  #faq .cs-faq-item p.divider{
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
  }
  #faq .cs-faq-item blockquote{
    margin: 10px 40px;
  }
  #faq .cs-faq-item.active .cs-button {
    background-color: var(--secondary);
    color: var(--bodyTextColorWhite);
  }
  #faq .cs-faq-item.active .cs-button:before {
    background-color: var(--bodyTextColorWhite);
    transform: rotate(315deg);
  }
  #faq .cs-faq-item.active .cs-button:after {
    background-color: var(--bodyTextColorWhite);
    transform: rotate(-315deg);
  }
  #faq .cs-faq-item.active .cs-item-text {
    height: auto;
    /* 16px - 24px */
    padding: 1rem clamp(1rem, 2vw, 1.5rem);
    opacity: 1;
    border: 1px solid #e8e8e8;
  }
  #faq .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-family: var(--font-1);
    font-weight: 500;
    line-height: 1.2em;
    text-align: left;
    width: 100%;
    padding: 1rem;
    padding-left: 3.25rem;
    background-color: transparent;
    color: var(--bodyTextColor);
    border: 1px solid #e8e8e8;
    display: block;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq .cs-button:hover {
    cursor: pointer;
  }
  #faq .cs-button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--BgColorDark);
    opacity: 1;
    display: block;
    position: absolute;
    top: 45%;
    left: 1.125rem;
    transform: rotate(45deg);
    transition: transform 0.5s;
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
  }
  #faq .cs-button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--BgColorDark);
    opacity: 1;
    display: block;
    position: absolute;
    top: 45%;
    left: 1.3125rem;
    transform: rotate(-45deg);
    transition: transform 0.5s;
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
  }
  #faq .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    height: 0;
    margin: 0;
    /* clips the text so it doesn't show up */
    overflow: hidden;
    color: var(--bodyTextColor);
    opacity: 0;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
}
/* Tablet - 768px */
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #faq .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #faq .cs-content {
    text-align: left;
    width: 40%;
    align-items: flex-start;
    /* prevents flexbox from squishing it */
    flex: none;
  }
}


/*-- -------------------------- -->
<---            BRAND           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #brand {
        padding: var(--sectionPadding);
        background-color: var(--bodyTextColor);
        position: relative;
        z-index: 1;
    }
    #brand .logo{
      max-width: 80%;
    }
    #brand .logo img{
      width: 100%;
    }
    #brand .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #brand .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
        /* 48px - 64px */
        gap: clamp(1rem, 6vw, 4rem);
    }
    #brand h2{
      font-size: 5.4vw;
      text-align: center;
    }
    #brand .cs-flex {
        max-width: 39.375rem;
    }

    #brand .cs-title {
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #brand .cs-content {
        text-align: left;
        flex-direction: row;
        justify-content: space-between;
    }
    #brand h2{
      font-size: 2.5rem;
      text-align: right;
    }
    #brand .cs-content {
      gap: clamp(3rem, 6vw, 4rem);
    }
}

/*-- -------------------------- -->
<---          media             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #midia {
    padding: var(--sectionPadding);
    background: rgb(15,17,18);
    background: linear-gradient(0deg, rgba(24,27,28,1) 0%, rgba(15,17,18,1) 100%);
  }
  #midia .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #midia .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #midia .cs-title {
    max-width: none;
    color: var(--bodyTextColorWhite);
  }
  #midia .cs-chevron {
    --chevronColor: var(--primary);
    width: 3rem;
    height: auto;
  }
  #midia .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    column-gap: clamp(2rem, 1.5vw, 2.25rem);
    /* 28px - 40px */
    row-gap: clamp(1.75rem, 2.5vw, 2.5rem);
  }
  #midia .cs-item {
    list-style: none;
    width: 100%;
    display: flex;
    grid-column: span 12;
    flex-direction: column;
    align-items: flex-start;
  }
  #midia .cs-item:hover .cs-picture img {
    transform: scale(1.1);
  }
  #midia .cs-link {
    text-decoration: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  #midia .cs-picture {
    width: 100%;
    height: 15rem;
    margin-bottom: 1rem;
    background-color: #000;
    overflow: hidden;
    display: block;
    position: relative;
  }
  #midia .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform .6s, opacity .3s;
    object-position: top;
  }
  #midia .cs-h3 {
    font-size: 1.1rem;
    line-height: 1.4em;
    font-weight: 600;
    text-align: left;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #midia .cs-item:hover .cs-h3{
    text-decoration: underline;
  }
  #midia .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0 0 1.5rem 0;
    color: var(--bodyTextColorWhite);
  }
  #midia .cs-fake-link {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: var(--primary);
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #midia .cs-fake-link:hover .cs-icon {
    transform: translateX(0.5rem);
  }
  #midia .cs-icon {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: transform .3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #midia .cs-container {
    max-width: 80rem;
  }
  #midia .cs-content {
    flex-direction: row;
    align-items: center;
  }
  #midia .cs-flex {
    text-align: left;
    flex: none;
  }
  #midia .cs-title {
    margin: 0;
  }
  #midia .cs-text {
    padding: 0.75rem 0 0.75rem 1.5rem;
  }
  #midia .cs-text:after {
    width: 1px;
    height: 100%;
    margin: 0 1.5rem 0 0;
    order: -1;
    position: absolute;
    left: 0;
    top: 0;
  }
  #midia .cs-item {
    grid-column: span 6;
  }
  #midia .cs-picture {
    /* 240px - 420px */
    height: clamp(13rem, 33vw, 13rem);
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #midia .cs-item {
    grid-column: span 3;
  }
}
                                

/*-- -------------------------- -->
<---           VIDEO            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #video {
        padding: 150px 20px;
        overflow: hidden;
        position: relative;
        background: rgb(15,17,18);
        background: linear-gradient(0deg, rgba(15,17,18,1) 0%, rgba(24,27,28,1) 100%);
    }
    #video .cs-picture{
      margin: 100px auto;
      display: table;
    }
    #video .cs-picture img{
        max-width: 90vw;
        height: auto;
    }
    #video .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* 48px - 64px */
        gap: clamp(.5rem, 3vw, 1rem);
    }
    #video .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #video .cs-title {
        max-width: 100%;
        text-align: center;
    }
    #video p.cs-text{
      max-width: 100%;
      font-size: 1.3em;
      text-align: center;
    }
    #video .cs-card-group {
        width: 100%;
        max-width: 80rem;
        margin: 0;
        padding: 0 1rem;
        /* prevents padding and border from affecting height and width */
        box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        position: relative;
    }
    #video .cs-card-group:before{
      content: "";
      position: absolute;
      top: 0;
      left: -50vw;
      border-top: 1px solid #3B3B3B;
      width: 150vw;
      height: 1px;
    }
    #video .cs-item {
        text-align: center;
        padding: 80px 0;
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #3B3B3B;
        box-sizing: border-box;
        grid-column: span 12;
        transition:
            background-color 0.3s,
            border-color 0.3s;
    }
    #video .cs-item img{
      max-width: 80%;
    }
    #video .cs-item:last-of-type {
        border-bottom: none;
    }
    #video iframe {
      height: auto;
      aspect-ratio: 16 / 9;
      width: 100%;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #video .cs-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 3rem;
    }
    #video .cs-flex-group {
        width: 100%;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #video .cs-item {
        grid-column: span 6;
    }
    #video .cs-item:nth-of-type(3) {
        border-bottom: none;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #video .cs-card-group {
        padding: 0;
    }
    #video .cs-item {
        grid-column: span 3;
        border-bottom: 0;
        border-right: 1px solid #3B3B3B;
    }
    #video .cs-item:hover {
        background-color: #ffffff12;
    }
    #video .cs-item:last-of-type {
        border: none;
    }
    #video iframe {
      width: 80%;
    }
}

 /*-- -------------------------- -->
<---          CONTATO           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contato{
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        background-color: var(--BgColorLight);
    }
    h3{
      margin-top: 0;
    }
    #contato .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        /* 48px - 80px */
        gap: 20px;
    }
    #contato .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #contato .cs-title {
        margin: 0 0 2rem 0;
    }
    #contato .cs-form {
        width: 100%;
        /* 24px - 48px top and bottom */
        /* 20px - 32px left and right */
        padding: 48px 32px;
        /* prevents flexbox from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
        border-radius: var(--borderRadius);
    }
    #contato .cs-label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #contato .cs-input {
        font-family: var(--font-1);
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: #767676;
        background-color: var(--BgColorLight);
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        border-radius: var(--borderRadius);
    }
    #contato .cs-input::placeholder {
        color: #7d799c;
        opacity: 0.6;
    }
    #contato .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contato .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        border: none;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
    }
    #contato .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #contato .cs-button-solid:hover {
        color: #fff;
    }
    #contato .cs-button-solid:hover:before {
        width: 100%;
    }
    #contato .cs-submit {
        width: 100%;
    }
    #contato .cs-submit:hover {
        cursor: pointer;
    }
    #contato .cs-ul {
        margin: 0;
        width: auto;
        padding: 48px 32px;
        box-sizing: border-box;
        background-color: #fff;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        /* 40px - 60px */
        gap: clamp(1.5rem, 6vw, 3.75rem);
        position: relative;
        border-radius: var(--borderRadius);
    }
    #contato .cs-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        /* 12px - 20px */
        gap: clamp(0.75rem, 2vw, 1.25rem);
    }
    #contato .cs-li:hover .cs-icon-wrapper {
        transform: scale(1.1);
    }
    #contato .cs-header {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2.5vw, 1rem);
        font-weight: 700;
        line-height: 1.2em;
        margin-bottom: 0.5rem;
        display: block;
    }
    #contato .cs-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 2vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        color: var(--bodyTextColor);
        display: block;
        position: relative;
    }
    #contato .cs-link:hover {
        text-decoration: underline;
    }
    #contato .cs-icon-wrapper {
        /* 44px - 80px */
        width: clamp(2.75rem, 8.3vw, 5rem);
        height: clamp(2.75rem, 8.3vw, 5rem);
        margin: 0;
        border-radius: 50%;
        border: 1px solid #dddddd;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition: transform 0.3s;
    }
    #contato .cs-icon {
        /* 20px - 40px */
        width: clamp(1.25rem, 3vw, 2.5rem);
        height: auto;
        display: block;
    }
    #contato .cs-picture {
        width: 100%;
        border-radius: 0.5rem;
        /* clips image corners */
        overflow: hidden;
        display: block;
        position: relative;
        /* width divided height */
        aspect-ratio: 1.44;
    }
    #contato .cs-img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contato .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
    }
    #contato .cs-content {
        /*sends it to the right in the 2nd position */
/*        order: 2;*/
        flex: 1
    }
    #contato .cs-ul {
        flex: 1
    }
    #contato .section-title{
      flex: 1
    }
    #contato .section-title p{
      max-width: 80%;
    }
}

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer-1390 {
        padding: var(--sectionPadding);
        background-color: var(--bodyTextColor);
        position: relative;
        z-index: 1;
    }
    #footer-1390 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #footer-1390 .cs-top {
        width: 100%;
        margin-bottom: 2.5rem;
        /* 24px - 64px */
        padding-bottom: clamp(1.5rem, 5vw, 4rem);
        border-bottom: 1px solid #484848;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 24px - 40px */
        gap: clamp(1.25rem, 4vw, 2.5rem);
    }
    #footer-1390 .cs-ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        row-gap: 0.5rem;
        /* 24px - 36px */
        column-gap: clamp(1.5rem, 4vw, 2.25rem);
    }
    #footer-1390 .cs-li {
        list-style: none;
    }
    #footer-1390 .cs-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: #bababa;
        display: block;
        transition: color 0.3s;
    }
    #footer-1390 .cs-link:hover {
        color: var(--primary);
    }
    #footer-1390 .cs-logo {
        width: 100%;
        max-width: 13.0625rem;
        height: auto;
        display: block;
    }
    #footer-1390 .cs-logo-img {
        display: block;
    }
    #footer-1390 .cs-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    #footer-1390 .cs-social {
        margin: 0;
        padding: 0px 0px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    #footer-1390 .cs-social-li {
        list-style: none;
    }
    #footer-1390 .cs-social-link {
        width: 2.3rem;
        height: 2.3rem;
        background-color: #484848;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }
    #footer-1390 .cs-social-link:hover {
        background-color: var(--primary);
    }
    #footer-1390 .cs-social-link:hover .cs-social-icon {
        filter: grayscale(1) brightness(1000%);
        opacity: 1;
    }
    #footer-1390 .cs-social-icon {
        width: 1.2rem;
        height: auto;
        display: block;
        opacity: 0.6;
        transition: opacity 0.3s;
    }
    #footer-1390 .cs-copyright {
        font-size: 1rem;
        color: #bababa;
        line-height: 1.5em;
        margin: 0;
        display: block;
        text-align: center;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer-1390 .cs-top {
      align-items: end;
      flex-direction: row;
      justify-content: space-between;
    }
    #footer-1390 .cs-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    #footer-1390 .cs-flex {
        margin: 0 auto;
    }
    #footer-1390 .cs-social {
        /* sends it to the right in the 3rd position */
        order: 3;
    }
}


/*-- -------------------------- -->
<---          MODAL             -->
<--- -------------------------- -*/

.blur-it {
  filter: blur(4px);
}

#modal.modal-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0; 
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: all 0.75s ease-in-out;
  z-index: 2;
}

#modal.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
}

#modal .modal {
  width: 70%;
  opacity: 0;
  transition: all 1s ease-in-out;
  border-radius: var(--borderRadius);
  overflow: hidden;
  background: #fff;
  max-width: 1000px;
  height: fit-content;
}

#modal.modal-wrapper.open .modal {
  margin-top: 0px;
  opacity: 1;
}

#modal .head { 
  width: 100%;
  padding: 20px 20px 20px 40px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--secondaryLight);
}

#modal .btn-close {
  cursor: pointer;
  font-size: 28px;
  display: block;
  float: right;
  color: #fff;
}

#modal i.close{
  background-image: url(../icons/close-dark.svg);
  height: 44px;
  width: 44px;
  display: block;
}

#modal .content{
  padding: 20px;
  height: 80vh;
  overflow: auto;
}

#modal h3{
  font-size: var(--headerFontSize);
}

#modal .content ul{
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}

#modal .content li{
    list-style: none;
    padding: 20px;
    background-color: var(--BgColorLight);
    border-radius: var(--borderRadius);
    width: 32%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 500;
}

@media only screen and (max-width: 48rem) {
  #modal .modal {
    width: 90vw;
    height: 80vh;
    margin: 0;
    top: 10vh;
    left: 5vw;
  }
  #modal .head{
    height: 15vh;
  }
  #modal .head h3{
    font-size: 6vw;
  }
  #modal .content{
    height: 65vh;
    padding: 10px;
  }
  #modal .content li{
    width: 100%;
  }

}

/*

######################################
  MAIN GALLERY SLIDER SETUP SETTINGS
######################################

*/

* {
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#gallery-container {
  margin: 0 auto;
}

/*

######################################
  MAIN SLIDER VIEWING AREA SETUP
######################################

*/

#gallery-container .main-slides {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

#gallery-container .main-slides img {
  height: 530px;
  transition: all 0.5s ease-out 0s;
}

#gallery-container .main-slides > .gallery-slide {
  display: none;
}

#gallery-container .main-slides > .gallery-slide:nth-child(1) {
  display: block;
}

@media only screen and (max-width: 48rem) {
  #gallery-container .main-slides img{
        width: unset;
        height: 54vw;
    max-width: unset;
  }
}

/*

######################################
  SLIDER CONTROLLER BUTTONS SETUP
######################################

*/

#gallery-container .slider-controller-button {
  background: url(../icons/arrow.svg) center no-repeat;
  background-size: 80%;
  position: absolute;
  background-color: #fff;
  cursor: pointer;
  height: 70px;
  width: 45px;
  transition: all 0.3s ease-in-out;
}

#gallery-container .previous-slide-button {
  left: 0;
  transform: rotate(180deg);
}

#gallery-container .next-slide-button {
  right: 0;
}

#gallery-container .slider-controller-button:hover {
  background-size: 100%;
}

/*

######################################
  UPTOP SLIDER COUNTER
######################################

*/

#gallery-container .slides-counter {
  position: absolute;
  font-family: 'Saira Semi Condensed', sans-serif;
  top: 10px;
  left: 10px;
  font-size: 22px;
  font-weight: bold;
  z-index: 2;
  background: rgba(51,51,51,0.64);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  color: white;
  font-weight: bold;
}

#gallery-container .slides-counterr {
  position: absolute;
  font-family: 'Saira Semi Condensed', sans-serif;
  bottom: 10px;
  left: 10px;
  font-size: 22px;
  font-weight: bold;
  z-index: 2;
  background: rgba(51,51,51,0.64);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  color: white;
  font-weight: bold;
}
/*

######################################
  THUMBNAIL IMAGES SETUP & CONFIGURATION
######################################

*/

#gallery-container .thumbnail-slides {
  background: transparent;
  margin-top: 10px;
  text-align: center;
}

#gallery-container .thumbnail-slides > img {
  cursor: pointer;
  margin-right: 1px;
  margin-left: 1px;
  padding: 3px;
  transition: all 0.5s ease-out 0s;
  border-radius: 4px;
  border: 2px solid transparent;
}

#gallery-container .icon-ym2-gallery-outlined::before {
  content: "\ebd7";
  color: #fff;
}