/* Habikon Architecture HTML5 Template  */
/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header
5. Hidden Sidebar
6. Banner Section
7. Page Title
8. Section Banner
9. Section Title
10. About Section
**********************************************/
/*** 
====================================================================
Fonts
====================================================================
***/
@import url('https://fonts.googleapis.com/css?family=Londrina+Outline|Muli|Oswald:400,500,600,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tourney:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*
font-family: 'Oswald', sans-serif;
font-family: 'Muli', sans-serif;
font-family: 'Londrina Outline', cursive;
*/
/*** 
====================================================================
Reset
====================================================================
***/
* {
margin: 0px;
padding: 0px;
border: none;
outline: none;
font-size: 100%;
}
:root {
--theme-color: #f58634;
--dark-color: #222;
--font-family-oswald: 'Oswald', sans-serif;
--font-family-muli: 'Muli', sans-serif;
--font-family-londrina: 'Londrina Outline', cursive;
--anim-menu-btn-size: 38px;
--anim-menu-btn-icon-size: 28px;
--anim-menu-btn-icon-stroke: 1.5px;
--fs-search-btn-size: 3em;
--fs-search-border-bottom-width: 2px;
}
/*** 
====================================================================
Global Settings
====================================================================
***/
body {
font-size: 14px;
line-height: 24px;
color: #274259;
font-weight: 400;
background: #ffffff;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
font-family: var(--font-family-muli);
}
a {
text-decoration: none;
cursor: pointer;
color: var(--theme-color);
}
a:hover,
a:focus,
a:visited {
text-decoration: none;
outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
font-weight: normal;
margin: 0px;
background: none;
line-height: 1.2em;
font-family: var(--font-family-oswald);
}
textarea {
overflow: hidden;
}
button {
outline: none !important;
cursor: pointer;
}
.text {
font-size: 16px;
line-height: 26px;
color: #000;
font-weight: 400;
margin: 0;
text-align: justify;
}
::-webkit-input-placeholder {
color: inherit;
}
::-moz-input-placeholder {
color: inherit;
}
::-ms-input-placeholder {
color: inherit;
}
.auto-container {
position: static;
max-width: 1210px;
padding: 0px 20px;
margin: 0 auto;
}
.small-container {
position: relative;
max-width: 1050px;
padding: 0px 15px;
margin: 0 auto;
}
.small-container-two {
position: relative;
max-width: 100%;
padding: 0px 15px;
margin: 0 auto;
}
.content-container {
position: relative;
margin-right: 100px;
margin-left: 500px;
}
.content-container-two {
position: relative;
margin-right: 100px;
margin-left: 100px;
}
.page-wrapper {
position: relative;
margin: 0 auto;
width: 100%;
min-width: 300px;
z-index: 9;
}
.page-wrapper-two {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 9;
overflow: hidden;
background: #1c1e25;
}
.page-wrapper-two:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-image: url(../images/icons/pattern.png);
background-repeat: repeat;
background-position: center;
content: "";
}
ul,
li {
list-style: none;
padding: 0px;
margin: 0px;
}
.pull-left {
float: left;
}
.pull-right {
float: right;
}
.mx-90 {
margin: 0 90px;
}
.mb-30 {
margin-bottom: 30px !important;
}
.mb-40 {
margin-bottom: 40px !important;
}
.mt-60 {
margin-top: 60px !important;
}
.pb-60 {
padding-bottom: 60px !important;
}
@media only screen and (min-width:1200px) {
.pl-lg-50 {
padding-left: 50px;
}
}
.theme-btn {
display: inline-block;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
/*Btn Style One*/
.btn-style-one {
position: relative;
display: inline-block;
font-size: 14px;
line-height: 24px;
color: #1c1f26;
background-color: #ffffff;
padding: 13px 30px;
padding-left: 60px;
font-weight: 600;
overflow: hidden;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.btn-style-one:hover {
color: #fff;
}
.btn-style-one:after {
position: absolute;
content: '';
background: #f58634;
height: 1px;
width: 20px;
top: 24.5px;
left: 30px;
}
.btn-style-one:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-color: #f58634;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: top right;
-ms-transform-origin: top right;
transform-origin: top right;
-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
}
.btn-style-one:hover:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
}
.btn-style-one span {
position: relative;
z-index: 2;
}
/*Btn Style Two*/
.btn-style-two {
position: relative;
display: inline-block;
font-size: 14px;
line-height: 24px;
color: #fff;
background-color: #274259;
padding: 13px 30px;
padding-left: 60px;
font-weight: 600;
overflow: hidden;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.btn-style-two:hover {
color: #fff;
}
.btn-style-two:after {
position: absolute;
content: '';
background: #fff;
height: 1px;
width: 20px;
top: 24.5px;
left: 30px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.btn-style-two:hover:after {
background: #fff;
}
.btn-style-two:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-color: var(--theme-color);
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: top right;
-ms-transform-origin: top right;
transform-origin: top right;
-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
}
.btn-style-two:hover:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
}
.btn-style-two span {
position: relative;
z-index: 2;
}
/*Btn Style three*/
.btn-style-three {
position: relative;
padding: 25px 40px;
padding-left: 115px;
line-height: 24px;
color: #ffffff;
font-size: 15px;
font-weight: 700;
border-radius: 2px;
text-transform: uppercase;
}
.btn-style-three .icon {
margin-right: 3px;
}
.btn-style-three:hover {
color: var(--theme-color);
}
.btn-style-three:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
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;
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
-webkit-transform-origin: left;
-ms-transform-origin: left;
transform-origin: left;
/* ff3.6+ */
/* safari4+,chrome */
/* safari5.1+,chrome10+ */
background: -o-linear-gradient(0deg, rgba(255, 255, 255, 1) 3%, rgba(196, 152, 81, 1) 48%, rgba(195, 150, 78, 1) 49%);
/* opera 11.10+ */
/* ie10+ */
background: -webkit-gradient(linear, left top, right top, color-stop(3%, rgba(255, 255, 255, 1)), color-stop(48%, rgba(196, 152, 81, 1)), color-stop(49%, rgba(195, 150, 78, 1)));
background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 3%, rgba(196, 152, 81, 1) 48%, rgba(195, 150, 78, 1) 49%);
background: linear-gradient(90deg, rgba(255, 255, 255, 1) 3%, rgba(196, 152, 81, 1) 48%, rgba(195, 150, 78, 1) 49%);
}
.btn-style-three:after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
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;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform-origin: right;
-ms-transform-origin: right;
transform-origin: right;
background: #ffffff;
}
.btn-style-three:hover:before {
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
}
.btn-style-three:hover:after {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
}
.btn-style-three span {
position: relative;
display: block;
z-index: 1;
}
.btn-style-three .shape {
position: absolute;
left: 0;
top: 37px;
z-index: 9;
height: 1px;
width: 99px;
}
.btn-style-three .shape:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 99px;
left: 0;
top: 0;
}
.btn-style-three .shape:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 9px;
width: 9px;
right: 0;
top: -4px;
border-radius: 50%;
}
/* Btn Style Four */
.btn-style-four {
position: relative;
font-size: 14px;
font-weight: 600;
font-family: var(--font-family-oswald);
text-transform: uppercase;
padding-left: 20px;
color: #1c1f26;
}
.btn-style-four span {
font-size: 12px;
color: var(--theme-color);
margin-right: 10px;
position: relative;
top: -2px;
}
.btn-style-four:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 20px;
left: 0;
top: 11px;
}
.btn-style-four:hover {
color: var(--theme-color);
}
/*Btn Style Five*/
.btn-style-five {
position: relative;
display: inline-block;
font-size: 14px;
line-height: 24px;
color: #1c1f26;
background-color: #fff;
border: 1px solid #28435a;
padding: 12px 30px;
font-weight: 600;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.btn-style-five:hover {
color: var(--theme-color);
}
.btn-style-five span {
position: relative;
z-index: 2;
}
.btn-style-five:before {
position: absolute;
content: '';
left: -1px;
top: -1px;
right: -1px;
bottom: -1px;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: bottom center;
-ms-transform-origin: bottom center;
transform-origin: bottom center;
border-top: 1px solid var(--theme-color);
border-bottom: 1px solid var(--theme-color);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.btn-style-five:hover:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
}
.btn-style-five:after {
position: absolute;
content: '';
left: -1px;
top: -1px;
right: -1px;
bottom: -1px;
-webkit-transform: scale(1, 0);
-ms-transform: scale(1, 0);
transform: scale(1, 0);
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center;
border-left: 1px solid var(--theme-color);
border-right: 1px solid var(--theme-color);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.btn-style-five:hover:after {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
}
/*Btn Style Six*/
.btn-style-six {
position: relative;
display: inline-block;
font-size: 14px;
line-height: 24px;
color: #fff;
background-color: var(--theme-color);
padding: 22.5px 30px;
font-weight: 500;
overflow: hidden;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.btn-style-six:hover {
color: #fff;
}
.btn-style-six:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-color: #262931;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: top right;
-ms-transform-origin: top right;
transform-origin: top right;
-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
}
.btn-style-six:hover:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
}
.btn-style-six span {
position: relative;
z-index: 2;
}
.btn-style-six .icon {
margin-left: 10px;
}
/*Btn Style Seven*/
.btn-style-seven {
position: relative;
display: inline-block;
font-size: 14px;
line-height: 24px;
color: #fff;
background-color: var(--theme-color);
padding: 21px 35px;
padding-right: 75px;
font-weight: 600;
overflow: hidden;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.btn-style-seven:hover {
color: #fff;
}
.btn-style-seven:after {
position: absolute;
content: '';
background: #fff;
height: 1px;
width: 20px;
top: 32.5px;
right: 46px;
}
.btn-style-seven:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-color: #1c1f26;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: top right;
-ms-transform-origin: top right;
transform-origin: top right;
-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
}
.btn-style-seven:hover:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
}
.btn-style-seven span {
position: relative;
z-index: 2;
}
.btn-style-seven span:before {
position: absolute;
content: "\f10a";
font-size: 10px;
font-family: Flaticon;
color: #fff;
top: -1.5px;
right: -38px;
}
/*Btn Style Eight*/
.btn-style-eight {
position: relative;
display: inline-block;
font-size: 14px;
line-height: 24px;
color: #999999;
background-color: #f0f2f6;
letter-spacing: 2px;
padding: 27.5px 30px;
padding-left: 110px;
font-weight: 600;
overflow: hidden;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.btn-style-eight:hover {
color: #fff;
}
.btn-style-eight:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 40px;
top: 38px;
left: 65px;
}
.btn-style-eight:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-color: #1c1f26;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: top right;
-ms-transform-origin: top right;
transform-origin: top right;
-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
}
.btn-style-eight:hover:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
}
.btn-style-eight span {
position: relative;
z-index: 2;
}
.btn-style-eight span:before {
position: absolute;
content: "\f10a";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: -3.5px;
left: -24px;
}
.btn-style-eight i {
display: inline-block;
position: relative;
-webkit-transform: rotate(90deg) translate(0px, 70px);
-ms-transform: rotate(90deg) translate(0px, 70px);
transform: rotate(90deg) translate(0px, 70px);
color: var(--theme-color);
font-size: 16px;
}
/* Cursor Style */
.cursor {
position: absolute;
background-color: #fff;
width: 6px;
height: 6px;
border-radius: 100%;
z-index: 1;
-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
-o-transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
z-index: 10000;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
visibility: hidden;
}
.cursor {
visibility: visible;
}
.cursor.active {
opacity: 0.5;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.cursor.hovered {
opacity: 0.08;
}
.cursor-follower {
position: absolute;
background-color: rgba(255, 255, 255, 0.3);
width: 50px;
height: 50px;
border-radius: 100%;
z-index: 1;
-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
-o-transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
z-index: 10000;
visibility: hidden;
}
.cursor-follower {
visibility: visible;
}
.cursor-follower.active {
opacity: 0.7;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.cursor-follower.hovered {
opacity: 0.08;
}
.cursor-follower.close-cursor:before {
position: absolute;
content: '';
height: 25px;
width: 2px;
background: #fff;
left: 48%;
top: 12px;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
display: inline-block;
}
.cursor-follower.close-cursor:after {
position: absolute;
content: '';
height: 25px;
width: 2px;
background: #fff;
right: 48%;
top: 12px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
/*=== List Style One ===*/
.list-style-one {
position: relative;
}
.list-style-one li {
position: relative;
font-size: 16px;
color: #919191;
line-height: 26px;
font-weight: 400;
padding-left: 30px;
margin-bottom: 15px;
}
.list-style-one li a {
color: #919191;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.list-style-one li:before {
position: absolute;
left: 0;
top: 0;
font-size: 14px;
line-height: 26px;
color: #e1e6e3;
content: "\f06c";
font-family: "Fontawesome";
}
.list-style-one li a:hover {
color: var(--theme-color);
text-shadow: 0 0 1px var(--theme-color);
}
/*=== List Style Two ===*/
.list-style-two {
position: relative;
display: block;
margin-bottom: 30px;
}
.list-style-two li {
position: relative;
font-size: 14px;
line-height: 25px;
color: #777777;
font-weight: 400;
padding-left: 20px;
}
.list-style-two li:before {
position: absolute;
left: 0;
top: 0;
font-size: 14px;
line-height: 25px;
color: #4ee0b0;
font-weight: 400;
font-family: "Fontawesome";
content: "\f138";
}
/*=== List Style Three ===*/
.list-style-three {
position: relative;
display: block;
margin-bottom: 30px;
}
.list-style-three li {
position: relative;
font-size: 14px;
line-height: 24px;
color: #333333;
font-weight: 400;
padding-left: 25px;
margin-bottom: 10px;
}
.list-style-three li a {
color: #333333;
}
.list-style-three li:before {
position: absolute;
left: 0;
top: 0;
font-size: 14px;
line-height: 24px;
color: #fe6699;
font-weight: 300;
font-family: "Fontawesome";
content: "\f18e";
}
.theme-color {
color: var(--theme-color);
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
/* .preloader {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 999;
background-position: center center;
background-repeat: no-repeat;
background-image: url(../images/icons/preloader.svg);
} */
/* loader css start */
.preloader1 {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: #fff;
z-index: 1111111;
}
.preloader1 img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 500px;
}
/* loader css start */
.loader-wrap {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 999999;
}
.loader-wrap .layer-one {
position: absolute;
left: 0%;
top: 0;
width: 33.3333%;
height: 100%;
overflow: hidden;
}
.loader-wrap .layer-two {
position: absolute;
left: 33.3333%;
top: 0;
width: 33.3333%;
height: 100%;
overflow: hidden;
}
.loader-wrap .layer-three {
position: absolute;
left: 66.6666%;
top: 0;
width: 33.3333%;
height: 100%;
overflow: hidden;
}
.loader-wrap .layer .overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #222;
}
img {
display: inline-block;
max-width: 100%;
height: auto;
}
/* owl controll */
.owl-dots-none .owl-dots {
display: none;
}
/* style one */
.owl-dot-style-one .owl-dots {
position: relative;
text-align: center;
}
.owl-dot-style-one .owl-dots .owl-dot {
position: relative;
display: inline-block;
margin: 0px 5px;
}
.owl-dot-style-one .owl-dots .owl-dot span {
position: relative;
display: block;
width: 8px;
height: 8px;
background: #d7d7d7;
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;
}
.owl-dot-style-one .owl-dots .owl-dot.active span,
.owl-dot-style-one .owl-dots .owl-dot:hover span {
background: var(--theme-color);
}
/* style two */
.owl-dot-style-two .owl-dots {
position: relative;
text-align: center;
line-height: 15px;
}
.owl-dot-style-two .owl-dots .owl-dot {
position: relative;
display: inline-block;
margin: 0px 5px;
}
.owl-dot-style-two .owl-dots .owl-dot span {
position: relative;
display: block;
width: 15px;
height: 15px;
border-radius: 50%;
border: 2px solid #e8e8e8;
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;
}
.owl-dot-style-two .owl-dots .owl-dot span:before {
position: absolute;
content: '';
background: #e8e8e8;
width: 5px;
height: 5px;
border-radius: 50%;
left: 3px;
top: 3px;
}
.owl-dot-style-two .owl-dots .owl-dot.active span,
.owl-dot-style-two .owl-dots .owl-dot:hover span {
background: var(--theme-color);
border-color: var(--theme-color);
}
/* style three */
.owl-dot-style-three .owl-dots {
position: relative;
text-align: center;
line-height: 15px;
}
.owl-dot-style-three .owl-dots .owl-dot {
position: relative;
display: inline-block;
margin: 0px 7px;
}
.owl-dot-style-three .owl-dots .owl-dot span {
position: relative;
width: 12px;
height: 12px;
margin: 0px;
display: inline-block;
border: 2px solid #d7d6d4;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.owl-dot-style-three .owl-dots .owl-dot.active span {
border-color: var(--theme-color);
width: 36px;
}
/* owl nav */
.owl-nav-none .owl-nav {
display: none;
}
.owl-nav-style-one .owl-nav {
margin: 0px;
margin-top: 80px;
padding: 0px;
text-align: center;
}
.owl-nav-style-one .owl-nav .owl-next,
.owl-nav-style-one .owl-nav .owl-prev {
position: relative;
border-radius: 50%;
color: #fff;
font-size: 14px;
text-align: center;
background-color: #403ab4;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(194, 191, 255, 0.65);
width: 50px;
height: 50px;
line-height: 50px;
margin: 0 8px;
display: inline-block;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-one .owl-nav .owl-prev {
left: 0px;
}
.owl-nav-style-one .owl-nav .owl-next {
right: 0px;
}
.owl-nav-style-one .owl-nav .owl-next:hover,
.owl-nav-style-one .owl-nav .owl-prev:hover {
background-color: var(--theme-color);
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(167, 238, 227, 0.65);
box-shadow: 0px 11px 21.25px 3.75px rgba(167, 238, 227, 0.65);
}
/* nav style tow */
.owl-nav-style-two .owl-nav {
padding: 0px;
text-align: center;
bottom: 100%;
top: inherit;
position: absolute;
left: inherit;
right: 0;
}
.owl-nav-style-two .owl-nav .owl-next,
.owl-nav-style-two .owl-nav .owl-prev {
position: relative;
width: 60px;
height: 60px;
margin: 0 5px 30px;
display: inline-block;
line-height: 60px;
text-align: center;
font-size: 24px;
color: #949494;
background: #fff;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-two .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-two .carousel-outer:hover .owl-nav .owl-prev {
opacity: 1;
visibility: visible;
}
.owl-nav-style-two .owl-nav .owl-prev {
left: 0px;
}
.owl-nav-style-two .owl-nav .owl-next {
right: 0px;
}
.owl-nav-style-two .owl-nav .owl-next:hover,
.owl-nav-style-two .owl-nav .owl-prev:hover {
color: var(--theme-color);
}
/* nav style three */
.owl-nav-style-three .owl-nav {
padding: 0px;
top: 50%;
margin-top: -40px;
position: absolute;
left: 0;
right: 0;
}
.owl-nav-style-three .owl-nav .owl-next,
.owl-nav-style-three .owl-nav .owl-prev {
position: relative;
width: 70px;
height: 70px;
line-height: 70px;
background: #2a2e37;
text-align: center;
font-size: 24px;
color: #fff;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-three .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-three .carousel-outer:hover .owl-nav .owl-prev {
opacity: 1;
visibility: visible;
}
.owl-nav-style-three .owl-nav .owl-prev {
left: -25px;
float: left;
}
.owl-nav-style-three .owl-nav .owl-next {
right: -25px;
float: right;
}
.owl-nav-style-three .owl-nav .owl-next:hover,
.owl-nav-style-three .owl-nav .owl-prev:hover {
background: var(--theme-color);
}
/* nav style four */
.owl-nav-style-four .owl-nav {
padding: 0px;
top: 50%;
position: absolute;
left: 0;
right: 0;
}
.owl-nav-style-four .owl-nav .owl-next,
.owl-nav-style-four .owl-nav .owl-prev {
position: relative;
width: 50px;
height: 50px;
line-height: 48px;
text-align: center;
font-size: 20px;
color: #b2b2b2;
border-radius: 50%;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-four .carousel-outer:hover .owl-nav .owl-next,
.owl-nav-style-four .carousel-outer:hover .owl-nav .owl-prev {
opacity: 1;
visibility: visible;
}
.owl-nav-style-four .owl-nav .owl-prev {
left: 45px;
top: 13px;
float: left;
}
.owl-nav-style-four .owl-nav .owl-next {
right: 45px;
top: 13px;
float: right;
}
.owl-nav-style-four .owl-nav .owl-next:hover,
.owl-nav-style-four .owl-nav .owl-prev:hover {
color: var(--theme-color);
border-color: var(--theme-color);
}
/* nav style five */
.owl-nav-style-five .owl-nav {
margin: 0px;
margin-top: 40px;
padding: 0px;
text-align: center;
}
.owl-nav-style-five .owl-nav .owl-next,
.owl-nav-style-five .owl-nav .owl-prev {
position: relative;
color: #222;
font-size: 14px;
text-align: center;
line-height: 26px;
margin: 0 15px;
display: inline-block;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
}
.owl-nav-style-five .owl-nav .owl-prev {
left: 0px;
}
.owl-nav-style-five .owl-nav .owl-next {
right: 0px;
}
.owl-nav-style-five .owl-nav .owl-next:before {
position: absolute;
content: '';
height: 26px;
width: 2px;
background: #9cacd8;
top: 0;
right: 26px;
}
.owl-nav-style-five .owl-nav .owl-next:hover,
.owl-nav-style-five .owl-nav .owl-prev:hover {
color: var(--theme-color);
}
/*** Scroll To Top style ***/
.scroll-to-top {
width: 70px;
height: 70px;
position: absolute;
bottom: 250px;
right: 90px;
line-height: 70px;
font-size: 16px;
z-index: 99;
display: none;
color: #fff;
text-align: center;
cursor: pointer;
background: var(--theme-color);
-webkit-animation: pulse 2s infinite;
animation: pulse 2s infinite;
-webkit-box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.06);
box-shadow: 0px 11px 21.25px 3.75px rgba(0, 0, 0, 0.06);
}
.scroll-to-top span:before {}
.scroll-to-top:after {
position: absolute;
z-index: -1;
content: '';
top: 100%;
left: 5%;
height: 10px;
width: 90%;
opacity: 1;
background: -o-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}
/* Style Two */
.scroll-to-top-two {
width: 60px;
height: 120px;
position: absolute;
bottom: 170px;
right: 90px;
line-height: 24px;
font-size: 16px;
font-weight: 500;
font-family: var(--font-family-oswald);
z-index: 99;
color: #1c1f26;
text-align: center;
padding-top: 85px;
cursor: pointer;
}
.scroll-to-top-two:before {
position: absolute;
content: '';
background: #d6d6d6;
width: 2px;
height: 70px;
left: 50%;
margin-left: -1px;
top: 0;
}
.scroll-to-top-two:after {
position: absolute;
content: '';
background: var(--theme-color);
width: 2px;
height: 35px;
left: 50%;
margin-left: -1px;
top: 35px;
}
/*** 
====================================================================
Main Header style
====================================================================
***/
.main-header {
position: relative;
left: 0;
top: 0;
width: 100%;
z-index: 9999;
background: #fff;
}
.header-span {
position: relative;
display: block;
height: 70px;
width: 100%;
}
.main-header .hor-line-1 {
position: absolute;
left: 230px;
right: 130px;
top: 50%;
display: block;
border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.main-header .hor-line-2 {
position: absolute;
left: -50px;
right: -50px;
top: 50%;
display: block;
border-bottom: 10px solid #222222;
}
/*=== Header Upper ===*/
.main-header .header-upper {
position: relative;
z-index: 9999;
background: #fff;
}
.main-header .outer-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.main-header .header-upper .logo-box {
position: relative;
padding: 21.5px 45px;
}
.main-header .logo {
position: relative;
text-align: center;
}
.main-header .logo img {
position: relative;
display: inline-block;
max-width: 100%;
}
.main-header .logo img {
position: relative;
display: inline-block;
max-width: 100%;
}
/*=== Header Lower ===*/
.main-header .nav-outer {
position: relative;
padding: 0;
min-height: 70px;
margin: 0;
}
.nav-outer .mobile-nav-toggler {
position: relative;
font-size: 30px;
line-height: 40px;
cursor: pointer;
color: #fff;
padding: 25px 30px;
right: 0;
background-color: #f58634;
}
.main-header .nav-outer .nav-inner {
position: relative;
background-color: #fff;
}
.main-header .nav-outer .nav-inner.close-menu {
pointer-events: none;
}
.main-header .main-box {
position: relative;
float: left;
left: 0px;
top: 0px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-menu {
position: relative;
}
.main-menu .navbar-collapse {
padding: 0px;
}
.main-menu .navigation {
position: relative;
margin: 0px;
}
.main-menu .navigation>li {
position: relative;
float: left;
padding: 25px 10px;
margin-right: 15px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-menu .navigation>li.current:before {
position: absolute;
content: '';
background: #f58634;
left: 50%;
bottom: 25px;
width: 5px;
height: 5px;
border-radius: 50%;
margin-left: -8px;
}
.main-menu .navigation>li.current:after {
position: absolute;
content: '';
background: var(--theme-color);
left: 50%;
bottom: 25px;
width: 5px;
height: 5px;
border-radius: 50%;
}
.sticky-header .main-menu .navigation>li.current:after,
.sticky-header .main-menu .navigation>li.current:before {
bottom: 18px;
}
.main-menu .navigation>li>a {
position: relative;
display: block;
text-align: center;
padding: 10px 0px;
font-size: 14px;
line-height: 20px;
font-weight: 500;
color: #1c1f26;
opacity: 1;
text-transform: uppercase;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
font-family: var(--font-family-oswald);
}
.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
color: #f58634;
}
.main-menu .navigation>li>ul {
position: absolute;
left: 0px;
top: 110%;
width: 225px;
z-index: 100;
opacity: 1;
padding: 20px 0 20px;
background: #fff;
border-top: 1px solid #fff;
-webkit-transition: all 200ms linear;
-o-transition: all 200ms linear;
transition: all 200ms linear;
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation>li>ul>li {
position: relative;
width: 100%;
padding: 0 30px;
}
.main-menu .navigation>li>ul>li>a {
position: relative;
display: block;
padding: 10px 0px;
line-height: 19px;
font-weight: 400;
font-size: 14px;
text-align: left;
color: #888887;
text-transform: uppercase;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
font-family: var(--font-family-oswald);
}
.main-menu .navigation>li>ul>li:hover>a {
color: #f58634;
}
.main-menu .navigation>li>ul>li.dropdown>a:after {
font-family: 'FontAwesome';
content: "\f105";
position: absolute;
right: 0px;
top: 9px;
width: 10px;
display: block;
line-height: 19px;
font-size: 16px;
color: #ffffff;
font-weight: normal;
text-align: center;
z-index: 5;
}
.main-menu .navigation>li>ul>li>ul {
position: absolute;
left: 97%!important;
top: 0;
width: 225px;
z-index: 100;
opacity: 1;
padding: 20px 0 30px;
background: #fff;
border-top: 1px solid #fff;
-webkit-transition: all 200ms linear;
-o-transition: all 200ms linear;
transition: all 200ms linear;
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.main-menu .navigation>li>ul>li>ul>li {
position: relative;
width: 100%;
padding: 0 25px;
}
.main-menu .navigation>li>ul>li>ul>li>a {
position: relative;
display: block;
padding: 10px 0px;
line-height: 19px;
font-weight: 400;
font-size: 14px;
text-align: left;
color: #888;
border-bottom: 1px solid rgba(255, 255, 255, 0.10);
text-transform: capitalize;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
font-family: var(--font-family-oswald);
text-transform: uppercase;
}
.main-menu .navigation>li>ul>li>ul>li>a:hover {
color: var(--theme-color);
}
.main-menu .navigation>li>ul>li>ul>li:last-child>a {
border-bottom: 0;
}
.main-menu .navigation>li.dropdown:hover>ul {
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
visibility: visible;
opacity: 1;
top: 100%;
margin-top: 5px;
}
.main-menu .navigation>li>ul>li:hover>ul {
visibility: visible;
opacity: 1;
left: 100%;
margin-left: 5px;
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>ul>li.dropdown>ul.from-right {
left: auto;
right: 110%;
}
.main-menu .navigation>li>ul>li.dropdown:hover>ul.from-right {
left: auto;
right: 100%;
}
.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
position: absolute;
right: 10px;
top: 8px;
width: 34px;
height: 30px;
border: 1px solid #ffffff;
text-align: center;
font-size: 16px;
line-height: 26px;
color: #ffffff;
cursor: pointer;
z-index: 5;
display: none;
}
.main-header .outer-box {
position: absolute;
right: 0;
top: 0;
}
/* Nav Toggler */
.main-header .nav-toggler {
position: relative;
text-align: center;
}
.main-header .nav-toggler .nav-btn {
position: relative;
color: #ffffff;
font-size: 28px;
line-height: 39px;
padding: 15px 0;
width: 80px;
font-weight: normal;
background: none;
background-color: var(--theme-color);
}
.main-header .nav-toggler .nav-btn .icon {
display: inline-block;
}
.main-header .social-links {
position: relative;
float: right;
margin-left: 70px;
padding: 15px 0;
}
/* Contact Info One */
.contact-info-one {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.contact-info-one li+li {
margin-left: 30px;
}
.contact-info-one li a {
position: relative;
color: #fff;
font-family: var(--font-family-oswald);
font-size: 14px;
text-transform: uppercase;
}
.contact-info-one li a span {
margin-right: 5px;
font-size: 18px;
}
/* Header Upper Style Two */
.main-header .header-upper.style-two {
position: absolute;
width: 100%;
background: transparent;
padding-top: 25px;
}
.main-header .header-upper.style-two .logo-box {
background: transparent;
}
.main-header .header-upper.style-two .nav-outer .nav-inner {
background: transparent;
}
.header-upper.style-two .main-menu .navigation>li>a {
color: #fff;
}
/* Social Icon One */
.social-icon-one {
position: relative;
float: left;
}
.social-icon-one li {
position: relative;
float: left;
margin-left: 5px;
}
.social-icon-one li:first-child {
margin-left: 0;
}
.social-icon-one li a {
position: relative;
display: block;
height: 40px;
width: 40px;
font-size: 14px;
line-height: 40px;
color: rgba(255, 255, 255, 0.70);
background-color: #161616;
text-align: center;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-one li a:hover {
color: #ffffff;
background-color: var(--theme-color);
}
.social-icon-one li:first-child {
margin-left: 0;
}
/* social icon two */
.social-icon-two {
position: relative;
text-align: center;
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;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0 15px;
}
.social-icon-two li {
position: relative;
margin-bottom: 5px;
display: block;
text-align: center;
}
.social-icon-two li a {
position: relative;
display: block;
height: 40px;
width: 40px;
font-size: 14px;
line-height: 40px;
color: #fff;
border: 1px solid #fff;
text-align: center;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-two li a:hover {
color: var(--theme-color);
background-color: #ffffff;
}
.social-icon-two li:first-child {
margin-left: 0;
}
/**/
.social-icon-three {
position: relative;
text-align: center;
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;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0 15px;
}
.social-icon-three li {
position: relative;
margin-bottom: 5px;
margin-left: 5px;
display: block;
text-align: center;
}
.social-icon-three li a {
position: relative;
display: block;
height: 40px;
width: 40px;
font-size: 14px;
line-height: 40px;
color: var(--theme-color);
border: 1px solid var(--theme-color);
text-align: center;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.social-icon-three li a:hover {
color: #fff;
background-color: var(--theme-color);
}
.social-icon-three li:first-child {
margin-left: 0;
}
.main-header .dropdown-toggle::after {
display: none;
}
/* Social Icon Four */
.social-icon-four {
position: relative;
left: 20px;
}
.social-icon-four li {
position: relative;
display: block;
-webkit-transition: all 700ms ease;
-o-transition: all 700ms ease;
transition: all 700ms ease;
}
.social-icon-four li a {
position: relative;
display: block;
width: 50px;
-webkit-transition: all 700ms ease;
-o-transition: all 700ms ease;
transition: all 700ms ease;
}
.social-icon-four li a:hover {
color: var(--theme-color);
background-color: #ffffff;
background: rgba(255, 255, 255, 0.95);
}
.social-icon-four li:first-child {
margin-left: 0;
}
.social-icon-four li a i {
margin-right: 15px;
color: #f58634;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 14px;
background: #ffffff;
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
border: 1px solid #e7e7e7;
border-bottom: 0px;
display: inline-block;
}
.social-icon-four li:last-child a i {
border-bottom: 1px solid #e7e7e7;
}
.social-icon-four li a:hover i:before {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.social-icon-four li a i:before {
position: relative;
left: 2px;
display: inline-block;
}
.social-icon-four li a i:after {
position: absolute;
content: '';
width: 3px;
left: 0;
top: -1px;
bottom: -1px;
background: transparent;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
-webkit-transform: scaleY(0);
-ms-transform: scaleY(0);
transform: scaleY(0);
}
.social-icon-four li a:hover i:after {
background-color: var(--theme-color);
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
}
.social-icon-four li a span {
opacity: 0;
-webkit-transition: .3s ease;
-o-transition: .3s ease;
transition: .3s ease;
font-size: 16px;
color: #274259;
position: absolute;
left: -100%;
top: 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
background: #fff;
border-top-right-radius: 25px;
border-bottom-right-radius: 25px;
padding: 12px 30px;
border: 1px solid #e7e7e7;
border-left: 0px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.social-icon-four li a:hover span {
opacity: 1;
left: 30px;
}
/* Contact Info Two */
.contact-info-two {
position: relative;
left: 20px;
}
.contact-info-two li {
position: relative;
margin-bottom: 5px;
display: block;
-webkit-transition: all 700ms ease;
-o-transition: all 700ms ease;
transition: all 700ms ease;
padding-bottom: 70px;
}
.contact-info-two li:last-child {
margin-bottom: 0px;
}
.contact-info-two li a {
position: relative;
display: block;
width: 50px;
-webkit-transition: all 700ms ease;
-o-transition: all 700ms ease;
transition: all 700ms ease;
}
.contact-info-two li:before {
position: absolute;
content: '';
background: #e7e7e7;
width: 1px;
height: 50px;
left: 25px;
bottom: 10px;
}
.contact-info-two li a:hover {
color: var(--theme-color);
background-color: #ffffff;
background: rgba(255, 255, 255, 0.95);
}
.contact-info-two li:first-child {
margin-left: 0;
}
.contact-info-two li a i {
margin-right: 15px;
color: #f58634;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 14px;
background: #ffffff;
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
border: 1px solid #e7e7e7;
display: inline-block;
}
.contact-info-two li a:hover i:before {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
-webkit-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
.contact-info-two li a i:before {
position: relative;
left: 2px;
display: inline-block;
}
.contact-info-two li a i:after {
position: absolute;
content: '';
width: 3px;
left: 0;
top: -1px;
bottom: -1px;
background: transparent;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
-webkit-transform: scaleY(0);
-ms-transform: scaleY(0);
transform: scaleY(0);
}
.contact-info-two li a:hover i:after {
background-color: var(--theme-color);
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
}
.contact-info-two li a span {
opacity: 0;
-webkit-transition: .3s ease;
-o-transition: .3s ease;
transition: .3s ease;
font-size: 16px;
color: #274259;
position: absolute;
left: -100%;
top: 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
background: #fff;
border-top-right-radius: 25px;
border-bottom-right-radius: 25px;
padding: 12px 30px;
border: 1px solid #e7e7e7;
border-left: 0px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.contact-info-two li a:hover span {
opacity: 1;
left: 30px;
}
/*** 
====================================================================
Mobile Menu
====================================================================
***/
.mobile-menu {
position: fixed;
left: -350px;
top: 0;
width: 320px;
padding-right: 30px;
max-width: 100%;
height: 100%;
z-index: 999;
-webkit-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
background-color: #1c1f26;
}
.mobile-menu .nav-logo {
position: relative;
padding: 20px 20px;
text-align: left;
}
.mobile-menu-visible {
overflow: hidden;
}
.mobile-menu-visible .mobile-menu {
opacity: 1;
visibility: visible;
}
.mobile-menu .menu-backdrop {
position: fixed;
right: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
background: rgba(0, 0, 0, 0.90);
-webkit-transform: translateX(101%);
-ms-transform: translateX(101%);
transform: translateX(101%);
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
opacity: 1;
visibility: visible;
-webkit-transition: all 0.7s ease;
-o-transition: all 0.7s ease;
transition: all 0.7s ease;
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
.mobile-menu .menu-box {
position: absolute;
left: 0;
top: 100px;
bottom: 80px;
width: 100%;
max-height: 100%;
overflow-y: auto;
background: #1c1f26;
padding: 0px 0px;
border-radius: 0px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.mobile-menu .menu-box.style-two {
bottom: 0px;
}
.mobile-menu-visible .mobile-menu .menu-box {
opacity: 1;
visibility: visible;
-webkit-transition: all 0.7s ease;
-o-transition: all 0.7s ease;
transition: all 0.7s ease;
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
.mobile-menu .close-btn {
position: absolute;
right: 3px;
top: 3px;
line-height: 30px;
width: 30px;
text-align: center;
font-size: 14px;
color: #202020;
cursor: pointer;
z-index: 10;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
-webkit-transform: translateY(-50px);
-ms-transform: translateY(-50px);
transform: translateY(-50px);
}
.mobile-menu-visible .mobile-menu .close-btn {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.mobile-menu .close-btn:hover {
opacity: 0.50;
}
.mobile-menu .navigation {
position: relative;
width: 100%;
}
.mobile-menu .navigation li {
position: relative;
display: block;
border-bottom: 1px solid #2c2f37;
}
.mobile-menu .navigation li>ul>li:last-child {
border-bottom: none;
}
.mobile-menu .navigation li>ul>li:first-child {
border-top: 1px solid rgba(0, 0, 0, 0);
}
.mobile-menu .navigation li>a {
position: relative;
display: block;
line-height: 24px;
padding: 13px 55px;
font-size: 14px;
color: #eee;
text-transform: uppercase;
font-weight: 500;
font-family: var(--font-family-oswald);
}
.mobile-menu .navigation li>a:before {
position: absolute;
content: '';
background: #f58634;
height: 6px;
width: 6px;
left: 30px;
top: 23px;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
position: absolute;
right: 15px;
top: 0px;
width: 44px;
height: 44px;
text-align: center;
font-size: 16px;
line-height: 44px;
color: #f58634;
cursor: pointer;
z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn:after {
content: '';
position: absolute;
left: 0px;
top: 10px;
width: 1px;
height: 24px;
border-left: 1px solid rgba(0, 0, 0, 0.10);
}
.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
display: none;
}
.nav-overlay {
position: fixed;
top: 0;
left: 0;
bottom: 0;
z-index: 103;
width: 100%;
display: none;
background: rgba(20, 20, 20, 0.70);
overflow: hidden;
-webkit-transform: translate3d(0, 0, 0);
cursor: none;
}
/* ========== Left Panel ============= */
.left-panel {
position: absolute;
left: 0;
width: 90px;
bottom: 0;
z-index: 999;
background: #ffffff;
padding: 40px 0;
}
.left-panel .content-wrap {
position: relative;
}
/* ========== Left Panel Two ============= */
.left-panel-two {
position: fixed;
width: 320px;
top: 0;
left: 0;
bottom: 0;
z-index: 99999;
background: #1c1f26;
padding: 0 30px;
}
.left-panel-two .logo {
position: relative;
text-align: center;
margin-top: 50px;
margin-bottom: 55px;
}
.left-panel-two .main-header {
background: transparent;
}
.left-panel-two .mobile-menu.sidemenu {
pointer-events: auto;
padding-right: 0;
top: 330px;
bottom: 0;
height: auto;
}
.left-panel-two .mobile-menu.sidemenu ::-webkit-scrollbar {
width: 6px;
}
.left-panel-two .mobile-menu.sidemenu ::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px #292121;
background: #292121;
}
.left-panel-two .mobile-menu.sidemenu ::-webkit-scrollbar-thumb {
background: rgb(66, 66, 66);
-webkit-box-shadow: inset 0 0 6px rgb(66, 66, 66);
}
.left-panel-two .mobile-menu.sidemenu ::-webkit-scrollbar-thumb:window-inactive {
background: rgb(66, 66, 66);
}
.left-panel-two .mobile-menu.sidemenu .menu-box {
display: block;
top: 0;
bottom: 0;
position: relative;
max-height: 400px;
border-top: 1px solid #2c2f37;
}
.left-panel-two .navbar-btn-wrap {
background-image: url(../images/icons/menu.png);
background-repeat: no-repeat;
background-position: center;
height: 130px;
width: 130px;
margin: 0 auto;
line-height: 160px;
}
.left-panel-two .anim-menu-btn {
left: 5px;
}
.left-panel-two .anim-menu-btn__icon {
color: var(--theme-color);
}
.left-panel-two .anim-menu-btn:before {
content: '';
}
.left-panel-two .about-block {
margin-top: 50px;
margin-bottom: 20px;
}
.left-panel-two .about-block .about-image {
margin-bottom: 20px;
}
.left-panel-two .about-block .text {
margin-bottom: 25px;
}
.left-panel-two .language-switcher li a {
color: #6a6d73;
}
.left-panel-two .language-switcher span {
font-size: 18px;
color: #6a6d73;
}
.left-panel-two .language-switcher {
border: 0px;
margin-bottom: 10px;
}
.left-panel-two .copy-right-text {
font-size: 14px;
font-family: var(--font-family-oswald);
color: #6a6d73;
text-transform: uppercase;
margin-bottom: 80px;
}
.page-outer-box .shape-bottom {
position: absolute;
left: 30px;
bottom: 0;
width: 260px;
height: 70px;
z-index: 99999;
}
.page-outer-box .shape-bottom:before {
position: absolute;
content: '';
left: -5px;
right: 0px;
bottom: 0;
height: 70px;
background-image: url(../images/icons/pattern-3.jpg);
background-repeat: no-repeat;
}
/* ========== Left Panel Three ============= */
.left-panel-three {
position: fixed;
width: 100px;
top: 100px;
left: 0;
bottom: 200px;
z-index: 99999;
background: #1c1f26;
padding: 0 30px;
overflow: hidden;
}
.left-panel-three .top-content {
position: absolute;
top: 0;
left: 0;
height: 40%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
background: #16191f;
}
.left-panel-three .top-content h5 {
color: #6a6d73;
font-size: 13px;
text-transform: uppercase;
padding-left: 40px;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
position: relative;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
left: 40px;
font-weight: 500;
letter-spacing: 2px;
}
.left-panel-three .bottom-content {
position: absolute;
bottom: 0;
left: 0;
width: 100px;
height: 60%;
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;
}
.left-panel-three .video-box a {
position: relative;
color: #fff;
font-size: 24px;
display: block;
}
.left-panel-three .video-box a:before {
position: absolute;
content: '';
background: rgba(255, 255, 255, 0.1);
height: 60px;
width: 1px;
top: -80px;
left: 50%;
margin-left: -.5px;
}
.left-panel-three .video-box a:after {
position: absolute;
content: '';
background: rgba(255, 255, 255, 0.1);
height: 60px;
width: 1px;
bottom: -80px;
left: 50%;
margin-left: -.5px;
}
.left-panel-three .video-box {
position: relative;
width: 66px;
height: 66px;
line-height: 56px;
border: 5px solid #463d30;
border-radius: 50%;
text-align: center;
background: var(--theme-color);
}
/* ========== Left Panel Four ============= */
.left-panel-four {
position: fixed;
width: 80px;
top: 00px;
left: 0;
bottom: 0;
z-index: 99999;
background: #fff;
padding: 0 30px;
}
.left-panel-four .top-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.left-panel-four .navbar-btn-wrap {
background: transparent;
}
.left-panel-four .anim-menu-btn {
color: var(--theme-color);
left: -4px;
margin-top: 40px;
}
.left-panel-four .anim-menu-btn:before {
color: #999;
left: -6px;
top: 37px;
letter-spacing: 1px;
}
.left-panel-four .mobile-menu.sidemenu {
pointer-events: auto;
padding-right: 0;
top: 0;
bottom: 0;
height: auto;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: #1c1f26;
}
.left-panel-four .mobile-menu.sidemenu ::-webkit-scrollbar {
width: 6px;
}
.left-panel-four .mobile-menu.sidemenu ::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px #292121;
background: #292121;
}
.left-panel-four .mobile-menu.sidemenu ::-webkit-scrollbar-thumb {
background: rgb(66, 66, 66);
-webkit-box-shadow: inset 0 0 6px rgb(66, 66, 66);
}
.left-panel-four .mobile-menu.sidemenu ::-webkit-scrollbar-thumb:window-inactive {
background: rgb(66, 66, 66);
}
.left-panel-four .mobile-menu.sidemenu .outer-box-two {
position: relative;
width: 100%;
}
.left-panel-four .mobile-menu.sidemenu .outer-box-two .logo {
margin-bottom: 30px;
}
.left-panel-four .mobile-menu.sidemenu .menu-box {
display: block;
top: 0;
bottom: 0;
position: relative;
max-height: 400px;
border-top: 1px solid rgba(67, 69, 72, 0);
/* background: #1f2125; */
}
.left-panel-four .top-content ul.link-menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
position: relative;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
margin-top: 340px;
left: -2px;
}
.left-panel-four .top-content ul.link-menu:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 2px;
width: 20px;
top: 10px;
left: -30px;
}
.left-panel-four .top-content ul.link-menu li {
margin-right: 25px;
}
.left-panel-four .top-content ul.link-menu li a {
color: #999;
font-size: 14px;
font-family: var(--font-family-oswald);
text-transform: uppercase;
letter-spacing: 2px;
}
.left-panel-four .bottom-content {
position: absolute;
left: 0;
bottom: -87px;
}
.left-panel-four .link-btn {
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
position: relative;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
/* ========== Right Panel ============= */
.right-panel {
position: absolute;
right: 0;
top: 0;
width: 90px;
bottom: 0;
z-index: 9999;
background: #f4f4f4;
}
.right-panel:before {
position: absolute;
content: '';
background: #fff;
left: 0;
bottom: 0;
height: 190px;
width: 100%;
}
.right-panel .content-wrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.right-panel h5 {
position: absolute;
-webkit-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
-ms-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
transform: rotate(-90deg) translateX(-50%) translateY(-50%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
left: 50%;
top: 50%;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
padding-right: 60px;
padding-left: 60px;
color: #1c1f26;
font-size: 12px;
font-weight: 600;
letter-spacing: 5px;
text-transform: uppercase;
margin-top: -95px;
}
.right-panel h5:before {
position: absolute;
content: '';
right: 0;
top: 7px;
width: 45px;
height: 1px;
background: #f58634;
}
.right-panel h5:after {
position: absolute;
content: '';
left: 0;
top: 7px;
width: 45px;
height: 1px;
background: #f58634;
}
/* ========== Right Panel Two ============= */
.right-panel-two {
position: absolute;
right: 0;
top: 80px;
width: 70px;
bottom: 70px;
z-index: 9999;
background: #1c1f26;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.right-panel-two .social-media {
position: relative;
margin-left: 13px;
margin-top: 30px;
padding-top: 80px;
}
.right-panel-two .social-media:before {
position: absolute;
content: "\f127";
font-family: Flaticon;
font-size: 25px;
color: var(--theme-color);
top: 0;
left: 9px;
}
.right-panel-two .social-media li {
position: relative;
-webkit-transform: rotate(-90deg) translateX(-100%);
-ms-transform: rotate(-90deg) translateX(-100%);
transform: rotate(-90deg) translateX(-100%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
height: 157px;
}
.right-panel-two .social-media li a:after {
position: absolute;
content: '';
background: #2c2f37;
height: 1px;
width: 30px;
top: 21px;
right: -29px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.right-panel-two .social-media li a:hover:after {
background: var(--theme-color);
}
.right-panel-two .social-media li a {
position: relative;
color: #6a6d73;
font-size: 14px;
font-family: var(--font-family-oswald);
text-transform: uppercase;
padding: 8px 20px;
border: 1px solid #2c2f37;
display: inline-block;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
letter-spacing: 1px;
min-width: 125px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.right-panel-two .social-media li a:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-color: var(--theme-color);
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transform-origin: top right;
-ms-transform-origin: top right;
transform-origin: top right;
-webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
-webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
-webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
-o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
/* easeInOutQuint */
}
.right-panel-two .social-media li a:hover:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
-webkit-transform-origin: bottom left;
-ms-transform-origin: bottom left;
transform-origin: bottom left;
}
.right-panel-two .social-media li a:hover {
color: #fff;
}
.right-panel-two .social-media li a .icon {
color: var(--theme-color);
position: relative;
display: inline-block;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
margin-left: 5px;
}
.right-panel-two .social-media li a:hover .icon {
color: #fff;
}
.right-panel-two .social-media li a span {
position: relative;
}
/* ========== Right Panel Three ============= */
.right-panel-three {
position: absolute;
right: 0;
top: 100px;
width: 100px;
bottom: 100px;
z-index: 9999;
background: #1c1f26;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
/* ========= Top Panel =========== */
.top-panel {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 80px;
z-index: 9999;
}
.top-panel .dark-bg {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 50px;
background: #1c1f26;
}
.top-panel .outer-box {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
float: right;
background: var(--theme-color);
}
.top-panel .search-box-two .outer-search-box {
margin: 0;
padding: 20px 15px;
border-right: 1px solid rgba(255, 255, 255, 0.35);
margin-right: 30px;
}
.top-panel .contact-info-one li {
padding: 26.5px 0;
padding-right: 30px;
border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.top-panel .search-box-two .outer-search-box .seach-toggle:hover,
.top-panel .search-box-two .outer-search-box .seach-toggle.active {
color: #fff;
}
/* ========= Top Panel Two =========== */
.top-panel-two {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100px;
z-index: 9999;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
background: #1c1f26;
}
.top-panel-two .logo {
position: relative;
padding: 26.5px 50px;
padding-right: 120px;
background: #16191f;
}
.top-panel-two .nav-outer {
position: absolute;
right: 325px;
}
.top-panel-two .right-content {
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;
padding-right: 100px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.top-panel-two .main-menu .navigation>li>a {
color: #6a6d73;
}
.top-panel-two .main-menu .navigation>li:hover>a,
.top-panel-two .main-menu .navigation>li.current>a {
color: var(--theme-color);
}
.top-panel-two .main-menu .navigation>li.dropdown:before {
position: absolute;
content: "";
right: -6px;
left: auto;
top: 50%;
background: #6a6d73;
width: 9px;
height: 1px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.top-panel-two .main-menu .navigation>li.dropdown:after {
position: absolute;
content: "";
right: -2px;
top: 50%;
background: #6a6d73;
width: 1px;
height: 9px;
margin-top: -4px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.top-panel-two .main-menu .navigation>li:hover:before,
.top-panel-two .main-menu .navigation>li.current:before {
background: var(--theme-color);
}
.top-panel-two .main-menu .navigation>li:hover:after,
.top-panel-two .main-menu .navigation>li.current:after {
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.top-panel-two .main-menu .navigation>li {
margin-right: 35px;
}
.top-panel-two .language-switcher {
margin-right: 0;
padding-right: 0;
border-right: 0px;
border-left: 1px solid rgba(209, 209, 209, 0.15);
padding-left: 20px;
}
.top-panel-two .language-switcher li a {
color: #6a6d73;
}
.top-panel-two .language-switcher li:last-child a {
padding-right: 0px;
}
.top-panel-two .anim-menu-btn {
margin-right: 80px;
top: 3px;
color: var(--theme-color);
}
.top-panel-two .anim-menu-btn:before {
right: -158px;
}
.top-panel-two .nav-inner {
opacity: 0;
}
/* ========= Top Panel Three =========== */
.top-panel-three {
position: absolute;
top: 20px;
left: 80px;
right: 0;
height: 100px;
z-index: 9999;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.top-panel-three .left-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.top-panel-three .logo {
position: relative;
padding: 20px 0px;
margin-left: 60px;
margin-right: 40px;
}
.top-panel-three .language-switcher {
border: 0;
border-left: 1px solid rgba(255, 255, 255, 0.25);
padding-right: 0;
margin-right: 0;
padding-left: 30px;
}
.top-panel-three .language-switcher li a {
color: #fff;
}
.top-panel-three .right-content {
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;
padding-right: 100px;
}
.top-panel-three .right-content .hint {
position: relative;
font-size: 14px;
font-weight: 500;
color: #fff;
font-family: var(--font-family-oswald);
text-transform: uppercase;
}
.top-panel-three .social-media {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: 20px;
margin-right: 45px;
z-index: 9;
}
.top-panel-three .social-media li {
position: relative;
margin-right: 20px;
}
.top-panel-three .social-media li a:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 25px;
width: 25px;
border-radius: 50%;
left: 50%;
margin-left: -12.5px;
top: 0;
opacity: 0;
visibility: hidden;
z-index: -1;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.top-panel-three .social-media li a:hover:before {
opacity: 1;
visibility: visible;
}
.top-panel-three .social-media li:last-child {
margin-right: 0px;
}
.top-panel-three .social-media li a {
position: relative;
font-size: 14px;
color: #ffffff4f;
text-transform: capitalize;
font-family: var(--font-family-oswald);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.top-panel-three .social-media li a:hover {
color: #fff;
}
/* ========= Bottom Panel =========== */
.bottom-panel {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 70px;
background: #1c1f26;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
z-index: 99;
}
.bottom-panel .text {
font-size: 14px;
text-transform: uppercase;
font-family: var(--font-family-oswald);
padding-left: 16px;
border-left: 2px solid var(--theme-color);
}
.bottom-panel .right-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-right: 70px;
}
.bottom-panel .swiper-counter {
position: relative;
right: 0;
bottom: 0;
margin-left: 70px;
margin-right: 10px;
line-height: 30px;
}
.bottom-panel .slide-progress-container {
position: relative;
width: 360px;
bottom: 0;
}
.bottom-panel .swiper-counter div#current {
font-size: 24px;
font-weight: 400;
color: var(--theme-color);
}
.bottom-panel .swiper-counter div#total {
font-weight: 400;
color: #6a6d73;
}
.bottom-panel .swiper-counter div {
font-family: var(--font-family-oswald);
}
.banner-slider-nav.style-two {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-left: 20px;
}
.banner-slider-nav.style-two .banner-slider-control {
position: relative;
font-size: 14px;
color: #6a6d73;
border: 2px solid #2c2f37;
height: 40px;
width: 40px;
border-radius: 50%;
line-height: 36px;
text-align: center;
margin: 0 5px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
cursor: pointer;
}
.banner-slider-nav.style-two .banner-slider-control:hover {
color: #fff;
background-color: var(--theme-color);
border-color: var(--theme-color);
}
/* Style Three */
.banner-slider-nav.style-three {
position: absolute;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.banner-slider-nav.style-three .banner-slider-control {
position: relative;
font-size: 14px;
color: #6a6d73;
background: #1c1f26;
height: 215px;
width: 100px;
line-height: 36px;
text-align: center;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
cursor: pointer;
transition: .5s ease;
}
.banner-slider-nav.style-three .banner-slider-control:hover {
color: #fff;
background-color: var(--theme-color);
border-color: var(--theme-color);
}
.banner-slider-nav.style-three .banner-slider-control:before {
position: absolute;
content: '';
background: #16191f;
width: 100px;
height: 100px;
left: 0;
bottom: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-nav.style-three .banner-slider-control:hover:before {
background: var(--theme-color)
}
.banner-slider-nav.style-three .banner-slider-control span {
position: absolute;
display: inline-block;
-webkit-transform: rotate(-90deg) translateX(-16%) translateY(-50%);
-ms-transform: rotate(-90deg) translateX(-16%) translateY(-50%);
transform: rotate(-90deg) translateX(-16%) translateY(-50%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
padding: 0 40px;
left: 50%;
bottom: 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
font-size: 14px;
font-weight: 500;
font-family: var(--font-family-oswald);
text-transform: uppercase;
color: #fff;
letter-spacing: 2px;
}
.banner-slider-nav.style-three .banner-slider-control span:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 20px;
width: 2px;
right: 28px;
top: 9px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-nav.style-three .banner-slider-control:hover span:before {
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
background: #fff;
}
/* ========= Bottom Panel Two =========== */
.bottom-panel-two {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
z-index: 99999;
}
.bottom-panel-two .panel-bg {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 46px;
background: #1c1f26;
}
.bottom-panel-two .left-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 180px;
background: #1c1f26;
/* z-index: 9; */
}
.bottom-panel-two .right-content {
padding-right: 150px;
}
.bottom-panel-two .copy-right-text {
position: relative;
font-size: 14px;
color: #6a6d73;
font-family: var(--font-family-oswald);
text-transform: uppercase;
margin: 11px 0;
padding-left: 25px;
z-index: 9;
}
.bottom-panel-two .copy-right-text:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 2px;
width: 20px;
left: 0;
top: 11px;
}
/* Contact Info One */
.contact-info-three {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
z-index: 9;
}
.contact-info-three li {
padding: 36.5px 0;
padding-right: 50px;
border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-three li+li {
margin-left: 50px;
}
.contact-info-three li a {
position: relative;
color: #fff;
font-family: var(--font-family-oswald);
font-size: 14px;
text-transform: uppercase;
}
.contact-info-three li a i {
margin-right: 5px;
font-size: 18px;
color: var(--theme-color);
}
.contact-info-three li a span {
position: relative;
color: #6a6d73;
}
.bottom-panel-two .social-media {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: 50px;
margin-right: 45px;
z-index: 9;
}
.bottom-panel-two .social-media li {
position: relative;
padding-right: 24px;
margin-right: 20px;
}
.bottom-panel-two .social-media li:before {
position: absolute;
content: '';
background: #373b43;
height: 6px;
width: 6px;
right: 0;
top: 9px;
}
.bottom-panel-two .social-media li:last-child:before {
display: none;
}
.bottom-panel-two .social-media li:last-child {
padding-right: 0px;
margin-right: 0px;
}
.bottom-panel-two .social-media li a {
font-size: 14px;
color: #6a6d73;
text-transform: uppercase;
font-family: var(--font-family-oswald);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.bottom-panel-two .social-media li a:hover {
color: var(--theme-color);
}
.bottom-panel-two .search-box-two {
position: relative;
margin-right: 0px;
background: var(--theme-color);
z-index: 9;
}
.bottom-panel-two .search-box-two .outer-search-box {
padding: 30px 16px;
margin-left: 0px;
}
.bottom-panel-two .search-box-two .outer-search-box .seach-toggle:hover,
.bottom-panel-two .search-box-two .outer-search-box .seach-toggle.active {
color: #fff;
}
.bottom-panel-two .search-box-two .search-box.now-visible {
bottom: 100%;
top: auto;
}
.bottom-panel-two .search-box-two .search-box {
top: auto;
bottom: 120%;
}
/* ========= Bottom Panel Three =========== */
.bottom-panel-three {
position: absolute;
bottom: 0;
left: 80px;
right: 0;
height: 68px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-bottom: 2px solid var(--theme-color);
z-index: 9999;
}
.bottom-panel-three .left-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
/*==== Search Box ====*/
.bottom-panel-three .search-box {
margin-left: 80px;
}
.bottom-panel-three .search-box .main-search-form {
position: relative;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.bottom-panel-three .search-box input {
width: 215px;
height: 35px;
background: #fff0;
color: #888;
font-size: 14px;
font-weight: 400;
border-bottom: 1px solid #ffffff80;
}
.bottom-panel-three .search-box .search-btn {
position: absolute;
right: 0;
top: 0;
z-index: 9999;
background: transparent;
color: #ffffff;
font-size: 16px;
}
.bottom-panel-three .search-box .search-btn:before {
position: absolute;
content: '';
width: 1px;
height: 64px;
right: -20px;
bottom: -25px;
}
.bottom-panel-three .copy-right-text {
position: relative;
font-size: 14px;
color: #fff;
font-family: var(--font-family-oswald);
text-transform: uppercase;
margin: 15px 0;
margin-right: 60px;
padding-left: 25px;
z-index: 9;
}
.bottom-panel-three .copy-right-text:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 2px;
width: 20px;
left: 0;
top: 11px;
}
/* ========= Menu Bar Style =========== */
/* -------------------------------- 
Title: Animated Menu Button
Descr: A menu button w/ a morphing icon
-------------------------------- */
.navbar-btn-wrap {
position: relative;
background: #1c1e25;
text-align: center;
}
.anim-menu-btn {
width: var(--anim-menu-btn-size);
height: var(--anim-menu-btn-size);
background: transparent;
color: #fff;
position: relative;
}
.anim-menu-btn:before {
position: absolute;
content: 'MENU';
font-size: 12px;
font-weight: 600;
color: #fff;
top: 8px;
left: -60px;
letter-spacing: 5px;
}
.anim-menu-btn__icon {
position: relative;
display: block;
font-size: var(--anim-menu-btn-icon-size);
width: 1em;
height: var(--anim-menu-btn-icon-stroke);
color: var(--color-contrast-high);
background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
background-image: -o-linear-gradient(currentColor, currentColor);
background-image: linear-gradient(currentColor, currentColor);
background-repeat: no-repeat;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.anim-menu-btn__icon::before,
.anim-menu-btn__icon::after {
content: '';
position: absolute;
top: 0;
left: 0px;
height: 100%;
width: 100%;
background-image: inherit;
border-radius: inherit;
}
.anim-menu-btn__icon--close {
background-size: 100% 100%;
will-change: transform, background-size;
-webkit-transition: background-size 0.2s, -webkit-transform 0.2s;
transition: background-size 0.2s, -webkit-transform 0.2s;
-o-transition: transform 0.2s, background-size 0.2s;
transition: transform 0.2s, background-size 0.2s;
transition: transform 0.2s, background-size 0.2s, -webkit-transform 0.2s;
}
.anim-menu-btn:active .anim-menu-btn__icon--close {
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9);
}
.anim-menu-btn__icon--close::before,
.anim-menu-btn__icon--close::after {
will-change: inherit;
-webkit-transition: inherit;
-o-transition: inherit;
transition: inherit;
}
.anim-menu-btn__icon--close::before {
-webkit-transform: translateY(-0.25em) rotate(0);
-ms-transform: translateY(-0.25em) rotate(0);
transform: translateY(-0.25em) rotate(0);
}
.anim-menu-btn__icon--close::after {
-webkit-transform: translateY(0.25em) rotate(0);
-ms-transform: translateY(0.25em) rotate(0);
transform: translateY(0.25em) rotate(0);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close {
background-size: 0% 100%;
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::before {
-webkit-transform: translateY(0) rotate(45deg);
-ms-transform: translateY(0) rotate(45deg);
transform: translateY(0) rotate(45deg);
}
.anim-menu-btn--state-b .anim-menu-btn__icon--close::after {
-webkit-transform: translateY(0) rotate(-45deg);
-ms-transform: translateY(0) rotate(-45deg);
transform: translateY(0) rotate(-45deg);
}
.main-header .header-column {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
/*==== Search Box ====*/
.main-header .search-box {
margin-left: 80px;
}
.main-header .search-box .main-search-form {
position: relative;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.main-header .search-box input {
width: 215px;
height: 35px;
background: #fff;
color: #888;
font-size: 14px;
font-weight: 400;
border-bottom: 1px solid #e0e0e0;
}
.main-header .search-box .search-btn {
position: absolute;
right: 40px;
top: 0;
z-index: 9999;
background: transparent;
color: #999999;
font-size: 16px;
}
.main-header .search-box .search-btn:before {
position: absolute;
content: '';
background: #e0e0e0;
width: 1px;
height: 64px;
right: -20px;
bottom: -25px;
}
/*==== Search Box ====*/
.main-header .search-box-two {
position: relative;
margin-right: 60px;
}
.search-box-two .outer-search-box {
position: relative;
display: inline-block;
float: left;
-webkit-transition: all 500ms ease 100ms;
-o-transition: all 500ms ease 100ms;
transition: all 500ms ease 100ms;
padding: 15px 0;
margin-left: 20px;
}
.search-box-two .outer-search-box .seach-toggle {
position: relative;
display: block;
color: #ffffff;
font-size: 16px;
line-height: 40px;
cursor: pointer;
text-align: center;
height: 40px;
width: 40px;
border-radius: 3px;
margin: 0;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.search-box-two .outer-search-box .seach-toggle:hover,
.search-box-two .outer-search-box .seach-toggle.active {
color: var(--theme-color);
}
.search-box-two .search-box {
position: absolute;
top: 120%;
right: 0%;
background: #1c1f26;
opacity: 0;
padding: 20px;
-webkit-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
visibility: hidden;
z-index: 100;
margin-left: 0;
}
.search-box-two .search-box.now-visible {
top: 100%;
opacity: 1;
visibility: visible;
z-index: 100;
}
.search-box-two .search-box .form-group {
position: relative;
padding: 0px;
margin: 0px;
width: 100%;
min-width: 250px;
}
.search-box-two .search-box .form-group input[type="search"] {
background: #ffffff none repeat scroll 0 0;
border: 1px solid #1f1f23;
color: #000;
display: block;
font-size: 13px;
line-height: 24px;
position: relative;
-webkit-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
width: 100%;
height: 45px;
padding-left: 15px;
padding-right: 50px;
}
.search-box-two .search-box .form-group input[type="search"]:focus {
border-color: #f5f5f5;
}
.search-box-two .search-box .form-group button,
.search-box-two .search-box .form-group input[type="submit"] {
position: absolute;
right: 0;
top: 0;
display: block;
cursor: pointer;
background: #1f1f23;
color: #fff;
font-size: 13px;
height: 45px;
line-height: 45px;
width: 45px;
-webkit-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
}
.search-box-two .search-box .form-group button:hover,
.search-box-two .search-box .form-group input:focus+button {
color: #222222;
background: #f5f5f5;
}
/*================================================
Sticky Header
==================================================*/
.sticky-header {
position: fixed;
visibility: hidden;
opacity: 0;
left: 0px;
top: 0px;
width: 100%;
padding: 0px 0px;
z-index: 0;
background: #ffffff;
border-bottom: 1px solid #f1f1f1;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.sticky-header .logo {
/* padding: 10px 0px; */
width: 130px;
}
.fixed-header .sticky-header {
z-index: 99999;
opacity: 1;
visibility: visible;
}
.main-header .sticky-header .main-menu .navigation>li {
margin-right: 0px;
margin: 0px;
padding: 0;
}
.main-header .sticky-header .main-menu .navigation>li>a {
color: #1c1f26;
padding: 20px 15px;
line-height: 30px;
font-size: 14px;
font-weight: 500;
min-height: 0px;
background: none;
border: 0px;
margin-right: 0px;
text-transform: uppercase;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.main-header .sticky-header .main-menu .navigation>li:hover>a,
.main-header .sticky-header .main-menu .navigation>li.current>a,
.main-header .sticky-header .main-menu .navigation>li.current-menu-item>a {
opacity: 1;
color: var(--theme-color);
}
.wrapper-box {
position: absolute;
top: 0px;
left: 360px;
right: 100px;
bottom: 80px;
background: #1c1e25;
}
.wrapper-box.style-two {
left: 100px;
}
/* Main Header Link BTN */
.main-header .link-btn {
position: relative;
}
.main-header .link-btn .theme-btn {
position: relative;
font-size: 14px;
text-transform: uppercase;
padding: 4px 0;
padding-left: 40px;
border-bottom: 1px solid #e0e0e0;
margin-right: 80px;
color: #1c1f26;
}
.main-header .link-btn .theme-btn:hover {
color: #f58634;
}
.main-header .link-btn .theme-btn:before {
position: absolute;
content: '';
background: #e0e0e0;
width: 1px;
height: 64px;
left: 20px;
bottom: -15px;
}
.main-header .link-btn .theme-btn span {
position: relative;
font-size: 12px;
color: #999;
padding-left: 18px;
margin-right: 10px;
}
.main-header .link-btn .theme-btn span:after {
position: absolute;
content: '';
background: #e0e0e0;
width: 20px;
height: 1px;
left: 0px;
bottom: 7px;
}
/* Nav Right Option */
.nav-right-option {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
background: #f4f4f4;
padding: 20px 50px;
}
.language-switcher {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
/* padding: 10px 0; */
padding-right: 5px;
margin-right: 20px;
border-right: 1px solid #dcdcdc;
}
.language-switcher span {
/* font-size: 30px; */
color: var(--theme-color);
margin-right: 10px;
position: relative;
top: 10px;
}
.language-switcher li {
position: relative;
}
.language-switcher li a {
font-size: 14px;
}
.language-switcher li a {
position: relative;
font-size: 14px;
color: #1c1f26;
font-family: var(--font-family-oswald);
padding-right: 12px;
}
.language-switcher li.active a {
font-size: 18px;
color: #274259;
}
.language-switcher li a::before {
position: absolute;
content: '/';
font-size: 18px;
color: var(--theme-color);
bottom: 0px;
right: 2px;
}
.language-switcher li:last-child a:before {
display: none;
}
.cart-btn {
position: relative;
font-size: 30px;
color: #222;
}
span.input-group-btn-vertical {
display: none;
}
input.quantity-spinner.form-control {
width: 90px;
line-height: 2.3em;
text-align: center;
font-family: var(--font-family-oswald);
font-weight: 500;
}
.cart-middle .update-cart .btn-style-one:after {
background: #fff;
}
.cart-btn .cart-icon {
position: relative;
}
.cart-btn .item-count {
position: absolute;
right: -13px;
top: -4px;
height: 20px;
width: 20px;
line-height: 20px;
text-align: center;
border-radius: 50%;
font-size: 12px;
color: #fff;
background: var(--theme-color);
}
/*** 
====================================================================
Banner Section
====================================================================
***/
.banner-section {
position: relative;
}
.three-item-carousel,
.banner-slider {
position: relative;
height: 100% !important;
z-index: 9;
}
.banner-section .swiper-slide {
position: relative;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.banner-section .swiper-slide:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-color: #000000;
opacity: 0.2;
content: "";
}
.banner-section .content-outer {
position: relative;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
height: 100%;
width: 100%;
display: table;
vertical-align: middle;
}
.banner-section .content-box {
position: relative;
display: table-cell;
vertical-align: middle;
padding: 240px 0 300px;
}
.banner-section .content-box .inner {
position: relative;
width: 100%;
opacity: 0;
-webkit-transform: translateX(100px);
-ms-transform: translateX(100px);
transform: translateX(100px);
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.banner-section .swiper-slide-active .content-box .inner {
opacity: 1;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.banner-section .content-box .inner:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-repeat: repeat;
background-position: center;
content: "";
}
.banner-section .content-box h1 {
position: relative;
font-size: 60px;
line-height: 70px;
color: #ffffff;
font-weight: 700;
text-transform: uppercase;
opacity: 0;
visibility: hidden;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
font-family: var(--font-family-oswald);
margin-bottom: 30px;
}
.banner-section .swiper-slide-active .content-box h1 {
opacity: 1;
visibility: visible;
-webkit-transition-delay: 800ms;
-o-transition-delay: 800ms;
transition-delay: 800ms;
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.banner-section h4 {
position: relative;
display: block;
font-size: 16px;
line-height: 1.2em;
color: #ffffff;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 30px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
font-family: var(--font-family-oswald);
padding-bottom: 20px;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
.banner-section .swiper-slide-active h4 {
opacity: 1;
visibility: visible;
-webkit-transition-delay: 1200ms;
-o-transition-delay: 1200ms;
transition-delay: 1200ms;
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.banner-section h4:before {
position: absolute;
content: '';
bottom: 1px;
left: 0;
height: 1px;
width: 100%;
background: #fff;
}
.banner-section h4:after {
position: absolute;
content: '';
bottom: 0;
left: 0;
height: 3px;
width: 60px;
background: #f58634;
}
.banner-section h4.style-two {
padding-bottom: 0px;
}
.banner-section h4.style-two:after,
.banner-section h4.style-two:before {
display: none;
}
.banner-section .content-box .text {
position: relative;
font-size: 18px;
line-height: 1.2em;
color: #ffffff;
font-weight: 400;
letter-spacing: 0.02em;
opacity: 0;
visibility: hidden;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-transform: translateX(-50px);
-ms-transform: translateX(-50px);
transform: translateX(-50px);
}
.banner-section .swiper-slide-active .text {
opacity: 1;
visibility: visible;
-webkit-transition-delay: 1600ms;
-o-transition-delay: 1600ms;
transition-delay: 1600ms;
-webkit-transform: translateX(0px);
-ms-transform: translateX(0px);
transform: translateX(0px);
}
.banner-section .link-box {
padding-top: 40px;
-webkit-transform: scaleY(0);
-ms-transform: scaleY(0);
transform: scaleY(0);
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-transition-delay: 2000ms;
-o-transition-delay: 2000ms;
transition-delay: 2000ms;
-webkit-transform-origin: bottom;
-ms-transform-origin: bottom;
transform-origin: bottom;
}
.banner-section .swiper-slide-active .link-box {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.banner-section .link-box a {
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
/* Content Outer Two */
.banner-section .content-outer-two {
position: relative;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
height: 100%;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.banner-block-two {
position: relative;
padding-left: 60px;
margin-left: 160px;
margin-bottom: 180px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 1100ms ease;
-o-transition: all 1100ms ease;
transition: all 1100ms ease;
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
font-family: var(--font-family-oswald);
}
.banner-section .swiper-slide-active .banner-block-two {
opacity: 1;
visibility: visible;
-webkit-transition-delay: 900ms;
-o-transition-delay: 900ms;
transition-delay: 900ms;
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
}
.banner-block-two {
position: relative;
border: 1px solid #fff;
width: 100%;
max-width: 660px;
}
.banner-block-two .date {
position: absolute;
left: 0;
top: 0;
color: #fff;
font-size: 14px;
font-family: var(--font-family-oswald);
text-transform: uppercase;
-webkit-transform: rotate(-90deg) translateX(-50%) translateY(-0%);
-ms-transform: rotate(-90deg) translateX(-50%) translateY(-0%);
transform: rotate(-90deg) translateX(-50%) translateY(-0%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
top: 50%;
left: 0;
padding: 18px 0px;
}
.banner-block-two h1 {
position: relative;
font-size: 48px;
line-height: 60px;
color: #ffffff;
padding: 30px 35px;
font-weight: 700;
text-transform: uppercase;
border-top: 1px solid #fff;
border-left: 1px solid #fff;
}
.banner-block-two .link-btn {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.banner-block-two .theme-btn {
position: relative;
font-size: 16px;
font-family: var(--font-family-oswald);
font-weight: 500;
color: #fff;
padding: 15px 35px;
padding-left: 95px;
border-left: 1px solid #fff;
}
.banner-block-two .theme-btn:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 50px;
left: 30px;
top: 26px;
}
/* Banner Slider Option */
.banner-section .slide-option {
position: absolute;
right: 120px;
bottom: 10px;
min-width: 440px;
}
.slide-progress-container {
position: absolute;
height: 3px;
z-index: 3;
bottom: 30px;
right: 0;
left: 0;
}
.slide-progress-warp {
float: left;
position: relative;
height: 1px;
background: rgba(255, 255, 255, 0.41);
z-index: 10;
bottom: 0;
width: 100%;
}
.slide-progress {
position: absolute;
top: 50%;
left: 0;
height: 3px;
border-radius: 6px;
margin-top: -2px;
width: 0%;
max-width: 100%;
background: #f58634;
}
.banner-slider-nav.style-one {
position: absolute;
left: 50%;
bottom: 80px;
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;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.banner-slider-nav.style-one:after {
position: absolute;
content: "\f11a";
font-family: Flaticon;
font-size: 80px;
color: #c4c4c4;
}
.banner-slider-nav.style-one:before {
position: absolute;
content: '';
background: #f4f4f4;
height: 50px;
width: 50px;
left: -5px;
top: 6px;
border-radius: 50%;
}
.banner-slider-control-wrap {
position: absolute;
bottom: 0px;
top: 0;
right: 0;
z-index: 100;
width: 100%;
}
.banner-slider-control-wrap.style-two {
position: relative;
width: auto;
color: #fff;
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;
}
.banner-slider-nav.style-one .banner-slider-control {
font-weight: 700;
font-size: 11px;
color: transparent;
cursor: pointer;
width: 40px;
height: 30px;
line-height: 30px;
text-transform: uppercase;
letter-spacing: 2px;
position: relative;
text-align: center;
z-index: 5;
}
.banner-slider-nav.style-one .banner-slider-control.banner-slider-button-next {
top: 12px;
}
.banner-slider-nav.style-one .banner-slider-control.banner-slider-button-prev {
top: -12px;
}
.banner-slider-nav.style-one .banner-slider-control:before {
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 0;
width: 100%;
z-index: 1;
-webkit-transition: all 200ms linear;
-webkit-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.banner-slider-control-wrap .left-side {
position: relative;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 60px;
}
.banner-slider-nav.style-one .banner-slider-control span {
position: relative;
z-index: 2;
}
.banner-slider-nav.style-one .banner-slider-control i {
-webkit-transition: all 200ms linear;
-o-transition: all 200ms linear;
transition: all 200ms linear;
-webkit-transition-delay: 0.3s;
-o-transition-delay: 0.3s;
transition-delay: 0.3s;
padding: 0 0 0 1px;
}
.banner-slider-nav.style-one .banner-slider-control.banner-slider-button-prev i {
padding: 0 0px 0 0;
}
.banner-slider-pagination {
position: absolute;
right: 60px;
top: 50%;
margin-right: 0;
z-index: 999;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.banner-slider-pagination .swiper-pagination-bullet {
width: 10px;
height: 10px;
display: block;
margin-bottom: 20px;
border-radius: 0;
background: none;
position: relative;
opacity: 1;
background: #fff;
}
.banner-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
background: var(--theme-color);
}
.banner-slider-pagination.style-two {
right: 100px;
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:after {
content: '01';
position: absolute;
left: -60px;
right: 0;
top: -5px;
line-height: 20px;
color: var(--theme-color);
letter-spacing: 2px;
font-size: 12px;
font-weight: 600;
-webkit-transform: scale(0.5);
-ms-transform: scale(0.9);
transform: scale(0.9);
-webkit-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
font-family: var(--font-family-oswald);
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-pagination.style-two .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.banner-slider-pagination.style-two .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
opacity: 1;
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(2):after {
content: '02';
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(3):after {
content: '03';
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(4):after {
content: '04';
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(5):after {
content: '05';
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(6):after {
content: '06';
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(7):after {
content: '07';
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:nth-child(8):after {
content: '08';
}
.banner-slider-pagination.style-two .swiper-pagination-bullet:before {
position: absolute;
content: '';
background: var(--theme-color);
width: 30px;
height: 1px;
right: 18px;
top: 5px;
opacity: 0;
}
/* Style Three */
.banner-slider-pagination.style-three {
right: 0;
width: 100px;
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:after {
content: '01';
position: absolute;
right: 20px;
top: -7px;
line-height: 20px;
color: var(--theme-color);
letter-spacing: 2px;
font-size: 14px;
font-weight: 600;
-webkit-transform: scale(0.5);
-ms-transform: scale(0.9);
transform: scale(0.9);
-webkit-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
font-family: var(--font-family-oswald);
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-pagination.style-three .swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.banner-slider-pagination.style-three .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
opacity: 1;
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:nth-child(2):after {
content: '02';
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:nth-child(3):after {
content: '03';
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:nth-child(4):after {
content: '04';
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:nth-child(5):after {
content: '05';
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:nth-child(6):after {
content: '06';
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:nth-child(7):after {
content: '07';
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:nth-child(8):after {
content: '08';
}
.banner-slider-pagination.style-three .swiper-pagination-bullet:before {
position: absolute;
content: '';
background: #2f333b;
width: 6px;
height: 6px;
right: 50%;
top: 0;
margin-right: -3px;
}
.banner-slider-pagination.style-three .swiper-pagination-bullet {
width: 70px;
margin: 0 auto;
margin-bottom: 15px;
border-bottom: 1px solid #2f333b;
background: transparent;
padding-bottom: 25px;
}
.banner-slider-pagination.style-three .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
background: var(--theme-color);
margin-right: 8px;
}
/* Swiper Counter */
.swiper-counter {
position: absolute;
font-weight: 700;
font-size: 12px;
color: #999;
right: -20px;
bottom: 32px;
z-index: 9;
line-height: 50px;
display: inline-block;
}
.swiper-counter div {
position: relative;
top: 0;
width: 32px;
height: 32px;
line-height: 32px;
display: inline-block;
font-size: 14px;
font-weight: 600;
color: #fff;
font-family: var(--font-family-oswald);
}
.swiper-counter div#current {
margin-right: 16px;
font-size: 30px;
}
.swiper-counter div#total {
right: 6px;
}
.swiper-counter div#total:before {
content: '/';
position: absolute;
left: -12px;
width: 6px;
height: 2px;
top: -4px;
font-size: 24px;
}
.banner-section .mouse-btn-down {
position: absolute;
left: 50%;
bottom: 30px;
width: 120px;
color: #fff;
font-size: 14px;
height: 104px;
cursor: pointer;
background: url(../images/icons/arrow-down.png) center top no-repeat;
z-index: 20;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
text-align: center;
padding-top: 65px;
}
.banner-section .mouse-btn-down:before {
position: absolute;
content: '';
background: #fff;
height: 5px;
width: 5px;
border-radius: 50%;
top: 5px;
left: 50%;
margin-left: -2px;
}
/*======= Contentbox Two =======*/
.banner-section .content-box-two {
position: absolute;
left: 0;
top: 0;
bottom: 80px;
width: 100%;
z-index: 999;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
padding: 60px;
}
.banner-section .content-box-two:before {
position: absolute;
content: '';
left: 0px;
top: 1px;
width: 100%;
height: 100%;
background-image: -ms-linear-gradient( 90deg, rgba(21, 23, 28, 0.90) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner-section .content-box-two h3 {
color: #fff;
font-size: 26px;
font-family: var(--font-family-oswald);
width: 100%;
}
.banner-section .content-box-two h3 a {
color: #fff;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-section .content-box-two h3 a:hover {
color: var(--theme-color);
}
.banner-section .content-box-two h3 .shape {
position: absolute;
right: 0;
top: 5px;
height: 21px;
width: 20px;
border: 1px solid var(--theme-color);
}
.banner-section .content-box-two h3 .shape:before {
position: absolute;
content: '';
background: var(--theme-color);
width: 20px;
height: 1px;
right: 10px;
top: 9px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-section .content-box-two:hover h3 .shape:before {
right: -10px;
}
/*** 
====================================================================
Banner Section Two
====================================================================
***/
.banner-section-two {
position: relative;
}
/* Banner Block One */
.banner-block-one {
position: relative;
height: 100vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.banner-block-one .inner-box {
position: relative;
padding-left: 70px;
}
.banner-block-one h4 {
position: absolute;
font-size: 14px;
color: #fff;
text-transform: uppercase;
padding: 0 95px;
left: 0;
bottom: -5px;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
letter-spacing: 2px;
}
.banner-block-one h4:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 75px;
left: 0;
top: 5px;
}
.banner-block-one h4:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 75px;
right: 0;
top: 5px;
}
.banner-block-one h1 {
position: relative;
font-size: 72px;
color: #fff;
font-weight: 700;
padding-top: 20px;
text-transform: uppercase;
margin-bottom: 25px;
}
.banner-block-one h1:before {
position: absolute;
content: '';
background: var(--theme-color);
left: 0;
top: 0;
width: 70px;
height: 2px;
}
.banner-block-one .text {
position: relative;
color: #fff;
margin-bottom: 30px;
}
.banner-block-one .link-btn {
position: relative;
}
/*======= Video Background ==========*/
.page-background {
position: fixed;
overflow: hidden;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #ffffff;
}
.jquery-background-video-wrapper {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.jquery-background-video-wrapper .overlay {
position: absolute;
background: rgba(11, 12, 18, 0.60);
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*** 
====================================================================
Fun Fact Section
====================================================================
***/
.funfact-section {
position: relative;
padding: 90px 0 100px;
}
.funfact-section .title {
position: absolute;
top: 50%;
left: 0;
line-height: 170px;
font-size: 200px;
color: #f4f4f3;
font-family: var(--font-family-londrina);
text-transform: uppercase;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.funfact-section .funfact-wrapper {
position: relative;
}
.funfact-section .swiper-slide:before {
position: absolute;
content: '';
background: #e7e7e7;
height: 100%;
width: 1px;
top: 0;
right: 0;
opacity: 0;
-webkit-transition: .3s;
-o-transition: .3s;
transition: .3s;
}
.funfact-section .swiper-slide.swiper-slide-active:before {
opacity: 1;
}
.counter-block {
position: relative;
text-align: center;
}
.counter-block .count-box {
font-size: 20px;
font-family: var(--font-family-oswald);
color: #1c1f26;
margin-bottom: 20px;
}
.counter-block .prefix,
.counter-block .affix,
.counter-block .count-text {
font-size: 100px;
color: var(--theme-color);
font-family: var(--font-family-oswald);
line-height: 100px;
}
.counter-block .counter-title {
font-size: 20px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 11px;
}
.funfact-section .scroll-pagination {
position: absolute;
left: 15px;
bottom: 0;
right: 17%;
height: 30px;
margin-right: 250px;
}
.funfact-section .swiper-pagination {
position: absolute;
top: 14px;
left: 0;
background: #e7e7e7;
height: 1px;
width: 100%;
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.funfact-section .swiper-pagination:before,
.funfact-section .swiper-pagination:after {
position: absolute;
content: '';
height: 9px;
width: 9px;
border-radius: 50%;
top: -4px;
left: 0px;
background: var(--theme-color);
}
.funfact-section .swiper-pagination:after {
left: auto;
right: 0;
background: #e7e7e7;
}
.funfact-section .swiper-pagination-progressbar-fill {
background: var(--theme-color);
}
.funfact-section .scroll-pagination .text {
position: absolute;
right: -250px;
top: 0;
font-size: 18px;
font-family: var(--font-family-oswald);
color: var(--theme-color);
}
/*** 
====================================================================
Page Title
====================================================================
***/
.page-title {
position: relative;
padding: 260px 0;
background-repeat: no-repeat;
background-size: cover;
background-color: #1c1f26;
background-position: center;
}
.page-title.vh-100 {
height: calc(100vh - 90px);
}
.page-title:before {
position: absolute;
content: '';
background: #1c1f26;
left: 0;
top: 0;
height: 100%;
width: 40%;
}
.page-title .content-column {
position: relative;
}
.page-title .title {
position: absolute;
left: 160px;
top: 50%;
-webkit-transform: rotate(-90deg) translateX(-50%) translateY(0%);
-ms-transform: rotate(-90deg) translateX(-50%) translateY(0%);
transform: rotate(-90deg) translateX(-50%) translateY(0%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
color: #282b34;
font-size: 120px;
font-family: var(--font-family-londrina);
line-height: 120px;
text-transform: uppercase;
}
.page-title h1 {
position: relative;
font-size: 48px;
font-weight: 600;
color: #fff;
padding-bottom: 25px;
margin-bottom: 25px;
text-transform: uppercase;
}
.page-title h1:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 75px;
bottom: 0px;
left: 0;
}
.page-title .text {
color: #fff;
margin-bottom: 20px;
}
.page-title .content-column .theme-btn {
position: relative;
color: #fff;
font-weight: 600;
display: inline-block;
font-size: 14px;
font-family: var(--font-family-oswald);
text-transform: uppercase;
padding-left: 40px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.page-title .content-column .theme-btn:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 25px;
top: 12px;
left: 0;
}
.page-title .content-column .theme-btn:before {
position: absolute;
content: "\f10a";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: -0.5px;
left: 24px;
}
.page-title .content-column .theme-btn:hover {
color: var(--theme-color);
}
.page-title .scroll-btn {
position: absolute;
left: 40%;
bottom: 0;
background: #1c1f26;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
min-height: 90px;
z-index: 9;
}
.page-title .mouse-btn-down {
bottom: 30px;
width: 70px;
color: #fff;
font-size: 14px;
height: 90px;
cursor: pointer;
background: url(../images/icons/arrow-down.png) center center no-repeat;
z-index: 20;
text-align: center;
padding-top: 65px;
display: inline-block;
background-color: var(--theme-color);
}
.page-title .mouse-btn-down:before {
position: absolute;
content: '';
background: #fff;
height: 5px;
width: 5px;
border-radius: 50%;
top: 22px;
margin-left: -2px;
}
.page-title .back-to-home-btn {
position: relative;
color: #fff;
font-weight: 600;
display: inline-block;
font-size: 14px;
font-family: var(--font-family-oswald);
text-transform: uppercase;
padding: 11px 60px;
background-image: -ms-linear-gradient( 0deg, rgb(39, 43, 52) 0%, rgb(28, 31, 38) 100%);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
border-left: 2px solid var(--theme-color);
}
.page-title .back-to-home-btn:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 25px;
top: 22px;
left: 29px;
}
.page-title .back-to-home-btn:before {
position: absolute;
content: "\f10b";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: 9.5px;
left: 20px;
}
.page-title .back-to-home-btn:hover {
color: var(--theme-color);
}
.page-title .map-canvas {
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 60%;
}
/* Page Title Two */
.page-title-two {
position: relative;
padding: 340px 0;
background-repeat: no-repeat;
background-size: cover;
background-color: #1c1f26;
background-position: center;
}
.page-title-two.vh-100 {
height: calc(100vh - 90px);
}
.page-title-two h1 {
position: relative;
font-size: 48px;
font-weight: 600;
color: #fff;
text-transform: capitalize;
}
.page-title-two .bottom-content {
position: absolute;
bottom: 15px;
left: 0;
right: 0;
}
.page-title-two .bottom-content .outer-box {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.page-title-two .bottom-content .left-side {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 8px;
}
.page-title-two .bottom-content .date {
position: relative;
font-size: 14px;
font-weight: 500;
color: #ffffff;
font-family: var(--font-family-oswald);
text-transform: uppercase;
/* padding-right: 30px; */
margin-right: 30px;
line-height: 48px;
}
.page-title-two .bottom-content .date strong {
font-size: 48px;
font-weight: 600;
color: var(--theme-color);
}
.page-title-two .bottom-content .posts-tagg {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 7px;
}
.page-title-two .bottom-content .posts-tagg span {
position: relative;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
color: #fff;
margin-right: 5px;
}
.page-title-two .bottom-content .posts-tagg a {
color: #fff;
font-size: 16px;
}
.page-title-two .share-icon {
position: relative;
padding-right: 50px;
margin-bottom: 20px;
}
.page-title-two .share-btn {
background: #fff;
font-size: 14px;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
position: absolute;
right: 0;
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
cursor: pointer;
}
.page-title-two .share-icon.open .share-btn {
color: var(--theme-color);
}
.page-title-two .share-icon ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.page-title-two .share-icon.open ul {
opacity: 1;
visibility: visible;
}
.page-title-two .share-icon ul li {
margin-right: 5px;
}
.page-title-two .share-icon ul a {
font-size: 14px;
height: 50px;
width: 50px;
line-height: 48px;
text-align: center;
background: #fff;
border: 1px solid #f4f4f4;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
display: inline-block;
color: #999;
}
.page-title-two .share-icon ul a:hover {
color: var(--theme-color);
}
/*** 
====================================================================
Section Banner
====================================================================
***/
.section-banner {
position: absolute;
left: 0;
top: 0;
width: 30%;
height: 1080px;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.section-banner:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
content: "";
background-color: #000000;
opacity: 0.20;
}
.section-banner .title {
position: absolute;
display: block;
right: 0;
top: 50%;
margin-top: -100px;
font-size: 120px;
line-height: 1em;
color: #ffffff;
font-weight: 800;
text-transform: uppercase;
white-space: nowrap;
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg) translateX(50%);
-ms-transform: rotate(-90deg) translateX(50%);
transform: rotate(-90deg) translateX(50%);
}
/*** 
====================================================================
Section Title
====================================================================
***/
.sec-title {
position: relative;
margin-bottom: 50px;
}
.sec-title .sec-title-icon {
font-size: 48px;
color: var(--theme-color);
margin-bottom: 22px;
line-height: 50px;
}
.sec-title h4 {
position: relative;
color: #f58634;
font-size: 18px;
font-weight: 400;
text-transform: capitalize;
margin-bottom: 15px;
}
.sec-title.light h4 {
color: #f58634;
}
.sec-title h1 {
position: relative;
font-size: 40px;
line-height: 1.2em;
font-weight: 600;
text-transform: uppercase;
}
.sec-title h1 span {
color: var(--theme-color);
}
.sec-title.light h1 {
color: #fff;
}
.sec-title .text {
position: relative;
margin-top: 20px;
}
/*** 
====================================================================
About Section
====================================================================
***/
.about-section {
position: relative;
padding: 110px 0 90px;
}
.about-section .sec-title {
position: relative;
margin-bottom: 30px;
}
.about-section .image-wrap {
position: relative;
}
.about-section .image-wrap .link-btn {
position: absolute;
left: -160px;
bottom: 50px;
z-index: 9;
}
/*** 
====================================================================
Spacialization Section
====================================================================
***/
.specialization-section {
position: relative;
padding: 52px 0 151px 0;
}
.specialization-section::before{
content: '';
width: 100%;
height: 100%;
background-color: #000;
opacity: 0.7;
position: absolute;
top: 0;
left: 0;
}
.specializ-block {
position: relative;
}
.specializ-block .inner-box {
position: relative;
max-width: 750px;
padding: 30px;
margin: 0 auto;
}
.specializ-block .content {
position: relative;
background: #fff;
text-align: center;
padding: 40px 30px;
max-width: 320px;
}
.specializ-block h4 {
font-size: 20px;
font-weight: 600;
text-transform: uppercase;
margin-bottom: 20px;
}
.specializ-block .icon-box {
position: absolute;
left: -100px;
top: 50%;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
background: var(--theme-color);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 50px;
color: #fff;
padding: 15px;
}
.specializ-block .count {
position: absolute;
right: -125px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 200px;
font-family: var(--font-family-londrina);
color: #272c3c;
z-index: -1;
}
.specializ-block .link-btn {
position: absolute;
right: -45px;
bottom: 30px;
top: 154px;
}
.specializ-block .link-btn a {
font-size: 14px;
font-weight: 600;
font-family: var(--font-family-oswald);
padding-right: 110px;
color: #fff;
text-transform: uppercase;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.specializ-block .link-btn a:hover {
color: var(--theme-color);
}
.specializ-block .link-btn a:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 100px;
right: 0;
top: 11px;
}
.specializ-block .link-btn a:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 9px;
width: 9px;
right: 92px;
top: 7px;
border-radius: 50%;
}
.specialization-section .bottom-content {
position: relative;
font-size: 20px;
color: #fff;
font-weight: 500;
font-family: var(--font-family-oswald);
text-align: center;
margin-top: 60px;
}
.specialization-section .bottom-content a {
color: var(--theme-color);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.specialization-section .bottom-content a:hover {
text-decoration: underline;
}
/*** 
====================================================================
Spacialization Section Two
====================================================================
***/
.specialization-section-two {
position: relative;
padding: 110px 0 80px;
}
.specialization-section-two .section-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
max-height: 495px;
background-size: cover;
background-attachment: fixed;
}
.specialize-block-two .inner-box {
position: relative;
margin-bottom: 30px;
}
.specialize-block-two .image {
position: relative;
margin-top: 25px;
}
.specialize-block-two .image:before {
position: absolute;
content: '';
background: rgba(0, 0, 0, 0.5);
left: 0;
top: 0;
width: 100%;
height: 0%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.specialize-block-two .image img {
width: 100%;
}
.specialize-block-two .inner-box:hover .image:before {
height: 100%;
}
.specialize-block-two .icon-box {
position: absolute;
top: -25px;
right: -25px;
height: 60px;
width: 60px;
padding: 8px;
/* line-height: 90px; */
text-align: center;
background: #fff;
font-size: 40px;
color: var(--theme-color);
-webkit-box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.1);
box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.1);
-webkit-transition: 1s ease;
-o-transition: 1s ease;
transition: 1s ease;
-webkit-transition-delay: .5s;
-o-transition-delay: .5s;
transition-delay: .5s;
}
.specialize-block-two .inner-box:hover .icon-box {
top: 100%;
-webkit-transform: translateY(-110px);
-ms-transform: translateY(-110px);
transform: translateY(-110px);
}
.specialize-block-two .lower-content {
margin-top: 35px;
text-align: center;
}
.specialize-block-two h4 {
font-size: 20px;
font-weight: 600;
margin-bottom: 10px;
}
.specialize-block-two .text {
margin-bottom: 30px;
text-align: center;
}
.specialize-block-two .link-btn {
position: relative;
}
.specialize-block-two .link-btn:before {
position: absolute;
content: '';
background: #28435a;
left: 0;
width: 100%;
height: 1px;
top: 24.5px;
}
.specialize-block-two .link-btn:after {
position: absolute;
content: '';
background: var(--theme-color);
left: 0;
width: 100%;
height: 1px;
top: 24.5px;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.specialize-block-two .inner-box:hover .link-btn:after {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
}
.specialize-block-two .inner-box .theme-btn {
position: relative;
z-index: 1;
}
/*** 
====================================================================
Main Footer
====================================================================
***/
.main-footer {
position: relative;
}
.main-footer .footer-widget-wrap {
position: relative;
padding: 100px 0 70px;
}
.main-footer .footer-widget-wrap.border-shape {
border: 60px solid #f4f4f4;
border-bottom: 0px;
}
.main-footer .logo {
position: relative;
text-align: center;
}
.main-footer .logo:before {
position: absolute;
content: '';
background: #e7e7e7;
height: 1px;
width: 100%;
left: 0;
top: 30px;
}
.main-footer .logo .image {
position: relative;
background: #fff;
padding: 0 100px;
margin-bottom: 45px;
display: inline-block;
}
.main-footer .logo .image:before {
position: absolute;
content: '';
background: #e7e7e7;
height: 9px;
width: 9px;
left: 0px;
top: 26px;
border-radius: 50%;
}
.main-footer .logo .image:after {
position: absolute;
content: '';
background: #e7e7e7;
height: 9px;
width: 9px;
right: 0px;
top: 26px;
border-radius: 50%;
}
.footer-widget {
position: relative;
/* margin-bottom: 30px; */
}
.footer-widget:before {
position: absolute;
content: '';
background: #e7e7e7;
width: 1px;
right: 0;
top: 0;
bottom: 0;
}
.footer-widget:last-child:before {
display: none;
}
/* About Widget */
.about-widget {
position: relative;
}
.about-widget .text {
position: relative;
margin-bottom: 30px;
}
.about-widget .link-btn a {
position: relative;
font-size: 14px;
font-weight: 600;
font-family: var(--font-family-oswald);
text-transform: uppercase;
padding-left: 30px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
color: #1c1f26;
}
.about-widget .link-btn a:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 20px;
top: 12px;
left: 0;
}
.about-widget .link-btn a:hover {
color: var(--theme-color);
}
/* Post Widget */
.post-widget {
position: relative;
}
.post-widget .post {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 10px;
padding-bottom: 30px;
border-bottom: 1px solid #e7e7e7;
margin-bottom: 30px;
}
.post-widget .post:last-child {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
.post-widget .thumb {
position: relative;
overflow: hidden;
margin-right: 30px;
margin-bottom: 15px;
}
.post-widget img {
width: 100%;
-webkit-transition: all 8s cubic-bezier(0, 0, 0.2, 1);
-o-transition: all 8s cubic-bezier(0, 0, 0.2, 1);
transition: all 8s cubic-bezier(0, 0, 0.2, 1);
-webkit-transition-delay: .2s;
-o-transition-delay: .2s;
transition-delay: .2s;
display: block;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
.post-widget .thumb:hover img {
-webkit-transform: scale(1.4);
-ms-transform: scale(1.4);
transform: scale(1.4);
}
.post-widget .overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 40px 45px;
}
.post-widget .overlay:before {
position: absolute;
content: '';
background: #222;
left: 0;
top: 0;
right: 0;
bottom: 0;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transition: all .5s linear;
-o-transition: all .5s linear;
transition: all .5s linear;
}
.post-widget .thumb:hover .overlay:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
opacity: .75;
}
.post-widget .date {
position: relative;
font-size: 16px;
margin-bottom: 10px;
padding-left: 50px;
}
.post-widget .date:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 40px;
top: 12px;
left: 0;
}
.post-widget h4 {
font-size: 18px;
font-weight: 500;
color: #1c1f26;
}
.post-widget h4 a {
color: #1c1f26;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.post-widget h4 a:hover {
color: var(--theme-color);
}
/* Subscribe Widget */
.subscribe-widget {
position: relative;
}
.subscribe-widget .widget-wrap {
margin-left: 10px;
}
.subscribe-widget .text {
font-size: 18px;
font-family: var(--font-family-oswald);
margin-bottom: 30px;
color: #1c1f26;
}
.subscribe-widget input {
font-size: 16px;
height: 54px;
width: 100%;
padding: 0 20px;
margin-bottom: 25px;
border: 1px solid #e7e7e7;
color: #888;
}
/* Footer Bottom */
.footer-bottom {
position: relative;
background: #1c1f26;
}
.footer-bottom .footer-menu {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 22px 0;
border-bottom: 1px solid #2c2f37;
}
.footer-bottom .border-bottom {
border-bottom: 1px solid #2c2f37 !important;
}
.footer-bottom .footer-menu ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.footer-bottom .footer-menu li a {
font-size: 16px;
color: #6a6d73;
margin-right: 22px;
padding: 15px 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.footer-bottom .footer-menu li a:hover {
color: #fff;
}
.footer-bottom .copyright-text {
position: relative;
font-size: 16px;
color: #fff;
font-family: var(--font-family-oswald);
padding: 25px 0;
}
.footer-bottom .copyright-text a {
color: var(--theme-color);
}
/*** 
====================================================================
Main Footer Two
====================================================================
***/
.main-footer-two {
position: relative;
background: #274259;
}
.main-footer-two .footer-widget-wrap {
position: relative;
padding: 100px 0 70px;
}
.main-footer-two .footer-widget:before {
display: none;
}
.footer-widget-title {
margin-bottom: 23px;
margin-top: 16px;
}
.footer-widget-title h4 {
position: relative;
font-size: 20px;
font-weight: 500;
color: #fff;
padding-bottom: 15px;
text-transform: uppercase;
}
.footer-widget-title h4:before {
position: absolute;
content: '';
background: var(--theme-color);
left: 0;
bottom: 0;
width: 40px;
height: 4px;
}
/* About Widget Two */
.about-widget-two .logo {
    position: relative;
    margin-bottom: 12px;
    width: 200px;
}
.about-widget-two .text {
color: #a2a3a7;
}
/* Subscribe Widget Two */
.subscribe-widget-two .text {
color: #a2a3a7;
margin-bottom: 10px;
}
.subscribe-widget-two form {
position: relative;
}
.subscribe-widget-two input {
font-size: 16px;
height: 60px;
width: 100%;
padding: 0 20px;
border: 1px solid #2c2f37;
color: #888;
background: transparent;
}
.subscribe-widget-two button {
position: absolute;
right: 20px;
top: 18px;
background: transparent;
color: rgba(255, 255, 255, 0.45);
}
/* Instagram Widget */
.instagram-wrap {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 -1px;
padding-top: 5px;
}
.instagram-wrap .image {
padding: 0 1px;
margin-bottom: 2px;
}
.instagram-wrap .image img {
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.instagram-wrap .image a {
background: #fff;
display: inline-block;
}
.instagram-wrap .image a img{
width: 90px;
height: 90px;
}
.instagram-wrap .image a:hover img {
opacity: .3;
}
/* Footer Bottom Two */
.footer-bottom-two {
position: relative;
background: #22252c;
padding-top: 22px;
}
.footer-bottom-two .footer-bottom-wrap {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.footer-bottom-two .copy-right-text {
color: #d0cdcd;
font-size: 16px;
font-family: var(--font-family-oswald);
margin-bottom: 10px;
}
.footer-bottom-two .copy-right-text a {
color: var(--theme-color);
}
.footer-bottom-two .copy-right-text a:hover{
color: #fff;
}
.footer-bottom-two .social-media {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-right: 48px;
margin-bottom: 22px;
}
.footer-bottom-two .social-media:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 35px;
right: 0;
top: 11px;
}
.footer-bottom-two .social-media li {
position: relative;
padding-right: 24px;
margin-right: 20px;
}
.footer-bottom-two .social-media li:before {
position: absolute;
content: '';
background: #f58634;
height: 6px;
width: 6px;
right: 0;
top: 9px;
}
.footer-bottom-two .social-media li:last-child:before {
display: none;
}
.footer-bottom-two .social-media li:last-child {
padding-right: 0px;
margin-right: 0px;
}
.footer-bottom-two .social-media li a {
font-size: 14px;
color: #ffffff;
text-transform: uppercase;
font-family: var(--font-family-oswald);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.footer-bottom-two .social-media li a:hover {
color: var(--theme-color);
}
/*** 
====================================================================
Feature Section
====================================================================
***/
.feature-section {
position: relative;
padding: 110px 0;
}
/* Feature Block One */
.feature-block-one {
position: relative;
margin-top: 18px;
}
.feature-block-one:last-child {
margin-top: 0px;
}
.feature-block-one:before {
position: absolute;
content: '';
background: #e7e7e7;
height: 1px;
width: 100%;
bottom: 0px;
left: 0;
}
.feature-block-one:nth-child(even):before {
display: none;
}
.feature-block-one .inner-box {
position: relative;
padding: 48px 0;
padding-left: 150px;
}
.feature-block-one .inner-box:before {
position: absolute;
content: '';
background: #e7e7e7;
height: 1px;
width: 100%;
top: 0;
left: 0;
}
.feature-block-one:nth-child(even) .inner-box:before {
top: inherit;
bottom: 0;
}
.feature-block-one .inner-box:after {
position: absolute;
content: '';
background: #e7e7e7;
height: 100%;
width: 1px;
top: -18px;
left: 18px;
}
.feature-block-one:nth-child(even) .inner-box:after {
top: 18px;
}
.feature-block-one .icon {
position: absolute;
top: 52px;
left: 60px;
-webkit-transition: .7s ease;
-o-transition: .7s ease;
transition: .7s ease;
}
.feature-block-one .inner-box:hover .icon {
-webkit-transform: scale(-1) rotate(-180deg);
-ms-transform: scale(-1) rotate(-180deg);
transform: scale(-1) rotate(-180deg);
-webkit-transition: all 600ms ease;
-o-transition: all 600ms ease;
transition: all 600ms ease;
}
.feature-block-one h4 {
position: relative;
font-size: 20px;
font-weight: 500;
padding-top: 20px;
}
.feature-block-one h4:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 40px;
top: 0;
left: 0;
}
.feature-block-one .text {
font-size: 16px;
}
/* Feature Block One */
.feature-block-two {
position: relative;
margin-top: 18px;
}
.feature-block-two:last-child {
margin-top: 0px;
}
.feature-block-two:before {
position: absolute;
content: '';
background: #e7e7e7;
height: 1px;
width: 100%;
bottom: 0px;
left: 0;
}
.feature-block-two:nth-child(even):before {
display: none;
}
.feature-block-two .inner-box {
position: relative;
padding: 48px 0;
padding-right: 150px;
}
.feature-block-two .inner-box:before {
position: absolute;
content: '';
background: #e7e7e7;
height: 1px;
width: 100%;
top: 0;
left: 0;
}
.feature-block-two:nth-child(even) .inner-box:before {
top: inherit;
bottom: 0;
}
.feature-block-two .inner-box:after {
position: absolute;
content: '';
background: #e7e7e7;
height: 100%;
width: 1px;
top: -18px;
right: 18px;
}
.feature-block-two:nth-child(even) .inner-box:after {
top: 18px;
}
.feature-block-two .icon {
position: absolute;
top: 52px;
right: 60px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.feature-block-two .inner-box:hover .icon {
-webkit-transform: scale(-1) rotate(-180deg);
-ms-transform: scale(-1) rotate(-180deg);
transform: scale(-1) rotate(-180deg);
-webkit-transition: all 600ms ease;
-o-transition: all 600ms ease;
transition: all 600ms ease;
}
.feature-block-two h4 {
position: relative;
font-size: 20px;
font-weight: 500;
padding-top: 20px;
}
.feature-block-two h4:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 40px;
top: 0;
right: 0;
}
.feature-block-two .text {
font-size: 16px;
}
/* Single Item Carousel */
.feature-section .single-item-carousel {
position: relative;
width: auto;
margin: 0 auto;
margin-bottom: 74px;
max-width: 350px;
}
.feature-section .single-item-carousel:before {
position: absolute;
left: -20px;
top: -30px;
right: -20px;
bottom: -24px;
content: '';
background-image: url(../images/resource/mockup.png);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.feature-section .single-item-carousel .image img {
width: auto;
margin: 0 auto;
}
.feature-section .owl-dot-style-one .owl-dots {
position: relative;
margin-top: 0px;
top: 36px;
}
/***
==================================================================
Testimonial Section 
==================================================================
***/
.testimonial-section {
position: relative;
padding-bottom: 110px;
padding-top: 120px;
}
.testimonial-section:before {
position: absolute;
content: '';
background-color: #f4f4f4;
left: 0;
top: 0;
right: 0;
bottom: 220px;
}
.testimonial-section .testimonial-outer {
position: relative;
}
.testimonial-section .testimonial-outer:before {
position: absolute;
content: '';
border: 1px solid #e0e0e0;
left: 0;
top: 50px;
width: 100%;
bottom: -70px;
}
.testimonial-block .inner-box {
text-align: center;
}
.testimonial-block .quote {
position: relative;
font-size: 40px;
background: var(--theme-color);
color: #fff;
display: inline-block;
width: 100px;
height: 100px;
line-height: 100px;
margin-bottom: 125px;
}
.testimonial-block .quote:before {
position: absolute;
content: '';
background: var(--theme-color);
width: 1px;
height: 65px;
bottom: -95px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.testimonial-block .quote:after {
position: absolute;
content: '';
background: var(--theme-color);
width: 9px;
height: 9px;
border-radius: 50%;
bottom: -95px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.testimonial-block .text {
font-size: 24px;
line-height: 36px;
font-weight: 400;
color: #1c1f26;
margin: 0 auto;
margin-bottom: 35px;
max-width: 780px;
font-family: var(--font-family-oswald);
}
.testimonial-block .author-title {
position: relative;
font-size: 20px;
color: var(--theme-color);
font-weight: 500;
text-transform: uppercase;
display: inline-block;
font-family: var(--font-family-oswald);
padding-bottom: 70px;
}
.testimonial-block .author-title:before {
position: absolute;
content: '';
background: var(--theme-color);
width: 1px;
height: 30px;
left: 50%;
top: 42px;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.testimonial-section .testimonial-content {
cursor: -webkit-grab;
cursor: grab;
}
.testimonial-section .author-thumb {
position: relative;
cursor: pointer;
height: 81px;
width: 81px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.testimonial-section .author-thumb img {
-webkit-transform: scale(.7);
-ms-transform: scale(.7);
transform: scale(.7);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.testimonial-section .swiper-slide-thumb-active .author-thumb img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.testimonial-section .testimonial-thumbs {
max-width: 485px;
margin: 0 auto;
cursor: pointer;
margin-bottom: 70px;
}
.testimonial-section .swiper-nav-button {
display: none;
}
.testimonial-section .swiper-button-next,
.testimonial-section .swiper-button-prev {
background: transparent;
text-indent: 0;
background-image: none;
color: #fff;
font-size: 24px;
width: 62px;
height: 62px;
line-height: 62px;
border-radius: 50%;
text-align: center;
background: rgba(120, 120, 135, 0.1);
margin: 0;
-webkit-transform: translateY(-100%);
-ms-transform: translateY(-100%);
transform: translateY(-100%);
-webkit-transition: all .4s ease;
-o-transition: all .4s ease;
transition: all .4s ease;
}
.testimonial-section .swiper-button-next:hover,
.testimonial-section .swiper-button-prev:hover {
background: #fff;
color: #f57f4b;
}
.testimonial-section .left-title {
position: absolute;
font-family: var(--font-family-oswald);
-webkit-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
-ms-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
transform: rotate(-90deg) translateX(-50%) translateY(-50%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
top: 62%;
left: 40px;
}
.testimonial-section .left-title h5 {
font-size: 14px;
color: #c2c2c2;
font-weight: 600;
letter-spacing: 5px;
}
/* Style Two */
.testimonial-section.style-two {
position: relative;
padding-bottom: 110px;
padding-top: 120px;
background-repeat: no-repeat;
background-position: right center;
}
.testimonial-section.style-two:before {
position: absolute;
content: '';
background-color: #f4f4f4;
left: 0;
top: 0;
right: auto;
width: 50%;
bottom: 0px;
}
.testimonial-section.style-two:after {
position: absolute;
content: '';
background-image: url(../images/resource/circular.png);
background-repeat: no-repeat;
background-position: center;
left: 0;
top: 0;
right: auto;
width: 50%;
bottom: 0px;
}
.testimonial-section.style-two .testimonial-outer:before {
display: none;
}
.testimonial-section.style-two .testimonial-block .quote {
border: 2px solid var(--theme-color);
color: var(--theme-color);
background: transparent;
font-size: 48px;
}
/***
==================================================================
Testimonial Section Two
==================================================================
***/
.testimonial-section-two {
position: relative;
padding-bottom: 110px;
padding-top: 110px;
background: #274259;
}
.testimonial-section-two .auto-container {
max-width: 1230px;
}
/* Testimonial Block Two */
.testimonial-block-two .inner-box {
position: relative;
padding: 60px 20px;
text-align: center;
margin: 0 15px;
overflow: hidden;
}
.testimonial-block-two .author img {
width: auto;
border-radius: 50%;
margin: 0 auto;
margin-top: 50px;
margin-bottom: 20px;
}
.testimonial-block-two .quote {
font-size: 65px;
color: var(--theme-color);
margin-bottom: 23px;
line-height: 60px;
}
.testimonial-block-two .text {
font-size: 16px;
color: #b5b5b5;
margin-bottom: 20px;
position: relative;
text-align: justify;
}
.testimonial-block-two .rating {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 5px;
}
.testimonial-block-two .rating a {
font-size: 16px;
color: var(--theme-color);
margin-right: 5px;
}
.testimonial-block-two .author-title {
font-family: var(--font-family-oswald);
font-size: 18px;
font-weight: 500;
color: #fff;
text-transform: uppercase;
}
.testimonial-block-two .overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #22252d;
opacity: 0;
visibility: hidden;
-webkit-transition: .7s ease;
-o-transition: .7s ease;
transition: .7s ease;
-webkit-transform: translate(0px, 30px);
-ms-transform: translate(0px, 30px);
transform: translate(0px, 30px);
padding: 0px 15px;
}
.testimonial-block-two .inner-box:hover .overlay {
opacity: 1;
visibility: visible;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
.testimonial-block-two .overlay .quote {
position: absolute;
color: #2e3037;
font-size: 126px;
top: 50%;
left: 50%;
margin-bottom: 0;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin-top: 11px;
}
/***
==================================================================
News Section 
==================================================================
***/
.news-section {
position: relative;
/* padding-bottom: 110px; */
padding: 110px 0px 110px 0px;
}
.news-section .auto-container {
max-width: 1240px;
}
.news-block-one {
position: relative;
}
.news-block-one .inner-box {
position: relative;
margin: 0 15px;
padding: 30px 30px 25px;
border: 1px solid #e7e7e7;
}
.news-block-one .post-meta {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
border-bottom: 4px solid #e7e7e7;
padding-bottom: 20px;
margin-bottom: 25px;
margin-top: 10px;
z-index: 2;
}
.news-block-one .post-meta:before {
position: absolute;
content: '';
bottom: -4px;
left: 0;
width: 0%;
height: 4px;
background: var(--theme-color);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.news-block-one .inner-box:hover .post-meta:before {
width: 100%;
}
.news-block-one .date {
font-size: 14px;
font-family: var(--font-family-oswald);
font-weight: 500;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.news-block-one .date span {
color: var(--theme-color);
font-size: 48px;
font-weight: 600;
}
.news-block-one .author {
position: relative;
}
.news-block-one .author img {
height: 40px !important;
width: 40px !important;
border-radius: 50%;
}
.news-block-one .image {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
overflow: hidden;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: perspective(1200px) rotateX(-90deg) translateZ(-51px);
transform: perspective(1200px) rotateX(-90deg) translateZ(-51px);
}
.news-block-one .image:before {
position: absolute;
content: '';
background: #1c1f26;
opacity: .5;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: 1;
}
.news-block-one .inner-box:hover .image {
-webkit-transform: perspective(1200px) rotateX(0deg) translateZ(0px);
transform: perspective(1200px) rotateX(0deg) translateZ(0px);
opacity: 1;
-webkit-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
transition-delay: 0.2s;
}
.news-block-one .image img {
width: 100%;
-webkit-transition: all 8s cubic-bezier(0, 0, 0.2, 1);
-o-transition: all 8s cubic-bezier(0, 0, 0.2, 1);
transition: all 8s cubic-bezier(0, 0, 0.2, 1);
-webkit-transition-delay: .2s;
-o-transition-delay: .2s;
transition-delay: .2s;
display: block;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
.news-block-one .inner-box:hover .image img {
-webkit-transform: scale(1.4);
-ms-transform: scale(1.4);
transform: scale(1.4);
}
.news-block-one .category {
position: relative;
padding-left: 50px;
color: #888;
font-size: 16px;
margin-bottom: 10px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.news-block-one .category:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 40px;
left: 0;
top: 10px;
}
.news-block-one .lower-content {
position: relative;
z-index: 2;
}
.news-block-one h4 {
font-size: 20px;
font-weight: 500;
padding-bottom: 20px;
line-height: 32px;
border-bottom: 1px solid #e7e7e7;
margin-bottom: 20px;
}
.news-block-one h4 a {
color: #1c1f26;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.news-block-one h4 a:hover {
color: var(--theme-color);
}
.news-block-one .link-btn {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.news-block-one .link-btn .reply-btn {
position: relative;
font-size: 14px;
color: #888;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.news-block-one .link-btn .reply-btn:hover {
color: var(--theme-color);
}
.news-block-one .link-btn .reply-btn span {
margin-right: 5px;
font-size: 15px;
color: #222;
}
.news-block-one .inner-box:hover .category {
color: #6a6d73;
}
.news-block-one .inner-box:hover h4 a {
color: #fff;
}
.news-block-one .inner-box:hover .date {
color: #fff;
}
/*.feature-container {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
*/
.news-block-one .inner-box:hover .btn-style-four {
color: #fff;
}
.news-block-one .inner-box:hover .link-btn .reply-btn span {
color: var(--theme-color);
}
.news-block-one .inner-box:hover h4 {
border-color: #353942;
}
.news-section .owl-dot-style-three .owl-dots {
margin-top: 40px;
}
/***
==================================================================
Sponsors Section 
==================================================================
***/
.sponsors-section {
position: relative;
padding: 110px 0 80px;
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
}
.sponsors-section .image {
position: relative;
margin-bottom: 30px;
text-align: center;
}
.sponsors-section .image .overlay {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.sponsors-section .image:hover .overlay {
opacity: 0;
}
.sponsors-section .image img {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.sponsors-section .image:hover img {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
/***
==================================================================
Intro Section 
==================================================================
***/
.intro-section {
position: relative;
padding: 110px 0 80px;
}
.intro-section:before {
position: absolute;
content: '';
background: url(../images/resource/sketch.png) right no-repeat;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.intro-section .sec-title {
margin-bottom: 30px;
margin-top: 30px;
}
.intro-section .image-wrap {
position: relative;
padding-right: 40px;
padding-top: 40px;
text-align: right;
margin-bottom: 30px;
}
.intro-section .image-wrap:before {
position: absolute;
content: '';
left: 40px;
top: 0;
right: 0;
bottom: 40px;
background: url(../images/icons/pattern.jpg);
}
.intro-section .image-wrap .image {
position: relative;
z-index: 3;
}
.intro-section .image-wrap .image:nth-child(2) {
margin-top: -98px;
margin-bottom: -93px;
margin-right: 82px;
z-index: 2;
}
.intro-section .image-wrap .image:nth-child(3) {
z-index: 1;
margin-right: 42px;
}
.intro-section .image-wrap .image:before {
position: absolute;
content: '';
height: 1px;
width: 165px;
left: 0px;
top: 62px;
background: #f58634;
}
.intro-section .image-wrap .image:after {
position: absolute;
content: '';
height: 30px;
width: 1px;
left: 10px;
top: 45px;
background: #f58634;
}
.intro-section .image-wrap .image:nth-child(2):before {
left: inherit;
right: -122px;
top: 200px;
z-index: 3;
}
.intro-section .image-wrap .image:nth-child(2):after {
left: inherit;
right: -111px;
top: 190px;
}
.intro-section .image-wrap .image:nth-child(3):before,
.intro-section .image-wrap .image:nth-child(3):after {}
.intro-block {
margin-bottom: 30px;
}
.intro-block .list {
margin-bottom: 20px;
}
.intro-block .list li {
font-size: 16px;
margin-bottom: 10px;
}
.intro-block .list li span {
position: relative;
display: inline-block;
margin-right: 12px;
color: #f58634;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
}
.intro-block .signature {
margin-bottom: 10px;
}
.intro-block .author {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.intro-block .author-title {
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
margin-right: 8px;
}
.intro-block .designation {
font-size: 16px;
color: var(--theme-color);
position: relative;
margin-top: 3px;
}
.intro-block .designation a {
color: var(--theme-color);
}
/***
==================================================================
Projects Section 
==================================================================
***/
.projects-section {
position: relative;
background: #1c1f26;
padding: 110px 0 110px;
}
.projects-section:before {
position: absolute;
content: '';
background: url(../images/resource/overlay.png) center no-repeat;
left: 0;
top: 0;
height: 100%;
width: 100%;
}
.project-filter-btn {
position: relative;
margin-bottom: 50px;
right: -2px;
}
.projects-section .items-container {
margin: 0;
}
.projects-section-two .gallery-block,
.projects-section .gallery-block {
padding: 0px;
}
.gallery-block .image {
position: relative;
overflow: hidden;
}
.gallery-block img {
position: relative;
width: 100%;
display: block;
}
.gallery-block .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block:hover .overlay {
opacity: 1;
visibility: visible;
}
.gallery-block .overlay:before {
position: absolute;
content: '';
background: rgba(34, 34, 34, 0.8);
left: 0;
top: 0;
width: 100%;
height: 0%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block:hover .overlay:before {
height: 100%;
}
.gallery-block .caption-title {
position: absolute;
left: 0;
bottom: -60px;
width: 100%;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
padding: 18px 30px;
background: #fff;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block .caption-title a {
color: #1c1f26;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block .caption-title a:hover {
color: var(--theme-color);
}
.gallery-block:hover .caption-title {
bottom: 0;
}
.gallery-block .zoom-btn {
position: absolute;
top: 20px;
right: 20px;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 25px;
color: #1d2027;
background: #fff;
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block:hover .zoom-btn {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.gallery-block .zoom-btn a {
color: #1d2027;
}
.gallery-block .date {
position: absolute;
right: 20px;
bottom: 70px;
font-size: 14px;
font-family: var(--font-family-oswald);
color: #fff;
-webkit-transform: rotate(90deg) translateX(-50%) translateY(-50%);
-ms-transform: rotate(90deg) translateX(-50%) translateY(-50%);
transform: rotate(90deg) translateX(-50%) translateY(-50%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.gallery-block .date:before {
position: absolute;
content: '';
left: -40px;
top: 11px;
width: 30px;
height: 1px;
background: var(--theme-color);
}
.ui-selectmenu-button.ui-button {
background: transparent;
border-radius: 0px;
border-color: #2c2f37;
padding: 21px 30px;
width: auto;
min-width: 270px;
color: #fff;
font-size: 14px;
font-weight: 500;
font-family: var(--font-family-oswald);
text-transform: uppercase;
}
.ui-menu .ui-menu-item-wrapper {
padding: 10px 18px;
border-bottom: 1px solid #f4f4f4;
}
.ui-selectmenu-text {
position: relative;
overflow: visible;
}
.ui-selectmenu-text:after {
position: absolute;
content: "\f107";
font-size: 18px;
font-family: Fontawesome;
color: #1c1f26;
top: 0;
right: -18px;
z-index: 99;
}
.projects-section .ui-selectmenu-text:after {
color: #fff;
}
/***
==================================================================
Projects Section Two
==================================================================
***/
.projects-section-two {
position: relative;
background: #fff;
padding: 110px 0 110px;
}
.projects-section-two .auto-container {
position: relative;
}
.projects-section-two .top-content {
position: relative;
}
.projects-section-two .page-count {
position: absolute;
right: 0;
top: 32px;
font-size: 14px;
font-weight: 600;
color: #1c1f26;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.projects-section-two .page-count:before {
position: absolute;
content: '';
background: url(../images/resource/pattern.png);
right: -105px;
top: -50px;
width: 290px;
height: 290px;
}
.projects-section-two .page-count div {
color: inherit;
font-size: inherit;
height: inherit;
width: inherit;
font-weight: inherit;
}
.projects-section-two .page-count div#total:before {
display: none;
}
.projects-section-two .page-count div#current {
font-size: inherit;
margin-right: inherit;
}
.projects-section-two .project-filter-btn {
border: 1px solid #e7e7e7;
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;
right: 0;
margin-bottom: 50px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.08);
box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.08);
}
.projects-section-two .project-filter-btn.style-two {
max-width: 265px;
}
.projects-section-two .ui-selectmenu-button.ui-button {
color: #1c1f26;
font-size: 14px;
font-weight: 500;
font-family: var(--font-family-oswald);
border: 0px;
border-right: 1px solid #e7e7e7;
width: 24.8%;
min-width: auto;
}
.projects-section-two .ui-selectmenu-button.ui-button:last-child {
border-right: 0px;
}
/* Gallery Block Two */
.gallery-block-two {
margin-bottom: 50px;
}
.gallery-block-two .inner-box {
overflow: hidden;
position: relative;
padding-left: 25px;
}
.gallery-block-two .category {
position: absolute;
-webkit-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
-ms-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
transform: rotate(-90deg) translateX(-50%) translateY(-50%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
left: 8px;
top: 50%;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
font-family: var(--font-family-oswald);
letter-spacing: 2px;
color: #888888;
z-index: 99;
}
.gallery-block-two .category:before {
position: absolute;
content: '';
left: -40px;
top: 12px;
width: 30px;
height: 1px;
background: var(--theme-color);
z-index: 99;
}
.gallery-block-two .image {
position: relative;
overflow: hidden;
}
.gallery-block-two img {
position: relative;
width: 100%;
display: block;
}
.gallery-block-two .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-two:hover .overlay {
opacity: 1;
visibility: visible;
}
.gallery-block-two .overlay:before {
position: absolute;
content: '';
background: rgba(0, 0, 0, 0.8);
left: 0;
top: 0;
width: 100%;
height: 0%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-two:hover .overlay:before {
height: 100%;
}
.gallery-block-two .caption-title {
position: absolute;
left: 0;
bottom: 0;
right: 45px;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
padding: 18px 30px 0;
background: #fff;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
z-index: 9;
}
.gallery-block-two:hover .caption-title {
bottom: -60px;
}
.gallery-block-two .explore {
position: absolute;
top: 50%;
left: 50%;
background: #fff;
font-size: 14px;
font-weight: 600;
font-family: var(--font-family-oswald);
text-transform: uppercase;
height: 110px;
width: 110px;
text-align: center;
line-height: 23px;
padding: 32px 20px;
border-radius: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: inline-block;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-two .explore:hover {
color: var(--theme-color);
}
.gallery-block-two .zoom-btn {
position: absolute;
top: 30px;
right: 30px;
text-align: center;
font-size: 25px;
color: #ffffff;
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-two:hover .zoom-btn {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.gallery-block-two .zoom-btn a {
color: #fff;
}
.gallery-block-two .date {
position: absolute;
left: 30px;
bottom: 20px;
font-size: 14px;
font-family: var(--font-family-oswald);
color: #fff;
}
/* Banner Slider Nav Style Four */
.banner-slider-nav.style-four {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: 60px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
border-right: 1px solid #e7e7e7;
}
.banner-slider-nav.style-four div {
padding: 20px 40px;
border: 1px solid #e7e7e7;
border-right: 0px;
overflow: hidden;
text-transform: uppercase;
font-family: var(--font-family-oswald);
width: 33.333%;
font-size: 14px;
font-weight: 500;
color: #c2c2c2;
text-align: center;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-nav.style-four .text {
color: #1c1f26;
padding: 19px 40px;
}
.banner-slider-nav.style-four div.banner-slider-control {
cursor: pointer;
}
.banner-slider-nav.style-four div.banner-slider-control:hover {
color: var(--theme-color);
}
.banner-slider-nav.style-four div.banner-slider-control span {
position: relative;
}
.banner-slider-nav.style-four div.banner-slider-control.banner-slider-button-next span:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 20px;
top: 10.5px;
left: -40px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-nav.style-four div.banner-slider-control.banner-slider-button-next span:before {
position: absolute;
content: "\f10b";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: -1px;
left: -48px;
z-index: 9;
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-nav.style-four div.banner-slider-control.banner-slider-button-next:hover span:before {
opacity: 1;
}
.banner-slider-nav.style-four div.banner-slider-control.banner-slider-button-prev span:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 20px;
top: 10.5px;
right: -40px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-nav.style-four div.banner-slider-control.banner-slider-button-prev span:before {
position: absolute;
content: "\f10a";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: -1px;
right: -48px;
z-index: 9;
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.banner-slider-nav.style-four div.banner-slider-control.banner-slider-button-prev:hover span:before {
opacity: 1;
}
.banner-slider-pagination.style-four {
position: absolute;
right: -50px;
width: auto !important;
left: inherit !important;
bottom: inherit !important;
}
.banner-slider-pagination.style-four .swiper-pagination-bullet {
background: #222;
background: transparent;
border: 2px solid #d7d6d4;
margin-bottom: 10px;
}
.banner-slider-pagination.style-four .swiper-pagination-bullet.swiper-pagination-bullet-active {
border-color: var(--theme-color);
background: transparent;
}
/* Gallery Block Three */
.gallery-block-three {
margin-bottom: 50px;
}
.gallery-block-three .inner-box {
overflow: hidden;
position: relative;
padding-left: 25px;
}
.gallery-block-three .category {
position: absolute;
-webkit-transform: rotate(-90deg) translateX(60px) translateY(-50%);
-ms-transform: rotate(-90deg) translateX(60px) translateY(-50%);
transform: rotate(-90deg) translateX(60px) translateY(-50%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
left: 8px;
bottom: 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
font-family: var( --font-family-oswald);
letter-spacing: 2px;
color: #888888;
z-index: 99;
}
.gallery-block-three .category:before {
position: absolute;
content: '';
left: -40px;
top: 12px;
width: 30px;
height: 1px;
background: var(--theme-color);
z-index: 99;
}
.gallery-block-three .image {
position: relative;
overflow: hidden;
}
.gallery-block-three img {
position: relative;
width: 100%;
display: block;
}
.gallery-block-three .overlay {
position: absolute;
top: 30px;
left: 30px;
right: 30px;
bottom: 30px;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
-webkit-box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.6);
box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.6);
}
.gallery-block-three:hover .overlay {
opacity: 1;
visibility: visible;
}
.gallery-block-three .overlay:before {
position: absolute;
content: '';
left: 0;
top: 0;
width: 100%;
height: 0%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-three:hover .overlay:before {
height: 100%;
}
.gallery-block-three .caption-title {
position: relative;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
padding: 25px 0px 0;
background: #fff;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
z-index: 9;
}
.gallery-block-three .caption-title a {
color: #1c1f26;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-three .caption-title a:hover {
color: var(--theme-color);
}
.gallery-block-three .caption-title span {
float: right;
color: #bfbfbf;
font-size: 16px;
font-weight: 500;
}
.gallery-block-three .explore {
position: absolute;
top: 50%;
left: 50%;
background: #fff;
font-size: 14px;
font-weight: 600;
font-family: var(--font-family-oswald);
text-transform: uppercase;
height: 110px;
width: 110px;
text-align: center;
line-height: 23px;
padding: 32px 20px;
border-radius: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: inline-block;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-three .explore:hover {
color: var(--theme-color);
}
.gallery-block-three .zoom-btn {
position: absolute;
top: 30px;
width: 60px;
height: 60px;
line-height: 60px;
right: 30px;
text-align: center;
font-size: 25px;
background: #ffffff;
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-three:hover .zoom-btn {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.gallery-block-three .zoom-btn a {
color: #1c1f26;
}
.gallery-block-three .date {
position: absolute;
left: 30px;
bottom: 20px;
font-size: 14px;
font-family: var(--font-family-oswald);
color: #fff;
}
/***
==================================================================
Projects Section Three
==================================================================
***/
.projects-section-three {
position: relative;
background: #fff;
padding: 110px 0 80px;
}
.projects-section-three .auto-container {
max-width: 100%;
padding: 0;
}
/* Gallery Block Three */
.gallery-block-four {
margin-bottom: 30px;
}
.gallery-block-four .inner-box {
overflow: hidden;
position: relative;
padding-left: 25px;
}
.gallery-block-four .category {
position: absolute;
-webkit-transform: rotate(-90deg) translateX(60px) translateY(-50%);
-ms-transform: rotate(-90deg) translateX(60px) translateY(-50%);
transform: rotate(-90deg) translateX(60px) translateY(-50%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
left: 8px;
bottom: 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
font-family: var( --font-family-oswald);
letter-spacing: 2px;
color: #888888;
z-index: 99;
}
.gallery-block-four .category:before {
position: absolute;
content: '';
left: -40px;
top: 12px;
width: 30px;
height: 1px;
background: var(--theme-color);
z-index: 99;
}
.gallery-block-four .image {
position: relative;
overflow: hidden;
}
.gallery-block-four img {
position: relative;
width: 100%;
display: block;
}
.gallery-block-four .overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
-webkit-box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.6);
box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.6);
}
.gallery-block-four:hover .overlay {
opacity: 1;
visibility: visible;
}
.gallery-block-four .overlay:before {
position: absolute;
content: '';
left: 0;
top: 0;
width: 100%;
height: 0%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
background: rgba(0, 0, 0, 0.80);
}
.gallery-block-four:hover .overlay:before {
height: 100%;
}
.gallery-block-four .caption-title {
position: relative;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
padding: 25px 0px 0;
background: #fff;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
z-index: 9;
}
.gallery-block-four .caption-title a {
color: #1c1f26;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-four .caption-title a:hover {
color: var(--theme-color);
}
.gallery-block-four .caption-title span {
float: right;
color: #bfbfbf;
font-size: 16px;
font-weight: 500;
}
.gallery-block-four .explore {
position: absolute;
top: 50%;
left: 50%;
background: #fff;
font-size: 14px;
font-weight: 600;
font-family: var(--font-family-oswald);
text-transform: uppercase;
height: 110px;
width: 110px;
text-align: center;
line-height: 23px;
padding: 32px 20px;
border-radius: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: inline-block;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-four .explore:hover {
color: var(--theme-color);
}
.gallery-block-four .zoom-btn {
position: absolute;
top: 30px;
width: auto;
height: auto;
line-height: 30px;
right: 30px;
text-align: center;
font-size: 25px;
background: rgba(255, 255, 255, 0);
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-four:hover .zoom-btn {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.gallery-block-four .zoom-btn a {
color: #ffffff;
}
.gallery-block-four .date {
position: absolute;
left: 30px;
bottom: 20px;
font-size: 14px;
font-family: var(--font-family-oswald);
color: #fff;
}
/***
==================================================================
Projects Section Four
==================================================================
***/
.projects-section-four {
position: relative;
background: #fff;
padding: 110px 0 110px;
}
.projects-section-four .auto-container {
position: relative;
max-width: 100%;
}
.projects-section-four .top-content {
position: relative;
max-width: 1170px;
margin: 0 auto;
}
.projects-section-four .page-count {
position: absolute;
right: 0;
top: 60px;
font-size: 14px;
font-weight: 600;
color: #1c1f26;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.projects-section-four .page-count:before {
position: absolute;
content: '';
background: url(../images/resource/pattern.png);
right: -105px;
top: -90px;
width: 290px;
height: 290px;
}
.projects-section-four .page-count div {
color: inherit;
font-size: inherit;
height: inherit;
width: inherit;
font-weight: inherit;
}
.projects-section-four .page-count div#total:before {
display: none;
}
.projects-section-four .page-count div#current {
font-size: inherit;
margin-right: inherit;
}
.projects-section-four .project-filter-btn {
border: 1px solid #e7e7e7;
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;
right: 0;
margin-bottom: 60px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.08);
box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.08);
}
.projects-section-four .project-filter-btn.style-two {
max-width: 265px;
}
.projects-section-four .ui-selectmenu-button.ui-button {
color: #1c1f26;
font-size: 14px;
font-weight: 500;
font-family: var(--font-family-oswald);
border: 0px;
border-right: 1px solid #e7e7e7;
width: 24.8%;
}
.projects-section-four .ui-selectmenu-button.ui-button:last-child {
border-right: 0px;
}
/* Gallery Block Five */
.gallery-block-five {
padding: 0;
}
.gallery-block-five .inner-box {
overflow: hidden;
position: relative;
}
.gallery-block-five .category {
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
font-family: var(--font-family-oswald);
letter-spacing: 2px;
color: #888888;
z-index: 99;
background: #fff;
padding: 20px 30px 0;
display: table-caption;
}
.gallery-block-five .image {
position: relative;
overflow: hidden;
}
.gallery-block-five img {
position: relative;
width: 100%;
display: block;
}
.gallery-block-five .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
padding: 30px;
}
.gallery-block-five:hover .overlay {
opacity: 1;
visibility: visible;
}
.gallery-block-five .overlay:before {
position: absolute;
content: '';
background: rgba(0, 0, 0, 0.8);
left: 0;
top: 0;
width: 100%;
height: 0%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-five:hover .overlay:before {
height: 100%;
}
.gallery-block-five .content {
position: relative;
}
.gallery-block-five .caption-title {
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
padding: 18px 30px;
background: #fff;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
z-index: 9;
}
.gallery-block-five:hover .caption-title {}
.gallery-block-five .explore {
position: absolute;
top: 50%;
left: 50%;
background: #fff;
font-size: 14px;
font-weight: 600;
font-family: var(--font-family-oswald);
text-transform: uppercase;
height: 110px;
width: 110px;
text-align: center;
line-height: 23px;
padding: 32px 20px;
border-radius: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: inline-block;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-five .explore:hover {
color: var(--theme-color);
}
.gallery-block-five .zoom-btn {
position: absolute;
top: 30px;
right: 30px;
text-align: center;
font-size: 25px;
color: #ffffff;
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-five:hover .zoom-btn {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.gallery-block-five .zoom-btn a {
color: #fff;
}
.gallery-block-five .date {
position: absolute;
left: 30px;
bottom: 20px;
font-size: 14px;
font-family: var(--font-family-oswald);
color: #fff;
}
/*** 
====================================================================
Fullwidth Portfolio Section
====================================================================
***/
.portfolio-fullwidth {
position: relative;
padding: 110px 0px 0px;
overflow: hidden;
}
.portfolio-tabs {
position: relative;
}
.portfolio-tabs .tabs-header {
position: relative;
margin-bottom: 40px;
}
.portfolio-tabs .tabs-header .pull-left,
.portfolio-tabs .tabs-header .pull-right {
margin-bottom: 30px;
}
.portfolio-tabs .portfolio-tab-btns {
position: relative;
margin-right: 0px;
}
.portfolio-tabs .portfolio-tab-btns .p-tab-btn {
position: relative;
float: left;
line-height: 24px;
padding-right: 40px;
cursor: pointer;
color: #888;
font-weight: 700;
font-size: 13px;
margin-bottom: 10px;
text-transform: uppercase;
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;
}
.portfolio-tabs .portfolio-tab-btns .p-tab-btn:last-child {
padding-right: 0px;
}
.portfolio-tabs .portfolio-tab-btns .p-tab-btn.active-btn {
color: var(--theme-color);
}
.portfolio-tabs .owl-nav {
position: absolute;
right: 20.8%;
top: 0;
height: 100%;
background: #fff;
padding: 0 21px;
display: none;
}
.portfolio-tabs .p-tabs-content {
position: relative;
display: block;
}
.portfolio-tabs .p-tab {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: auto;
visibility: hidden;
}
.portfolio-tabs .p-tab.active-tab {
position: relative;
visibility: visible;
z-index: 5;
}
.portfolio-tabs .gallery-block-six .inner-box {
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
transition: all 0.7s ease;
-moz-transition: all 0.7s ease;
-webkit-transition: all 0.7s ease;
-ms-transition: all 0.7s ease;
-o-transition: all 0.7s ease;
}
.portfolio-tabs .active-tab .gallery-block-six .inner-box {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
}
.p-tab-wrapper {
position: relative;
margin-right: -230px;
}
/* Gallery Block Six */
.gallery-block-six {
margin-bottom: 50px;
}
.gallery-block-six .inner-box {
position: relative;
overflow: hidden;
}
.gallery-block-six .category {
position: absolute;
-webkit-transform: rotate(-90deg) translateX(0) translateY(0%);
-ms-transform: rotate(-90deg) translateX(0) translateY(0%);
transform: rotate(-90deg) translateX(0) translateY(0%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
left: 0;
top: 100%;
width: 100%;
padding: 28px 88px;
padding-right: 0;
font-size: 14px;
font-weight: 400;
text-transform: uppercase;
font-family: var( --font-family-oswald);
letter-spacing: 2px;
color: #6a6d73;
z-index: 99;
background: #1c1f26;
}
.gallery-block-six .category:before {
position: absolute;
content: '';
left: 40px;
top: 50%;
margin-top: -0.5px;
width: 30px;
height: 1px;
background: var(--theme-color);
z-index: 99;
}
.gallery-block-six .image {
position: relative;
overflow: hidden;
}
.gallery-block-six .image:before {
position: absolute;
content: '';
background: #1c1f26;
top: 0;
left: 0;
width: 80px;
height: 100%;
z-index: 9;
}
.gallery-block-six img {
position: relative;
width: 100%;
display: block;
}
.gallery-block-six .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-six:hover .overlay {
opacity: 1;
visibility: visible;
}
.gallery-block-six .overlay:before {
position: absolute;
content: '';
background: rgba(0, 0, 0, 0.8);
left: 0;
top: 0;
width: 100%;
height: 0%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-six:hover .overlay:before {
height: 100%;
}
.gallery-block-six .caption-title {
position: absolute;
left: 110px;
bottom: 30px;
right: 45px;
font-size: 20px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
z-index: 9;
color: #fff;
}
.gallery-block-six .caption-title a {
color: #fff;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-six .caption-title a:hover {
text-decoration: underline;
}
.gallery-block-six .explore {
position: absolute;
top: 50%;
left: 50%;
background: #fff;
font-size: 14px;
font-weight: 600;
font-family: var(--font-family-oswald);
text-transform: uppercase;
height: 110px;
width: 110px;
text-align: center;
line-height: 23px;
padding: 32px 20px;
border-radius: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
display: inline-block;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
margin-left: 40px;
}
.gallery-block-six .explore:hover {
color: var(--theme-color);
}
.gallery-block-six .zoom-btn {
position: absolute;
top: 30px;
right: 30px;
text-align: center;
font-size: 25px;
color: #ffffff;
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.gallery-block-six:hover .zoom-btn {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.gallery-block-two .zoom-btn a {
color: #fff;
}
.gallery-block-six .date {
position: absolute;
left: 30px;
bottom: 20px;
font-size: 14px;
font-family: var(--font-family-oswald);
color: #fff;
}
/***
==================================================================
Project Details 
==================================================================
***/
.project-details {
position: relative;
padding: 110px 0 80px;
}
.project-info-block {
position: relative;
}
.project-info-block h2 {
position: relative;
font-size: 30px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 25px;
}
.project-info-block .single-info+.single-info {
border-top: 1px solid #e7e7e7;
position: relative;
padding-top: 20px;
margin-top: 13px;
}
.project-info-block .single-info h5 {
font-size: 16px;
font-weight: 500;
margin-bottom: 5px;
}
.project-info-block .link-btn {
position: relative;
margin-top: 40px;
}
.project-info-block .share-icon {
position: absolute;
top: 0px;
right: 0;
padding-right: 50px;
}
.project-info-block .share-btn {
background: #fff;
font-size: 14px;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
position: absolute;
right: 0;
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
cursor: pointer;
}
.project-info-block .share-icon.open .share-btn {
color: var(--theme-color);
}
.project-info-block .share-icon ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.project-info-block .share-icon.open ul {
opacity: 1;
visibility: visible;
}
.project-info-block .share-icon ul li {
margin-right: 5px;
}
.project-info-block .share-icon ul a {
font-size: 14px;
height: 50px;
width: 50px;
line-height: 48px;
text-align: center;
background: #fff;
border: 1px solid #f4f4f4;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
display: inline-block;
color: #999;
}
.project-info-block .share-icon ul a:hover {
color: var(--theme-color);
}
.project-details .image-column {
position: relative;
height: 640px;
display: inline-block;
padding-left: 50px;
}
.project-details .swiper-container {
width: 100%;
height: 100%;
}
.project-details .swiper-scrollbar {
position: absolute;
top: 0;
left: 0;
background: #e7e7e7;
height: 100%;
width: 1px;
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.project-details .swiper-scrollbar-drag {
background: var(--theme-color);
}
.project-details .swiper-pagination {
position: absolute;
top: 0;
left: 0;
background: #e7e7e7;
height: 100%;
width: 1px;
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
.project-details .swiper-pagination:before,
.project-details .swiper-pagination:after {
position: absolute;
content: '';
height: 9px;
width: 9px;
border-radius: 50%;
top: 0px;
left: -4px;
background: var(--theme-color);
}
.project-details .swiper-pagination:after {
top: auto;
bottom: 0;
background: #e7e7e7;
}
.project-details .swiper-pagination-progressbar-fill {
background: var(--theme-color);
}
.project-details .image-column .text {
position: absolute;
content: '';
font-size: 13px;
color: #c2c2c2;
font-family: var(--font-family-oswald);
-webkit-transform: rotate(-90deg) translateX(-50%) translateY(0%);
-ms-transform: rotate(-90deg) translateX(-50%) translateY(0%);
transform: rotate(-90deg) translateX(-50%) translateY(0%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
left: 4px;
top: 50%;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
letter-spacing: 2px;
}
/***
==================================================================
Advantage Section 
==================================================================
***/
.advantage-section {
position: relative;
background-color: #1c1f26;
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
padding: 110px 0 110px;
}
.advantage-section:before {
position: absolute;
content: '';
background: #000;
left: 0;
top: 0;
height: 100%;
width: 100%;
opacity: .8;
}
.advantage-block .inner-box {
position: relative;
padding: 50px 38px;
border: 2px solid #4d535f;
margin-bottom: 30px;
}
.advantage-block:nth-child(even) .inner-box {
margin-top: 45px;
}
.advantage-block .icon-box {
font-size: 70px;
color: #fff;
margin-bottom: 50px;
line-height: 70px;
display: inline-block;
}
.advantage-block .inner-box:hover .icon-box {
-webkit-transform: scale(-1) rotate(-180deg);
-ms-transform: scale(-1) rotate(-180deg);
transform: scale(-1) rotate(-180deg);
-webkit-transition: all 600ms ease;
-o-transition: all 600ms ease;
transition: all 600ms ease;
}
.advantage-block h4 {
position: relative;
font-size: 20px;
font-weight: 500;
color: #fff;
padding-top: 20px;
text-transform: uppercase;
margin-bottom: 5px;
}
.advantage-block h4:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 42px;
left: 0;
top: 0;
}
.advantage-block .text {
color: #a1a3a5;
margin-bottom: 45px;
margin-top: 20px;
text-align: justify;
}
.advantage-block .theme-btn {
position: relative;
height: 60px;
width: 60px;
line-height: 60px;
text-align: center;
border: 1px solid #81adbe;
color: #fff;
font-size: 16px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.advantage-block .theme-btn:hover {
color: var(--theme-color);
}
.advantage-block .count {
position: absolute;
right: 36px;
bottom: 61px;
font-size: 50px;
color: #e9edf0;
font-family: 'Tourney', cursive;
}
/***
==================================================================
Our Team Section 
==================================================================
***/
.our-team-section {
position: relative;
padding: 110px 0 80px;
}
.our-team-section .auto-container {
position: relative;
}
.our-team-section .grey-bg {
position: absolute;
width: 33.333%;
top: -110px;
bottom: -80px;
}
.our-team-section .grey-bg:before {
position: absolute;
content: '';
/* ff3.6+ */
/* safari4+,chrome */
/* safari5.1+,chrome10+ */
background: -o-linear-gradient(180deg, rgba(244, 244, 244, 1) 0%, rgba(249, 249, 249, 1) 18%, rgba(255, 255, 255, 1) 39%);
/* opera 11.10+ */
/* ie10+ */
background: -webkit-gradient(linear, right top, left top, from(rgba(244, 244, 244, 1)), color-stop(18%, rgba(249, 249, 249, 1)), color-stop(39%, rgba(255, 255, 255, 1)));
background: -o-linear-gradient(right, rgba(244, 244, 244, 1) 0%, rgba(249, 249, 249, 1) 18%, rgba(255, 255, 255, 1) 39%);
background: linear-gradient(270deg, rgba(244, 244, 244, 1) 0%, rgba(249, 249, 249, 1) 18%, rgba(255, 255, 255, 1) 39%);
/* w3c */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f4f4f4', GradientType=1);
/* ie6-9 */
right: 33px;
top: 0;
height: 100%;
width: 200%;
}
.team-block-one .inner-box {
position: relative;
padding-left: 56px;
padding-top: 60px;
margin-bottom: 45px;
}
.team-block-one .inner-box:before {
position: absolute;
content: '';
left: 0;
top: 0;
width: 110px;
height: 110px;
border: 1px solid #274259;
}
.team-block-one .social-icon {
position: absolute;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 110px;
top: 22px;
left: 56px;
}
.team-block-one .social-icon:before {
position: absolute;
content: '';
left: 0;
top: 10px;
height: 1px;
width: 100px;
background: var(--theme-color);
-webkit-transform-origin: left;
-ms-transform-origin: left;
transform-origin: left;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.team-block-one .inner-box:hover .social-icon:before {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
}
.team-block-one .social-icon li {
margin: 0 10px;
}
.team-block-one .social-icon a {
color: #274259;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
-webkit-transform: translateY(50px);
-ms-transform: translateY(50px);
transform: translateY(50px);
display: inline-block;
opacity: 0;
visibility: hidden;
}
.team-block-one .social-icon a:hover {
color: var(--theme-color);
}
.team-block-one .inner-box:hover .social-icon a {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
opacity: 1;
visibility: visible;
}
.team-block-one .social-icon li:nth-child(even) a {
-webkit-transition-delay: .2s;
-o-transition-delay: .2s;
transition-delay: .2s;
}
.team-block-one .image {
position: relative;
margin-bottom: 25px;
}
.team-block-one .image:before {
position: absolute;
left: 0;
top: 0;
height: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.8);
content: "";
-webkit-transition: all 700ms ease;
-o-transition: all 700ms ease;
transition: all 700ms ease;
}
.team-block-one .inner-box:hover .image:before {
height: 100%;
}
.team-block-one .image img {
width: 100%;
}
.team-block-one .designation {
position: absolute;
-webkit-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
-ms-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
transform: rotate(-90deg) translateX(-50%) translateY(-50%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
left: 23px;
top: 50%;
color: #274259;
font-size: 14px;
font-family: var(--font-family-oswald);
text-transform: uppercase;
letter-spacing: 2px;
}
.team-block-one .designation:before {
position: absolute;
content: '';
right: -110px;
top: 12px;
width: 100px;
height: 1px;
background: var(--theme-color);
}
.team-block-one .author-title {
position: relative;
font-size: 18px;
font-weight: 500;
font-family: var(--font-family-oswald);
text-transform: uppercase;
text-align: center;
}
/***
==================================================================
Contact Info Section 
==================================================================
***/
.contact-info-section {
position: relative;
padding: 110px 0 80px;
}
.contact-info-block .inner-box {
position: relative;
padding: 50px 20px;
border: 1px solid #e7e7e7;
margin-bottom: 30px;
text-align: center;
}
.contact-info-block h5 {
position: absolute;
top: 40px;
left: 20px;
font-size: 14px;
color: #c2c2c2;
text-transform: uppercase;
-webkit-transform: rotate(-90deg) translateX(-100%);
-ms-transform: rotate(-90deg) translateX(-100%);
transform: rotate(-90deg) translateX(-100%);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
-webkit-transition: .2s ease;
-o-transition: .2s ease;
transition: .2s ease;
}
.contact-info-block .inner-box:hover h5 {
opacity: 0;
}
.contact-info-block h5:before {
position: absolute;
content: '';
right: -70px;
top: 7px;
width: 60px;
height: 1px;
background: var(--theme-color);
}
.contact-info-block .icon-box {
position: relative;
font-size: 70px;
line-height: 70px;
margin-bottom: 30px;
color: var(--theme-color);
}
.contact-info-block h4 {
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
bottom: 5px;
}
.contact-info-block .overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
bottom: -50px;
opacity: 0;
visibility: hidden;
-webkit-transition: .7s ease;
-o-transition: .7s ease;
transition: .7s ease;
-webkit-transform: translate(0px, 30px);
-ms-transform: translate(0px, 30px);
transform: translate(0px, 30px);
padding: 50px 30px;
padding-bottom: 0;
}
.contact-info-block .inner-box:hover .overlay {
opacity: 1;
visibility: visible;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
.contact-info-block .top-content {
background: #fff;
padding-bottom: 30px;
}
.contact-info-block .bottom-content {
background: #f4f4f4;
padding: 35px 0;
}
.contact-info-block ul {
margin-bottom: 15px;
}
.contact-info-block ul li,
.contact-info-block ul li a {
font-size: 16px;
color: #828282;
}
.contact-info-block .theme-btn {
font-size: 14px;
font-weight: 600;
color: var(--theme-color);
font-family: var(--font-family-oswald);
text-transform: uppercase;
}
/***
==================================================================
Map Section 
==================================================================
***/
.map-section {
position: relative;
padding: 110px 0;
}
.map-section .map-canvas {
position: relative;
height: 450px;
width: 100%;
}
.map-data {
text-align: center;
font-size: 14px;
font-weight: 400;
line-height: 1.8em;
}
.map-data a {
display: block;
}
.map-data h6 {
font-size: 16px;
font-weight: 700;
text-align: center;
margin-bottom: 5px;
color: #121212;
}
/* Page Background Dark */
.page-outer-box {
position: relative;
background: #1c1f26;
padding-left: 320px;
}
.page-outer-box-two {
position: relative;
}
.page-outer-box-three {
position: relative;
}
/* Home Three Light Version */
.page-outer-box.light-version {
background: #fff;
}
.page-outer-box.light-version .left-panel-two {
background: #fff;
}
.page-outer-box.light-version .left-panel-two .navbar-btn-wrap {
background-color: transparent;
}
.page-outer-box.light-version .top-panel .dark-bg {
background: #fff;
}
.page-outer-box.light-version .right-panel-two {
background: #fff;
}
.page-outer-box.light-version .right-panel-two .social-media li a {
border-color: #e7e7e7;
}
.page-outer-box.light-version .right-panel-two .social-media li a:after {
background: #e7e7e7;
}
.page-outer-box.light-version .bottom-panel {
background: #fff;
}
.page-outer-box.light-version .slide-progress-warp {
background: #e0e0e0;
}
.page-outer-box.light-version .banner-slider-nav.style-two .banner-slider-control {
color: #888;
border-color: #e0e0e0;
}
.page-outer-box.light-version .banner-slider-nav.style-two .banner-slider-control:hover {
color: #fff;
border-color: var(--theme-color);
}
.page-outer-box.light-version .left-panel-two .mobile-menu.sidemenu .menu-box {
background: #fff;
border-color: #e7e7e7;
}
.page-outer-box.light-version .mobile-menu .navigation li {
border-color: #e7e7e7;
}
.page-outer-box.light-version .mobile-menu .navigation li>a:before {
background: #d7d7d7;
}
.page-outer-box.light-version .mobile-menu .navigation li>a {
color: #1c1f26;
}
.page-outer-box.light-version .left-panel-two .mobile-menu.sidemenu {
background: #fff;
}
.page-outer-box.light-version .shape-bottom:before {
background-image: url(../images/icons/pattern-4.jpg);
}
/* Home Four Light Version */
.page-outer-box-two.light-version .top-panel-two .logo {
background: #f4f4f4;
}
.page-outer-box-two.light-version .left-panel-three .top-content {
background: #f4f4f4;
}
.page-outer-box-two.light-version .top-panel-two {
background: #fff;
}
.page-outer-box-two.light-version .navbar-btn-wrap {
background: #fff;
}
.page-outer-box-two.light-version .anim-menu-btn:before {
color: var(--theme-color);
}
.page-outer-box-two.light-version .top-panel-two .language-switcher {
border-color: #e0e0e0;
}
.page-outer-box-two.light-version .right-panel-three {
background: #fff;
}
.page-outer-box-two.light-version .banner-slider-pagination.style-three .swiper-pagination-bullet:before {
background: #d7d7d7;
}
.page-outer-box-two.light-version .banner-slider-pagination.style-three .swiper-pagination-bullet {
border-color: #d7d7d7;
}
.page-outer-box-two.light-version .left-panel-three {
background: #fff;
}
.page-outer-box-two.light-version .left-panel-three .video-box {
border-color: #e5d1b2;
}
.page-outer-box-two.light-version .left-panel-three .video-box a:before {
background: #e0e0e0;
}
.page-outer-box-two.light-version .left-panel-three .video-box a:after {
background: #e0e0e0;
}
.page-outer-box-two.light-version .banner-slider-nav.style-three .banner-slider-control {
background: #fff;
}
.page-outer-box-two.light-version .banner-slider-nav.style-three .banner-slider-control span {
color: #1c1f26;
}
.page-outer-box-two.light-version .banner-slider-nav.style-three .banner-slider-control:before {
background: #f4f4f4;
}
.page-outer-box-two.light-version .banner-slider-nav.style-three .banner-slider-control:hover span {
color: #fff;
}
.page-outer-box-two.light-version .bottom-panel-two .left-content {
background: #fff;
}
.page-outer-box-two.light-version .contact-info-three li a {
color: #888;
}
.page-outer-box-two.light-version .contact-info-three li {
border-color: #e0e0e0;
}
.page-outer-box-two.light-version .bottom-panel-two .panel-bg {
background: #fff;
}
.page-outer-box-two.light-version .nav-outer .mobile-nav-toggler {
color: #222;
background: #fff;
}
.feature-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
/*** 
=============================================
Faq Area style
=============================================
***/
.faq-section {
position: relative;
padding: 110px 0 110px;
}
.accordion-box {
position: relative;
display: block;
padding-left: 20px;
}
.accordion-box .accordion {
position: relative;
display: block;
margin-bottom: 20px;
}
.accordion-box .accordion .accord-btn {
position: relative;
display: block;
cursor: pointer;
background: #ffffff;
padding-left: 40px;
padding-right: 70px;
padding-top: 21px;
padding-bottom: 21px;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
border: 1px solid #e7e7e7;
}
.accordion-box .accordion .accord-btn span {
position: absolute;
left: -21px;
top: 14px;
height: 40px;
width: 40px;
background: #fff;
border: 1px solid #e7e7e7;
color: #bfbfbf;
text-align: center;
line-height: 38px;
font-size: 14px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.accordion-box .accordion .accord-btn.active span {
color: #fff;
background: var(--theme-color);
border-color: var(--theme-color);
}
.accordion-box .accordion .accord-btn h4 {
color: #27282c;
font-size: 20px;
line-height: 26px;
font-weight: 500;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.accordion-box .accordion .accord-btn::after {
font-family: "Flaticon";
position: absolute;
top: 22px;
right: 40px;
color: #b4b4b4;
content: "\f110";
font-size: 15px;
line-height: 25px;
font-weight: 300;
-webkit-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
}
.accordion-box .accordion .accord-btn.active {
background: #27282c;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.accordion-box .accordion .accord-btn.active h4 {
color: #ffffff;
}
.accordion-box .accordion .accord-btn.active:after {
color: #ffffff;
content: "\f10f";
}
.accordion-box .accordion .accord-content {
position: relative;
display: block;
padding-top: 29px;
padding-bottom: 7px;
padding-left: 0px;
padding-right: 40px;
display: none;
}
.accordion-box .accordion .accord-content.collapsed {
display: block;
}
.accordion-box .accordion .accord-content p {
margin: 0;
}
/* Comming Soon */
.countdown-timer {
text-align: center;
}
.countdown-timer li {
position: relative;
display: inline-block;
float: none;
padding: 40px 0;
text-align: center;
margin: 0;
}
.countdown-timer li:first-child {
margin-left: 0;
}
.countdown-timer li:last-child {
margin-right: 0;
}
.countdown-timer li span.days,
.countdown-timer li span.hours,
.countdown-timer li span.minutes,
.countdown-timer li span.seconds {
position: relative;
display: block;
background: #ffffff;
color: #27282c;
font-size: 36px;
line-height: 80px;
min-width: 80px;
padding: 0 20px;
font-weight: 500;
text-align: center;
border-radius: 0px;
font-family: var(--font-family-oswald);
}
.countdown-timer li span.timeRef {
position: absolute;
left: 0;
bottom: 0;
color: #ffffff;
font-size: 20px;
font-weight: 500;
text-transform: uppercase;
font-family: var(--font-family-oswald);
}
.countdown-timer li:nth-child(even) span.timeRef {
bottom: auto;
top: 0;
}
/***
==================================================================
Services Section 
==================================================================
***/
.services-section {
position: relative;
padding: 215px 0 110px;
}
.service-block-one {
position: relative;
border: 2px solid #1c1f26;
padding: 0 40px 40px;
margin-bottom: 200px;
}
.service-block-one:last-child {
margin-bottom: 0px;
}
.service-block-one:before {
position: absolute;
content: '';
background-image: url(../images/resource/pattern.png);
background-position: center;
left: 40px;
top: 100px;
right: 0;
bottom: 0;
}
.service-block-one .inner-box {
position: relative;
background: #fff;
padding-bottom: 30px;
}
.service-block-one .image {
position: relative;
margin-bottom: 30px;
margin-top: -100px;
overflow: hidden;
}
.service-block-one .image img {
width: 100%;
}
.service-block-one .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.service-block-one:hover .overlay {
opacity: 1;
visibility: visible;
}
.service-block-one .overlay:before {
position: absolute;
content: '';
background: rgba(34, 34, 34, 0.8);
left: 0;
top: 0;
width: 100%;
height: 0%;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.service-block-one:hover .overlay:before {
height: 100%;
}
.service-block-one .zoom-btn {
position: absolute;
top: 20px;
left: 20px;
width: 60px;
height: 60px;
line-height: 60px;
text-align: center;
font-size: 25px;
color: #1d2027;
background: #fff;
-webkit-transform: scale(.8);
-ms-transform: scale(.8);
transform: scale(.8);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.service-block-one:hover .zoom-btn {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.service-block-one .zoom-btn a {
color: #1d2027;
}
.service-block-one .content {
padding-left: 100px;
padding-top: 100px;
margin-bottom: 30px;
position: relative;
}
.service-block-one h3 {
font-size: 24px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 30px;
}
.service-block-one h3 a {
color: #1c1f26;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.service-block-one h3 a:hover {
color: var(--theme-color);
}
.service-block-one .text {
margin-bottom: 30px;
margin-right: 50px;
}
.service-block-one h5 {
position: absolute;
left: 0;
top: 50%;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
color: #c2c2c2;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 2px;
}
.service-block-one h5:before {
position: absolute;
content: '';
background: #e7e7e7;
height: 1px;
width: 180px;
right: -198px;
top: 8px;
}
.service-block-one .icon-box {
position: absolute;
right: 0px;
top: -50px;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
font-size: 50px;
color: #c2c2c2;
border: 2px solid #1c1f26;
background: #fff;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.service-block-one:hover .icon-box {
background: var(--theme-color);
border-color: var(--theme-color);
color: #fff;
}
/***
==================================================================
Blog Section 
==================================================================
***/
.blog-section {
position: relative;
padding: 110px 0;
overflow: hidden;
}
.news-block-two {
position: relative;
}
.news-block-two .inner-box {
position: relative;
margin-bottom: 50px;
padding-bottom: 50px;
border-bottom: 1px solid #e7e7e7;
}
.news-block-two:last-child .inner-box {
border-bottom: 0px;
margin-bottom: 0px;
}
.news-block-two .top-content {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 50px;
}
.news-block-two .date {
position: relative;
font-size: 14px;
font-weight: 500;
color: #adadad;
font-family: var(--font-family-oswald);
text-transform: uppercase;
padding-right: 30px;
margin-right: 30px;
border-right: 1px solid #f4f4f4;
line-height: 48px;
}
.news-block-two .date strong {
font-size: 48px;
font-weight: 600;
color: var(--theme-color);
}
.news-block-two h3 {
font-size: 24px;
font-weight: 500;
}
.news-block-two h3 a {
color: #1c1f26;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.news-block-two h3 a:hover {
color: var(--theme-color);
}
.news-block-two .owl-nav-style-two .owl-nav {
position: absolute;
right: 15px;
bottom: 15px;
}
.news-block-two .image {
position: relative;
margin-bottom: 25px;
}
.news-block-two .image:before {
position: absolute;
content: '';
background: rgba(0, 0, 0, 0.8);
left: 0;
top: 0;
width: 100%;
height: 0%;
z-index: 1;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.news-block-two .image img {
width: 100%;
}
.news-block-two .inner-box:hover .image:before {
height: 100%;
}
.news-block-two .post-meta {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 20px;
}
.news-block-two .post-meta .hint {
font-size: 14px;
font-weight: 600;
color: #1c1f26;
text-transform: uppercase;
font-family: var(--font-family-oswald);
margin-right: 10px;
top: -1px;
}
.news-block-two .post-meta ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.news-block-two .post-meta ul li {
position: relative;
padding-right: 36px;
}
.news-block-two .post-meta ul li:before {
position: absolute;
content: '';
height: 2px;
width: 15px;
background: var(--theme-color);
bottom: 7px;
right: 10px;
}
.news-block-two .post-meta ul li:last-child:before {
display: none;
}
.news-block-two .post-meta ul li a {
color: #1c1f26;
font-size: 12px;
text-transform: uppercase;
display: inline-block;
}
.news-block-two .text {
margin-bottom: 35px;
}
.news-block-two .share-icon {
position: absolute;
bottom: 50px;
right: 0;
padding-right: 50px;
}
.news-block-two .share-btn {
background: #fff;
font-size: 14px;
height: 50px;
width: 50px;
line-height: 50px;
text-align: center;
position: absolute;
right: 0;
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
cursor: pointer;
}
.news-block-two .share-icon.open .share-btn {
color: var(--theme-color);
}
.news-block-two .share-icon ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
opacity: 0;
visibility: hidden;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.news-block-two .share-icon.open ul {
opacity: 1;
visibility: visible;
}
.news-block-two .share-icon ul li {
margin-right: 5px;
}
.news-block-two .share-icon ul a {
font-size: 14px;
height: 50px;
width: 50px;
line-height: 48px;
text-align: center;
background: #fff;
border: 1px solid #f4f4f4;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
display: inline-block;
color: #999;
}
.news-block-two .share-icon ul a:hover {
color: var(--theme-color);
}
.posts-pagination {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 30px;
}
.posts-pagination:before {
position: absolute;
content: '';
height: 1px;
top: 26px;
left: 0;
right: 70px;
background: #e7e7e7;
}
.posts-pagination:after {
position: absolute;
content: '';
height: 9px;
width: 9px;
border-radius: 50%;
top: 22px;
right: 70px;
background: #e7e7e7;
}
.posts-pagination ul {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.posts-pagination ul li a {
position: relative;
font-size: 14px;
line-height: 24px;
color: #c2c2c2;
background-color: #fff;
padding: 14px 40px;
border: 1px solid #e7e7e7;
font-weight: 500;
overflow: hidden;
text-transform: uppercase;
font-family: var(--font-family-oswald);
margin-right: 18px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
display: inline-block;
}
.posts-pagination ul li a:hover {
color: var(--theme-color);
}
.posts-pagination ul li a.prev-btn {
padding-left: 70px;
}
.posts-pagination ul li a.prev-btn:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 20px;
top: 24.5px;
left: 40px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination ul li a.prev-btn:before {
position: absolute;
content: "\f10b";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: 13px;
left: 33px;
z-index: 9;
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination ul li a.prev-btn:hover:before {
opacity: 1;
}
.posts-pagination ul li a.next-btn {
padding-right: 70px;
}
.posts-pagination ul li a.next-btn:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 20px;
top: 24.5px;
right: 40px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination ul li a.next-btn:before {
position: absolute;
content: "\f10a";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: 13px;
right: 33px;
z-index: 9;
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination ul li a.next-btn:hover:before {
opacity: 1;
}
.posts-pagination .active-page {
position: relative;
font-size: 30px;
font-weight: 500;
color: var(--theme-color);
font-family: var(--font-family-oswald);
}
.posts-pagination .total-page {
position: relative;
font-size: 14px;
font-weight: 500;
color: #1c1f26;
font-family: var(--font-family-oswald);
}
.posts-pagination.style-two {
max-width: 770px;
text-align: right;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.posts-pagination.style-two:before {
right: 400px;
}
.posts-pagination.style-two:after {
right: 400px;
}
.posts-pagination.style-two ul li a.next-btn {
margin-right: 0;
}
/* Style Two */
.posts-pagination-two {
position: relative;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 30px;
}
.posts-pagination-two:before {
position: absolute;
content: '';
/* height: 1px; */
/* top: 26px; */
/* left: 0; */
/* right: 70px; */
}
.posts-pagination-two:after {
position: absolute;
content: '';
/* height: 9px; */
/* width: 9px; */
/* border-radius: 50%; */
/* top: 22px; */
/* right: 70px; */
/* background: #e7e7e7; */
}
.posts-pagination-two ul {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.posts-pagination-two ul li {
position: relative;
background-color: #fff;
padding: 14px 5px;
border: 1px solid #e7e7e7;
border-right: 0px;
overflow: hidden;
text-transform: uppercase;
font-family: var(--font-family-oswald);
display: inline-block;
width: 33.333%;
text-align: center;
line-height: 30px;
}
.posts-pagination-two ul li span.icon {
font-size: 30px;
line-height: 30px;
position: relative;
top: 2px;
}
.posts-pagination-two ul li:last-child {
border-right: 1px solid #e7e7e7;
}
.posts-pagination-two ul li a {
font-size: 14px;
font-weight: 500;
line-height: 35px;
color: #c2c2c2;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination-two ul li a:hover {
color: var(--theme-color);
}
.posts-pagination-two ul li a span {
position: relative;
}
.posts-pagination-two ul li a.prev-btn {
padding-left: 70px;
}
.posts-pagination-two ul li a.prev-btn span:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 20px;
top: 10.5px;
left: -40px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination-two ul li a.prev-btn span:before {
position: absolute;
content: "\f10b";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: -6px;
left: -48px;
z-index: 9;
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination-two ul li a.prev-btn:hover span:before {
opacity: 1;
}
.posts-pagination-two ul li a.next-btn {
padding-right: 70px;
}
.posts-pagination-two ul li a.next-btn span:after {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 20px;
top: 10.5px;
right: -40px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination-two ul li a.next-btn span:before {
position: absolute;
content: "\f10a";
font-size: 10px;
font-family: Flaticon;
color: var(--theme-color);
top: -6px;
right: -48px;
z-index: 9;
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.posts-pagination-two ul li a.next-btn:hover span:before {
opacity: 1;
}
.posts-pagination-two .active-page {
position: relative;
font-size: 24px;
font-weight: 500;
color: var(--theme-color);
font-family: var(--font-family-oswald);
}
.posts-pagination-two .total-page {
position: relative;
font-size: 14px;
font-weight: 500;
color: #1c1f26;
font-family: var(--font-family-oswald);
}
.posts-pagination-two .text {
font-size: 14px;
font-weight: 500;
color: #1c1f26;
text-transform: uppercase;
font-family: var(--font-family-oswald);
padding: 4.5px 0;
}
/*** 
====================================================================
Sidebar widgets
====================================================================
***/
.blog-section .sidebar {
position: relative;
height: 100%;
padding-top: 50px;
}
.blog-section .sidebar:before {
position: absolute;
content: '';
background: #f4f4f4;
left: 0;
top: 0;
bottom: 0;
width: 500%;
}
.sidebar-widget {
position: relative;
margin-bottom: 40px;
}
/* Sidebar widgets title */
.sidebar-title {
position: relative;
margin-bottom: 40px;
}
.sidebar-title:before {
position: absolute;
content: '';
left: 0;
bottom: 0;
width: 40px;
height: 4px;
background: var(--theme-color);
}
.sidebar-title h4 {
position: relative;
font-size: 16px;
font-weight: 500;
display: inline-block;
padding-bottom: 20px;
text-transform: uppercase;
}
.sidebar-title-two {
position: relative;
margin-bottom: 10px;
padding: 21px 30px;
background-color: #f13729;
}
.sidebar-title-two h4 {
position: relative;
color: #ffffff;
font-size: 18px;
font-weight: 600;
}
/* Service category widget */
.service-category-widget {
position: relative;
}
.service-category-widget li {
position: relative;
margin-bottom: 10px;
}
.service-category-widget li:last-child {
margin-bottom: 0px;
}
.service-category-widget li a {
position: relative;
color: #7e8597;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
padding: 13px 33px;
display: block;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
border: 1px solid #e9e6e6;
}
.service-category-widget li a:hover {
-webkit-box-shadow: 0px 21px 21px 0px rgba(1, 1, 1, 0.08);
box-shadow: 0px 21px 21px 0px rgba(1, 1, 1, 0.08);
color: #222;
}
.service-category-widget li.active a {
border-top: 2px solid #f13729;
-webkit-box-shadow: 0px 21px 21px 0px rgba(1, 1, 1, 0.08);
box-shadow: 0px 21px 21px 0px rgba(1, 1, 1, 0.08);
color: #222;
}
/*Search Box Widget*/
.sidebar .search-box .form-group {
position: relative;
margin: 0px;
}
.sidebar .search-box {}
.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
position: relative;
line-height: 33px;
padding: 10px 30px;
background: #ffffff;
display: block;
font-size: 14px;
width: 100%;
height: 55px;
font-weight: 400;
border: 1px solid #e0e0e0;
transition: all 500ms ease;
-moz-transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.sidebar .search-box button {
position: absolute;
right: 15px;
top: 15px;
background: transparent;
font-size: 18px;
color: #9e9e9e;
}
/* Post Widget */
.post-widget-two {
position: relative;
}
.post-widget-two .post {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-bottom: 30px;
border-bottom: 1px solid #e7e7e7;
margin-bottom: 30px;
}
.post-widget-two .post:last-child {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
.post-widget-two .thumb {
position: relative;
overflow: hidden;
margin-right: 20px;
}
.post-widget-two img {
width: 100%;
-webkit-transition: all 8s cubic-bezier(0, 0, 0.2, 1);
-o-transition: all 8s cubic-bezier(0, 0, 0.2, 1);
transition: all 8s cubic-bezier(0, 0, 0.2, 1);
-webkit-transition-delay: .2s;
-o-transition-delay: .2s;
transition-delay: .2s;
display: block;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
.post-widget-two .thumb:hover img {
-webkit-transform: scale(1.4);
-ms-transform: scale(1.4);
transform: scale(1.4);
}
.post-widget-two .overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 40px 45px;
}
.post-widget-two .overlay:before {
position: absolute;
content: '';
background: #222;
left: 0;
top: 0;
right: 0;
bottom: 0;
-webkit-transform: scale(0, 1);
-ms-transform: scale(0, 1);
transform: scale(0, 1);
-webkit-transition: all .5s linear;
-o-transition: all .5s linear;
transition: all .5s linear;
}
.post-widget-two .thumb:hover .overlay:before {
-webkit-transform: scale(1, 1);
-ms-transform: scale(1, 1);
transform: scale(1, 1);
opacity: .75;
}
.post-widget-two .date {
position: relative;
font-size: 16px;
margin-bottom: 10px;
padding-left: 50px;
}
.post-widget-two .date:before {
position: absolute;
content: '';
background: var(--theme-color);
height: 1px;
width: 40px;
top: 12px;
left: 0;
}
.post-widget-two h4 {
font-size: 18px;
font-weight: 500;
color: #1c1f26;
}
.post-widget-two h4 a {
color: #1c1f26;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.post-widget-two h4 a:hover {
color: var(--theme-color);
}
/* Blog Category Widget */
.blog-category-widget {
position: relative;
}
.blog-category-widget ul {
position: relative;
}
.blog-category-widget ul li {
position: relative;
margin-bottom: 10px;
}
.blog-category-widget ul li:last-child {
margin-bottom: 0px;
}
.blog-category-widget ul li a {
font-size: 16px;
font-weight: 700;
color: #888888;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.blog-category-widget ul li a:before {
position: absolute;
content: '';
height: 12px;
width: 4px;
background: #d4d4d4;
left: 0;
top: 6px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
display: none;
}
.blog-category-widget ul li a:hover:before {
opacity: 1;
}
.blog-category-widget ul li a:hover:before {
background: #f13729;
}
.blog-category-widget ul li a:hover {
color: var(--theme-color);
}
.blog-category-widget ul li span {
position: relative;
right: -2px;
top: -8px;
font-size: 14px;
color: var(--theme-color);
opacity: 0;
}
/* Instagram Widget Two  */
.instagram-widget-two .instagram-wrapper {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin: 0 -5px;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.instagram-widget-two .instagram-wrapper .image {
position: relative;
overflow: hidden;
margin: 0 5px 10px;
}
.instagram-widget-two .instagram-wrapper .image .overlay-link {
position: absolute;
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;
width: 100%;
height: 100%;
left: 0;
top: 100%;
background: rgba(27, 27, 27, 0.90);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.instagram-widget-two .instagram-wrapper .image:hover .overlay-link {
top: 0
}
.instagram-widget-two .instagram-wrapper .image .overlay-link li {
color: #fff;
font-size: 14px;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.instagram-widget-two .instagram-wrapper .image .overlay-link li span {
font-size: 12px;
margin-right: 5px;
}
.instagram-widget-two .theme-btn {
position: absolute;
left: 50%;
top: 50%;
background: #fff;
padding: 12px 35px;
display: inline-block;
font-size: 16px;
font-family: var(--font-family-oswald);
color: #1c1f26;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.instagram-widget-two .theme-btn span {
margin-right: 8px;
color: var(--theme-color);
}
/* Tag Cloud Widget */
.tag-cloud-widget ul {
margin: 0 -5px;
}
.tag-cloud-widget ul li {
margin: 0 5px 10px;
float: left;
}
.tag-cloud-widget ul li a {
position: relative;
font-size: 18px;
color: #7e8597;
border: 1px solid #e9e6e6;
padding: 5.5px 15px;
display: inline-block;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.tag-cloud-widget ul li a:hover {
color: #fff;
background-color: var(--theme-color);
border-color: var(--theme-color);
}
/* Newsletter Widget */
.newsletter-widget .inner-content {
position: relative;
}
.newsletter-widget .inner-content .wrapper-box {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 26px;
}
.newsletter-widget .inner-content .icon {
font-size: 50px;
color: #f13729;
margin-right: 10px;
}
.newsletter-widget .inner-content .text {
font-size: 16px;
margin-bottom: 20px;
}
.newsletter-widget form input {
position: relative;
border: 1px solid #e9e6e6;
width: 100%;
height: 52px;
padding: 0 20px;
font-size: 16px;
margin-bottom: 20px;
background: transparent;
}
.newsletter-widget form .theme-btn {
padding: 12px 60px;
width: 100%;
}
/***
==================================================================
Blog Singel Section 
==================================================================
***/
.blog-single {
position: relative;
padding: 110px 0;
}
.blog-single .post-wrapper {
position: relative;
border: 1px solid #e7e7e7;
padding: 100px;
padding-bottom: 70px;
}
.blog-single-post .inner-box {
max-width: 770px;
}
.blog-single-post .author-box {
position: absolute;
padding: 40px 25px 30px;
max-width: 170px;
width: 100%;
right: -85px;
border: 1px solid #e7e7e7;
background: #fff;
text-align: center;
}
.blog-single-post .author-box .image img {
border-radius: 50%;
margin-bottom: 15px;
}
.blog-single-post .author-box h5 {
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
line-height: 1.6em;
margin-bottom: 7px;
}
.blog-single-post .author-box .social-icon div {
font-size: 16px;
color: #888888;
border-bottom: 1px solid #e7e7e7;
padding-bottom: 5px;
margin-bottom: 10px;
}
.blog-single-post .author-box ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.blog-single-post .author-box ul li {
margin: 0 10px;
}
.blog-single-post .author-box ul li a {
color: #888;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.blog-single-post .author-box ul li a:hover {
color: var(--theme-color);
}
.blog-single-post h3 {
position: relative;
font-size: 24px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 30px;
}
.blog-single-post .text {
margin-bottom: 30px;
}
.blog-single-post .blockquote {
position: relative;
border-left: 2px solid var(--theme-color);
padding-left: 40px;
margin-bottom: 40px;
padding-top: 20px;
}
.blog-single-post .blockquote .quote-icon {
position: absolute;
left: 50px;
top: -3px;
font-size: 120px;
color: #e7e7e7;
display: inline-block;
line-height: 100px;
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.blog-single-post .blockquote h3 {
font-weight: 400;
text-transform: capitalize;
line-height: 1.6em;
}
.blog-single-post .author {
position: relative;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
padding-left: 75px;
font-family: var(--font-family-oswald);
}
.blog-single-post .author:before {
position: absolute;
content: '';
background: var(--theme-color);
left: 0;
top: 49%;
width: 50px;
height: 1px;
}
.blog-single-post .social-link {
position: absolute;
right: 0;
bottom: 0;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
color: #fff;
background: var(--theme-color);
}
.blog-single-post .image {
position: relative;
}
.blog-single-post .image .caption-title {
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
bottom: 20px;
color: #fff;
font-size: 16px;
}
.blog-single-post .list {
margin-bottom: 40px;
}
.blog-single-post .list li {
position: relative;
padding-left: 30px;
margin-bottom: 10px;
font-size: 16px;
color: #888;
}
.blog-single-post .list li:before {
position: absolute;
content: '';
width: 11px;
height: 11px;
left: 0;
top: 8px;
background: var(--theme-color);
-webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.blog-single-post .image-gallery {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 -1px;
margin-bottom: 50px;
}
.blog-single-post .image-gallery .image {
padding: 0 1px 2px;
}
/*** 
====================================================================
Comments Area
====================================================================
***/
.comments-area {
position: relative;
margin-top: 30px;
margin-bottom: 50px;
}
.blog-single .group-title {
position: relative;
}
.blog-single .group-title h3 {
position: relative;
font-size: 24px;
font-weight: 600;
margin-bottom: 40px;
text-transform: uppercase;
}
.comments-area .comment-box {
position: relative;
margin-bottom: 40px;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.comments-area .comment-box:last-child .comment {
padding-bottom: 0px;
border-bottom: 0px;
}
.comments-area .comment-box:hover {
border-color: #eb5310;
}
.comments-area .comment-box.reply-comment {
margin-left: 50px;
}
.comments-area .comment {
position: relative;
font-size: 14px;
border-bottom: 1px solid #e9e6e6;
padding-bottom: 30px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.comments-area .comment .comment-inner {
position: relative;
width: 60%;
}
.comments-area .comment .comment-inner .text {
position: relative;
color: #7e7e7e;
font-size: 18px;
line-height: 1.5em;
margin-bottom: 15px;
}
.comments-area .comment-box .author-thumb {
position: relative;
overflow: hidden;
margin-bottom: 20px;
margin-right: 130px;
}
.comments-area .comment-box .author-thumb img {
width: 80px;
display: block;
}
.comments-area .comment-info {
position: relative;
color: #1c1f26;
line-height: 24px;
font-size: 16px;
font-weight: 600;
font-family: var(--font-family-oswald);
text-transform: uppercase;
margin-bottom: 4px;
}
.comments-area .comment-info a {
position: relative;
color: #1e1e29;
}
.comments-area .date {
font-size: 14px;
color: #303030;
margin-bottom: 20px;
}
.comments-area .comment-box .reply-comment {
position: relative;
color: #1c1f26;
font-size: 16px;
font-weight: 500;
font-family: var(--font-family-oswald);
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.comments-area .comment-box .reply-comment:hover {
color: #f13729;
}
.comments-area .comment-box .reply-comment .icon {
position: relative;
margin-right: 5px;
}
/*Comment Form*/
.comment-form {
position: relative;
margin-bottom: 30px;
}
.comment-form .form-group {
position: relative;
margin-bottom: 30px;
}
.comment-form .form-group:last-child {
margin-bottom: 0px;
}
.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select {
position: relative;
display: block;
width: 100%;
line-height: 28px;
padding: 15px 20px;
height: 55px;
color: #7c7b7b;
font-size: 16px;
font-weight: 400;
background: #ffffff;
border: 1px solid #eef2ed;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus {
border-color: #f13729;
}
.comment-form .form-group textarea {
position: relative;
display: block;
width: 100%;
line-height: 26px;
padding: 10px 20px;
color: #7c7b7b;
font-size: 16px;
font-weight: 400;
background: #ffffff;
resize: none;
height: 125px;
border: 1px solid #eef2ed;
-webkit-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}
.comment-form button {
position: relative;
display: block;
margin-top: 10px;
}
/*** 
====================================================================
Contact Form Section
====================================================================
***/
.contact-form-section {
position: relative;
padding: 110px 0 0;
margin-bottom: 110px;
background-size: cover;
}
.contact-form-section .sec-title h4 {
color: #fff;
}
.contact-form-section .sec-title h1 {
color: #fff;
}
.contact-form-section .sec-title .text {
color: #fff;
}
.contact-form-section .default-form-area {
position: relative;
padding-top: 100px;
padding-left: 100px;
}
.contact-form-section .default-form-area:before {
position: absolute;
content: '';
left: 0;
top: 0;
width: 500%;
height: 100%;
background: #fff;
}
/*Contact Form*/
.contact-form .row-10 {
margin: 0 -10px;
}
.contact-form .form-group {
margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="password"],
.contact-form select,
.contact-form textarea {
display: block;
width: 100%;
height: 55px;
font-size: 16px;
color: #848484;
line-height: 30px;
padding: 12px 25px;
font-weight: 300;
background-color: #f4f4f4;
border-radius: 0px;
border: 1px solid #e7e7e7;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
border-color: var(--theme-color);
}
.contact-form textarea {
height: 120px;
resize: none;
padding: 12px 25px;
}
.contact-form button {
cursor: pointer;
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
border-color: #ff0000 !important;
}
.contact-form label.error {
display: block;
line-height: 24px;
padding: 5px 0px 0px;
margin: 0px;
text-transform: uppercase;
font-size: 11px;
color: #ff0000;
font-weight: 500;
}
.contact-form .form-control:focus {
-webkit-box-shadow: none;
box-shadow: none;
border-color: var(--theme-color);
}
/*** 
=============================================
Shop area  style
=============================================
***/
/* Overlay styles */
.overlay-style-one {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(233, 33, 48, 0.85);
-webkit-transition: all 700ms ease 100ms;
-o-transition: all 700ms ease 100ms;
transition: all 700ms ease 100ms;
opacity: 0;
z-index: 2;
}
.overlay-style-one .box {
display: table;
height: 100%;
width: 100%;
}
.overlay-style-one .box .content {
display: table-cell;
text-align: center;
vertical-align: middle;
}
#shop-area {
padding-top: 110px;
padding-bottom: 110px;
}
.main-shop-area {
position: relative;
display: block;
background: #ffffff;
}
#shop-area .shop-content {
position: relative;
display: block;
}
#shop-area .ui-selectmenu-button.ui-button {
color: #222;
font-family: inherit;
text-transform: capitalize;
border-color: #e7e7e7;
padding: 15px 20px;
}
.showing-result-shorting {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-bottom: 30px;
border-bottom: 1px solid #ededed;
margin-bottom: 50px;
}
.showing-result-shorting .showing {}
.showing-result-shorting .shorting {}
.showing-result-shorting .showing p {
color: #828282;
font-size: 15px;
font-weight: 400;
margin: 0;
}
.single-product-item {
position: relative;
display: block;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
margin-bottom: 50px;
}
.single-product-item .img-holder {
position: relative;
display: block;
overflow: hidden;
}
.single-product-item .img-holder::before {
background: rgba(255, 255, 255, 0.30);
top: 0px;
left: 0px;
bottom: 0px;
right: 0px;
content: "";
opacity: 0;
position: absolute;
z-index: 1;
-webkit-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.single-product-item:hover .img-holder::before {
opacity: 1;
}
.single-product-item .img-holder img {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.7s ease 0s;
-o-transition: all 0.7s ease 0s;
transition: all 0.7s ease 0s;
width: 100%;
}
.single-product-item:hover .img-holder img {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
.single-product-item .title-holder {
position: relative;
display: block;
background: #ffffff;
padding: 17px 0 13px;
-webkit-box-shadow: 0px 3px 8px 2px #f9f9f9;
box-shadow: 0px 3px 8px 2px #f9f9f9;
margin-left: 20px;
margin-right: 20px;
margin-top: -30px;
z-index: 10;
}
.single-product-item .title-holder .static-content {
position: relative;
display: block;
}
.single-product-item .title-holder .title {
position: relative;
display: block;
font-size: 16px;
line-height: 22px;
font-weight: 600;
padding: 0 0 3px;
}
.single-product-item .title-holder .title a {
color: #27282c;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.single-product-item .title-holder .static-content span {
color: #828282;
}
.single-product-item .title-holder .overlay-content {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: #ffffff;
text-align: center;
-ms-transform: scaleX(0);
transform: scaleX(0);
-webkit-transform: scaleX(0);
-webkit-transition: all 700ms ease 300ms;
-o-transition: all 700ms ease 300ms;
transition: all 700ms ease 300ms;
}
.single-product-item:hover .title-holder .overlay-content {
-ms-transform: scaleY(1);
transform: scaleY(1);
-webkit-transform: scaleY(1);
-webkit-transition: all 700ms ease 100ms;
-o-transition: all 700ms ease 100ms;
transition: all 700ms ease 100ms;
}
.single-product-item .title-holder .overlay-content ul {
position: relative;
display: block;
padding: 22px 0 23px;
width: 153px;
margin: 0 auto;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transition: all 700ms ease 100ms;
-o-transition: all 700ms ease 100ms;
transition: all 700ms ease 100ms;
}
.single-product-item:hover .title-holder .overlay-content ul {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition: all 700ms ease 600ms;
-o-transition: all 700ms ease 600ms;
transition: all 700ms ease 600ms;
}
.single-product-item .title-holder .overlay-content ul li {
position: relative;
display: inline-block;
float: left;
width: 51px;
text-align: center;
border-right: 1px solid #ededed;
}
.single-product-item .title-holder .overlay-content ul li:last-child {
border: none;
}
.single-product-item .title-holder .overlay-content ul li a {
position: relative;
display: block;
}
.single-product-item .title-holder .overlay-content ul li a span:before {
position: relative;
display: block;
width: 100%;
height: 35px;
color: #b3b3b3;
font-size: 18px;
line-height: 35px;
margin: 0;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.single-product-item .title-holder .overlay-content ul li a:hover span:before {
color: var(--theme-color);
}
.single-product-item .title-holder .overlay-content ul li a .toltip-content {
position: absolute;
left: -50%;
right: 0;
top: -25px;
margin-left: -15px;
opacity: 0;
visibility: hidden;
padding: 0;
text-align: center;
background-color: #27282c;
-webkit-transition: all 300ms ease 100ms;
-o-transition: all 300ms ease 100ms;
transition: all 300ms ease 100ms;
z-index: 999;
min-width: 130px;
}
.single-product-item .title-holder .overlay-content ul li a .toltip-content:before {
font-family: FontAwesome;
position: absolute;
left: 0;
bottom: -8px;
right: 0;
content: "\f0d7";
color: #27282c;
font-size: 25px;
text-align: center;
line-height: 10px;
}
.single-product-item .title-holder .overlay-content ul li a .toltip-content p {
color: #ffffff;
font-size: 15px;
line-height: 30px;
margin: 0;
}
.single-product-item .title-holder .overlay-content ul li a:hover .toltip-content {
top: -37px;
visibility: visible;
opacity: 1;
}
.shop-sidebar-wrapper {
position: relative;
display: block;
max-width: 270px;
width: 100%;
}
.shop-sidebar-wrapper .single-sidebar-box {
position: relative;
display: block;
overflow: hidden;
}
.single-sidebar-box.pdbtm {
padding-bottom: 50px;
}
.shop-sidebar-wrapper .search-form {
position: relative;
display: block;
max-width: 270px;
width: 100%;
margin-bottom: 50px;
}
.shop-sidebar-wrapper .search-form input[type="text"] {
position: relative;
display: block;
background: #fff;
border: 1px solid #ededed;
color: #7e8597;
font-size: 15px;
font-weight: 400;
height: 50px;
max-width: 270px;
width: 100%;
padding-left: 20px;
padding-right: 60px;
border-radius: 0px;
-webkit-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
}
.shop-sidebar-wrapper .search-form button {
position: absolute;
top: 0;
right: 0px;
bottom: 0;
display: block;
background: #222;
color: #fff;
font-size: 14px;
height: 50px;
width: 50px;
border: 0px solid #edf2f7;
line-height: 48px;
text-align: center;
border-radius: 0px;
-webkit-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
margin: 0;
}
.shop-sidebar-wrapper .search-form button i {
font-size: 14px
}
.shop-sidebar-wrapper .search-form input[type="text"]:focus {
border: 1px solid var(--theme-color);
background: #fff;
color: #000000;
}
.shop-sidebar-wrapper .search-form input[type="text"]:focus+button,
.shop-sidebar-wrapper .search-form button:hover {
background: var(--theme-color);
color: #fff;
}
.shop-sidebar-title {
position: relative;
display: block;
padding-bottom: 23px;
margin-top: -6px;
}
.shop-sidebar-title h3 {
color: #303030;
font-size: 18px;
line-height: 26px;
font-weight: 600;
text-transform: capitalize;
}
.single-sidebar-box .categories {
position: relative;
display: block;
border: 1px solid #ededed;
border-bottom: none;
}
.single-sidebar-box .categories li {
position: relative;
display: block;
padding-left: 20px;
line-height: 50px;
border-bottom: 1px solid #ededed;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.single-sidebar-box .categories li:before {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 0px;
background: var(--theme-color);
content: "";
-webkit-transition: all 100ms ease;
-o-transition: all 100ms ease;
transition: all 100ms ease;
-webkit-transition-delay: .3s;
-o-transition-delay: .3s;
transition-delay: .3s;
-webkit-transform: perspective(0px) translateX(0px) rotate(0deg);
transform: perspective(0px) translateX(0px) rotate(0deg);
}
.single-sidebar-box .categories li:hover:before {
width: 3px;
-webkit-transform: perspective(0px) translateX(0px) rotate(0deg);
transform: perspective(0px) translateX(0px) rotate(0deg);
}
.single-sidebar-box .categories li a {
position: relative;
display: block;
color: #828282;
font-size: 15px;
font-weight: 400;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-transition-delay: .2s;
-o-transition-delay: .2s;
transition-delay: .2s;
-webkit-transform: perspective(0px) translateX(0px) rotate(0deg);
transform: perspective(0px) translateX(0px) rotate(0deg);
}
.single-sidebar-box .categories li:hover a {
color: var(--theme-color);
-webkit-transform: perspective(0px) translateX(10px) rotate(0deg);
transform: perspective(0px) translateX(10px) rotate(0deg);
}
.shop-sidebar-wrapper .price-ranger {
margin-top: 4px;
margin-bottom: 0px;
}
.shop-sidebar-wrapper .price-ranger .ui-widget-content {
background: #edf2f7;
border: none;
height: 2px;
}
.shop-sidebar-wrapper .price-ranger .ui-slider-handle {
position: absolute;
top: -4px;
background: #ffffff;
border: 1px solid #eeeeee;
border-radius: 50%;
height: 10px;
margin-left: -4px;
outline: medium none;
width: 10px !important;
cursor: pointer;
z-index: 2;
}
.shop-sidebar-wrapper .price-ranger .ui-slider-handle:before {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 4px;
height: 4px;
background: var(--theme-color);
border-radius: 50%;
content: "";
margin: 2px;
}
.shop-sidebar-wrapper .price-ranger .ui-slider .ui-slider-range {
background: var(--theme-color);
}
.shop-sidebar-wrapper .price-ranger #slider-range {
margin-left: 4px;
margin-right: 6px;
margin-top: 0;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block {
position: relative;
display: block;
margin-top: 30px;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input {
display: inline-block;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input[type="submit"] {
position: relative;
display: inline-block;
background: #f6f6f6;
float: left;
margin-right: 10px;
padding: 6px 0 4px;
text-align: center;
width: 90px;
border: none;
color: #27282c;
font-size: 15px;
font-weight: 500;
margin-top: 0;
border-radius: 0;
text-transform: capitalize;
cursor: pointer;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input[type="submit"]:hover {}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input[type="text"] {
position: relative;
display: inline-block;
float: left;
color: #828282;
font-size: 15px;
font-weight: 400;
text-align: right;
width: 40px;
line-height: 35px;
border: none;
padding: 0;
}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block input[type='text'].max {}
.shop-sidebar-wrapper .price-ranger .ranger-min-max-block span {
position: relative;
display: inline-block;
color: #828282;
font-size: 15px;
font-weight: 400;
line-height: 35px;
float: left;
}
.shop-sidebar-wrapper .products-post {
position: relative;
display: block;
overflow: hidden;
}
.shop-sidebar-wrapper .products-post li {
position: relative;
display: block;
border-bottom: 1px solid #ededed;
min-height: 70px;
padding-left: 70px;
padding-bottom: 25px;
margin-bottom: 25px;
}
.shop-sidebar-wrapper .products-post li:last-child {
padding-bottom: 0;
margin-bottom: 0;
border-bottom: none;
}
.shop-sidebar-wrapper .products-post li .img-holder {
position: absolute;
top: 0px;
left: 0;
width: 70px;
height: 70px;
display: block;
overflow: hidden;
}
.shop-sidebar-wrapper .products-post li .img-holder img {
-webkit-transition: all 0.4s ease-in-out 0.5s;
-o-transition: all 0.4s ease-in-out 0.5s;
transition: all 0.4s ease-in-out 0.5s;
width: 100%;
-webkit-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);
}
.shop-sidebar-wrapper .products-post li:hover .img-holder img {
-webkit-transition-delay: 0s;
-o-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: scale(1.2, 1.2);
-ms-transform: scale(1.2, 1.2);
transform: scale(1.2, 1.2);
}
.shop-sidebar-wrapper .products-post li .img-holder .overlay-style-one {
background: rgba(195, 150, 78, 0.95);
}
.shop-sidebar-wrapper .products-post li .img-holder .overlay-style-one .box .content a {
display: inline-block;
width: 20px;
height: 20px;
filter: alpha(opacity=0);
-webkit-transform: scale(3);
-ms-transform: scale(3);
transform: scale(3);
-webkit-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
opacity: 0;
z-index: 5;
}
.shop-sidebar-wrapper .products-post li:hover .img-holder .overlay-style-one .box .content a {
filter: alpha(opacity=100);
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
-webkit-transition-delay: 0.1s;
-o-transition-delay: 0.1s;
transition-delay: 0.1s;
opacity: 1;
}
.shop-sidebar-wrapper .products-post li .img-holder .overlay-style-one .box .content a span:before {
color: #ffffff;
font-size: 20px;
line-height: 20px;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.shop-sidebar-wrapper .products-post li .img-holder .overlay-style-one .box .content a:hover span:before {
color: #000000;
}
.shop-sidebar-wrapper .products-post li:hover .img-holder .overlay-style-one {
opacity: 1;
}
.shop-sidebar-wrapper .products-post li .title-holder {
padding-left: 30px;
min-height: 70px;
}
.shop-sidebar-wrapper .products-post li .title-holder .post-title {
font-size: 16px;
line-height: 20px;
font-weight: 600;
margin: 0 0 14px;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.shop-sidebar-wrapper .products-post li .title-holder .post-title a {
color: #27282c;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.shop-sidebar-wrapper .products-post li .title-holder .post-title a:hover {
color: var(--theme-color);
}
.shop-sidebar-wrapper .products-post li .title-holder span {
display: block;
line-height: 14px;
}
/*** 
=============================================
Single Shop Area style
=============================================
***/
#shop-area.single-shop-area {
padding-top: 110px;
padding-bottom: 60px;
}
#shop-area.single-shop-area .owl-nav-style-three .owl-nav .owl-next,
#shop-area.single-shop-area .owl-nav-style-three .owl-nav .owl-prev {
color: #222;
background: transparent;
height: 20px;
width: 20px;
font-size: 30px;
}
#shop-area.single-shop-area .owl-nav-style-three .owl-nav .owl-next {
right: 15px;
}
#shop-area.single-shop-area .owl-nav-style-three .owl-nav .owl-prev {
left: 15px;
}
.single-product-image-holder {
position: relative;
background: #f5f5f5;
padding: 32px 0;
margin-bottom: 30px;
}
.single-product-image-holder a {
position: absolute;
right: 20px;
top: 20px;
width: 45px;
height: 45px;
line-height: 45px;
text-align: center;
font-size: 18px;
background: #fff;
color: #222;
-webkit-box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.1);
box-shadow: 0px 7px 20px 0px rgba(0, 0, 0, 0.1);
z-index: 9;
opacity: 0;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.single-product-image-holder:hover a {
opacity: 1;
}
.single-product-image-holder img {
width: auto;
}
.single-shop-content .content-box {
position: relative;
display: block;
}
.single-shop-content .content-box span.price {
color: #fff;
font-size: 24px;
font-weight: 400;
position: absolute;
right: 0;
top: 0;
background: #222;
padding: 16px 30px;
}
.single-shop-content .content-box h2 {
color: #27282c;
font-size: 30px;
font-weight: 600;
margin: 6px 0 15px;
text-transform: capitalize;
}
.single-shop-content .content-box .review-box {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding-bottom: 20px;
border-bottom: 1px solid #e7e7e7;
}
.single-shop-content .content-box .review-box ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: 10px;
padding-right: 10px;
border-right: 1px solid #e7e7e7;
}
.single-shop-content .content-box .review-box ul li {
margin-right: 6px;
}
.single-shop-content .content-box .review-box ul li i {
color: var(--theme-color);
font-size: 16px;
line-height: 1em;
}
.single-shop-content .content-box .text {
position: relative;
display: block;
overflow: hidden;
padding: 30px 0 15px;
}
.single-shop-content .content-box .text p {
margin: 0;
}
.single-shop-content .product-info {
margin-bottom: 30px;
}
.single-shop-content .product-info .title {
font-size: 16px;
font-family: var(--font-family-oswald);
font-weight: 500;
text-transform: uppercase;
margin-bottom: 10px;
}
.single-shop-content .content-box .qity {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 30px;
}
.single-shop-content .content-box .qity h5 {
margin-right: 15px;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
}
.single-shop-content .content-box .qity .stock-available {
margin-left: 15px;
font-size: 16px;
font-weight: 500;
color: var(--theme-color);
}
.single-shop-content .content-box .qity .stock-available span {
font-family: var(--font-family-oswald);
color: #222;
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .btn {
position: relative;
display: block;
float: none;
margin-left: 0px;
width: 100%;
background: #f6f6f6;
border: 1px solid #f6f6f6;
color: #848484;
padding: 12px 11px;
cursor: pointer;
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
border-radius: 0
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
border-radius: 0;
margin-top: -2px;
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up:before {
content: "\f0d8";
font-family: FontAwesome;
color: #848484;
font-size: 14px;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
padding: 5px 5px 5px;
}
.single-shop-content .content-box .addto-cart-box .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down:before {
content: "\f0d7";
font-family: FontAwesome;
color: #848484;
font-size: 14px;
position: absolute;
top: -1px;
left: 0px;
width: 100%;
height: 100%;
padding: 0px 5px 5px;
}
.single-shop-content .content-box .addto-cart-box button.addtocart {
background: var(--theme-color);
height: 50px;
width: 170px;
margin-left: 43px;
color: #fff;
padding: 0px 0 0px;
cursor: pointer;
border-radius: 0;
line-height: 50px;
}
.single-shop-content .content-box .addto-cart-box button.addtocart:hover {
background: #26272b;
}
.single-shop-content .content-box .cart-btn {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.single-shop-content .content-box .cart-btn .category {
margin-left: 15px;
font-size: 16px;
font-weight: 500;
color: var(--theme-color);
}
.single-shop-content .content-box .cart-btn .category span {
font-family: var(--font-family-oswald);
color: #222;
text-transform: uppercase;
font-weight: 500;
}
.single-shop-content .content-box .cart-btn .category a {
color: #999;
}
.share-products-socials {
position: relative;
display: block;
overflow: hidden;
margin-top: 42px;
}
.share-products-socials h5 {
position: relative;
display: inline-block;
float: left;
color: #27282c;
font-size: 16px;
line-height: 40px;
font-weight: 500;
text-transform: uppercase;
margin-top: 3px;
}
.share-products-socials ul {
position: relative;
display: inline-block;
float: left;
margin-left: 20px;
}
.share-products-socials ul li {
position: relative;
display: inline-block;
float: left;
margin-right: 10px;
}
.share-products-socials ul li:last-child {
margin-right: 0;
}
.share-products-socials ul li a i {
position: relative;
display: block;
width: 50px;
height: 50px;
font-size: 16px;
line-height: 48px;
text-align: center;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
border: 1px solid #e7e7e7;
color: #9c9c9c;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.share-products-socials ul li a:hover i {
color: var(--theme-color);
}
.share-products-socials ul li a i.fb {}
.share-products-socials ul li a:hover i.fb {
/* background: #1d376f; */
}
.share-products-socials ul li a i.tw {}
.share-products-socials ul li a:hover i.tw {
/* background: #1e7dc5; */
}
.share-products-socials ul li a i.pin {}
.share-products-socials ul li a:hover i.pin {
/* background: #a81218; */
}
.share-products-socials ul li a i.lin {}
.share-products-socials ul li a:hover i.lin {
/* background: #01537d; */
}
.product-tab-box {
position: relative;
display: block;
overflow: hidden;
margin-top: 66px;
}
.product-tab-box .tab-btns {
position: relative;
display: block;
border-bottom: 1px solid #ededed;
margin-bottom: 35px;
z-index: 1;
}
.product-tab-box .tab-btns .tab-btn {
display: inline-block;
float: none;
text-align: center;
margin: 0 2px;
}
.product-tab-box .tab-btns .tab-btn span {
position: relative;
display: block;
background: transparent;
border-radius: 0;
cursor: pointer;
margin: 0;
padding: 15px 20px 13px;
color: #27282c;
font-size: 20px;
font-weight: 600;
text-transform: capitalize;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
font-family: var(--font-family-oswald);
}
.product-tab-box .tab-btns .tab-btn.active-btn span,
.product-tab-box .tab-btns .tab-btn:hover span {
color: var(--theme-color);
}
.product-tab-box .tab-btns .tab-btn span:before {
position: absolute;
left: 0;
bottom: -1px;
right: 0;
height: 1px;
background: var(--theme-color);
content: "";
opacity: 0;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
-webkit-transition-delay: .3s;
-o-transition-delay: .3s;
transition-delay: .3s;
}
.product-tab-box .tab-btns .tab-btn.active-btn span:before,
.product-tab-box .tab-btns .tab-btn:hover span:before {
opacity: 1;
}
.product-tab-box .tabs-content {
position: relative;
display: block;
padding: 0;
}
.product-tab-box .tabs-content .tab {
position: relative;
padding: 0px;
display: none;
}
.product-tab-box .tabs-content .tab.active-tab {
display: block;
}
.product-tab-box .owl-nav-style-two .owl-nav .owl-next,
.product-tab-box .owl-nav-style-two .owl-nav .owl-prev {
background: transparent;
width: 20px;
height: 20px;
top: -40px;
font-size: 30px;
}
.review-box-holder {
position: relative;
display: block;
}
.review-box-holder .single-review-box {
position: relative;
display: block;
padding-left: 70px;
margin-bottom: 40px;
border-bottom: 1px solid #ededed;
padding-bottom: 32px;
}
.review-box-holder .single-review-box .image-holder {
position: absolute;
left: 0;
top: 5px;
}
.review-box-holder .single-review-box .image-holder img {
width: 100%;
border-radius: 50%;
}
.review-box-holder .single-review-box .text-holder {
position: relative;
display: block;
padding-left: 20px;
padding-right: 40px;
}
.review-box-holder .single-review-box .text-holder .top {
position: relative;
display: block;
overflow: hidden;
margin: 0 0 17px;
}
.review-box-holder .single-review-box .text-holder .top .name h3 {
color: #27282c;
font-size: 18px;
font-weight: 600;
margin: 0 0 6px;
text-transform: capitalize;
}
.review-box-holder .single-review-box .text-holder .top .name h3 span {
color: var(--theme-color);
font-size: 15px;
font-weight: 400;
}
.review-box-holder .single-review-box .text-holder .top .review-box ul {
position: relative;
display: block;
overflow: hidden;
}
.review-box-holder .single-review-box .text-holder .top .review-box ul li {
display: inline-block;
margin-right: 3px;
}
.review-box-holder .single-review-box .text-holder .top .review-box ul li:last-child {
margin-right: 0;
}
.review-box-holder .single-review-box .text-holder .top .review-box ul li i {
color: var(--theme-color);
font-size: 14px;
}
.review-box-holder .single-review-box .text-holder .text p {
margin: 0;
}
.product-tab-box .review-form {
padding-top: 33px;
}
.product-tab-box .review-form .shop-page-title {
padding-bottom: 28px;
}
.shop-page-title {
position: relative;
display: block;
}
.shop-page-title .title {
color: #222222;
font-size: 24px;
line-height: 26px;
font-weight: 600;
text-transform: uppercase;
font-family: var(--font-family-oswald);
margin-bottom: 15px;
}
.shop-page-title .title span {
font-weight: 400;
}
.shop-page-title p {
margin: 0;
font-size: 16px;
}
.shop-page-title p b {
color: var(--theme-color);
font-weight: 400;
}
.product-tab-box .review-form .add-rating-box {
position: relative;
display: block;
overflow: hidden;
margin-bottom: 20px;
}
.product-tab-box .review-form .add-rating-box .add-rating-title {
position: relative;
display: inline-block;
float: left;
}
.product-tab-box .review-form .add-rating-box .add-rating-title h4 {
color: #828282;
font-size: 15px;
font-weight: 400;
line-height: 20px;
margin: 0;
text-transform: capitalize;
font-family: inherit;
}
.product-tab-box .review-form .add-rating-box .review-box {
position: relative;
display: inline-block;
float: left;
padding-left: 20px;
}
.product-tab-box .review-form .add-rating-box .review-box ul li {
position: relative;
display: inline-block;
float: left;
line-height: 20px;
margin-right: 5px;
}
.product-tab-box .review-form .add-rating-box .review-box ul li:last-child {
margin-right: 0px;
}
.product-tab-box .review-form .add-rating-box .review-box ul li i {
color: #b5b5b5;
font-size: 16px;
line-height: 20px;
opacity: 1;
-webkit-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
}
.product-tab-box .review-form .input-box p {
color: #828282;
font-size: 15px;
line-height: 20px;
font-weight: 400;
margin: 0 0 10px;
}
.product-tab-box .review-form .input-box p span {
color: var(--theme-color);
}
.product-tab-box .review-form form input[type="text"],
.product-tab-box .review-form form input[type="email"],
.product-tab-box .review-form form textarea {
position: relative;
display: block;
background: #ffffff;
width: 100%;
height: 60px;
border: 1px solid #ededed;
color: #252525;
font-size: 15px;
padding: 0 20px;
margin-bottom: 30px;
border-radius: 0px;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.product-tab-box .review-form form textarea {
height: 170px;
padding: 10px 20px;
margin-bottom: 40px;
}
.product-tab-box .review-form form button {}
.product-tab-box .review-form form button:hover {}
.product-tab-box .review-form form input[type="text"]:focus {
border-color: #e1dddd;
}
.product-tab-box .review-form form input[type="email"]:focus {
border-color: #e1dddd;
}
.product-tab-box .review-form form textarea:focus {
border-color: #e1dddd;
}
.related-product {
padding-top: 73px;
}
.related-product .shop-page-title {
padding-bottom: 26px;
}
.related-product .single-product-item {}
/*** 
=============================================
Cart area  style
=============================================
***/
.cart-area {
padding-top: 110px;
padding-bottom: 110px;
}
.cart-area .table-outer {
overflow-x: auto;
position: relative;
width: 100%;
}
.cart-area .cart-table {
min-width: 1024px;
width: 100%;
}
.cart-area .cart-table .cart-header {
position: relative;
background: #f6f6f6;
color: #27282c;
font-size: 16px;
font-weight: 600;
text-transform: capitalize;
width: 100%;
font-family: var(--font-family-oswald);
}
.cart-area .cart-table .cart-header tr {
background: #fff;
border: 1px solid #e7e7e7;
}
.cart-area .cart-table thead tr th {
font-weight: 600;
line-height: 24px;
min-width: 110px;
padding: 20px 25px;
border-right: 1px solid #e7e7e7;
}
.cart-area .cart-table thead tr th.prod-column {
padding-left: 30px;
text-align: left;
width: 24%;
}
.cart-area .cart-table thead tr th.availability {
padding: 0 40px
}
.cart-area .cart-table tbody tr {
border-bottom: 1px solid #e7e7e7;
border-left: 1px solid #e7e7e7;
}
.cart-area .cart-table tbody tr td {
color: #27282c;
font-size: 18px;
font-weight: 600;
line-height: 24px;
min-width: 100px;
padding: 30px 25px;
font-family: var(--font-family-oswald);
border-right: 1px solid #e7e7e7;
width: 20%;
}
.cart-area .cart-table tbody tr .prod-column {
padding-left: 30px;
text-align: left;
}
.cart-area .cart-table tbody tr .prod-column .column-box {
position: relative;
min-height: 100px;
}
.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb {
width: 80px;
}
.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb a {
position: relative;
display: block;
border-radius: 0px;
}
.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb a img {
width: 100%;
}
.cart-area .cart-table tbody tr .prod-column .column-box .prod-thumb,
.cart-area .cart-table tbody tr .prod-column .column-box .title {
display: table-cell;
vertical-align: middle;
}
.cart-area .cart-table tbody tr .prod-column .column-box .title {
padding-left: 20px;
}
.cart-area .cart-table tbody tr .prod-column .column-box .title h3 {
color: #27282c;
font-size: 18px;
font-weight: 600;
line-height: 20px;
text-transform: capitalize;
}
.cart-area .cart-table tbody tr .qty {
padding-right: 25px;
}
.cart-area .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
float: left;
width: 46px;
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical>.btn {
position: relative;
display: block;
float: none;
margin-left: 0px;
width: 100%;
background: #f6f6f6;
border: 1px solid #f6f6f6;
color: #848484;
padding: 12px 11px;
cursor: pointer;
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
border-radius: 0
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
border-radius: 0;
margin-top: -2px;
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical>.btn.bootstrap-touchspin-up:before {
content: "\f0d8";
font-family: FontAwesome;
color: #848484;
font-size: 14px;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
padding: 5px 5px 5px;
}
.cart-area .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical>.btn.bootstrap-touchspin-down:before {
content: "\f0d7";
font-family: FontAwesome;
color: #848484;
font-size: 14px;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
padding: 0px 5px 10px;
}
.cart-area .cart-table tbody tr td.unit-price {
padding-left: 40px;
padding-right: 20px;
}
.cart-area .cart-table tbody .available-info {
position: relative;
color: #828282;
font-size: 15px;
font-weight: 400;
line-height: 20px;
padding-left: 50px;
}
.cart-area .cart-table tbody .available-info .icon {
position: absolute;
top: 0px;
left: 0;
width: 40px;
height: 40px;
background: var(--theme-color);
border-radius: 50%;
color: #ffffff;
font-size: 18px;
line-height: 40px;
text-align: center;
}
.cart-area .cart-table tbody tr td.price {
color: #828282;
font-size: 15px;
font-weight: 400;
}
.cart-area .cart-table tbody tr .sub-total {
color: var(--theme-color);
font-size: 15px;
font-weight: 400;
}
.cart-area .cart-table tbody tr td .remove {
text-align: center;
font-size: 45px;
color: #999;
font-weight: normal;
}
.cart-area .cart-table tbody tr td .remove .checkbox label {
color: #828282;
font-size: 15px;
font-weight: 400;
}
.cart-area .cart-table tbody tr td .remove .checkbox label input[type="checkbox"] {
display: inline-block;
position: relative;
top: 1px;
}
.cart-area .cart-table tbody tr td .remove span {
cursor: pointer;
-webkit-transition: .5s ease;
-o-transition: .5s ease;
transition: .5s ease;
}
.cart-area .cart-table tbody tr td .remove span:hover {
color: var(--theme-color);
}
.cart-middle {
padding-top: 30px
}
.cart-middle .apply-coupon {
padding-left: 245px;
position: relative;
}
.cart-middle .apply-coupon input[type="text"] {
position: absolute;
top: 0;
left: 0;
width: 225px;
height: 50px;
border: 1px solid #ededed;
color: #828282;
font-size: 15px;
font-weight: 400;
padding: 0 15px;
text-transform: capitalize;
-webkit-transition: all 500ms ease 0s;
-o-transition: all 500ms ease 0s;
transition: all 500ms ease 0s;
border-radius: 0px;
}
.cart-middle .apply-coupon input[type="text"]:focus {
border: 1px solid var(--theme-color)
}
.cart-middle .apply-coupon .apply-coupon-button button {
color: #27282c;
background: #f6f6f6;
}
.cart-middle .apply-coupon .apply-coupon-button button:hover {
color: #ffffff;
background: var(--theme-color)
}
.cart-middle .update-cart .btn-style-one {
color: #ffffff;
background: var(--theme-color);
}
.cart-middle .update-cart button:hover {
background: #26272b;
}
.cart-bottom {
overflow: hidden;
padding-top: 70px;
}
.cart-bottom .calculate-shipping {}
.cart-bottom .calculate-shipping .shop-page-title {
padding-bottom: 16px;
}
.cart-bottom .calculate-shipping .ui-state-default .ui-icon {
background: none
}
.cart-bottom .calculate-shipping .ui-state-default {
position: relative;
display: block;
background: #ffffff;
border: 1px solid #ededed;
border-radius: 0;
color: #828282;
font-size: 15px;
font-weight: 400;
height: 50px;
margin-bottom: 30px;
outline: medium none;
width: 100%;
}
.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-selectmenu-text {
display: block;
line-height: 18px;
overflow: hidden;
padding: 15px 19px;
text-align: left;
}
.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-icon {
position: absolute;
top: 0;
right: 0;
bottom: 0;
border-left: 1px solid #ededed;
display: block;
width: 60px;
height: 48px;
text-indent: 0;
margin: 0;
}
.cart-bottom .calculate-shipping .ui-selectmenu-button span.ui-icon::before {
color: #9b9b9b;
content: "\f107";
font-family: FontAwesome;
font-size: 20px;
overflow: visible;
position: absolute;
right: 21px;
top: 12px;
}
.cart-bottom .calculate-shipping input[type="text"] {
position: relative;
display: block;
border: 1px solid #ededed;
color: #828282;
font-size: 15px;
font-weight: 400;
height: 50px;
padding: 0 20px;
width: 100%;
margin-bottom: 30px;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.cart-bottom .calculate-shipping input[type="text"]:focus {
border: 1px solid #1d1d1d;
}
.cart-bottom .calculate-shipping button {
color: #27282c;
background: #f6f6f6;
}
.cart-bottom .calculate-shipping button:hover {
color: #ffffff;
background: var(--theme-color);
}
.cart-bottom button.checkout-btn {
color: #27282c;
background: #f6f6f6;
margin-top: 30px;
}
.cart-bottom button.checkout-btn:hover {
color: #ffffff;
background: var(--theme-color);
}
/*** 
=============================================
Checkout Area style
=============================================
***/
.checkout-area {
position: relative;
display: block;
padding: 110px 0;
}
.checkout-area .exisitng-customer {
position: relative;
display: block;
background: #f6f6f6;
padding: 20px 28px 21px;
margin-bottom: 20px;
border-radius: 5px;
}
.checkout-area .exisitng-customer:before {
position: absolute;
top: 0;
left: 0;
width: 2px;
height: 100%;
background: var(--theme-color);
content: "";
}
.checkout-area .exisitng-customer h5 {
color: #27282c;
font-size: 16px;
font-weight: 500;
}
.checkout-area .exisitng-customer h5 a {
color: var(--theme-color);
font-weight: 600;
display: inline-block;
padding-left: 15px;
}
.checkout-area .coupon {
position: relative;
display: block;
background: #f6f6f6;
padding: 20px 28px 21px;
margin-bottom: 53px;
border-radius: 5px;
}
.checkout-area .coupon:before {
position: absolute;
top: 0;
left: 0;
width: 2px;
height: 100%;
background: var(--theme-color);
content: "";
}
.checkout-area .coupon h5 {
color: #27282c;
font-size: 16px;
font-weight: 500;
}
.checkout-area .coupon h5 a {
color: var(--theme-color);
font-weight: 600;
display: inline-block;
padding-left: 15px;
}
.checkout-area .form .shop-page-title {
padding-bottom: 20px;
}
.checkout-area .form form .field-label {
color: #27282c;
font-size: 15px;
font-weight: 400;
margin: 0 0 2px;
text-transform: capitalize;
}
.checkout-area .form form .field-input input[type="text"] {
position: relative;
display: block;
border: 1px solid #ededed;
color: #848484;
font-size: 15px;
height: 60px;
margin-bottom: 20px;
padding: 0 15px;
width: 100%;
border-radius: 0px;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.checkout-area .form form .field-input input[type="text"]:focus {
border: 1px solid var(--theme-color);
}
.checkout-area .create-acc .checkbox {}
.checkout-area .create-acc .checkbox label {
color: #222;
font-size: 16px;
font-weight: 500;
margin: 0;
cursor: pointer;
}
.checkout-area .create-acc .checkbox input {
position: relative;
top: 1px;
}
.checkout-area .shipping-info input[type="checkbox"] {
cursor: pointer;
display: inline-block;
position: relative;
top: 0px;
vertical-align: middle;
}
.checkout-area .bottom .checkbox {
margin-bottom: 10px;
}
.checkout-area .bottom .checkbox span {
font-size: 16px;
color: #1c1f26;
font-family: var(--font-family-oswald);
font-weight: 500;
margin-left: 5px;
}
.checkout-area .form form .field-input textarea {
position: relative;
display: block;
border: 1px solid #ededed;
color: #848484;
font-size: 15px;
height: 121px;
margin-bottom: 28px;
padding: 10px 15px;
width: 100%;
border-radius: 0px;
-webkit-transition: all 500ms ease;
-o-transition: all 500ms ease;
transition: all 500ms ease;
}
.checkout-area .form form .field-input textarea:focus {
border-color: var(--theme-color);
}
.checkout-area .form.billing-info {
margin-bottom: 40px;
}
.checkout-area .bottom {
position: relative;
display: block;
margin-top: 90px;
padding: 70px 50px;
-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
}
.checkout-area .table {
overflow-x: auto;
position: relative;
width: 100%;
margin-bottom: 0;
border: 2px solid #e7e7e7;
padding: 35px;
padding-top: 10px;
padding-bottom: 65px;
}
.checkout-area .table .shop-page-title {
padding-bottom: 26px;
}
.checkout-area .table .cart-table {
min-width: auto;
width: 100%;
}
.checkout-area .table .cart-table .cart-header {
position: relative;
background: #f6f6f6;
color: #27282c;
font-size: 16px;
font-weight: 600;
text-transform: capitalize;
width: 100%;
font-family: var(--font-family-oswald);
}
.checkout-area .table .cart-table thead tr th {
font-weight: 600;
line-height: 24px;
min-width: 110px;
padding: 19px 30px 17px;
border-top: none;
border-bottom: none;
}
.checkout-area .table .cart-table thead tr th.product-column {
padding-left: 30px;
text-align: left;
}
.checkout-area .table .cart-table tbody tr {
border-bottom: 1px solid #f6f6f6;
}
.checkout-area .table .cart-table tbody tr td {
vertical-align: middle
}
.checkout-area .table .cart-table tbody tr td {
min-width: 110px;
padding: 30px 0px;
border-top: none;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box {
min-height: 100px;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb {
width: 80px;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb a {
display: block;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb img {
display: block;
width: 100%;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb,
.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title {
display: table-cell;
vertical-align: middle;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title {
padding-left: 20px;
}
.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title h3 {
color: #27282c;
font-size: 18px;
font-weight: 600;
text-transform: capitalize;
}
.checkout-area .table .cart-table tbody tr .qty {
padding-right: 30px;
width: 130px;
}
.checkout-area .table .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
float: left;
width: 46px;
}
.checkout-area .table .cart-table tbody tr .qty .form-control {
display: block;
background-color: #ffffff;
background-image: none;
border: 1px solid #f6f6f6;
border-radius: 0 !important;
-webkit-box-shadow: none;
box-shadow: none;
color: #222222;
font-size: 18px;
font-weight: 500;
height: 50px;
padding: 6px 0;
text-align: center;
font-family: var(--font-family-oswald);
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical>.btn {
position: relative;
display: block;
float: none;
margin-left: 0px;
width: 100%;
background: #ffffff;
border: 1px solid #f6f6f6;
color: #848484;
padding: 12px 11px;
cursor: pointer;
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
border-radius: 0
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
border-radius: 0;
margin-top: -2px;
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical>.btn.bootstrap-touchspin-up:before {
content: "\f0d8";
font-family: FontAwesome;
color: #848484;
font-size: 14px;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
padding: 1px 5px 5px;
}
.checkout-area .table .cart-table tbody tr .qty .bootstrap-touchspin .input-group-btn-vertical>.btn.bootstrap-touchspin-down:before {
content: "\f0d7";
font-family: FontAwesome;
color: #848484;
font-size: 14px;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
padding: 2px 5px 8px;
}
.checkout-area .table .cart-table tbody tr td.price {
color: #222;
font-size: 16px;
font-weight: 500;
text-align: right;
}
.cart-total {
position: relative;
display: block;
}
.cart-total .shop-page-title {
padding-bottom: 26px;
}
.cart-total-table {
margin-bottom: 30px;
padding-top: 20px;
}
.cart-total-table li {
line-height: 24px;
padding: 0;
}
.cart-total-table li.order-total {
position: relative;
border: 1px solid #e7e7e7;
border-left: 0;
border-right: 0px;
padding: 14px 0;
margin-top: 30px;
}
.cart-total-table li:last-child {}
.cart-total-table li span.col.col-title {
position: relative;
display: block;
float: left;
color: #27282c;
font-size: 16px;
line-height: 25px;
padding: 0 0px;
width: 50%;
font-family: var(--font-family-oswald);
text-align: left;
}
.cart-total-table li.order-total span.col.col-title {
font-size: 20px;
font-weight: 500;
color: #222;
}
.cart-total-table li span.col {
position: relative;
display: block;
float: left;
color: #222;
font-size: 16px;
font-weight: 400;
line-height: 28px;
padding: 0px 0px;
width: 50%;
text-align: right;
}
.cart-total-table li.order-total span.col {
color: var(--theme-color);
}
.cart-total .payment-options {
position: relative;
display: block;
overflow: hidden;
background: #ffffff;
margin-top: 30px;
border: 1px solid #ededed;
padding: 33px 30px 40px;
}
.cart-total .payment-options .option-block {
margin-bottom: 14px
}
.cart-total .payment-options .option-block .checkbox {
margin: 0 0 5px;
}
.cart-total .payment-options .option-block .checkbox label {
display: block;
font-weight: 500;
min-height: 20px;
padding-left: 0px;
margin: 0;
}
.cart-total .payment-options .option-block .checkbox label input {
position: relative;
top: 1px;
}
.cart-total .payment-options .option-block .checkbox label span {
color: #27282c;
font-size: 16px;
font-weight: 600;
padding-left: 10px;
font-family: var(--font-family-oswald);
}
.cart-total .payment-options .option-block .checkbox label span b {
color: #27282c;
display: inline-block;
font-size: 15px;
font-weight: 400;
padding-left: 25px;
text-decoration: underline;
}
.cart-total .payment-options .option-block .text {
padding-left: 30px;
}
.cart-total .payment-options .option-block .text p {
margin: 0;
line-height: 28px;
}
.placeorder-button button {
line-height: 50px;
padding: 0 50px;
margin-top: 17px;
}
.placeorder-button button:hover {}
/*** 
=============================================
Login Register Area style
=============================================
***/
.login-register-area {
position: relative;
display: block;
padding-top: 103px;
padding-bottom: 102px;
}
.login-register-area .form .shop-page-title {
padding-bottom: 26px;
}
.login-register-area .form form {
width: 100%;
}
.login-register-area .form .input-field {
position: relative;
}
.login-register-area .form .input-field input[type="text"] {
position: relative;
display: block;
width: 100%;
height: 50px;
border: 1px solid #ededed;
color: #83888d;
font-size: 15px;
margin-bottom: 30px;
padding-left: 15px;
padding-right: 50px;
-webkit-transition: all 700ms ease 0s;
-o-transition: all 700ms ease 0s;
transition: all 700ms ease 0s;
}
.login-register-area .form .input-field .icon-holder {
position: absolute;
top: 15px;
right: 20px;
}
.login-register-area .form .input-field .icon-holder i {
color: #999999;
font-size: 14px;
font-weight: 400;
}
.login-register-area .form .remember-text {
margin-top: 19px;
}
.login-register-area .form .remember-text .checkbox label {
color: #27282c;
font-size: 16px;
font-weight: 600;
margin: 0;
cursor: pointer;
}
.login-register-area .form .remember-text .checkbox input {
position: relative;
top: 1px;
}
.login-register-area .form .remember-text .checkbox span {
color: #27282c;
font-size: 16px;
font-weight: 600;
font-family: var(--font-family-oswald);
}
.login-register-area .form .social-icon {
position: relative;
float: right;
margin-right: -4px;
}
.login-register-area .form .social-icon .login-with {
position: absolute;
left: -110px;
top: 9px;
margin: 0;
font-size: 16px;
color: #999;
}
.login-register-area .form .social-icon li {
display: inline-block;
margin: 0 4px;
}
.login-register-area .form .social-icon li a i {
background: #ffffff none repeat scroll 0 0;
color: #999999;
display: block;
font-size: 14px;
font-weight: 100;
height: 50px;
line-height: 36px;
padding: 8px 0;
text-align: center;
-webkit-transition: all 700ms ease 0s;
-o-transition: all 700ms ease 0s;
transition: all 700ms ease 0s;
width: 50px;
border: 1px solid #e7e7e7;
}
.login-register-area .form .social-icon li a i.twitter {
background: #33ccfe none repeat scroll 0 0;
}
.login-register-area .form .right {
display: block;
overflow: hidden;
margin-left: -60px;
}
.login-register-area .form .right h6 {
float: left;
color: #828282;
font-size: 14px;
font-weight: 400;
margin-top: 18px;
}
.login-register-area .form .right h6 span {
color: var(--theme-color);
}
.login-register-area .form .input-field input[type="text"]:focus {
border: 1px solid #1d1d1d;
}
.login-register-area .form .social-icon li a:hover i.twitter {
background: #12addf;
}
/* *******************************************  Custtom CSS ***************************************** */
/* Whatsapp Css */
#help-button {
display: inline-block;
width: 45px;
height: 45px;
line-height: 45px;
text-align: center;
background: #00e676;
border-radius: 4px;
color: #fff;
position: fixed;
bottom: 30px;
border: none;
left: 25px;
transition: all 0.5s;
z-index: 1111111;
}
#help-button a {
color: #fff;
display: block;
font-size: 25px;
border: none;
outline: none;
}
#help-button a i {
color: #fff;
}
/* whatsapp css */
/* bottom to top css start */
#toptobottombutton {
display: inline-block;
background-color: #274259;
;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
border-radius: 4px;
color: #fff;
position: fixed;
bottom: 30px;
right: 30px;
transition: background-color .3s, opacity .5s, visibility .5s;
opacity: 0;
visibility: hidden;
z-index: 1000;
}
#toptobottombutton:hover {
cursor: pointer;
background-color: #ffffff;
color: var(--theme-color);
}
#toptobottombutton.show {
opacity: 1;
visibility: visible;
}
/* bottom to top css end */
.main-header .header-upper .logo-box{
width: 200px;
padding: 5px 20px !important;
}
.language-switcher{
margin-right: 0px;
border: none;
}
.main-header .logo img.center-cropped {
width: 200px;
height: auto;
background-position: center center;
background-repeat: no-repeat;
}
.main-menu .navigation>li>a i{
padding-left: 5px;
}
.sec-title .sec-title-icon img{
width: 60px;
}
.sec-title .text{
text-align: justify;
}
.intro-section .intro-block .link-btn{
margin-top: 40px;
}
.advantage-block .icon-box img{
width: 80px;
}
.testimonial-section-two .owl-carousel .owl-item img{
width: 80px !important;
}
.specialization-section-two .specialize-block-two .center-cropped {
width: 100%;
height: 250px;
background-position: center center;
background-repeat: no-repeat;
cursor: pointer;
}
.footer-widget .widget-wrap .location{
color: #a2a3a7;
display: flex;
align-items: baseline;
line-height: 30px;
}
.footer-widget .widget-wrap .location i{
font-size: 18px;
padding-right: 10px;
color: #fff;
}
.footer-widget .widget-wrap .location p span{
font-weight: bold;
color: var(--theme-color);
}
.footer-widget .widget-wrap .contact {
display: flex;
flex-direction: column;
}
.footer-widget .widget-wrap .contact a{
color: #a2a3a7;
padding-bottom: 15px;
}
.footer-widget .widget-wrap .contact a:hover{
color: var(--theme-color);
}
.footer-widget .widget-wrap .contact a i{
font-size: 18px;
padding-right: 10px;
color: #fff;
}
.banner-section{
height: 93vh;
}
/* / google translate css start here / */
.goog-te-gadget-simple .goog-te-menu-value span {
display:none;
}
.goog-te-gadget-simple {
background-color: transparent !important;
border-left: none !important;
border-top: none !important;
border-bottom: none !important;
border-right: none !important;
padding: 0 !important;
}
.goog-te-gadget>div>img {
background-image: url(../images/icons/world.png) !important;
background-repeat: no-repeat !important;
width: 25px;
height: 25px;
background-size: 25px 25px;
background-position: center center !important;
}
#google_translate_element span a span:first-child {
display: none;
}
.goog-te-gadget-simple .goog-te-menu-value span {
color: #ffffff !important;
border:0 !important;
}
.goog-te-gadget-simple .goog-te-menu-value {
display: none!important;
}
/*google transalte end here  */
li.footer-menu a {
color: #a2a3a7;
}
li.footer-menu a:hover{ color: #f58634;transition: 0.3s;}
.footer-style-1 h3 {
color: #fff;
font-size: 19px;
font-weight: 500;
margin-bottom: 30px;
margin-top: 30px;
}
.footer-style-1 h3:after {
content: "";
display: block;
width: 50px;
max-width: 100%;
height: 2px;
background: linear-gradient(to right, #f7a42a 0%, #ff3d15 50%, #bd1b28 100%);
margin-top: 10px;
}
.footer-contact-form input,
.footer-contact-form textarea,
.footer-contact-form select {
display: block;
border-radius: 5px;
border: none;
outline: 0;
background: transparent;
font-size: 12px;
font-weight: 500;
width: 100%;
color: #fff;
border: 1px solid white;
padding: 10px 16px;
letter-spacing: 1px;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.footer-contact-form input:focus,
.footer-contact-form textarea:focus,
.footer-contact-form select:focus {
background: #0000;
}
.footer-contact-form textarea {
min-height: 70px;
}
.footer-contact-form button {
margin-top: 0;
}
.button-sm {
position: relative;
display: inline-block;
font-weight: 500;
font-size: 12px;
text-align: center;
padding: 9px 19px 9px 19px;
margin: 5px 5px 5px 0;
letter-spacing: 1px;
}
.primary-button {
background: #f58634;
color: #fff;
font-size: 13px;
font-weight: 500;
padding: 8px 35px 8px 35px;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.primary-button:hover, .primary-button:focus {
color: #fff;
border-color: #222;
background: #222;
}
.author-title a:hover{
color: #274259;
transition: 0.3s;
}
.contact a b {
    color: #f58634;
}
.mail {
    display: flex;
    align-items: baseline;
}
i.fa.fa-envelope-o {
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
}
.location b {
    color: #f58634;
}
.lower-content h4 {
    color: #f58634;
}
@media screen and (max-width: 320px){
.specialize-block-two .image{margin-right: 0px!important;}
.owl-item{margin-top: 30px;}
li.dropdown.current .dropdown-btn span {display: none;}
.intro-section .image-wrap{padding-right: 0px;}
.team-block-one .inner-box{padding-left: 0px!important;padding-top: 0px!important;}
}
@media screen and (max-width: 375px){
.specialize-block-two .image{margin-right: 0px!important;}
.owl-item{margin-top: 30px;}
li.dropdown.current .dropdown-btn span {display: none;}
.intro-section .image-wrap{padding-right: 0px;}
.team-block-one .inner-box{padding-left: 0px!important;padding-top: 0px!important;}
}
@media screen and (max-width: 414px){
.specialize-block-two .image{margin-right: 0px!important;}
.owl-item{margin-top: 30px;}
li.dropdown.current .dropdown-btn span {display: none;}
.intro-section .image-wrap{padding-right: 0px;}
.team-block-one .inner-box{padding-left: 0px!important;padding-top: 0px!important;}
}
@media screen and (max-width: 425px){
.specialize-block-two .image{margin-right: 0px!important;}
.owl-item{margin-top: 30px;}
li.dropdown.current .dropdown-btn span {display: none;}
.intro-section .image-wrap{padding-right: 0px;}
.team-block-one .inner-box{padding-left: 0px!important;padding-top: 0px!important;}
}
@media screen and (max-width: 768px){
.intro-section .image-wrap{max-width: 100%!important;}
.intro-section .image-wrap{margin-right: 0px!important;}
}
@media screen and (max-width: 1024px){
.team-block-one .inner-box{padding-left: 0px!important;padding-top: 0px!important;}
}

/* / end here / */