/*
Theme Name: Rigby Storage Units
Text Domain: rigbystorageunits
Version: 1.0
Description: Autumnwood Self Storage provides secure and convenient options for RV storage in Rigby. Our gated facility features outdoor parking for RVs and trailers, ensuring your recreational vehicles are safely stored when not in use.
Tags: Blog
Author: Rigby Storage Units
Author URI: 
Theme URI:  
*/

/* Rigby Storage Units */

@font-face {
    font-family: 'Inter Tight';
    src: url('assets/fonts/InterTight-Regular.woff2') format('woff2'),
        url('assets/fonts/InterTight-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Tight';
    src: url('assets/fonts/InterTight-Medium.woff2') format('woff2'),
        url('assets/fonts/InterTight-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Tight';
    src: url('assets/fonts/InterTight-SemiBold.woff2') format('woff2'),
        url('assets/fonts/InterTight-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Tight';
    src: url('assets/fonts/InterTight-Italic.woff2') format('woff2'),
        url('assets/fonts/InterTight-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter Tight';
    src: url('assets/fonts/InterTight-Bold.woff2') format('woff2'),
        url('assets/fonts/InterTight-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter Tight';
    color: #2A2A2A;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.5;
}

.wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 9;
}

.d-flex {
    display: flex;
}

.text-center {
    text-align: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.justify-space-between {
    justify-content: space-between;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.radius20 {
    border-radius: 20px;
}

a {
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    margin-bottom: 15px;
    font-family: 'Inter Tight';
    font-weight: 600;
}

.btn {
    display: inline-block;
    cursor: pointer;
    padding: 15px 30px;
    border: 1px solid #D61710;
    border-radius: 4px;
    color: #ffffff;
    background-color: #D61710;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.2;
    font-family: "Inter Tight", sans-serif;
    text-decoration: none;
    -webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
    position: relative;
}

.outline-btn {
	border-color: #2A2A2A;
	color: #2A2A2A;
	background-color: transparent;
}

.white-btn {
	border-color: #fff;
	color: #fff;
	background-color: transparent;
}

.btn:hover {
    background-color: #2A2A2A;
    border-color: #2A2A2A;
}

.outline-btn:hover, .white-btn:hover {
	border-color: #D61710;
	color: #fff;
	background-color: #D61710;
}

.ptb100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ptb80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ptb70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pb80 {
    padding-bottom: 80px;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

figure {
    line-height: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.col-50 {
    width: 50%;
}

.col-30 {
    width: 33.33%;
}

.gap-50 {
    gap: 50px;
}

.gap-40 {
    gap: 40px;
}

.gap-20 {
    gap: 20px;
}

.text-white {
    color: #ffffff;
}

.text-red {
    color: #D61710;
}

.bg-black {
    background-color: #2A2A2A;
}

.bg-gray {
    background-color: #F5F5F5;
}

.mainTitle {
    font-size: 52px;
    line-height: 1;
	position: relative;
	padding-bottom: 20px;
}

.mainTitle:before {
    content: "";
    display: block;
    background: #D61710;
    width: 120px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.centerTitle {
    padding-bottom: 35px;
    margin-bottom: 35px;
}

.centerTitle:before {
	left: 50%;
	transform: translate(-50%, 0);
}

.mainSubtitle {
    font-size: 20px;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
	text-transform: uppercase;
}

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

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

.mb40 {
    margin-bottom: 40px;
}

.mt40 {
    margin-top: 40px;
}

.pos-relative {
    position: relative;
}

.titleWrapper p {
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.normalTitle {
    margin-bottom: 0;
}

.normalTitle:before {
	content: none;
}

/**** Header ****/

.main-header {
    position: fixed;
    padding: 15px 0;
    width: 100%;
	left: 0;
	top: 0;
    z-index: 999;
    background-color: transparent;
}
.main-header.sticky {
    background-color: #1E1E1E;
}
.logo a {
    display: block;
    line-height: 0;
}
.hamburgericon {
    display: none;
}
.logo {
    width: 320px;
	text-align: center;
}
.logo img {
	-webkit-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
    transition: all ease 0.2s;
}
.main-header.sticky .logo img {
	width: 220px;
}
.header_right {
    width: calc(100% - 320px);
}
.header_right .menuBar {
    display: flex;
    align-items: center;
    justify-content: right;
}
.menuBar .menu-main-menu-container .menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
.menuBar .menu-main-menu-container .menu li {
    margin: 0;
}
.menuBar .menu-main-menu-container .menu li a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
	text-transform: uppercase;
    padding: 5px;
    font-family: 'Inter Tight';
	letter-spacing: 0.64px;
}
.menuBar .menu-main-menu-container .menu li a:hover, .menuBar .menu-main-menu-container .menu li.current-menu-item a {
    color: #D61710;
}

/**** Footer ****/

.contactMap {
	line-height: 0;
	padding: 10px;
}
.contactMap .mainRow {
    gap: 10px;
}
.footer-col {
    width: 22%;
}
.footerLogo_col {
    width: 34%;
}
.footer-col h4 {
    font-size: 22px;
    border-bottom: 1px solid #656565;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.site-footer ul.menu li {
    list-style: none;
    margin-bottom: 15px;
}
.site-footer ul.menu li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.64px;
}
.site-footer ul.menu li:last-child {
    margin: 0;
}
.footerContact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footerContact-details p {
    font-size: 17px;
    font-weight: 600;
}
.footerContact-details p a {
    color: #fff;
    text-decoration: none;
}
.footerContact-details p a:hover, .site-footer ul.menu li a:hover, .socialLists li a:hover {
    color: #d61710;
}
.footer-copyright {
    background-color: #1E1E1E;
    padding: 17px 0;
}
.copyright-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}
.footerContact-details .locationAddress {
	padding-left: 25px;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    margin-top: 5px;
}
.footerContact-details .locationAddress:before {
	content:"";
	display: inline-block;
	background: url(assets/images/location-pin-icon.svg) no-repeat;
	background-size: contain;
    width: 17px;
    height: 22px;
    position: absolute;
    left: 0;
}
.socialLists {
    flex-direction: column;
    gap: 15px;
}
.socialLists li {
    list-style: none;
}
.socialLists li a {
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}
.socialLists li a .socialIcon {
    width: 38px;
    height: 38px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.socialLists li a:hover .socialIcon {
    background-color: #d61710;
    border-color: #d61710;
}
.footer-logo a {
  	display: inline-block;
  	line-height: 0;
}

/**** Homepage ****/

.home_Herobanner {
    padding-top: 350px;
    overflow: hidden;
}
.home_Herobanner::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
   	background: linear-gradient(90deg, rgba(0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 0%, transparent 200%);
    top: 0;
    left: 0;
	z-index: 1;
}
.bannerImage {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}
.bannerImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: left center;
}
.bannerContent {
	max-width: 500px;
}
.bannerContent h1 {
    font-size: 82px;
	margin-bottom: 10px;
    position: relative;
	text-shadow: 0 4px 7px rgba(0, 0, 0, 0.46);
}
.bannerContent .innerContent {
    margin-bottom: 2.5rem;
}
.bannerContent .innerContent p {
    font-size: 26px;
	font-weight: 500;
	line-height: 1.3;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.bannerContent_col {
  	width: 73%;
}
.freeUnit_card {
  	width: calc(27% - 40px);
	padding: 20px 0;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.trustedListings {
  	gap: 20px;
}
.trustedListings .trustedList_card {
	background-color: rgba(0,0,0,0.65);
	border-radius: 7px;
	padding: 20px 15px;
	width: calc(100% / 3 - (20px*2/3));
	gap: 15px;
}
.trustedList_card .trustedList_content {
  	width: calc(100% - 90px);
}
.trustedList_content h3 {
	font-size: 20px;
	position: relative;
	padding-bottom: 10px;
    margin-bottom: 8px;
}
.trustedList_content h3:after {
	content: "";
    display: block;
    background: #D61710;
    width: 80px;
    height: 2px;
    position: absolute;
    bottom: 0;
}
.trustedList_content p {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}
.limitedBadge {
    background-color: #D61710;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 5px 5px 15px;
    font-size: 16px;
    margin-bottom: 1rem;
    position: relative;
    left: -10px;
    z-index: 1;
}
.limitedBadge::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 100%;
    height: 100%;
    background-color: #D61710;
    transform: skewX(-20deg);
    z-index: -1;
}
.freeUnit_cardInner {
    padding: 0 25px;
}
.freeUnit_cardInner .unitMonth {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
}
.freeUnit_cardInner .selectedUnits {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 2px solid #DADADA;
}
.freeUnit_cardInner .selectedUnits h2 {
    font-size: 94px;
    color: #D61710;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}
.freeUnit_cardInner .reservedButton {
    text-align: center;
}
.freeUnit_cardInner .reservedButton .btn {
    width: 100%;
}
.freeUnit_cardInner .reservedButton p {
    font-size: 14px;
    font-weight: 500;
    color: #7C7C7C;
    font-style: italic;
    margin-top: 5px;
}
.freeUnit_cardInner .unitMonth p {
    position: relative;
	display: flex;
    align-items: center;
}
.freeUnit_cardInner .unitMonth p:after {
	content:"";
	display: inline-block;
	background: url(assets/images/gift-wallet-icon.svg) no-repeat;
	width: 43px;
	height: 32px;
	margin-left: 10px;
	background-size: contain;
}
.commitMonth_Units {
    padding-left: 50px;
    position: relative;
    margin-bottom: 1.25rem;
}
.commitMonth_Units:before {
	content:"";
	display: inline-block;
	background: url(assets/images/checkmark-icon.svg) no-repeat;
	width: 38px;
    height: 38px;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.commitMonth_Units p {
    line-height: 1.3;
    padding-left: 15px;
    border-left: 2px solid #DADADA;
    font-size: 17px;
}
.unitSizes_card {
    width: calc(100% / 3 - (20px*2/3));
    background-color: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    box-shadow: 0 0 19px rgba(0,0,0,0.05);
    padding: 35px;
	text-decoration: none;
    color: #2A2A2A;
}
.unitSizes_card:hover {
	border-color: #D61710;
	box-shadow: 0 0 33px rgba(0,0,0,0.05);
}
.unitIcon {
    width: 175px;
    height: 175px;
	margin: 0 auto 1rem;
    border-radius: 50%;
    border: 1px solid #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
}
.unitSizes_card:hover .unitIcon {
	border-color: #D61710;
}
.unitIcon:before {
	content: "";
	display: block;
	width: 150px;
	height: 150px;
	background-color: #F2F2F2;
	position: absolute;
    border-radius: 50%;
}
.unitSizes_card:hover .unitIcon:before {
	background-color: #D61710;
}
.unitIcon img {
	position: relative;
}
.unitSizes_card:hover .unitIcon img {
	filter: brightness(0) invert(1);
}
.unitSizes_card h3 {
    font-size: 32px;
    text-transform: uppercase;
    padding-bottom: 15px;
    position: relative;
}
.unitSizes_card:hover h3 {
	color: #D61710;
}
.unitSizes_card h3:before {
    content: "";
    display: block;
    background: #D61710;
    width: 190px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}
.unitSizes_card h3:after {
    content: "";
    display: block;
    background: #D61710;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 8px solid #fff;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%, 0);
}
.unitSizes_card p {
    font-size: 20px;
    color: #000000;
}
.unitSizes_card .unitPrice {
    background-color: #FEF6F4;
    border: 1px solid #FFA5A2;
    border-radius: 20px;
    padding: 12px 30px;
    max-width: 210px;
    margin: 1rem auto 0;
}
.unitSizes_card .unitPrice h4 {
    margin: 0;
    font-size: 50px;
    color: #D61710;
}
.imageCol-half {
    width: 70%;
}
.imageCol-half .storageImage, .aboutRigby_Image {
    line-height: 0;
	display: block;
}
.imageCol-half .storageImage img {
    width: 100%;
}
.contentCol-half {
    width: 50%;
    max-width: 580px;
    background-color: #fff;
    border: 1px solid #E7E7E7;
    box-shadow: -7px 4px 26px rgba(0,0,0,0.25);
    margin-left: -10%;
    padding: 40px;
	position: relative;
}
.columnReverse .contentCol-half {
    margin-right: -10%;
    margin-left: 0;
}
.facilityLists_card {
    width: 30%;
    padding: 10px 20px;
    border-right: 1px solid rgba(42,42,42,0.2);
}
.facilityLists_card:nth-child(2) {
    width: 40%;
}
.facilityLists_card:last-child {
    border:none;
}
.facilityLists_card .facilityIcon {
    line-height: 0;
    margin-bottom: 1rem;
}
.facilityLists_card h3 {
    margin: 0;
    font-size: 18px;
	line-height: 1.2;
}
.facilityLists {
    margin-top: 1.5rem;
}

/**** Testimonials  ****/

.testimonial-slider{
	padding-bottom: 60px !important;
}
.testimonial-slider .swiper-slide{
	border: 1px solid #E4E4E4;
	border-radius: 11px;
	padding: 40px 30px;
	box-shadow: 0 0 19px 0 rgba(0, 0, 0, 0.05);
	height: auto;
	background-color: #fff;
}
.testimonial-slider .swiper-slide p{
	font-size: 20px;
	line-height: 1.5;
	font-weight: 500;
	color: #2A2A2A;
	font-style: italic;
}
.testimonial-slider .swiper-pagination .swiper-pagination-bullet{
	height: 15px;
	width: 15px;
	background-color: #D9D9D9;
}
.testimonial-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background-color: #D61710;
}

.testimonial-slider .swiper-pagination .swiper-pagination-bullet {
	position: relative;
}
.testimonial-slider .swiper-pagination .swiper-pagination-bullet:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 48px;
	height: 48px;
	transform: translate(-50%, -50%);
}
.customerInfo {
	gap: 15px;
	margin-top: 20px;
}
.customerShort_name{
	height: 51px;
	width: 51px;
	border: 1px solid #D61710;
	background-color: #FFF7F7;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #D61710;
	font-weight: 600;
	font-size: 22px;
}
.testimonial-slider .swiper-slide:nth-child(3n + 2) .customerShort_name {
    background-color: #E8EDFF;
	border-color: #577BF9;
	color: #577BF9;
}
.testimonial-slider .swiper-slide:nth-child(3n) .customerShort_name {
    background-color: #F3FFEC;
	border-color: #7DC855;
	color: #7DC855;
}
.customerName h3{
	color: #2A2A2A;
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 0;
}
.star {
    font-size: 22px;
    display: inline-block;
}
.star.full {
    background: linear-gradient(90deg, #f9c316 100%, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #F9C316;
}
.star.half {
    background: linear-gradient(90deg, #F9C316 50%, #ccc 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.star.empty {
    color: #ccc;
}
.customerHeadshot {
	border-radius: 50%;
}
.testimonial-slider .swiper-slide .quote-icon{
	margin-bottom: 15px;
}
.testimonial-slider .swiper-wrapper{
	padding-top: 10px;
}

/**** About  ****/

.bannerContent.innerBanner_content {
    max-width: 550px;
}
.bannerContent.innerBanner_content .innerContent {
    margin: 0;
}
.aboutRigby_storage .titleWrapper p:last-of-type {
    margin-bottom: 0;
}

/**** Contact  ****/

.contactAddress_info {
    display: flex;
    flex-direction: column;
    gap: 30px;
	margin-top: 2rem;
}
.contactAddress_info h4 {
    color: #D61710;
    font-style: italic;
    margin-bottom: 5px;
    font-size: 18px;
}
.contactAddress_info p {
    font-size: 16px;
    font-weight: 600;
}
.contactAddress_info p a {
    color: #2a2a2a;
    text-decoration: none;
}
.contactAddress_info p a:hover {
	color: #D61710;
}
.contactAddress_info .phoneNumber, .contactAddress_info .officeLocation {
    padding-left: 70px;
    position: relative;
}
.contactAddress_info .phoneNumber:before {
	content: "";
	display: block;
	background: url(assets/images/call-icon.svg) no-repeat;
	width: 50px;
    height: 50px;
    background-size: contain;
    position: absolute;
    left: 0;
}
.contactAddress_info .officeLocation:before {
	content: "";
	display: block;
	background: url(assets/images/location-icon.svg) no-repeat;
	width: 50px;
    height: 50px;
    background-size: contain;
    position: absolute;
    left: 0;
}
.formWrapper {
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    padding: 40px;
	box-shadow: 0 4px 26px rgba(0, 0, 0, 0.1);
}
.formWrapper h3 {
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    padding-bottom: 25px;
    margin-bottom: 25px;
	position: relative;
}
.formWrapper h3:before {
	content: "";
    display: block;
    background: #D61710;
    width: 120px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}
.wpforms-container .wpforms-field {
    padding: 10px 0 !important;
}
.wpforms-container .wpforms-field input[type="text"], .wpforms-container .wpforms-field input[type="email"], .wpforms-container .wpforms-field input[type="tel"], .wpforms-container .wpforms-field textarea {
    border-color: #ACACAC !important;
    border-radius: 4px;
    padding: 15px 20px;
    height: auto;
    min-height: auto;
    color: #7E7B7B;
    font-size: 16px;
    font-weight: 500;
    box-shadow: none !important;
}
.formWrapper .wpforms-container {
    margin-bottom: 0 !important;
}
.wpforms-submit-container button.wpforms-submit {
    width: 100%;
    background-color: #D61710 !important;
    border-radius: 4px !important;
    font-family: 'Inter Tight' !important;
    font-weight: 600 !important;
    padding: 18px 15px !important;
    height: auto !important;
    border: none !important;
}
.wpforms-submit-container button.wpforms-submit:hover {
    background-color: #2a2a2a !important;
}
.wpforms-submit-container button.wpforms-submit:after {
	content: none !important;
}
.wpforms-container-full .wpforms-form em.wpforms-error {
    margin-top: 5px !important;
}
.wpforms-container-full .wpforms-confirmation-container-full, div[submit-success]>.wpforms-confirmation-container-full {
    text-align: center !important;
    margin-bottom: 0 !important;
}

/**** Error  ****/

.error404 .main-header {
    background-color: #2a2a2a;
}
.errorBanner {
    padding-top: 280px;
}
.errorPagecontent h1 {
    font-size: 68px;
    font-weight: bold;
}
.errorPagecontent p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/**** Responsive  ****/

@media screen and (max-width: 1199px) {
    .menuBar .menu-main-menu-container .menu {
        gap: 25px;
    }
	.logo, .logo img, .main-header.sticky .logo img {
		width: 200px;
	}
	.header_right {
		width: calc(100% - 200px);
	}
	.freeUnit_cardInner {
		padding: 0 15px;
	}
	.freeUnit_cardInner .unitMonth {
		font-size: 30px;
	}
	.freeUnit_cardInner .selectedUnits h2 {
		font-size: 80px;
	}
	.limitedBadge {
		font-size: 13px;
	}
	.commitMonth_Units p {
		font-size: 16px;
	}
	.freeUnit_cardInner .reservedButton .btn {
		padding: 15px 20px;
	}
	.home_Herobanner {
		padding-top: 280px;
	}
	.contentCol-half {
		padding: 40px 30px;
	}
	.gap-50 {
		gap: 40px;
	}
	.footer-col h4 {
		font-size: 20px;
	}
	.trustedList_card img {
		width: 50px;
	}
	.trustedList_content h3 {
		font-size: 18px;
	}
	.trustedList_content p {
		font-size: 14px;
	}
}

@media screen and (min-width: 981px) {
	.menuBar .menu-main-menu-container .menu li.reserveBtn a {
		background-color: #D61710;
		padding: 13px 20px;
		border-radius: 4px;
		font-weight: bold;
		border: 1px solid #D61710;
	}
	.menuBar .menu-main-menu-container .menu li.paymentBtn a {
		background-color: transparent;
		padding: 13px 20px;
		border-radius: 4px;
		font-weight: bold;
		border: 1px solid #fff;
	}
	.menuBar .menu-main-menu-container .menu li.reserveBtn a:hover {
		background-color: #2a2a2a;
		border-color: #2a2a2a;
		color: #fff;
	}
	.menuBar .menu-main-menu-container .menu li.paymentBtn a:hover {
		background-color: #D61710;
		border-color: #D61710;
		color: #fff;
	}
}

@media screen and (max-width: 980px) {
    .d-flex {
        flex-wrap: wrap;
    }
    .col-50,
    .col-30,
	.bannerContent_col,
	.freeUnit_card,
	.imageCol-half,
	.contentCol-half,
	.footerLogo_col {
        width: 100% !important;
    }
    .gap-50 {
        gap: 30px;
    }
    .menuBar .header-menu {
        display: none;
        position: fixed;
        top: 120px;
        width: 100%;
        background-color: #1E1E1E;
        left: 0;
    }
    .hamburgericon {
        display: block;
        font-size: 0;
        position: relative;
        height: 28px;
        width: 28px;
    }
    .hamburgericon span,
    .hamburgericon span::before,
    .hamburgericon span::after {
        width: 28px;
        position: absolute;
        content: "";
        height: 3px;
        background-color: #fff;
        top: 11px;
    }
    .hamburgericon span::before {
        top: -9px;
    }
    .hamburgericon span::after {
        top: 9px;
    }
    .hamburgericon.open span {
        -webkit-transform: rotate(48deg);
        -ms-transform: rotate(48deg);
        transform: rotate(48deg);
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
        -webkit-transition: all .3s ease 0s;
    }
    .hamburgericon.open span::after {
        opacity: 0;
        visibility: hidden;
    }
    .hamburgericon.open span::before {
        -webkit-transform: rotate(85deg);
        -ms-transform: rotate(85deg);
        transform: rotate(85deg);
        top: 0;
    }
    .menuBar .menu-main-menu-container .menu {
        gap: 0;
        flex-direction: column;
        align-items: start;
    }
    .menuBar ul li {
        width: 100%;
        border-bottom: 1px solid #323232;
    }
    .menuBar li a {
        padding: 15px 25px !important;
        display: block;
    }
    .menuBar .menu-main-menu-container .menu li.preRegistrationBtn a {
        background: none !important;
        width: 100%;
        height: auto;
        padding: 15px 25px !important;
        display: block;
    }
    .menuBar ul li:last-child {
        border-bottom: 0;
    }
	.home_Herobanner {
		padding-top: 200px;
	}
	.freeUnit_card {
		max-width: 300px;
		margin: 0 auto;
	}
	.bannerContent h1 {
		font-size: 70px;
	}
	.bannerContent .innerContent p {
		font-size: 22px;
	}
	.mainTitle {
		font-size: 40px;
	}
	
	.unitSizes_card {
		padding: 30px 25px;
	}
	.unitSizes_card h3 {
		font-size: 24px;
	}
	.unitSizes_card p, .mainSubtitle {
		font-size: 18px;
	}
	.unitSizes_card .unitPrice h4 {
		font-size: 44px;
	}
	.unitSizes_card h3::before {
		width: 150px;
	}
	.contentCol-half {
		max-width: 100%;
		margin: 0 !important;
	}
	.columnReverse {
		flex-direction: column-reverse;
	}
	.footer-col {
		width: calc(100% / 3 - (30px*2/3));
	}
	.footer-logo {
		text-align: center;
		width: 100%;
	}
	.unitIcon {
		width: 140px;
		height: 140px;
	}
	.unitIcon:before {
		width: 120px;
		height: 120px;
	}
	.unitIcon img {
		width: 70px;
	}
	.errorBanner {
	  	padding-top: 250px;
	}
}

@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
    }
    .main-header,
    .main-header.sticky {
        padding: 10px 0;
    }
	.logo, .logo img, .main-header.sticky .logo img {
		width: 180px;
	}
    .btn {
        font-size: 14px;
		padding: 15px 20px;
    }
    .mb40 {
        margin-bottom: 30px;
    }
    .menuBar li a,
    .menuBar .menu-main-menu-container .menu li.preRegistrationBtn a {
        padding: 15px 20px !important;
    }
    .menuBar .header-menu {
        top: 100px;
    }
    .ptb80 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
	.home_Herobanner {
		padding-top: 180px !important;
	}
	.bannerContent h1 {
		font-size: 50px;
		margin-bottom: 5px;
	}
	.bannerContent .innerContent {
		margin-bottom: 1.5rem;
	}
	.bannerContent .innerContent p {
		font-size: 20px;
	}
	.gap-40 {
		gap: 30px;
	}
	.trustedList_card img {
		width: 60px;
	}
	.mainTitle {
		font-size: 32px;
	}
	.centerTitle {
		padding-bottom: 25px;
		margin-bottom: 25px;
	}
	.unitSizes_card, .footer-col, .trustedListings .trustedList_card {
		width: 100%;
	}
	.freeUnit_cardInner .unitMonth {
		font-size: 36px;
	}
	.freeUnit_cardInner .selectedUnits h2 {
		font-size: 90px;
	}
	.mt40 {
		margin-top: 30px;
	}
	.pb80 {
		padding-bottom: 60px;
	}
	.contentCol-half {
		padding: 30px 20px;
	}
	.mainSubtitle, .facilityLists_card h3 {
		font-size: 16px;
	}
	.facilityLists_card {
		padding: 10px;
	}
	.mainTitle::before, .formWrapper h3::before {
		width: 80px;
	}
	.testimonial-slider .swiper-slide {
		padding: 30px 20px;
	}
	.testimonial-slider .swiper-slide p {
		font-size: 18px;
	}
	.customerName h3 {
		font-size: 20px;
	}
	.ptb100 {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.ptb70 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.contactMap iframe {
		height: 400px;
	}
	.copyright-text p {
		font-size: 14px;
	}
	.footer-logo img {
		width: 250px;
	}
	.footer-col h4 {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.trustedListings, .btnWrapper {
	  	gap: 10px;
	}
	.btnWrapper .btn {
	  	font-size: 13px;
	}
	.formWrapper {
		padding: 30px 20px;
	}
	.formWrapper h3 {
		font-size: 22px;
	}
	.wpforms-container .wpforms-field .wpforms-field-row .wpforms-one-half {
		width: 100% !important;
		padding: 0 !important;
		margin-top: 10px !important;
	}
	.wpforms-container .wpforms-field .wpforms-field-row .wpforms-first.wpforms-one-half {
		margin-top: 0 !important;
	}
	.wpforms-container .wpforms-field {
	  	padding: 5px 0 !important;
	}
	.errorBanner {
		padding-top: 180px !important;
	}
	.errorPagecontent h1 {
		font-size: 44px;
	}
	.errorPagecontent p {
		font-size: 18px;
	}
}