:root {
	--Primary-cl: #ffffff;
	--Grey-cl: #d3d3d3;
	--translucent-grey-cl: #d3d3d3a4;
	--Border-cl: #222;
	--Warm-cl: #D3AB38;
	--blocking-cl: #fff9f1;
	--footer-cl: #1e1103;
	--link-cl: #FAD110;
	--brownText-cl: #A87F1C;
	--brownTextDark-cl: #3a2b05;
	--fade-strt: 98%;
}

/*---------------------
	homemade tools 
---------------------*/
p a {
	color: var(--brownText-cl);
}

p a:hover {
	color: var(--brownText-cl);
}

.fade__bar__topper{
	position: relative;
	width: 100%;
	height: 3px;
}

.fade__bar{
	min-height: 2px;
	position: absolute;
	top: 3px;
	width: 100%;
	height: 10px;
	background: linear-gradient(0deg, #00000000, var(--Primary-cl));
	z-index: 2;
}

.image__block{
	aspect-ratio: initial;
}

.image__block__fill{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.padding{
	height: 20px;
	width: 100%;
	background: none;
}

.container__item{
	margin-bottom: 20px;
}

.horizontal__container{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	max-width: 100%;
	width: 100%;
	min-height: 50px;
}

.no__wrap{
	flex-wrap: nowrap !important;
}

.no__wrap .horizontal__container{
	flex-wrap: nowrap !important;
}

.center__content{
	align-content: center !important;
}

.justify__content__center{
	display: flex !important;
	justify-content: center !important;
}

.fit__content{
	width: fit-content !important;
}

.side__by__side{
	max-width: none;
	overflow-x: clip;
}

.side__by__side .container{
	position: relative;
}

.align__center{
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
}

.justify__right{
	display: flex !important;
	justify-content: right !important;
}

.justify__center{
	display: flex !important;
	justify-content: center !important;
}

.box__shadowed{
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
}

.editor__label{
	position: absolute; 
	z-index: 900;
	margin-left:30px; 
	margin-top: -30px; 
	height: 30px; 
	width: fit-content; 
	background-color: black; 
	color: white;
}

.jump__hook{
	position: absolute;
	z-index: -1;
	margin-top: -100px;
	height: 100%;
	width: 100%;
	visibility: hidden;
}

.title__and__para{
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
}

.title__and__para .section-title{
	width:max-content;
	margin-right: 15px;
}

.grid__item{
	padding:5px;
}

@media screen and (max-width: 768px) {
	.title__and__para{
		text-align: center;
		flex-wrap: wrap;
	}
}

/* --------------------- */

html,
body {
	/* overflow-y: scroll; */
	height: 100%;
	font-family: "Mulish", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Saira Condensed", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	font-family: "Mulish", sans-serif;
	color: #444444;
	font-weight: 400;
	line-height: 27px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	/* margin-bottom: 55px; */
	position: relative;
	z-index: 1;
}

.section-title img, svg{
	position: absolute;
	left: -50px;
	top: -20px;
	height: 120px ;
	width: 129px ;
	content: "";
	z-index: -1;
}

.section-title.center_title {
	text-align: center;
	align-content: center;
}

.section-title.center_title img, svg{
	left: 50%;
	transform: translateX(-50%);
	top: -70px
}

.section-title h5 {
	font-size: 17px;
	color: #A87F1C;
	font-weight: 100;
	letter-spacing: 2px;
	display: block;
	margin-bottom: -2px;
}

.section-title h2 {
	font-size: 40px;
	color: #142336;
	font-weight: 600;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 50px;
	padding-bottom: 50px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 18px;
	color: #142336;
	font-family: "Saira Condensed", sans-serif;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: var(--link-cl);
	border: 3px solid var(--Primary-cl);
	border-radius: 5px;
	padding: 14px 36px 12px;
}

.primary-btn.border_btn {
	border: 2px solid #FAD110;
	color: #4586D5;
	background: transparent;
}

.site-btn {
	border: none;
	display: inline-block;
	padding: 14px 30px;
	background: var(--Warm-cl);
	font-size: 16px;
	font-family: "Saira Condensed", sans-serif;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}


/*---------------------
  Banner
-----------------------*/

.banner {
	position: relative;
	z-index: 99;
}

.banner a:hover{
	cursor: pointer;
}

.backing{
    position: absolute;
    top:0;
    left:0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.banner__body {
    z-index: 99;
    position: fixed;
    height: 100px;
    margin-top: -100px;
}


.banner__mb {
    height: 100%;
	width: 100%;
    background: var(--Primary-cl) !important;
}

.banner__mb .burger__button{
	visibility: hidden;
	color: var(--Border-cl);
	font-size: 45px;
	position: absolute;
	right: 35px;
}

.banner__mb.banner__mb:not(.collapsed) .burger__button{
	color: var(--Grey-cl);
}

.accordion-button .banner__mb:not(.collapsed) {
    background: var(--Primary-cl);
    z-index: 0;
}

.mb__arrow{
    position:absolute;
    left: 93%;
	font-size: 25px;
    rotate: 0deg;
    transition: rotate 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) .mb__arrow{
    transition: rotate 0.3s ease-in-out;
    rotate: 180deg;
}

.accordion-button .banner__mb .collapsed {
    background-color: var(--Primary-cl);
    z-index: 0;
}

.banner__accordion__page{
    max-height: calc( 100vh - 180px);
    /* overflow-y: scroll; */
}

.banner__accordion__page.accordion-collapse.collapse.show{
	overflow-y: scroll;
}

.banner__m__options__buffer {
    height: 26px;
    background-color: var(--Primary-cl);
    border-bottom: 1px solid var(--Border-cl);
}

.banner ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.banner__m__nav__item{
    display: flex;
    width: 100%;
    min-height: 60px;
    height: fit-content;
    overflow: clip;
    border-bottom: 1px solid var(--Border-cl);
    background: var(--Primary-cl);
}

.banner__m__options a{
	padding-left: 5%;
    border: 0;
    height: 60px;
	width: 100%;
    position: relative;
    display: block;
    align-content: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--Border-cl);
    background: transparent;
    text-align: left;
}

.accordion-button .m__service__button{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    height: 60px;
    width: 100%;
}


.banner__logo{
    pointer-events: none;
    height:130%;
    position:absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.banner__dsk{
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
}

.banner__dsk .row{
    margin: 0;
    height: 100%;
    padding: 0;
}

.banner__dsk a{
    text-decoration: none;
    position: relative;
    height: 100%;
    z-index: 1;
    padding: 0;
    display:flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.logo__button{
    width: 100%;
    height: 100%;
}

.d__option{
    z-index: 1;
    position: relative;
    background: transparent;
}


.d__option .backing{
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(0deg, var(--Primary-cl), var(--Warm-cl));
    top:-100%;
    opacity: 1;
    transition: top 0.2s ease-in-out;
}

.d__option:hover .backing{
    top: 0%;
}

.d__o__button p{
	position:relative;
	color: var(--Border-cl);
    font-weight: 700;
    font-size: larger;
    text-align: center;
	align-items: center;
}

.d__o__button p::after{
	content:"";
	display:block;
	position:absolute;
	height: 3px;
	width: 100%;
	transform: scaleX(0);
	bottom: -2px;
	left: 0;
	transition:0.2s;
	background: var(--Warm-cl);
}

.d__o__button:hover p{
	color: var(--brownTextDark-cl);
}

.d__o__button:hover p::after{
	transform: scaleX(1);
}

.services__button .services__d__drop {
	visibility: hidden;
    opacity: 0;
    position:absolute;
    z-index: 3;
    background: var(--Primary-cl);
    border: 3px solid var(--Warm-cl);
    border-radius: 2%;
    position:absolute;
    list-style-type: none;
    padding: 0;
    overflow: hidden;
	width: 250px;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
    transition: top 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.services__button:hover .services__d__drop{
	pointer-events: inherit;
	visibility: visible;
    opacity: 1;
    top: 65px;
}

.m__service__options a{
    height: 45px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    background: var(--Warm-cl);
    border-bottom: var(--Border-cl) 1px solid;
}

.services__d__drop a{
    color: var(--text-color);
	justify-content: flex-start;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
	padding-top: 10px;
    pointer-events:all;
}

.services__d__drop a:hover{
    background: var(--Warm-cl);
}

.top__pointer__container {
    overflow: clip;
    height: 50px;
}

.top__pointer__bar {
    width: 100%;
    height: 10px;
    background: var(--Border-cl);
}

.top__pointer__under {
    position: fixed;
    z-index: -1;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 50px solid var(--Border-cl);
}

.top__pointer__over {
    margin-top: -10px;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-top: 50px solid var(--Primary-cl);
}

.bottom__pointer__container {
	position: relative;
    overflow-x: clip;
    height: 0px;
	z-index: 1;
}

.bottom__pointer__under {
	position: absolute;
    border-left: 50vw solid var(--Border-cl);
    border-right: 50vw solid var(--Border-cl);
	border-top: 50px solid transparent;
	/* margin-top: -60px; */
	bottom: 10px;
}

.bottom__pointer__bar {
	position: absolute;
    width: 100%;
    height: 10px;
	bottom: 0;
    background: var(--Border-cl);
}

.bottom__pointer__over {
	position: absolute;
    border-left: 50vw solid var(--Primary-cl);
    border-right: 50vw solid var(--Primary-cl);
	border-top: 50px solid transparent;
    bottom: 0;
}


/*---------------------
  Hero
-----------------------*/

.hero {
	min-height: 800px;
	overflow: hidden;
}

.hero__items {
	height: 800px;
	padding-top: 180px;
}

.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text p {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text .primary-btn {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-nav button {
	font-size: 50px;
	color: #142336;
	height: 100px;
	width: 60px;
	line-height: 100px;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -50px;
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 0;
}

.hero__text {
	border-radius: 10px;
	max-width: 650px;
	background: #ffffffc0;
	padding: 45px 50px 60px;
	overflow: hidden;
}

.hero__text h2 {
	color: #142336;
	font-size: 50px;
	font-weight: 600;
	line-height: 65px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.hero__text p {
	font-size: 18px;
	color: #142336;
	margin-bottom: 35px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}

.hero__text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: 0.9s;
	-o-transition: 0.9s;
	transition: 0.9s;
}

/*----------------------
  Bottom Pointers
-----------------------*/

.bottom__pointers__container {
	overflow-x: clip;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.bottom__buffer{
	position: absolute;
	height: 10px;
	width: 100%;
	margin-top: -10px;
	/* margin-top: -10px; */
	background-color: var(--Border-cl)
}

.bottom__inverse__point__under {
	position: absolute;
	/* margin-top: -50px; */
	width: 100%;
	border-left: 50vw solid var(--Border-cl);
	border-right: 50vw solid var(--Border-cl);
	/* border-top: 40px solid transparent; */
	/* z-index: 1; */
}

.bottom__inverse__point {
	position: absolute;
	top: 0;
	/* margin-top: -40px; */
	width: 100%;
	border-left: 50vw solid var(--Primary-cl);
	border-right: 50vw solid var(--Primary-cl);
	border-top: 40px solid transparent;
	/* z-index: 1 */
}


/*---------------------
  Benefit Bubbles
-----------------------*/

.benifit__bubbles {
	position: relative;
	/* width: 80%; */
	width: 100%;
	margin-top: -100px;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
	padding: 15px;
	padding-bottom: 60px ;
	/* margin-top: -90px; */
}

.benifit__bubble__item {
	text-align: static;
	margin-right: auto;
	margin-left: auto;
	width: 320px;
	height: 360px;
	border-radius: 10px;
	border: 5px solid var(--Border-cl);
	/* margin: 5px; */
	/* padding: 30px 25px 25px; */
	background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0.49) 100%);
	
	z-index: 1;
}

.benifit__bubble__item a {
	height: 110px;
	width: 110px; 
	display:flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	background: var(--Warm-cl);
	border: 4px solid var(--Border-cl);
	border-radius: 55px;
	/* border-color: var(--Primary-cl); */
	/* box-shadow: 0px 5px 15px rgba(74, 103, 141, 0.16); */
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.benifit__bubble__item img {
	width: 70px;
}

.benifit__bubble__item h4 {
	color: var(--Border-cl);
	text-align: center;
	font-weight: 700;
	margin-top: 3px;
	/* font-weight: 600; */
	/* margin-top: 26px; */
}

.benifit__bubble__item.line {
	height: 5px;
	width: 75%;
	background: var(--Grey-cl);
	border: 0 transparent;
	/* border-color: transparent; */
}

.benifit__bubble__item p {
	padding: 2% 4%;
	font-weight: 800;
	font-size: medium;
	text-align: center;
}



/*---------------------
	Triple Image
----------------------*/

.triple__i{
	min-height:20px;
	position: relative;
	width: 100%;
	max-width: 600px;
	aspect-ratio: 1/1;
	padding: 2%;
}

.triple__i__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.triple__i__1, .triple__i__2, .triple__i__3{
	border: 5px solid var(--blocking-cl);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: clip;
}

.triple__i__1{
	margin-left: 5%;
	max-width: 90%;
	max-height: 70%;
}

.triple__i__2{
	margin-top: -22%;
	margin-left: 36%;
	max-height: 58%;
	max-width: 64%;
}

.triple__i__3{
	margin-top: -39%;
	max-height: 50%;
	width: 57%;
}

/*---------------------
  About
-----------------------*/

.about {
	background: var(--blocking-cl);
}

.about__pic {
}

.about__pic .right__pic {
	position: relative;
	border: 10px solid var(--blocking-cl);
	height: 340px;
	margin-top: -70px;
	margin-left: -30px;
}

.about__pic .left__pic {
	position: relative;
	float: right;
	border: 10px solid var(--blocking-cl);
	height: 400px;
	margin-top: -470px;
	margin-right: -30px;
}

.about__text {
	margin-bottom: 40px;
	padding-top: 20px;
}

.about__text .section-title {
	margin-bottom: 30px;
}

.about__text p {
	color: #142336;
	margin-bottom: 20px;
	
}

.about__text ul {
	margin-bottom: 35px;
}

.about__text ul li {
	font-size: 16px;
	color: #142336;
	list-style: none;
	margin-bottom: 14px;
}

.about__text ul li:last-child {
	margin-bottom: 0;
}

.about__text ul li span {
	color: #4586D5;
	margin-right: 5px;
}

/*---------------------
  Services HOme
-----------------------*/
/* 
.services-home .section-title {
	margin-bottom: 35px;
}

.border__btn {
	text-align: right;
	margin-bottom: 50px;
}

.services__blurb{
	border: 4px var(--Border-cl) solid;
} */

.services__slider {
	padding-top:10px;
}

.services__slider.owl-carousel .owl-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.services__slider.owl-carousel .owl-item .services__item {
	width: 90%;
	-webkit-box-shadow: 0px 5px 15px rgba(74, 103, 141, 0.16);
	box-shadow: 0px 5px 15px rgba(74, 103, 141, 0.16);
}

.services__slider.owl-carousel .owl-item .col-lg-4 {
	max-width: 100%;
}

.services__slider.owl-carousel .owl-dots {
	text-align: center;
}

.services__slider.owl-carousel .owl-dots button {
	height: 4px;
	width: 30px;
	background: #c4c4c4;
	margin-right: 10px;
}

.services__slider.owl-carousel .owl-dots button.active {
	background: #142336;
}

.services__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

/*---------------------
  Service Item
-----------------------*/

.services {
	padding-bottom: 120px;
}

.services__item {
	box-shadow: 0px 5px 25px rgba(74, 103, 141, 0.16);
	background: var(--Primary-cl);
	/* padding-top: 10px;*/
	padding: 5px;
	height: 450px;
	width: 100%;
}

.services__item__pic {
	overflow: hidden;
	height: 60%;
}

.services__item__pic img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.services__item__pic img {
	min-width: 100%;
}

.services__item__text__icon {
	height: 70px;
	width: 80px;
	background: #FAD110;
	color: #142336;
	line-height: 70px;
	position: absolute;
	left: 50%;
	top: -36px;
	margin-left: -40px;
	text-align: center;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.services__item__text {
	text-align: center;
	position: relative;
	padding: 70px 40px 35px;
	height: 40%;
	background: #ffffff;
}

.services__item__text h4 {
	color: #142336;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 12px;
}

.services__item__text p {
	color: #777777;
	margin-bottom: 12px;
}

.services__item__text a {
	color: #142336;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	font-family: "Saira Condensed", sans-serif;
	text-decoration: underline;
}

/*---------------------
  Counter
-----------------------*/

.counter {
	background: #142336;
	padding-bottom: 60px;
}

.counter.about__counter {
	padding-bottom: 315px;
}

.counter__item {
	text-align: center;
	margin-bottom: 30px;
}

.counter__item span {
	font-size: 50px;
	color: #ffffff;
	display: block;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 46px;
	margin-bottom: 25px;
	margin-top: 26px;
}

.counter__item h4 {
	color: #4586D5;
	font-weight: 600;
}

/*---------------------
	Estament 
-----------------------*/

.esta {
	background: var(--blocking-cl);
	position: relative;
	/* padding-left: 15px; */
	/* padding-right: 15px; */
	width: 100%;
	padding: 0;
}

.esta__block {
	height: 596px;
	/* clip: auto; */
}

.esta__block img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	/* height : 100%; */
}

.esta .row{
	margin-left: 0px;
	margin-right: 0px;
	/* padding:  */
}


.esta__form {
	position: relative;
	height: fit-content;
	width: 705px;
	background-color: var(--blocking-cl);
	padding: 65px 60px 40px 60px;
}

.esta__form h2{
	color: var(--brownText-cl);
	font-size: 40px;
	font-weight: 600;
}

.esta__form input {
	height: 46px;
	width: 100%;
	background: transparent;
	padding-left: 20px;
	margin-bottom: 30px;
	border: 1px solid var(--Warm-cl);
	color: var(--brownTextDark-cl);
}

.esta__form input::placeholder {
	color: var(--Warm-cl);
}

.esta__form textarea {
	background: transparent;
	padding-left: 20px;
	height: 140px;
	resize: none;
	color: var(--brownText-cl);
	border: 1px solid var(--Warm-cl);
}

.esta__form textarea::placeholder {
	color: var(--Warm-cl);
}

.esta__form textarea {
	width: 100%;
}

.esta__form .site-btn {
	margin-bottom: 10px;
	width: 100%;
}

.esta__solo{
	height: fit-content;
	display: flex;
	justify-content: center;
	padding-bottom: 113px;
}

.esta__solo__container{
	height: 530px;
	aspect-ratio: 10/9;
	background-color: var(--blocking-cl);
	border: 3px solid var(--Warm-cl);
}

.esta__solo__container .esta__form{
		width: 100%;
		padding-left: 20px;
		padding-right: 20px
	}


/*---------------------
  Quote
-----------------------*/



.quote {
	background: #4586D5;
	position: relative;
}

.quote__form {
	height: 596px;
	padding: 85px 85px 80px 0;
}

.quote__form h2 {
	font-weight: 600;
	font-size: 40px;
	color: #ffffff;
	margin-bottom: 40px;
}

.quote__form form input {
	height: 46px;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.4);
	padding-left: 20px;
	font-size: 15px;
	color: #ffffff;
	background: transparent;
	margin-bottom: 30px;
}

.quote__form form input::-webkit-input-placeholder {
	color: #ffffff;
}

.quote__form form input::-moz-placeholder {
	color: #ffffff;
}

.quote__form form input:-ms-input-placeholder {
	color: #ffffff;
}

.quote__form form input::-ms-input-placeholder {
	color: #ffffff;
}

.quote__form form input::placeholder {
	color: #ffffff;
}

.quote__form form .nice-select {
	height: 46px;
	float: none;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 0;
	padding-left: 20px;
	line-height: 44px;
	background: transparent;
	margin-bottom: 30px;
}

.quote__form form .nice-select:after {
	display: none;
}

.quote__form form .nice-select .list {
	width: 100%;
	margin-top: 0;
	border-radius: 0;
}

.quote__form form .nice-select span {
	font-size: 15px;
	color: #ffffff;
}

.quote__form form textarea {
	height: 110px;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.4);
	padding-left: 20px;
	font-size: 15px;
	color: #ffffff;
	background: transparent;
	margin-bottom: 24px;
	padding-top: 12px;
	resize: none;
}

.quote__form form textarea::-webkit-input-placeholder {
	color: #ffffff;
}

.quote__form form textarea::-moz-placeholder {
	color: #ffffff;
}

.quote__form form textarea:-ms-input-placeholder {
	color: #ffffff;
}

.quote__form form textarea::-ms-input-placeholder {
	color: #ffffff;
}

.quote__form form textarea::placeholder {
	color: #ffffff;
}

.quote__video {
	position: absolute;
	right: 0;
	top: 0;
	height: 596px;
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.quote__video .play-btn {
	display: inline-block;
	height: 70px;
	width: 70px;
	background: #4586D5;
	border-radius: 50%;
	font-size: 32px;
	color: #ffffff;
	line-height: 70px;
	text-align: center;
}

.quote__video .play-btn i {
	position: relative;
	left: 2px;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial.about__testimonial {
	padding-bottom: 160px;
}

.testimonial .section-title {
	margin-bottom: 45px;
}

.testimonial__item {
	padding-left: 5px;
	padding-right: 5px;
	/* height: 360px; */
	width: 100%;
}

.testimonial__item:hover .testimonial__text {
	border-color: #FAD110;
}

.testimonial__text {
	background: #ffffff;
	-webkit-box-shadow: 0px 5px 15px rgba(74, 103, 141, 0.16);
	box-shadow: 0px 5px 15px rgba(74, 103, 141, 0.16);
	padding: 40px 50px 45px;
	margin-bottom: 36px;
	min-height: 300px;
	border-top: 5px solid rgba(69, 134, 213, 0.2);
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.testimonial__text p {
	font-size: 18px;
	color: #142336;
	line-height: 35px;
	font-style: italic;
	margin-bottom: 0;
	overflow-wrap: break-word;
}

.testimonial__author {
	padding-left: 50px;
}

.testimonial__author__pic {
	float: left;
	margin-right: 25px;
	height: 70px;
	width: 70px;
	position: relative;
}

.testimonial__author__pic:before {
	position: absolute;
	left: 0;
	top: -36px;
	right: 0;
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid #ffffff;
	content: "";
	margin: 0 auto;
}

.testimonial__author__pic .fa{
	font-size: 70px;
}

.testimonial__author__pic img {
	min-width: 100%;
}

.testimonial__author__text {
	overflow: hidden;
	padding-top: 8px;
}

.testimonial__author__text h4 {
	color: #142336;
	font-weight: 600;
	margin-bottom: 6px;
}

.testimonial__author__text span {
	font-size: 14px;
	color: #4586D5;
	display: block;
	font-style: italic;
}

.testimonial__slider.owl-carousel .owl-item .col-lg-4 {
	max-width: 100%;
}

.testimonial__slider.owl-carousel .owl-dots {
	text-align: center;
	padding-top: 50px;
}

.testimonial__slider.owl-carousel .owl-dots button {
	height: 4px;
	width: 30px;
	background: #c4c4c4;
	margin-right: 10px;
}

.testimonial__slider.owl-carousel .owl-dots button.active {
	background: #142336;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

/*---------------------
	Team
-----------------------*/
.meet__team__section{
	background: var(--blocking-cl);
	padding-top: 20px;
	padding-bottom: 10px;
}

.team__row {
	display: flex;
	flex-wrap: wrap;
}

.teammember__grid__item {
	padding: 22px;
}

.team__card {
	background: var(--Primary-cl);
	box-shadow: 0px 2px 12px #00000044;
}

.team__card .profile__pic {
	width: 100%;
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
}

.team__card .blurred__wrapper {
	position: absolute;
	padding: 5px;
}

.team__prof {
	padding: 8px;
}

.team__prof h3 {
	text-decoration: underline;
	padding-left: 8px;
	padding-right: 8px;
}

.team__prof span {
	padding-right: 10px;
	padding-left: 10px;
}

.team__prof p {
	text-indent: 2em;
	padding: 16px;
	margin: 0px;
}

/*---------------------
  Callto
-----------------------*/


.callto {
	height: 384px;
}

.callto .container{
	padding-top: 35px;
}

.callto__text {
	text-align: center;
}

.callto__text span {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 15px;
}

.callto__text h2 {
	color: #ffffff;
	font-size: 50px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 35px;
	text-shadow: 1px 1px 2px #142336;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	padding-top: 30px;
	background: var(--footer-cl);
}

.footer__content a{
	color: var(--link-cl);
}

.footer__title {
	position: relative;
	z-index: 1;
	margin-bottom: 45px;
}

.footer__title:after {
	position: absolute;
	left: 0;
	top: 15px;
	height: 1px;
	width: 100%;
	background: #444444;
	content: "";
	z-index: -1;
}

.footer__title h4 {
	color: #ffffff;
	font-weight: 600;
	display: inline-block;
	padding-right: 12px;
	background: var(--footer-cl);
}


.footer__logo {
	margin-top: -44px;
	padding-bottom: 25px;
	/* border: 3px solid red; */
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about ul {
	margin-bottom: 44px;
}

.footer__about ul li {
	font-size: 15px;
	color: var(--Grey-cl);
	list-style: none;
	margin-bottom: 14px;
}

.footer__about ul li img {
	display: inline-block;
	margin-right: 2px;
	height: 20px;
	
}

.footer__about ul li:last-child {
	margin-bottom: 0;
}

.footer__about .footer__about__social span {
	font-size: 15px;
	color: #c4c4c4;
	display: inline-block;
}

.footer__about .footer__about__social a {
	font-size: 20px;
	color: #c4c4c4;
	display: inline-block;
	margin-left: 16px;
}

.footer__widget {
	overflow: hidden;
	margin-bottom: 30px;
}

.footer__widget ul {
	width: 50%;
	float: left;
	padding-bottom: 15px;
}

.footer__widget ul li {
	font-size: 15px;
	color: #c4c4c4;
	list-style: none;
	/* margin-bottom: 14px; */
}

.footer__widget ul li:last-child {
	margin-bottom: 0;
}

.footer__widget p {
	color: #c4c4c4;
	font-size: 15px;
	margin-bottom: 10px;
}

.footer__widget form input {
	font-size: 15px;
	color: #b5b5b5;
	padding-left: 20px;
	height: 46px;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	margin-bottom: 15px;
}

.footer__widget form input::-webkit-input-placeholder {
	color: #b5b5b5;
}

.footer__widget form input::-moz-placeholder {
	color: #b5b5b5;
}

.footer__widget form input:-ms-input-placeholder {
	color: #b5b5b5;
}

.footer__widget form input::-ms-input-placeholder {
	color: #b5b5b5;
}

.footer__widget form input::placeholder {
	color: #b5b5b5;
}

.footer__widget form .site-btn {
	color: #142336;
}

.footer__widget__recent__item {
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}

.footer__widget__recent__item:last-child {
	margin-bottom: 0;
}

.footer__widget__recent__pic {
	float: left;
	margin-right: 20px;
}

.footer__widget__recent__text {
	overflow: hidden;
}

.footer__widget__recent__text h5 {
	font-size: 20px;
	color: #c4c4c4;
	font-weight: 600;
	margin-bottom: 6px;
}

.footer__widget__recent__text span {
	color: #c4c4c4;
	font-size: 14px;
	display: block;
}

/*---------------------
	Socials Block
----------------------*/
.socials__block {
	z-index: 1;
	display: flex;
	height: fit-content;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	/* background: var(--Primary-cl); */
}

.socials__block__container{
	display: flex;
	justify-content: center;
	height: fit-content;
	margin: 0;
	width: 80%;
	background: var(--Warm-cl);
	padding: 20px 20px;
}

.socials__block__section1, .socials__block__section2{
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	text-align: center;
}

.socials__block__section1 h2{
	width: fit-content;
	color: #ffffff;
	font-size: 50px;
	font-weight: 800;
}

.socials__block__section1 span{
	width: fit-content;
	font-size: 16px;
	color: var(--Border-cl);
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.socials__block__section2 .row {
	align-content: center;
	justify-content: center;
	height: 100%;
	width: auto;
}

.socials__block__section2 a{
	margin-top: 5px;
	margin-bottom: 5px;
	color: white;
	font-size: 55px;
	position: relative;
	height: 80px;
	width: 80px;
	background: var(--footer-cl);
	border: 2px solid var(--Border-cl);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 15px;
	margin-right: 15px;
	text-decoration: none;
}


.socials__block__section2 .fa-envelope{
	font-size: 52px;
}

.socials__block__buffer{
	position: absolute;
	z-index: -1;
	top: 50%;
	height: 50%;
	width: 100%;
	background: var(--footer-cl);
}


/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
	position: relative;
	padding-top: 90px;
	height: 400px;
	padding-bottom: 95px;
	overflow: clip;
}

.breadcrumb-option::after {
	content: "";
	position: absolute;
	top:0;
	height: 100%;
	width: 100%;
	background: var(--Border-cl);
	z-index:0;
	opacity: 0.2;
}

.breadcrumb-option img{
	position: absolute;
	top: 0;
	height: 100%;
	width:100%;
	object-fit: cover;
}

.breadcrumb-option .container {
	height: 100%;
	align-content: center;
	position: relative;
	z-index: 1;
}

.breadcrumb__text h2 {
	font-size: 50px;
	color: #ffffff;
	font-weight: 600;
	/* text-transform: uppercase; */
	margin-bottom: 5px;
	text-shadow: 0px 0px 10px black, 0px 0px 8px black, 0px 0px 8px black;
}

.breadcrumb__links, .breadcrumb__links a{
	font-size: 16px;
	color: #ffffff;
	display: inline-block;
	/* margin-right: 26px; */
	text-shadow: 0px 0px 6px black, 0px 0px 4px black, 0px 0px 2px black;
}

.breadcrumb__links a {
	/* font-size: 16px; */
	color: var(--link-cl);
	/* padding: 0px 3px; */
	/* display: inline-block; */
	/* position: relative; */
}

/* .breadcrumb__links a:after {
	position: absolute;
	right: -17px;
	top: -1px;
	content: "|";
	color: #ffffff;
} */

.breadcrumb__links span {
	font-size: 16px;
	color: #ffffff;
	display: inline-block;
}


/*---------------------
	Services page
-----------------------*/
.service__display{
	background: var(--blocking-cl);
}

.service__display .container{
	padding: 10px;
}

.service__box__img {
	height: 500px;
	aspect-ratio: 1/1;
	border: 3px solid var(--Warm-cl);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: tan 0px 4px 6px -1px rgba(0,0,0,0.1);
	object-fit: cover;
}

.service__box__content {
	max-width: 550px;
}


/*---------------------
  Contact
-----------------------*/

.contact__block{
	display: flex;
	justify-content: center;
	padding-top: 20px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	min-height: 500px;
	width:100%;
}

.contact__block .left{
	margin-right: 10px;
}

.contact__block .right{
}

.contact__block .top{
	display: none;
}

@media screen and (max-width: 992px) {
	.contact__block .left{
		display: none;
	}
	.contact__block .top{
		display: flex;
		justify-content: center;
		min-height: 40px;
	}
	
}

/*---------------------
	Areas We Serve
-----------------------*/

.area__container {
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	background: var(--Primary-cl);
	width: fit-content;
	background-color: var(--Primary-cl);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.area__title{
	display: flex;
	align-items: center;
	margin-bottom: -6px;
}

.area__title__underline{
	width: 80%;
	height: 2px;
	background: black;
}

.loc__list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 950px;
}

.loc__item {
	width: fit-content;
	height: fit-content;
	background: var(--Warm-cl);
	border: 2px solid var(--Border-cl);
	border-radius: 5px;
	padding-left: 5px;
	padding-right: 5px;
	margin: 5px;
	color: black;
	font-family: monospace;
	font-weight: 550;
}

.loc__item p {

}

/*---------------------
	Why Foam
-----------------------*/

.why__foam__info {
	background: var(--Primary-cl);
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
	padding-top: 6px;
	padding-bottom: 8px;
}


/* ------------------------------------------------------------ platform styling --------------------------------------------------------- */
@media only screen and (max-width: 576px) {
	.breadcrumb-option {
		height: 300px;
		padding-top: 60px;
		padding-bottom: 70px;
	}

	.esta__block {
		height: auto;
	}

	.esta__form {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 20px;
		padding-bottom: 5px;
		text-align: center;
	}

	.esta__solo__container{
		width:95%;
		height: fit-content;
	}

	.esta__solo__container .esta__form{
		width: 100%;
		height: fit-content;
		padding-left: 10px;
		padding-right: 10px
	}

	.callto__text span {
		display: none;
	}

	.socials__vlock__spacer{
		height:fit-content;
	}

	/* .socials__block__container{
		position: relative;
		height: fit-content;
		width: 100%;
	} */
}

@media only screen and (max-width: 768px) and (min-width: 577px) {
	.esta__form {
		width: 100%;
	}

	.esta__solo__container{
		width: 75%;
	}

	.esta__solo__container .esta__form{
		width: 100%;
		padding-left: 10px;
		padding-right: 10px
	}
}

@media only screen and (max-width: 766px) {
	.about__pic .right__pic,
	.about__pic .left__pic{
		margin: 0px;
		/* width:60%; */
		height: auto;
		border-width: 4px;
	}
	.about__pic .right__pic{
		width: 60%;
		
		margin-left: -5%
	}

	.about__pic .left__pic{
		width: 60%;
		margin-top: -60%;
		margin-right: -3%;
		/* margin-left: 79% */
	}
}


@media screen and (max-width: 992px) {
	.side__by__side .container{
		display: flex;
		/* text-align: center; */
		justify-content: center;
	}

	.banner__mb .burger__button{
		visibility: visible;
	}

    .accordion-button .mb__arrow{
        visibility: visible;
    }

    .banner__dsk{
        display: none;
    }

	.benifit__bubble__item {
		margin-top: 10px;
	}

	.service__box__content {
		overflow:visible
	}

	.justify__center__mobile{
		display: flex !important;
		justify-content: center !important;
	}

}

@media only screen and (max-width: 992px) and (min-width: 577px) {
	.esta__form {
		position:relative;
		float: none;
		left:50%;
		transform: translateX(-50%);
	}
	.esta__block{
		display: flex;
		justify-content: center;
	}
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
	.esta__solo__container{
		width: 60%;
		/* height:530px; */
	}

	.esta__solo__container .esta__form{
		width: 100%;
		padding-left: 20px;
		padding-right: 20px
	}
}

@media screen and (max-width: 1200px){
	.callto__text a{
		visibility: hidden;
	}
}	


@media screen and (max-width: 1200px) and (min-width: 992px) {
	.footer__logo {
		margin-top: 0px;
		padding: 0;
	}

}

@media screen and (min-width: 1200px){
    .banner__dsk{
        padding-left: 8%;
        padding-right: 8%;
    }



	.socials__block__section1{
		padding-right: 10px;
		text-align: left;
		justify-content: flex-start;
	}

	.socials__block__section2{
		padding-left: 10px;
		justify-content: flex-end;
	}
	
}

@media only screen and (max-width: 1488px) and (min-width: 993px) {
	/* .esta__form {
		width: 100%;
		padding-right: 40px;
	} */
}

@media only screen and (max-width: 1400px) and (min-width: 992px) {
	.esta__form {
		width: 100%;
	}
}


/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media only screen and (min-width: 1450px) {
	.container {
		max-width: 1410px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	
	.testimonial__author {
		padding-left: 20px;
	}
	.services__item__text {
		padding: 70px 30px 35px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #142336;
		height: 35px;
		width: 35px;
		line-height: 32px;
		text-align: center;
		border: 1px solid #142336;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 34px;
		z-index: 9;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #ffffff;
		padding: 50px 20px 30px 30px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}
	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}
	.slicknav_nav ul {
		margin: 0;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 7px 0;
		margin: 0;
		color: #142336;
		font-weight: 600;
	}
	.slicknav_nav .slicknav_arrow {
		color: #142336;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #142336;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #142336;
	}
	.slicknav_nav {
		display: block !important;
	}
	.offcanvas__logo {
		margin-bottom: 30px;
	}
	.offcanvas__menu {
		display: none;
	}
	.offcanvas__option__num {
		display: inline-block;
		font-size: 24px;
		font-weight: 700;
		font-family: "Mulish", sans-serif;
		color: #4586D5;
		padding: 9px 30px 7px;
		border: 2px solid #FAD110;
	}
	.offcanvas__social {
		margin-top: 30px;
	}
	.offcanvas__social a {
		font-size: 20px;
		color: #142336;
		display: inline-block;
		margin-right: 18px;
	}
	.offcanvas__social a:last-child {
		margin-right: 0;
	}
	.header .container {
		position: relative;
	}
	.header__social {
		display: none;
	}
	.header__menu {
		display: none;
	}
	.header__option__num {
		display: none;
	}
	.header__logo {
		position: relative;
		left: 0;
		margin-left: 0;
		width: auto;
		height: auto;
		background: transparent;
		text-align: left;
		padding: 30px 0;
	}
	.header__logo:after {
		display: none;
	}
	.services__item__text {
		padding: 70px 25px 35px;
	}
	.quote__form {
		padding: 85px 0px 80px 0;
		height: auto;
	}
	.quote__video {
		position: relative;
		height: 596px;
		width: 100%;
	}
	.footer__call__number {
		float: none;
		margin-top: 30px;
	}
	.product__sidebar {
		padding-top: 50px;
	}
	.cart__table tbody tr td.cart__item .cart__item__text {
		padding-top: 22px;
	}
	.cart__btn__right a {
		font-size: 18px;
		padding: 14px 18px 12px;
		margin-right: 10px;
	}
	.checkout__address {
		margin-bottom: 30px;
	}
	.wishlist__table tbody tr td.wishlist__btn {
		width: 330px;
	}
	.wishlist__table tbody tr td.wishlist__item .wishlist__item__text {
		padding-top: 22px;
	}
	.product__item__text {
		padding: 25px 25px 0;
	}
	.blog__sidebar {
		padding-top: 50px;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #142336;
		height: 35px;
		width: 35px;
		line-height: 32px;
		text-align: center;
		border: 1px solid #142336;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 34px;
		z-index: 9;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #ffffff;
		padding: 50px 20px 30px 30px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}
	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}
	.slicknav_nav ul {
		margin: 0;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 7px 0;
		margin: 0;
		color: #142336;
		font-weight: 600;
	}
	.slicknav_nav .slicknav_arrow {
		color: #142336;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #142336;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #142336;
	}
	.slicknav_nav {
		display: block !important;
	}
	.offcanvas__logo {
		margin-bottom: 30px;
	}
	.offcanvas__menu {
		display: none;
	}
	.offcanvas__option__num {
		display: inline-block;
		font-size: 24px;
		font-weight: 700;
		font-family: "Mulish", sans-serif;
		color: #4586D5;
		padding: 9px 30px 7px;
		border: 2px solid #FAD110;
	}
	.offcanvas__social {
		margin-top: 30px;
	}
	.offcanvas__social a {
		font-size: 20px;
		color: #142336;
		display: inline-block;
		margin-right: 18px;
	}
	.offcanvas__social a:last-child {
		margin-right: 0;
	}
	.header .container {
		position: relative;
	}
	.header__social {
		display: none;
	}
	.header__menu {
		display: none;
	}
	.header__option__num {
		display: none;
	}
	.header__logo {
		position: relative;
		left: 0;
		margin-left: 0;
		width: auto;
		height: auto;
		background: transparent;
		text-align: left;
		padding: 30px 0;
	}
	.header__logo:after {
		display: none;
	}
	.hero__text {
		max-width: initial;
	}
	.hero__text h2 {
		font-size: 40px;
		line-height: 54px;
	}
	.border__btn {
		text-align: left;
	}
	.quote__form {
		padding: 85px 0px 80px 0;
		height: auto;
	}
	.quote__video {
		position: relative;
		height: 596px;
		width: 100%;
	}
	.footer__call__number {
		float: none;
		margin-top: 30px;
	}
	.product__sidebar {
		padding-top: 50px;
	}
	.checkout__address {
		margin-bottom: 30px;
	}
	.blog__sidebar {
		padding-top: 50px;
	}
	.cart__table {
		overflow-x: auto;
	}
	.cart__table tbody tr td.cart__item .cart__item__pic {
		float: none;
		margin-right: 0;
	}
	.cart__table tbody tr td.cart__item .cart__item__text {
		padding-top: 25px;
	}
	.cart__btn__right {
		text-align: left;
	}
	.cart__btn__right a {
		margin-right: 20px;
	}
	.checkout__form__top h6 {
		text-align: left;
		margin-top: 20px;
	}
	.checkout__product__item__pic {
		margin-right: 0;
		float: none;
	}
	.checkout__product__item__text {
		padding-top: 25px;
	}
	.footer__call__number__text h2 {
		font-size: 36px;
	}
	.footer__call__text h2 {
		font-size: 34px;
	}
	.wishlist__table tbody tr td.wishlist__item .wishlist__item__pic {
		float: none;
		margin-right: 0;
	}
	.wishlist__table tbody tr td.wishlist__item .wishlist__item__text {
		padding-top: 25px;
	}
	.wishlist__table {
		overflow-x: auto;
	}
	.wishlist__btn {
		width: 180px;
	}
	.wishlist__table tbody tr td.wishlist__item {
		width: auto;
	}
	.wishlist__price {
		width: auto;
	}
	.wishlist__stock {
		width: auto;
	}
	.cart__table tbody tr td.cart__item {
		width: auto;
	}
	.cart__table tbody tr td {
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.cart__price {
		width: auto;
	}
	.cart__quantity {
		width: auto;
	}
	.cart__total {
		font-size: 16px;
		color: #200204;
		font-weight: 700;
		width: auto;
	}
	.cart__table {
		padding-right: 0;
	}
	.product__details__pic__item {
		height: auto;
	}
	.product__details__pic__item img {
		height: auto;
	}
	.product__details__desc__tab .nav-item {
		margin-right: 30px;
	}
	.product__details__desc__tab .nav-item:after {
		right: -19px;
	}
	.blog__details__comment__item.blog__details__comment__item--reply {
		padding-left: 0;
	}
	.blog__details__comment__item__text a {
		position: relative;
	}
	.blog__details__comment__item__text h5 span {
		margin-left: 0;
		display: block;
		margin-top: 15px;
		margin-bottom: 13px;
	}
	.blog__details__comment__item__text p {
		margin-top: 10px;
	}
	.blog__details__comment {
		padding: 30px;
	}
	.blog__details__widget__social {
		text-align: left;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__text h2 {
		font-size: 25px;
		line-height: 42px;
	}
	.about__pic .little_pic {
		float: none;
		border: none;
		margin-top: 20px;
		min-width: 100%;
	}
	.testimonial__author {
		padding-left: 15px;
	}
	/* .footer__call__content {
		background: #4586D5;
		padding: 40px 20px 40px;
	} */
	.footer__call__number__icon {
		float: none;
		margin-right: 0;
	}
	.footer__call__number__text {
		padding-top: 26px;
	}
	.footer__call__number__text h2 {
		font-size: 32px;
	}
	.cart__btn__right a {
		margin-bottom: 20px;
	}
	.cart__coupon form button {
		padding: 0 15px;
	}
	.cart__item__total a {
		padding: 14px 15px 12px;
	}
	.product__details__widget .quantity {
		float: none;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.product__details__desc__tab .nav-item {
		margin-right: 15px;
	}
	.product__details__desc__tab .nav-item:after {
		right: -11px;
	}
	.blog__hero__text {
		padding: 50px 30px 45px;
	}
	.blog__hero__text h2 {
		font-size: 24px;
		line-height: 36px;
	}
	.blog__hero__text ul li {
		margin-right: 6px;
	}
	.blog__hero__text ul li:after {
		right: -7px;
		top: -1px;
	}
	.blog__details__widget__social {
		text-align: left;
	}
	.blog__details__widget__tag a {
		margin-right: 5px;
		margin-bottom: 10px;
	}
	.blog__details__comment__item__pic {
		float: none;
		margin-right: 0;
	}
	.blog__details__comment__item__text {
		padding-top: 30px;
	}
	.blog__details__comment__item.blog__details__comment__item--reply {
		padding-left: 0;
	}
	.blog__details__comment__item__text h5 span {
		margin-left: 0;
		display: block;
		margin-top: 15px;
		margin-bottom: 13px;
	}
	.blog__details__comment__item__text p {
		margin-top: 10px;
	}
	.blog__details__comment {
		padding: 30px;
	}
}