@charset "UTF-8";

/*
Theme Name: HappyHomes Theme
Theme URI: https://mishaar.com/
Author: the Mishaar team
Author URI: https://mishaar.com/
Description: HappyHomes is a custom made theme for home renovation inspired by Twenty twenty one wordpress theme.
Requires at least: 5.3
Tested up to: 6.4
Requires PHP: 5.6
*/

body{
    font-family: 'Raleway', sans-serif;
}
a {
    text-decoration: none;
    cursor: pointer;
    color: #ab7442;
}
button, a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none !important;
}
.navbar-dark {
    background: rgba(4, 7, 7, 0.7);
}
.navbar-brand img {
    width: 85px;
}
.navbar-toggle {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
}
.navbar .navbar-nav .nav-link, .navbar .navbar-toggle {
    color: #000;
}

.main-menu .navigation > li{
  position: relative;
}
.main-menu .navigation > li:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 0%;
  height: 2px;
  opacity: 0;
  background-color: #00AFDF;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.main-menu .navigation > li:hover::before, .main-menu .navigation > li.current::before, .main-menu .navigation > li.active::before {
  opacity: 1;
  width: 100%;
  z-index: 1;
}

.main-menu .navigation > li > a {
    position: relative;
    display: block;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 0px;
    opacity: 1;
    font-weight: 400;
    padding: 35px 0px;
    font-size: 22px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.main-menu .navigation > li.active > a{
  color: #00AFDF;
  font-weight: 600;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}



/**	Main Banner***/
.mainSlider{
	position:relative;
	padding:0px 0px;
}
.mainSlider.style-two{
	padding:0px 0px;
}
.mainSlider .auto-container{
	position:relative;
}
.mainSlider .mouse-btn-down{
	position:absolute;
	left:50%;
	margin-left:-20px;
	bottom:20px;
	width:30px;
	height:68px;
	cursor:pointer;
	display:block;
	background:url(../img/mouse-icon.png) center center no-repeat;
	z-index:20;
}
.mainSlider .mouse-btn-down {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}

.mainSlider .mouse-btn-down {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.mainSlider .slide{
	position:relative;
	text-align:center;
	padding:270px 0px 270px;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}

.mainSlider.style-two .slide{
	text-align:left;
}

.mainSlider .title{
	position:relative;
	color:#ffffff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 24px;
	text-transform: capitalize;
	opacity: 0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.mainSlider .active .title{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 500ms;
}

.mainSlider h2{
	position:relative;
	color:#ffffff;
	font-size:60px;
	font-weight:700;
	line-height:1.2em;
	margin-bottom:20px;
	opacity: 0;
	text-transform:capitalize;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.mainSlider .active h2{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 1000ms;
}

.mainSlider .text{
	position:relative;
	color:#ffffff;
	font-size:30px;
	opacity:0;
	line-height: 1.8em;
	font-weight:400;
	margin-bottom:32px !important;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.mainSlider .text.alternate{
	color:#1f1f1f;
}

.mainSlider .active .text{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 1500ms;
}

.mainSlider .link-box{
	opacity:0;
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 100ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
}

.mainSlider .active .link-box{
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	transition-delay: 2000ms;
}

.mainSlider .link-box .theme-btn{
	margin-right:20px;
}

.mainSlider .content.centered .theme-btn{
	margin:0px 10px;
}

.mainSlider .content.centered .text{
	margin:0 auto;
}

.mainSlider .owl-dots{
	position:absolute;
	right:50px;
	top:50%;
	margin-top:-30px;
}

.mainSlider .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:10px;
	margin:15px 4px;
	border-radius: 50px;
	background-color:#ffffff;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.mainSlider .owl-dots .owl-dot:before{
	position: absolute;
	content: '';
	left: -4px;
	bottom: -4px;
	top:-4px;
	opacity:0;
	right:-4px;
	border-radius:50px;
	border:1px solid #ffffff;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.mainSlider .owl-dots .owl-dot.active,
.mainSlider .owl-dots .owl-dot:hover{
	background-color:#ab7442;
}

.mainSlider .owl-dots .owl-dot.active::before,
.mainSlider .owl-dots .owl-dot:hover::before{
	opacity:1;
}

.mainSlider .owl-nav{
	position:absolute;
	left:0px;
	top:50%;
	z-index:1;
	width:100%;
	margin-top:-60px;
}

.mainSlider .owl-nav button.owl-prev{
	position:absolute;
	bottom:-150px;
	right:40px;
	color:#ffffff;
	font-size:38px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.mainSlider .owl-nav button.owl-next{
	position:absolute;
	right:40px;
	color:#ffffff;
	font-size:38px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.mainSlider .owl-nav button.owl-prev:hover,
.mainSlider .owl-nav button.owl-next:hover{
	color:#ab7442;
}

.mainSlider .color-one{
	position:absolute;
	left:0px;
	top:0px;
	width:300px;
	height:420px;
	background-color:#d0d0d0;
}

.mainSlider .color-two{
	position:absolute;
	right:0px;
	top:0px;
	width:300px;
	height:420px;
	background-color:#ab7442;
}

/*** 

/*Btn Style One*/

.btn-style-one{
	position: relative;
	display: inline-block;
	font-size: 15px;
	line-height: 30px;
	color: #ffffff;
	padding: 12px 36px;
	font-weight: 400;
	overflow: hidden;
	overflow:hidden;
	background: #00AFDF;
	border-radius:50px;
	text-transform: capitalize;
}

.btn-style-one .txt{
	position:relative;
	z-index:1;
}

.btn-style-one:before{
	position: absolute;
	content: '';
	top: 0px;
    bottom: 0px;
    left: 0px;
	right: -50px;
    border-bottom: 55px solid #ffffff;
	border-right: 30px solid transparent;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}



.btn-style-one:after{
	position: absolute;
	content: '';
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: -50px;
	border-left: 30px solid transparent;
    border-bottom: 55px solid #ffffff;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);}

.btn-style-one:hover::before{
    -webkit-transform: translateX(-40%);
    transform: translateX(-40%);
}

.btn-style-one:hover::after{
    -webkit-transform: translateX(40%);
    transform: translateX(40%);
}

.btn-style-one:hover{
	color: #000000;
}

/* Btn Style Two */

.btn-style-two{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 45px 15px;
	font-weight: 500;
	overflow: hidden;
	letter-spacing:1px;
	border-radius:50px;
	background-color: #322f2f;
	text-transform: capitalize;
}

.btn-style-two .txt{
	position:relative;
	z-index:1;
	transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.btn-style-two:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #ab7442;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(1, 0.5);
    transform: scale(1, 0.5);
}

.btn-style-two:hover::before{
    opacity: 1;
    transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}

.btn-style-two:hover{
	color: #ffffff;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 14px 40px 14px;
	font-weight: 700;
	overflow: hidden;
	border-radius:50px;
	background: none;
	border:1px solid #ffffff;
	text-transform: capitalize;
}

.btn-style-three .txt{
	position:relative;
	z-index:1;
}

.btn-style-three:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #ab7442;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(1, 0.5);
    transform: scale(1, 0.5);
}

.btn-style-three:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-three:hover{
	color: #ffffff;
	border-color:#ab7442;
}

/* Btn Style Four */

.btn-style-four{
	position: relative;
	display: inline-block;
	font-size: 15px;
	line-height: 30px;
	color: #322f2f;
	padding: 12px 42px 12px;
	font-weight: 700;
	overflow: hidden;
	border-radius:50px;
	border:2px solid #ffffff;
	background-color: #ffffff;
	text-transform: capitalize;
}

.btn-style-four:hover{
	color: #ffffff;
	background:none;
}

/* Btn Style Five */

.btn-style-five{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 11px 40px 11px;
	font-weight: 700;
	overflow: hidden;
	border-radius:50px;
	background-color: #25a9e0;
	text-transform: capitalize;
}

.btn-style-five .txt{
	position:relative;
	z-index:1;
	transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.btn-style-five:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(1, 0.5);
    transform: scale(1, 0.5);
}

.btn-style-five:hover::before{
    opacity: 1;
    transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}

.btn-style-five:hover{
	color: #25a9e0;
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--woodza-base, #a47c68);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
  }
  
  .custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--woodza-base);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
  }
  
  .custom-cursor__hover {
    background-color: var(--woodza-base);
    opacity: 0.4;
  }
  
  .custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: .4;
  }
  
  
  .thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--woodza-base);
    color: var(--woodza-white);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 17px 55px 16px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
  }
  
  .thm-btn:hover {
    color: var(--woodza-base);
  }
  
  .thm-btn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: var(--woodza-black);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    z-index: -1;
  }
  
  .thm-btn:hover:before {
    width: 100%;
  }
  
  .thm-btn:after {
    position: absolute;
    bottom: 3px;
    right: 3px;
    content: "";
    background-color: var(--woodza-white);
    height: 10px;
    width: 10px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: -1;
  }
  
  .thm-btn:hover:after {
    width: 100%;
    height: 100%;
    bottom: 0px;
    right: 0px;
  }
  
  .section-title {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-bottom: 49px;
  }
  
  .section-title__tagline {
    font-size: 16px;
    color: var(--woodza-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
  
  .section-title__title {
    margin: 0;
    color: var(--woodza-black);
    font-size: 65px;
    line-height: 70px;
    font-weight: 700;
    margin-top: 5px;
  }
  
  .section-title-two {
    position: relative;
    display: block;
    margin-top: -10px;
    margin-bottom: 49px;
    z-index: 1;
  }
  
  .section-title-two__tagline {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #080d1c;
    font-weight: 500;
    z-index: 1;
  }
  
  .section-title-two__tagline:before {
    position: absolute;
    top: 0;
    left: -4px;
    height: 30px;
    width: 30px;
    content: "";
    background-color: #f2e6e3;
    z-index: -1;
  }
  
  .section-title-two__tagline:after {
    position: absolute;
    top: -2px;
    left: -3px;
    height: 6px;
    width: 6px;
    content: "";
    background-color: var(--woodza-base);
    z-index: -1;
  }
  
  .sectionTitleTwoTitle {
    margin: 0;
    color:#080d1c;
    font-size: 58px;
    line-height: 70px;
    font-weight: 700;
    margin-top: 5px;
  }

  .sectionTitleThreeTitle {
    margin: 0;
    color:#080d1c;
    font-size: 45px;
    line-height: 70px;
    font-weight: 700;
    margin-top: 35px;
	margin-bottom: 20px;
  }
ul.aboutus-chooseus li {
    line-height: 30px;
}

/*--------------------------------------------------------------
# Why Choose Two
--------------------------------------------------------------*/
.why-choose-two {
    position: relative;
    display: block;
    background-color: #faf7f6;
    padding: 120px 0 165px;
  }
  
  .why-choose-two-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .why-choose-two-shape-1 img {
    width: auto;
  }
  
  .why-choose-two-shape-2 {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .why-choose-two-shape-2 img {
    width: auto;
  }
  
  .whyChooseTwo__left {
    position: relative;
    display: block;
    margin-top: 110px;
  }
  
  .whyChooseTwo__left .section-title-two {
    margin-bottom: 39px;
  }
  
  .whyChooseTwoText1 {
    font-size: 18px;
    line-height: 34px;
    opacity: .80;
    margin-right: 62px;
  }
  
  .whyChooseTwo__unique-work {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 39px;
    margin-bottom: 35px;
  }
  
  .whyChooseTwo__unique-work-icon {
    height: 130px;
    width: 130px;
    background-color: #f3f0ef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
  
  .whyChooseTwo__unique-work-icon span {
    font-size: 90px;
    color: var(--woodza-base);
    position: relative;
    display: inline-block;
  }
  
  .whyChooseTwo__unique-work-text {
    font-size: 24px;
    color: #00AFDF;
    line-height: 34px;
  }
  
  .whyChooseTwo__text-2 {
    font-size: 18px;
    line-height: 34px;
    opacity: .80;
  }
  
  .whyChooseTwo__bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 44px;
  }
  
  .whyChooseTwo__bottom-left {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .whyChooseTwo__bottom-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: #f5f1f0;
    border-radius: 50%;
  }
  
  .whyChooseTwo__bottom-icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--woodza-black);
  }
  
  .whyChooseTwo__bottom-content {
    margin-left: 20px;
  }
  
  .whyChooseTwo__bottom-content h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 7px;
  }
  
  .whyChooseTwo__bottom-content p {
    font-size: 15px;
    opacity: .80;
  }
  
  .whyChooseTwo__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 35px;
  }
  
  .whyChooseTwo__bottom-user-img {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .whyChooseTwo__bottom-user-img:before {
    position: absolute;
    top: 3px;
    left: -3px;
    bottom: -3px;
    right: 0px;
    content: "";
    background-color: var(--woodza-base);
    z-index: -1;
  }
  
  .whyChooseTwo__bottom-user-img>img {
    width: auto;
  }
  
  .whyChooseTwo__bottom-user-sign {
    margin-left: 20px;
  }
  
  .whyChooseTwo__bottom-user-sign>img {
    width: auto;
  }
  
  .whyChooseTwo__right {
    position: relative;
    display: block;
    margin-left: 23px;
    margin-right: 57px;
  }
  
  .whyChooseTwo__img-box {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .whyChooseTwo__img-box:before {
    position: absolute;
    top: 58px;
    right: -56px;
    height: 460px;
    width: 70px;
    background-color: #00AFDF;
    content: "";
    z-index: -1;
}
  
.whyChooseTwo__img-box:after {
    position: absolute;
    top: 85px;
    right: -27px;
    height: 336px;
    width: 48px;
    background-color: #faf7f6;
    content: "";
    z-index: -1;
}
  
  .whyChooseTwo__img {
    width: 435px;
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .whyChooseTwo__img:before {
    position: absolute;
    top: 155px;
    left: -20px;
    content: "";
    border-style: solid;
    border-width: 1px;
    border-color: rgb(229, 222, 220);
    background-color: rgba(219, 94, 65, 0);
    width: 378px;
    height: 518px;
    z-index: -1;
  }
  
  .whyChooseTwo__img>img {
    width: 100%;
  }
  
  .whyChooseTwo__img-two {
    position: absolute;
    bottom: -105px;
    right: -57px;
    z-index: 2;
  }
  
  .whyChooseTwo__img-two>img {
    width: auto;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
  
  .whyChooseTwo__customer-service {
    position: absolute;
    bottom: -112px;
    left: 15px;
    background-color: #00AFDF;
    display: flex;
    align-items: center;
    padding: 33px 30px 33px;
    z-index: 2;
  }
  
  .whyChooseTwo__customer-service:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 3px;
    top: 6px;
    left: 7px;
    background-color: var(--woodza-white);
  }
  
  .whyChooseTwo__customer-service:after {
    position: absolute;
    content: "";
    height: 30px;
    width: 3px;
    top: 12px;
    left: 13px;
    background-color: var(--woodza-white);
  }
  
  .whyChooseTwo__customer-service-icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .whyChooseTwo__customer-service-icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--woodza-white);
  }
  
  .whyChooseTwo__customer-service-content {
    margin-left: 24px;
  }
  
  .whyChooseTwo__customer-service-content h4 {
    font-size: 20px;
    color: var(--woodza-white);
    font-family: var(--woodza-font);
    font-weight: 400;
    line-height: 32px;
  }
  
  .whyChooseTwo__customer-service-dot {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  
  .whyChooseTwo__customer-service-dot>img {
    width: auto;
  }
  
  .whyChooseTwo__dot {
    position: absolute;
    left: 0;
    bottom: -98px;
    z-index: -1;
}
  
  .whyChooseTwo__dot>img {
    width: auto;
    -webkit-animation-name: shapeMover;
    animation-name: shapeMover;
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }


/*--------------------------------------------------------------
Famous Company Two
--------------------------------------------------------------*/
.whatCanDo-two {
    position: relative;
    display: block;
    z-index: 1;
    padding: 0px 0 65px;
  }
  
  .whatCanDo-two:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: #faf7f6;
    height: 325px;
    z-index: -1;
  }
  
  .whatCanDo-two__top {
    position: relative;
    display: block;
    margin-bottom: 49px;
  }
  
  .whatCanDo-two__top-left {
    position: relative;
    display: block;
    margin-top: -14px;
  }
  
  .whatCanDo-two__title {
    font-size: 42px;
    line-height: 60px;
    font-weight: 700;
  }
  
  .whatCanDo-two__top-right {
    position: relative;
    display: block;
    margin-left: 15px;
    margin-top: -10px;
  }
  
  .whatCanDo-two__top-text {
    font-size: 18px;
    line-height: 34px;
    opacity: .80;
  }

  /*--------------------------------------------------------------
# Famous Company
--------------------------------------------------------------*/
.whatCanDo {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    background-color: #faf7f6;
    z-index: 1;
  }
  
  .whatCanDo-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .whatCanDo-shape-1 img {
    width: auto;
  }
  
  .whatCanDo__single {
    position: relative;
    display: block;
    background-color: #f0edea;
    padding: 30px 30px 30px;
    margin-bottom: 30px;
	  min-height:400px;
  }
  
  .whatCanDo__icon {
    position: relative;
    display: block;
    margin-bottom: 40px;
  }
.whatCanDo__icon img{width:100px !important;}
  .whatCanDo__icon img {
    width: auto;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: scale(1) rotateY(0deg);
    transform: scale(1) rotateY(0deg);
  }
  
  .whatCanDo__single:hover .whatCanDo__icon img {
    -webkit-transform: scale(0.9) rotateY(360deg);
    transform: scale(0.9) rotateY(360deg);
  }
  
  .whatCanDo__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 15px;
  }
  
  .whatCanDo__title a {
    color: var(--woodza-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .whatCanDo__single:hover .whatCanDo__title a {
    color: #00AFDF;
  }
  
  .whatCanDo__text {
    color: var(--woodza-black);
    line-height: 30px;
    padding-top: 23px;
    padding-bottom: 30px;
  }

  .whatCanDo__single ul {
    margin: 0 0 30px 0;
    padding: 0;
  }
  .whatCanDo__single ul li {
    list-style: none;
    width: calc(50% - 3px);
    display: inline-block;
    position: relative;
    padding-left: 30px;
}
.whatCanDo__single ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 10px;
}
    .whatCanDo__single ul li p {
        font-size: 18px;
        color: #210b0b;
        margin-bottom: 6px;
    }
  
  .whatCanDo__read-more {
    position: relative;
    display: block;
  }
  
  .whatCanDo__read-more a {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .whatCanDo__read-more a font {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 33px;
    color: #00AFDF;
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .whatCanDo__single:hover .whatCanDo__read-more a font svg {
    fill: #ffffff;
  }
  
  .whatCanDo__read-more a font:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: #e5dedc;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
  }
  
  .whatCanDo__single:hover .whatCanDo__read-more a font:after {
    background-color: #db5e41;
  }
  
  .whatCanDo__read-more a font svg {
    transform: rotate(-45deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    fill:#00AFDF;
  }
  
  .whatCanDo__single:hover .whatCanDo__read-more a font svg {
    transform: rotate(0deg);
  }
  
  .whatCanDo__read-more a span {
    font-weight: 600;
    color: #080d1c;
    margin-left: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .whatCanDo__single:hover .whatCanDo__read-more a span {
    color: #00AFDF;
  }
  
  .whatCanDo__shape-1 {
    position: absolute;
    bottom: 8px;
    right: 8px;
    height: 16px;
    width: 16px;
    background-color: #ffffff;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
  .whatCanDo__single:hover .whatCanDo__shape-1 {
    transform: scale(.9);
  }
  
  .whatCanDo__shape-1:before {
    position: absolute;
    content: "";
    top: -9px;
    left: -11px;
    height: 8px;
    width: 8px;
    background-color: #00AFDF;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
  .whatCanDo__single:hover .whatCanDo__shape-1:before {
    transform: scale(1.2);
  }

  /*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.ourServices {
    position: relative;
    display: block;
    background-color: #080d1c;
    padding: 85px 0 85px;
    z-index: 1;
  }
  
  .ourServices-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
  
  .ourServices-bg:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(16, 16, 28, .0);
  }
  
  .ourServices .section-title-two__tagline {
    color: #ffffff;
  }
  
  .ourServices .section-title-two__tagline:before {
    background-color: #2c2c39;
  }
  
  .ourServices .sectionTitleTwoTitle {
    color: #ffffff;
  }
  
  .ourServices__text-1 {
    font-size: 18px;
    color: #ffffff;
    opacity: .80;
    padding-top: 31px;
  }
  
  .ourServices__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .ourServices__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .ourServices__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(08,13,22,.30);
    transform: scaleY(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: 1;
  }
  
  .ourServices__single:hover .ourServices__img:before {
    transform: scaleY(1);
  }
  
  .ourServices__img img {
    width: 100%;
  }
  
  .ourServices__content {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 65px 30px 35px;
  }
  
  .ourServices__icon {
    position: absolute;
    top: -46px;
    left: 20px;
    background-color: #292321;
    height: 90px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(170, 161, 154);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
  }
  
  .ourServices__single:hover .ourServices__icon {
    background-color: #00AFDF;
    border-color: #00AFDF;
  }
  
  .ourServices__icon span {
    position: relative;
    display: inline-block;
    /*font-size: 45px;*/
    color: #fff;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
  }
  
  .ourServices__single:hover .ourServices__icon span {
    transform: scale(0.9);
  }
  
  .ourServices__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
  }
  
  .ourServices__title a {
    color: #080d1c;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .ourServices__single:hover .ourServices__title a {
    color: #00AFDF;
  }
  
  .ourServices__text-2 {
    color: #080d1c;
    opacity: .80;
    padding-top: 11px;
    padding-bottom: 29px;
    font-size: 18px;
    line-height: 36px;
}
  
  .ourServices__arrow {
    position: relative;
    display: block;
  }
  
  .ourServices__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 50px;
    background-color: #080d1c;
    font-size: 15px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .ourServices__single:hover .ourServices__arrow a {
    background-color: #00AFDF;
  }
  
  .ourServices__arrow a svg {
    position: relative;
    display: inline-block;
    transform: rotate(-45deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    fill: #fff;
  }
  
  .ourServices__single:hover .ourServices__arrow a svg {
    transform: rotate(0deg);
  }
  
  .ourServices__shape-1 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 16px;
    width: 16px;
    background-color: #080d1c;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
  .ourServices__single:hover .ourServices__shape-1 {
    transform: scale(.9);
  }
  
  .ourServices__shape-1:before {
    position: absolute;
    content: "";
    top: -9px;
    left: -11px;
    height: 8px;
    width: 8px;
    background-color: #00AFDF;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
  .ourServices__single:hover .ourServices__shape-1:before {
    transform: scale(1.2);
  }


 /***Gallery Section***/

.gallery-section{
	position:relative;
	padding:85px 0px 85px;
}
.sec-title.centered {
    text-align: center;
}

.gallery-section .filters{
	position:relative;
	margin-bottom:55px;
  width: 100%;
    display: block;
}

.gallery-section .filters .filter-tabs{
	position:relative;
	text-align:center;
  margin-left: 0;
}

.gallery-section .filters li{
	position: relative;
  display: inline-block;
  margin: 0px 2px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  color: #322f2f;
  z-index:1;
  cursor: pointer;	
    
}
.gallery-section .filters li .btn{
  margin: 0px 2px;
  font-size: 14px;
  line-height: 22px;
  /*font-weight: 700;*/
  color: #322f2f;
  cursor: pointer;
  padding:12px 22px 9px;
  text-transform: capitalize;
  border: 1px solid transparent;
  border-radius:0;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.gallery-section .filters li .total-post{
	position:absolute;
	right:6px;
	top:-6px;
	width:15px;
	height:15px;
	color:#ffffff;
	opacity:0;
	font-size:10px;
	line-height:15px;
	border-radius:5px;
	background-color:#322f2f;
	transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.gallery-section .filters li.active .total-post,
.gallery-section .filters li:hover .total-post{
	opacity:1;
}

.gallery-section .filters li.active .btn,
.gallery-section .filters li:hover .btn{
	color: #fff;
    border-color: #00AFDF;
    background: #00AFDF;
}
span.total-post {
    display: none;
}
button.btn.btn-default.is-checked{color: #fff;
    border-color: #00AFDF;
    background: #00AFDF;}
/* Gallery Block */

.gallery-block{
	position:relative;
	margin-bottom:30px;
}

.gallery-block .inner-box{
	position:relative;
}

.gallery-block .inner-box .image{
	position:relative;
}

.gallery-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.gallery-block .inner-box .image .overlay-box{
	position:absolute;
	left:20px;
	top:20px;
	right:20px;
	bottom:20px;
	display:block;
	background-color:rgba(50,47,47,0.80);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}



.gallery-block .inner-box .image .overlay-box .content{
	position:absolute;
	left:0px;
	bottom:0px;
	width:100%;
	padding:40px 30px 30px;
}

.gallery-block .inner-box .image .overlay-box .content .category{
	position:relative;
	font-size:14px;
	font-weight:400;
	color:#ffffff;
	opacity:0.9;
	margin-top:3px;
}

.gallery-block .inner-box .image .overlay-box .content h3{
	position:relative;
	font-size:18px;
	font-weight:400;
	color:#ffffff;
	text-transform:uppercase;
}

.gallery-block .inner-box .image .overlay-box .content h3 a{
	color:#ffffff;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.gallery-block .inner-box .image .overlay-box .content h3 a:hover{
	color:#ab7442;
}

.gallery-block .inner-box .image .overlay-box .content .read-more{
	position:relative;
	color:#ffffff;
	font-size:15px;
	margin-top:2px;
	text-transform:capitalize;
}

.gallery-block .inner-box .image .overlay-box .options{
	position:absolute;
	right:30px;
	top:30px;
}

.gallery-block .inner-box .image .overlay-box .plus-icon{
	position:relative;
	width:30px;
	height:30px;
	margin:0px 2px;
	text-align:center;
	display:inline-block;
	background-color:#ab7442;
	border:1px solid #ab7442;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}
.gallery-block .inner-box .image .overlay-box .plus-icon .icon{
 display: flex;
 align-items: center;
 justify-content: center;
 height: 28px;
}
.gallery-block .inner-box .image .overlay-box .plus-icon svg{  
	color:#ffffff;
	font-size:14px;
  fill:#ffffff;
  vertical-align: middle;
}

.gallery-block .inner-box .image .overlay-box .plus-icon:before{
	position:absolute;
	content:'';
	right:-5px;
  top:-5px;
	width:14px;
	height:14px;
	border-top:1px solid #ffffff;
	border-right:1px solid #ffffff;
}

.gallery-block .inner-box .image .overlay-box .plus-icon:after{
	position:absolute;
	content:'';
	left:-5px;
	bottom:-5px;
	width:14px;
	height:14px;
	border-left:1px solid #ffffff;
	border-bottom:1px solid #ffffff;
}

.gallery-block .inner-box .image .overlay-box .plus-icon:hover{
	color:#ffffff;
	border-color:#ffffff;
	background-color:#322f2f;
}

.gallery-block .inner-box:hover .image .overlay-box{
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
}

.gallery-block.style-two .inner-box .image .overlay-box{
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}


/****New Letter and Exprience section***/
.newletterExp {
  position: relative;
  display: block;
  background-color: #080d1c;
  padding: 85px 0 85px;
  z-index: 1;
}
.newletterExp-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.newletterExp-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(16, 16, 28, .0);
}

/***Contact One***/
.contactOne {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.contactOne .row {
  --bs-gutter-x: 0px;
}

.contactOne__left {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #ece6e6;
  padding: 67px 50px 55px;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.contactOne__shape-1 {
  position: absolute;
  top: -235px;
  right: -207px;
  border-radius: 50%;
  background-color: #5d5f63;
  width: 319px;
  height: 319px;
  z-index: 1;
}

.contactOne__shape-2 {
  position: absolute;
  top: -242px;
  right: -175px;
  border-radius: 50%;
  background-color: #00AFDF;
  width: 319px;
  height: 319px;
  z-index: -1;
  -webkit-animation: pulse 2s infinite;
  -o-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.contactOne__title {
  position: relative;
  display: block;
}

.contactOne__title h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
}
.contactOne__title h5{
  padding-top: 24px;
  font-size: 30px;
}
.contactOne__title p {
  opacity: .80;
  padding-top: 24px;
  padding-bottom: 34px;
  font-size: 20px;
}

.contactOne__list {
  position: relative;
  display: block;
}

.contactOne__list .contactBlock {
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  background: #fff;
  box-shadow: 0px 0px 35px 0px rgba(208, 208, 208, 0.35);
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}

.contactOne__list li+li {
  border-top: 1px solid #efe7e6;
  margin-top: 25px;
  padding-top: 17px;
}

.contactOne__list .contactBlock .icon {
  height: 60px;
  width: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-bottom: 10px;
}

.contactOne__list .contactBlock:hover .icon {
  background-color: #fff;
}

.contactOne__list .contactBlock .content {
  margin-left: 15px;
}

.contactOne__list .contactBlock .content p {
  font-size: 20px;
  font-weight: 600;
  color: #080d1c;
  line-height: 20px;
  margin-bottom: 5px;
}

.contactOne__list .contactBlock .content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #5f5d5d;
}

.contactOne__list .contactBlock .content h4 a {
  color: #5f5d5d;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contactOne__list .contactBlock:hover .content h4 a {
  color: #00AFDF;
}

.contactOne__right {
  position: relative;
  display: block;
  height: 100%;
  background-color: #c0bcbc;
  box-shadow: 0px 0px 35px 0px rgba(208, 208, 208, 0.35);
}

.contactOne__right .comment-one__form {
  position: relative;
  display: block;
  background-color: #c0bcbc;  
  padding: 50px 40px 54px;
}

.contactOne__right .comment-one__form .row {
  --bs-gutter-x: 20px;
}

.contactOne__right .comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contactOne__right .comment-form__input-box input[type="text"],
.contactOne__right .comment-form__input-box input[type="email"] {
  height: 45px;
  width: 100%;
  border: 1px solid #5d5f63;
  background-color: #5d5f63;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 22px;
  color: #fff;
  display: block;
  border-radius: 0;
  font-weight: 400;
  opacity: .80;
}

.contactOne__right .comment-form__input-box textarea {
  font-size: 22px;
  color: #fff;
  height: 185px;
  width: 100%;
  background-color: #5d5f63;
  padding: 10px 20px 10px;
  border: 1px solid #5d5f63;
  border-radius: 0px;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
  opacity: .80;
  resize: none;
}
.contactOne__right .comment-form__input-box input::placeholder, .contactOne__right .comment-form__input-box textarea::placeholder{
  color:#fff;
}

.contactOne__right .comment-form__btn {
  border: none;
  width: 100%;
  text-align: center;
  background-color: #3d3e41;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  padding: 11.5px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contactOne__right .comment-form__btn:hover {
  background-color: #0d1426;
}

.contactOne__right .comment-form__input-box.text-message-box {
  height: 185px;
  margin-bottom: 20px;
}

/****Main Footer****/
footer.mainFooter {
  background: #040707;
  padding: 60px 0;
  text-align: center;
}
.logoBlock {
  height: 100%;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: left;
  padding: 0 60px;
}
.mainFooter .logoBlock img {
  width: 15%;
}
.addressBlock {
  color: #fff;
  display: flex;
  align-items: center;
  flex-flow: column;
}
.addressBlock p {
  font-size: 24px;
  margin: 0;
}
.addressBlock h4 {
  font-size: 22px;
}


.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #00AFDF;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.scroll-to-top:hover {
  background-color: #00AFDF;
}
.scroll-to-top svg {
  color: #ffffff;
  font-size: 18px;
  fill: #fff;
  margin-top: 14px;
}
.scroll-to-top:hover i {
  fill: #fff;
}
.mapSection {
    position: relative;
    display: block;
}
.mapSectionFrame {
    position: relative;
    display: block;
    border: none;
    height: 600px;
    width: 100%;
}  
.contactPage {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 85px 0;
    z-index: 1;
}
.page-header {
    position: relative;
    display: block;
    padding: 127px 0 129px;
    background-color: #eef0f6;
    z-index: 1;
    margin-top: -20px;
}
.page-header-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -1;
}
.page-header-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 370px;
    content: "";
    background: #281f1a;
    background: linear-gradient(90deg,#281f1a 19%,#281f1a05 85%);
}
.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 15;
}
.page-header__inner h2 {
    font-size: 70px;
    color: #fff;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 6px;
}
.thm-breadcrumb {
    position: relative;
    display: block;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.thm-breadcrumb li+li {
    margin-left: 4px;
}
button.navbar-toggler {
    border: 1px solid #00AFDF;
}
button.navbar-toggler span.navbar-toggler-icon {
    color: #00AFDF;
}
#navbarSupportedContent{float: right;}
.main-menu{margin: 0;}
p.social {
    color: #fff;
    font-size: 21px;
}
.insta-icon {
  position: relative;
  width: 36px;
  margin:0 auto;
  height: 36px;
  border-radius: 20%;
  background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf)
}
.social span {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.social {
    padding: 30px 0 0 0;
}
.insta-icon:after,
.insta-icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  content: ''
}
.insta-icon:before {
  border-radius: 20%
}
.insta-icon:after {
  width: 11px;
  height: 11px;
  border-radius: 50%
}
@media screen and (max-width: 767px) {
#navbarSupportedContent{float: unset;}
button.navbar-toggler {
    position: absolute;
    top: 31px;
    right: 19px;
}
.main-menu{margin: 0 0 10px 0;}
}

@media screen and (max-width: 1199px){.header__heading-logo{width:300px}.header__icon--menu .icon{color:#fff}.mainSlider .auto-container{top:75px;}.mainSlider .slide{padding:15px 0 140px}.mainSlider h2{font-size:36px;min-height:inherit}.mainSlider .theme-btn{margin-right:10px}.mainSlider .owl-nav{left:26px}.mainSlider .owl-dots{right:24px}.why-choose-two{padding:60px 0}.whyChooseTwo__left{margin-top:0}.whyChooseTwo__left .section-title-two{margin-bottom:20px}.sectionTitleTwoTitle{font-size:26px;line-height:36px}.whyChooseTwoText1{font-size:16px;line-height:28px;margin-right:0}.whyChooseTwo__unique-work-icon{height:110px;width:110px}.whyChooseTwo__unique-work-text{font-size:18px;color:#e4282c;line-height:24px}.whyChooseTwo__right{margin-left:0;margin-right:0}.whyChooseTwo__img-box{text-align:center}.whyChooseTwo__img-box:before,.whyChooseTwo__img:before{display:none}.whyChooseTwo__img{width:435px;margin:auto;max-width:100%}.whyChooseTwo__img>img{height:auto}.whyChooseTwo__img-two{display:none}.whatCanDo-two{padding:0 0 35px}.whatCanDo-two__top{margin-bottom:25px}.whatCanDo-two__title{font-size:32px;line-height:40px}.whatCanDo-two__title{font-size:32px;line-height:40px;margin-bottom:20px}.whatCanDo-two__top-right{margin-left:0;margin-top:0}.whatCanDo-two__top-text{font-size:16px;line-height:28px}.whatCanDo__single{padding:20px}.whatCanDo__icon{margin-bottom:20px}.whatCanDo__title{font-size:22px;font-weight:700;line-height:26px;margin-bottom:15px}.whatCanDo__single ul{margin:0 0 20px}.whatCanDo__single ul li{padding-left:20px;font-size:16px}.ourServices .sectionTitleTwoTitle{font-size:34px;line-height:36px}.ourServices__text-1,.ourServices__text-2{font-size:16px;line-height:28px}.gallery-section{padding:60px 0}.sectionTitleTwoTitle{font-size:34px;line-height:44px}.gallery-section .filters .filter-tabs{padding:0}.gallery-section .filters li{width:100%}.contactOne__left{padding:67px 15px 55px}.contactOne__title p{font-size:16px;line-height:28px}.contactOne__list .contactBlock{padding:20px 5px}.contactOne__list .contactBlock .content h4{font-size:16px;line-height:20px}footer.mainFooter{padding:70px 0}.logoBlock{padding:29px 20px;display: block;}.newletterExp{padding-bottom:0px;}.logoBlock img{width:40% !important;height:auto}.page-header{padding:45px 0 35px}.page-header__inner h2{font-size:42px;line-height:46px}.contactOne__title h2{font-size:40px;line-height:46px}}@media screen and (max-width: 991px){.ourServices__text-1 br{display:none}}@media screen and (max-width: 575px){.header__heading-logo{width:200px}.contactOne__list .contactBlock{height:auto;margin-bottom:20px}}
