@charset "utf-8";

/* CSS Document */


/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Dwellpo
Version:	1.0
-------------------------------------------------------------------*/


/*------------------------------------------------------------------

[Table of contents]

    1- CSS RESET
    2- BASIC STYLES
    3- Button
    4- Headings
    5- Preloader
    6- Header
    7- Slider
    8- services section
    9- Collection SECTION
    10- Project section
    11- About section
    12- Blog
    13- clients carousel
    14- banner
    15- Team
    16- project
    17- Single Blog
    18- Header style 2
    19- Header style 3
    20- Error
    21- Gallery
    22- Team Details
    23- About 2
    24- Services 2
    25- Coming soon
    26- Error
    27- Testimonials
    28- Login

NOTE: Every section is commented before starting.

/*------------------------------------------------------------------
    1- CSS RESET
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,600i,700');
html,
body,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: middle;
}

:root {
    --primaryColor: #ff0000;
    --secondaryColor: #333333;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.zero_padding {
    padding: 0;
}

.bg-color {
    background: #f1f1eb;
}


/*------------------------------------------------------------------
    2- BASIC STYLES
-------------------------------------------------------------------*/

body {
    background: #fff;
    color: #252531;
    font: 14px 'Poppins', 'Open Sans', sans-serif;
    overflow-x: hidden;
}

a {
    color: #666666;
    text-decoration: none;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

a:hover {
    color: #cd9967;
}

a:hover,
a:active {
    outline: 0;
}

hr {
    margin: 50px 0;
}

::-moz-selection {
    background: #fe5757;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #fe5757;
    color: #fff;
    text-shadow: none;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}


/*-- Heading --*/

h1,
h2,
h3,
h4,
h5,
h6 {
    -ms-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
    font-family: 'Poppins', sans-serif;
    color: #252531;
}


/*-- Lists --*/

ul {}

ul li {
    font: 14px 'Poppins', arial, sans-serif;
}

ul li a {
    font: 14px 'Poppins', arial, sans-serif;
}

ol {}

ol li {
    font: 14px 'Poppins', arial, sans-serif;
}

ol li a {
    font: 14px 'Poppins', arial, sans-serif;
}


/*-- Paragraph --*/

strong {
    font-weight: bold;
}

p strong {
    font-weight: bold;
}

p em {
    font-style: italic;
}

p {
    font: 400 16px 'Poppins', arial, sans-serif;
    line-height: 36px;
    color: #999999;
}

label {
    font: 400 14px 'Poppins', arial, sans-serif;
    margin-bottom: 12px;
    color: #252531;
}

.cd-top {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    overflow: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    z-index: 10000;
}

.cd-top.cd-is-visible {
    visibility: visible;
}

.cd-top i {
    color: #ffffff;
    font-size: 20px;
}

.cd-top.cd-is-visible:hover i {
    color: var(--primaryColor);
}

.cd-top.cd-2 {
    background: var(--secondaryColor);
    border: 2px solid var(--secondaryColor);
    display: inline-block;
    height: 44px;
    width: 44px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    right: 16px;
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    z-index: 10000;
}

.cd-top.cd-is-visible {
    visibility: visible;
}

.cd-top.cd-2:hover {
    background-color: transparent;
}

.cd-top.cd-2:hover i {
    color: var(--primaryColor);
}


/*------------------------------------------------------------------
    3- Button and Border
-------------------------------------------------------------------*/

.btn-sub .button:hover {
    background: transparent !important;
    color: var(--secondaryColor) !important;
    border: 2px solid var(--primaryColor) !important;
    transition: all 0.4s ease-in-out;
}

.button {
    font: 600 14px 'Poppins', arial, sans-serif;
    display: inline-block;
    background: var(--secondaryColor);
    color: #fff;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 2px solid var(--secondaryColor);
    position: relative;
    z-index: 99;
}

.button i {
    margin-left: 10px;
}

.button.pink {
    padding: 16px 24px;
}

.button.white {
    background: #ffffff;
    color: #252531;
    border: 2px solid #ffffff;
    position: inherit;
}

.button img {
    vertical-align: middle;
    margin-right: 6px;
}

.button.borderd {
    background: none;
    border: 1px solid #fff;
    padding: 12px 24px;
}

.button.borderd i {
    margin-left: 8px;
}

.button:hover {
    background: transparent;
    color: var(--secondaryColor);
    border: 2px solid var(--primaryColor)
}

.button.white:hover {
    background: transparent;
    color: #ffffff;
}

.button.pd-left-15 {
    margin-left: 15px;
}

.border {
    border: 10px solid #ffffff;
    width: 100%;
    display: inline-block;
}

.owl-carousel .owl-nav button:focus {
    outline: none;
}


/*------------------------------------------------------------------
    4- Headings
-------------------------------------------------------------------*/

.heading {
    margin-bottom: 30px;
}

.heading h2 {
    font-size: 36px;
    color: #252531;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 48px;
}

.heading h3 span {
    color: #cd9967;
}

.heading.hp5 h3 span {
    color: #5787f2;
}

.heading:after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--primaryColor);
    display: block;
    margin-top: 5px;
}

.heading p {
    color: #252531;
    padding-bottom: 20px;
}

.heading.hp5:after {
    background: #5787f2
}


/*------------------------------------------------------------------
    5- preloader
-------------------------------------------------------------------*/


/*====preloader=======*/

#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
    background: #ffffff;
    text-align: center;
    z-index: 999999999;
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: fixed;
    z-index: 3;
    border: 4px solid var(--secondaryColor);
    top: 50%;
    animation: loader 2s infinite ease;
    text-align: center;
    left: auto !important;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: var(--primaryColor);
    animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}


/*------------------------------------------------------------------
    6- Header
-------------------------------------------------------------------*/

header {
    width: 100%;
    height: 120px;
    padding: 0px 50px;
}

.logo {
    /* padding: 40px 0 0; */
}

.logo h1 {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 800;
}

nav.navbar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

nav>ul>li {
    display: inline-block;
    padding: 44px 0;
    position: relative;
    margin-right: 20px;
}

nav>ul>li:last-child {
    margin-right: 0;
}

nav ul li a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
    padding: 5px 20px;
    display: block;
}

nav ul li a.active {
    background: #cd9967;
    color: #ffffff;
}

.responsive-mobile-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.nav-pills {
    padding: 0;
    margin: 0;
}

.nav-pills>li {
    padding: 0;
    list-style: none;
}

ul.page_numbers {
    padding: 0;
    margin: 0;
}

.comment_box ul,
.comment_box li {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.comments {
    padding: 0;
    margin: 0;
}

.comments li {
    list-style: none;
}

nav ul ul li a {
    padding: 5px 0;
}


/* ========= DropDown ======= */

nav ul ul {
    position: absolute;
    top: 120%;
    left: 0;
    width: 250px;
    background-color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    border-top: 4px solid #cd9967;
}

nav ul ul ul {
    top: 50px;
    left: 90%;
    right: auto;
}

nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

nav ul ul li:hover>ul {
    top: 10%;
    left: 100%;
}

nav ul ul>li {
    float: left;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #f3f3f3;
    position: relative;
}

nav ul ul>li.sub-items:before {
    opacity: 1;
    visibility: visible;
}

nav ul ul ul li {
    position: relative;
}

nav ul ul li.dropdown:before {
    content: '\f0da';
    position: absolute;
    top: 35%;
    right: 20px;
    color: #666;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
}

nav ul ul li.dropdown:hover:before {
    color: #cd9967
}

.card-sec {
    float: right;
    text-align: right;
}

.card-sec>ul {
    margin: 0;
    padding: 0;
}

.card-sec>ul>li {
    display: inline-block;
    padding: 48px 10px;
    position: relative;
    float: left;
    margin-left: 40px;
    list-style: none;
}

.card-sec>ul>li:first-child {
    margin-left: 0;
    list-style: none;
}

.card-sec>ul>li>a {
    font-size: 14px;
    display: inline-block;
}

.card-sec>ul>li>a i.ion-android-search {
    font-size: 29px;
}

.card-sec>ul>li>a i.ion-android-menu {
    font-size: 36px;
    position: relative;
    top: 2px;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: #2b283d;
    z-index: 9999;
    display: none;
}

.cart-dropdown>span {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 15px;
}

.cart-dropdown>span strong {
    font-size: 24px;
}

.cart-dropdown ul {
    padding: 0;
    margin: 0;
    text-align: center;
    padding: 25px 20px;
}

.cart-dropdown ul li {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    list-style: none;
}

.cart-dropdown ul li a {
    width: 100%;
    float: left;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    padding: 20px 0;
    font-weight: 600;
}

.cart-dropdown ul li:last-child a {
    background-color: #fff;
    color: #000;
}

.cart-dropdown ul li:last-child {
    margin-bottom: 0;
}

.cart-prdct-info {
    float: left;
    width: 100%;
    padding: 20px 15px;
    border-bottom: 1px solid #333;
}

.cart-pdct-img {
    float: left;
    width: 70px;
}

.cart-pdct-img img {
    width: 100%;
}

.crt-info {
    float: left;
    width: 70%;
    text-align: left;
    padding-left: 10px;
    padding-top: 5px;
}

.crt-info h3 {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.crt-info b {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.crt-info span {
    color: #666;
    font-size: 14px;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.crt-info>a {
    float: right;
    color: #fff;
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    text-align: center;
    line-height: 30px;
}


/* ========== mobile-men-btn ========== */

.mobile-men-btn {
    float: right;
    padding-left: 30px;
    display: none;
}

.mobile-men-btn i {
    color: #000;
    font-size: 30px;
}


/* =================== responsive-mobile-menu ================== */

.responsive-mobile-menu {
    position: fixed;
    top: 0;
    display: block;
    background-color: #2b283d;
    width: 250px;
    height: 100vh;
    z-index: 999;
    left: -250px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 35px 0 0;
}

.responsive-mobile-menu>a {
    color: #ffffff;
    float: right;
    padding-right: 20px;
    font-size: 30px;
    margin-bottom: 50px;
}

.responsive-mobile-menu.active {
    left: 0;
}

.responsive-mobile-menu ul {
    float: left;
    width: 100%;
}

.responsive-mobile-menu ul li {
    float: left;
    width: 100%;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.responsive-mobile-menu ul li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    float: left;
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid #bfbfbf;
    position: relative;
}

.responsive-mobile-menu ul ul {
    float: left;
    width: 100%;
    display: none;
    padding: 10px 20px;
}

.responsive-mobile-menu ul li.active>a {
    border-bottom: 0;
}

.responsive-mobile-menu ul ul li a {
    border-bottom: 0;
    transition: .5s;
}

.responsive-mobile-menu ul ul li a:before {
    content: none;
}

.responsive-mobile-menu ul ul li {
    position: relative;
    border-bottom: .5px solid #cecece;
}

.responsive-mobile-menu ul ul li:before {
    content: "";
    width: 10px;
    height: 2px;
    background-color: #cd9967;
    left: 0;
    top: 48%;
    position: absolute;
}

.responsive-mobile-menu>ul>li>a.dropdown:before {
    content: "\f107";
    position: absolute;
    top: 35%;
    right: 20px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 16px;
    transition: .3s;
}

.responsive-mobile-menu ul>li.menu-has-items.active>a:before {
    content: '\f106';
}

.responsive-mobile-menu ul>li.menu-has-items>a:before {
    opacity: 1;
    visibility: visible;
}

.responsive-mobile-menu>ul>li.menu-item-has-children.active a.dropdown:before {
    transform: rotate(180deg);
}


/* ========== search-form-page ==========*/

.search-page {
    float: left;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 100px 0;
    height: 100%;
    z-index: 0;
    text-align: center;
    visibility: hidden;
    transform: scale(.8);
    transition: all 0.4s ease-in-out;
}

.search-page.active {
    visibility: visible;
    z-index: 9999999999;
    transform: scale(1);
}

.search-form-page>h2 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 140px;
    font-family: "Poppins", sans-serif;
}

.search-form-page form {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 140px;
}

.search-form-page form input {
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #dbdbdb;
    text-align: center;
    padding: 0 50px 0 20px;
    font-size: 20px;
    font-weight: 400;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: #000;
    font-family: "Open Sans", sans-serif;
}

.search-form-page form input:focus {
    outline: none;
}

.search-form-page form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background: none;
    border: 0;
    color: #666;
    font-size: 28px;
}

.close-search {
    float: left;
    width: 100%;
    text-align: center;
}

.close-search i {
    color: #666666;
    font-size: 32px;
    display: block;
}

.close-search a {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    transition: .0s;
}


/*------------------------------------------------------------------
    7- Slider
-------------------------------------------------------------------*/

.main-slider {
    position: relative;
    z-index: 10;
}

.main-slider img {
    height: 1100px;
}

.main-slider .tp-caption {
    z-index: 5 !important;
}

.main-slider .tparrows.gyges {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
}

.main-slider .tparrows.gyges:before {
    line-height: 60px;
}


/*------------------------*/

.tparrows.tp-leftarrow:before {
    content: 'prev';
    color: #ffffff;
    text-transform: uppercase;
    transform: rotate(270deg);
    font: 14px 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.tparrows.tp-rightarrow:before {
    content: 'next';
    color: #ffffff;
    text-transform: uppercase;
    transform: rotate(90deg);
    font: 14px 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.slider-2 .tparrows.tp-leftarrow:before {
    content: '';
}

.slider-2 .tparrows.tp-rightarrow:before {
    content: '';
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    transform: rotate(90deg);
    font: 14px 'Poppins', sans-serif;
    letter-spacing: 2px;
}


/*------------------------*/

.main-slider h2 {
    position: relative;
    color: #ffffff;
    line-height: 1.2em;
    display: inline-block;
    text-align: center;
    letter-spacing: 7px;
    font: 600 24px 'Poppins', sans-serif;
}

.main-slider .welcome-sidebar:before {
    content: '';
    width: 6px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 50%;
}

.main-slider .welcome-sidebar:after {
    content: '';
    width: 6px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    right: 0;
    top: 50%;
}

.main-slider h2.alternate {
    font-weight: 700;
    font-size: 24px;
}

.main-slider .text {
    position: relative;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
    font: 700 140px 'Poppins', sans-serif;
    letter-spacing: 15px;
    line-height: normal;
}

.main-slider h2.alternate {
    font-weight: 700;
}

.main-slider h2.light,
.main-slider .text.light {
    color: #ffffff;
}

.main-slider .btns-box .theme-btn {
    margin-right: 20px;
}

.slider-content {
    position: relative;
    padding: 35px 30px;
    background-color: rgba(0, 0, 0, 0.60);
}

.main-slider .tp-bannertimer,
.main-slider .tp-bullets {
    display: none !important;
}

.layer_1 img {
    width: 100%;
    position: absolute;
    background-position: center;
    z-index: 100;
}


/* webions */

.tp-bgimg {
    position: relative;
}

.tp-bgimg.defaultimg:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 67%);
    position: absolute;
}


/*------------------------------------------------------------------
    8- SERVICES SECTION
-------------------------------------------------------------------*/

.section_padding {
    padding: 100px 0;
}

.section_margin {
    margin-bottom: 120px;
    display: inline-block;
}

.section_padding .layer_1 img {
    position: absolute;
    top: -110px;
}

.services_section {
    background-image: url(../image/services_bg.jpg);
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}


/*---Content Left----*/

.content_left .author {
    position: absolute;
}

.content_left .content_details p {
    margin-bottom: 30px;
}

.content_left p.author {
    line-height: normal;
}

.content_left p.author span {
    font-weight: 700;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    margin-left: 15px;
    color: #252531;
}

.content_left .author:before {
    content: '';
    width: 5px;
    height: 5px;
    background: #cd9967;
    position: absolute;
    left: 0;
    top: 45%;
}


/*---Content Right----*/

.content-right {
    border-right: 20px solid #cd9967;
    padding-right: 15px;
}

.content-right .content_inner {
    position: absolute;
    top: 30px;
    z-index: 1;
}

.content-right .content_inner .title {
    max-width: 60%;
    text-align: center;
}

.content-right .content_inner h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    background: rgb(0 0 0 / 48%);
    border-radius: 3px;
    color: #fff;
}

.content-right .content_inner h3 span {
    margin-left: 40px;
    display: block;
}

.content_img img {
    position: relative;
    width: 399px;
    height: 248px;
    border: 15px solid #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.31);
}

.content_img img:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 67%);
    position: absolute;
}


/*---Services----*/

.our_services {
    position: relative;
}

.service {
    background: #ffffff;
    padding: 40px;
    transition: .5s;
}

.service h4 {
    font-size: 18px;
    display: inline-block;
    margin-bottom: 30px;
    line-height: 36px;
    font-weight: 400;
}

.service span {
    float: right;
    line-height: 36px;
    color: #ddd;
    transition: .5s;
    font-size: 18px;
}

.service p {
    line-height: 28px;
}

.service:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.14);
}

.service:hover span {
    color: #cd9967;
}

.services_page {
    padding: 120px 0;
}

.services_page .service {
    margin-bottom: 30px;
}


/*---Reason You Love Devellpo----*/

.reason_sec {
    width: 100%;
    height: 200px;
    background: var(--secondaryColor);
    text-align: center;
    padding: 75px 0;
}

.reason_sec h1 {
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 48px;
}


/*------------------------------------------------------------------
    9- Collection SECTION
-------------------------------------------------------------------*/

.left_inner_collection {
    padding: 78px 50px;
    text-align: center;
    background: #f1f1eb;
}

.inner_content {
    background: #ffffff;
    padding: 50px 30px;
    box-shadow: 0px 0px 20px rgba(179, 179, 179, 0.51);
}

.left_inner_collection h5 {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #252531;
}

.left_inner_collection p {
    line-height: 60px;
    color: #252531;
    font-size: 36px;
    font-weight: 400;
}

.left_inner_collection .inner_content a.button {
    margin-top: 40px;
    width: 170px;
    height: 50px;
}

.inner_content a i {
    margin-left: 10px;
}


/*--------right collection------*/

.right_collection {
    position: relative;
}

.right_collection:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    position: absolute;
}

.right_collection img {
    max-width: 100%;
}

.margin_btm {
    margin-bottom: 120px;
}


/*------------------------------------------------------------------
    10- Project section
-------------------------------------------------------------------*/

.project_section {
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), url(../image/images/img7.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.project_section.project_page {
    background: #f4f4f4;
    padding: 120px 0;
}

.my-selector {
    text-align: center;
    margin-bottom: 60px;
}

.my-selector a {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    border: 1px solid rgba(0, 0, 0, 0);
    display: inline-block;
    padding: 2px 15px;
}

.my-selector a:hover,
.my-selector a.selected {
    color: #fff;
    background-color: #cd9967;
}

.item_inner.item_inner {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.item_inner img {
    float: left;
    width: 100%;
    height: 220px;
}

.item_inner.item_inner .border {
    position: relative;
    overflow: hidden;
}

.item_inner.item_inner .overlay {
    position: absolute;
    background: transparent;
    width: 100%;
    height: 100%;
    transition: .2s;
}

.item_inner.item_inner .overlay a {
    background: #cd9967;
    color: #ffffff;
    width: 40px;
    height: 40px;
    padding: 10px;
    text-align: center;
    border-radius: 40px;
    left: 128px;
    bottom: -90px;
    position: absolute;
    transition: .5s;
}

.item_inner.item_inner .overlay h4 a {
    color: #ffffff;
    padding: 0;
    background: transparent;
    width: auto;
    height: auto;
    position: absolute;
    left: 30px;
    bottom: 20px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    transition: .7;
}

.item_inner.item_inner .overlay p {
    position: absolute;
    bottom: -40px;
    left: 30px;
    font-size: 14px;
    transition: .7s;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.item_inner.item_inner:hover .overlay {
    visibility: visible;
    background: rgba(0, 0, 0, 0.31)
}

.item_inner.item_inner:hover .overlay a {
    bottom: 90px;
}

.item_inner.item_inner:hover .overlay h4 a {
    bottom: 50px;
}

.item_inner.item_inner:hover .overlay p {
    bottom: 10px;
}

.project_two ul li.item {
    width: 20%;
    float: left;
}

.project_two ul li.item .item_inner {
    margin-bottom: -4px;
}

.project_section .heading h2 {
    color: #ffffff;
}

.project_section .heading:after {
    margin: 0 auto;
}

.project_page .all_projects {
    text-align: center;
    margin-top: 40px;
}

.project_page .all_projects a {
    color: #252531;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
    line-height: 30px;
}


/*------------------------------------------------------------------
    10- About section
-------------------------------------------------------------------*/

.about_section .about_left {
    padding: 200px 0 120px;
}

.about_section {
    background: url(../image/images/img6.png) no-repeat;
    width: 100%;
    background-size: 800px 435px;
    background-position: right center;
    background-attachment: fixed;
    /* background-size: cover; */
}

.about_section .about_left h1 {
    color: #999999;
    font-weight: 400;
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
}

.about_section .about_left h2 {
    color: #252531;
    font-weight: 400;
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    line-height: 52px;
    margin-bottom: 30px;
}

.about_section .about_left p {
    color: #252531;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 50px;
}

.about_section .about_left ul {
    padding-left: 40px;
}

.accrodion-grp .accrodion {
    padding-left: 20px;
}

.accrodion-grp .accrodion .accrodion-title {
    position: relative;
}

.accrodion-grp .accrodion .accrodion-title i {
    font-size: 30px;
    transition: .5s;
    color: #cd9967;
    position: absolute;
    left: 0;
    top: 0;
}

.accrodion-grp .accrodion .accrodion-title h6 {
    color: #999999;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
}

.accrodion-grp .accrodion .accrodion-title {
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    margin-bottom: 30px;
}

.accrodion-grp .accrodion .accrodion-content {
    padding-left: 30px;
    padding-right: 30px;
}

.accrodion-grp .accrodion .accrodion-content p {
    font: 400 14px "Open Sans", sans-serif;
    color: #999;
    line-height: 26px;
}

.accrodion.active .accrodion-title i {
    transform: rotate(90deg);
}


/*------------------------------------------------------------------
    11- Testimonials
-------------------------------------------------------------------*/

.testimonials {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../image/images/img3.jpg) no-repeat;
    background-position: center;
}

.testi_heading h2 {
    color: #ffffff;
    font-weight: 400;
    font-size: 36px;
}

.testi_carousel .item {
    padding: 80px 0 0;
}

.testi_carousel .item_inner {
    padding: 80px 85px 60px;
    background: #ffffff;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.testi_img {
    display: inline-block;
    text-align: center;
}

.testi_img img {
    z-index: 99999;
    width: 115px !important;
    margin: 0 auto;
    position: absolute;
    top: -12%;
    left: 0;
    right: 0;
    border: 5px solid #ffffff;
    background-color: #ffffff;
    border-radius: 50%;
}

.testi_carousel .item_inner p.para {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #252531;
    line-height: 30px;
    margin-bottom: 30px;
}

.testi_carousel .item_inner p.testi_name {
    font-size: 18px;
    color: var(--secondaryColor);
    line-height: 26px;
    font-weight: 600;
}

.testi_carousel .item_inner p.testi_details {
    font-size: 18px;
    color: var(--primaryColor);
    line-height: 26px;
}


/*----- Owl Nav -------*/

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 40%;
    left: 0;
    color: #ffffff;
    font-size: 40px;
    content: '\f9c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 40%;
    right: 0;
    color: #ffffff;
    font-size: 40px;
    content: "\f12c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}


/*----- Owl Dots -------*/

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel button.owl-dot {
    width: 20px;
    height: 5px;
    background-color: #534c5c;
    margin: 0px 3px;
    outline: none;
    border-radius: 10px;
    vertical-align: middle;
}

.owl-carousel .owl-dot.active {
    background-color: #cd9967;
    outline: none;
    vertical-align: middle;
}

.owl-brands.owl-carousel .owl-dots {
    display: none;
}

.owl-brands.owl-carousel .owl-nav {
    display: block;
    position: relative;
}

.owl-brands.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -20px;
    top: 0;
    z-index: 99;
    background-color: #ffffff;
}

.owl-brands.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -20px;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
}

.testimonial-list.owl-carousel .owl-dots {
    display: block;
    margin-top: 40px;
}

.tour-list.owl-carousel .owl-nav {
    display: block;
}

.tour-list.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -90px;
}

.blog-slider1.owl-carousel .owl-nav {
    top: 30px;
    display: block;
    position: relative;
    text-align: center;
    margin-left: -30px;
}

.blog-slider2.owl-carousel .owl-nav {
    top: 30px;
    display: block;
    position: relative;
    text-align: center;
    margin-left: -30px;
}


/*------------------------------------------------------------------
    12- clients carousel
-------------------------------------------------------------------*/

.clients_carousel {
    padding: 25px 0;
}

.clients_carousel .item img {
    width: 100%;
    opacity: .3;
    transition: .3s;
}

.clients_carousel .item img:hover {
    opacity: 1;
}


/*----------------------------------------------------------------------------------------
    13.FOOTER
----------------------------------------------------------------------------------------*/

.footer-area {
    padding: 0px;
    background: var(--secondaryColor);
    overflow-x: hidden;
}

.footer-widgets {
    padding: 100px 0px 100px;
    position: relative;
    display: inline-block;
}

.footer-bottom .border_top {
    border-top: 1px solid #413e51;
    padding: 40px 0px 60px;
}

.footer-bottom2 {
    background: #333;
    padding: 16px 0px;
}

.footer-text h6 {
    text-transform: capitalize;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.footer-text h6 span {
    color: #cd9967;
}


/* footer widget */

.widget h4 {
    font-size: 24px;
    padding-bottom: 20px;
    text-transform: capitalize;
    font-weight: 600;
    color: #ffffff;
}

.widget p {
    color: #333;
}

footer .widget ul {
    list-style: none;
    padding-left: 0px;
    font-size: 16px;
    color: #999;
}

footer .widget ul a {
    display: block;
    text-align: left;
    color: #999;
}

footer .widget ul.deals-list a {
    display: table-cell;
    text-align: left;
    color: #999;
}

footer .widget ul.tweets li {
    margin-bottom: 30px;
    padding-left: 40px;
    position: relative;
    line-height: 28px;
}

footer .widget ul.tweets li i {
    color: #0081ff;
}

footer .widget ul.tweets li span {
    padding-top: 20px;
    display: block;
    font-weight: 300;
    color: #000;
}

footer .widget ul.footer-addres li {
    margin-bottom: 30px;
    position: relative;
}

footer .widget ul i {
    font-size: 20px;
    display: inline-block;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    top: 3px;
}

ul.instagram-list li img {
    width: 100%;
    height: auto;
}

footer .widget ul.instagram-list li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 27%;
}

.footer-bottom .left-align {
    text-align: left;
}

.footer-bottom .right-align {
    text-align: right;
}

.footer-bottom .footer-social {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0;
}

.footer-bottom .footer-social li {
    display: inline-block;
    padding: 0px 10px;
}

.header-social {
    float: right;
}

.header-text .header-social li {
    display: inline-block;
}

.header-text .header-social a {
    display: inline-block;
    color: #fff;
    padding: 40px 15px;
    font-size: 24px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    background: transparent;
}

.header-social li a {
    color: #fff;
}

.header-social li:hover a {
    color: #62ac1e;
}

.footer-bottom .footer-social a {
    font-size: 26px;
    color: #fff;
}

.footer-bottom .footer-social a:hover {
    color: #222;
}

.news_letter {
    margin-top: 30px;
}

.news_letter form {
    position: relative;
}

.news_letter input {
    border: 0px;
    border-radius: 50px;
    background: #ff7777;
    width: 100%;
    padding: 15px 35px 15px 15px;
    outline: 0px !important;
    font: 300 13px 'Merriweather', arial, sans-serif;
    color: #8d949a;
}

.news_letter input[type="submit"] {
    position: absolute;
    bottom: 15px;
    right: 10px;
    margin-top: -9px;
    outline: 0px !important;
    padding: 0px;
    text-align: center;
    width: 20px;
    height: 16px;
    background: url("../image/message.png") no-repeat;
}

.formnewsletter2 {
    position: relative;
    margin: 0 auto;
}

.formnewslette2r input.form-control {
    height: 58px !important;
    width: 90%;
}

.formnewsletter2 .hvr-shutter-out-horizontal::before {
    background: #353535;
}

.formnewsletter2 button {
    background: #62ac1e none repeat scroll 0 0;
    color: #fff;
    font-weight: 500;
    height: 50px;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 30%;
    border: 0;
    font-size: 20px;
}

.index-3-footer h3 {
    text-transform: capitalize;
}

.formnewsletter2 button.hvr-shutter-out-horizontal::before {
    border-radius: 30px;
}

.newsletter-form2 p {
    line-height: 2;
    color: #fff;
    font-size: 20px;
}

.footer-area .widget.about_us p {
    font-size: 14px;
    color: #999999;
    line-height: 30px;
}

.footer-area .widget .social_area {
    display: inline-block;
    width: 100%;
}

.social_icon ul li a {
    float: left;
    margin-right: 15px;
}

.social_icon ul li a i {
    display: inline-block;
    position: relative;
    font-size: 20px;
}

.social_icon ul li a:hover {
    color: #cd9967;
}


/*------------------------------------------------------------------
    13- banner
-------------------------------------------------------------------*/

.banner_section {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../image/images/img4.jpg) no-repeat;
    width: 100%;
    height: 300px;
    background-size: cover;
    /* background-position: center; */
    padding: 130px 0;
}

.banner_section h2 {
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
}

.banner_section p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
    float: right;
}

.banner_section p a {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primaryColor);
    display: inline-block;
}

.banner_section p span {
    margin: 0 10px;
    color: var(--primaryColor);
}


/*--------promo_banner-------------*/

.promo_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../image/images/img5.jpg);
    background-size: cover;
    width: 100%;
    height: 500px;
    padding: 150px 0;
    text-align: center;
    background-position: center;
    background-attachment: fixed;
}

.promo_banner h1 {
    font-size: 60px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 80px;
}

.promo_banner p {
    font-size: 18px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 35px;
}


/*------------------------------------------------------------------
    14- Team
-------------------------------------------------------------------*/

.heading.text-center:after {
    display: inline-block;
    margin: 0 auto;
}


/*------------------------------------------------------------------
    19- Contact us
-------------------------------------------------------------------*/

.map1 iframe {
    width: 100%;
    height: 550px;
}

.map2 iframe {
    width: 100%;
    height: 265px;
}

.contact_section {
    background: #f4f4f4;
    padding: 120px 0;
}

.contact_section h1 {
    font: 400 48px "Poppins", sans-serif;
    margin-bottom: 30px;
}

.contact_section p {
    font: 400 18px "Poppins", sans-serif;
    color: #999;
    margin-bottom: 30px;
}

.address_location {
    overflow: hidden;
    margin-bottom: 30px;
}

.address_location p {
    font: 400 18px "Poppins", sans-serif;
    color: #999;
    padding-left: 40px;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
}

.address_location p:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: #cd9967;
    left: 0;
    top: 50%;
    transition: .5s;
}

.address_location p:hover:before {
    opacity: 1;
}

.contact_section span {
    font: 700 14px "Poppins", sans-serif;
    color: #252531;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#contact_form h6 {
    font: 400 14px "Open Sans", sans-serif;
    color: #999;
    margin-bottom: 10px;
}

#contact_form input {
    margin-bottom: 30px;
    height: 55px;
}

#contact_form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact_form .form-control:focus {
    border: 2px solid #cd9967;
    outline: none;
    box-shadow: 0px 5px 10px rgba(179, 179, 179, 0.61);
    border: 2px solid #cd9967;
}

#contact_form textarea.form-control {
    margin-bottom: 30px;
    height: 200px;
    resize: none;
}

#contact_form input[type="checkbox"] {
    margin: 0 15px 50px 0;
    width: 25px;
    height: 25px;
    background-color: #ffffff !important;
    border-radius: 0;
    border: 1px solid #ddd;
    display: inline-block;
}

#contact_form label {
    font: 400 14px "Open Sans", sans-serif;
    margin-bottom: 15px;
}

#contact_form input[type="submit"] {
    width: 100%;
    font: 700 14px "Open Sans", sans-serif;
    transition: .5s;
    border: none;
}

#contact_form input[type="submit"]:hover {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(179, 179, 179, 0.51);
    color: #252531;
    border: none;
}


/*------------------------------------------------------------------
    21- Gallery
-------------------------------------------------------------------*/

.gallery_sec .heading {
    margin-bottom: 50px;
}

.gallery_sec .heading h2 {
    color: #252531;
    margin-bottom: 0;
    font-weight: 400;
}

.gallery_sec .item_inner .overlay a.link {
    position: absolute;
    top: -50px;
    right: 20px;
    margin: 0 auto;
    transition: .4s ease-in-out;
    left: auto;
    visibility: hidden;
}

.gallery_sec .item_inner:hover .overlay a.link {
    visibility: visible;
    top: 20px;
}

.gallery_sec .my-selector {
    text-align: center;
    margin-bottom: 60px;
}

.gallery_sec .my-selector a {
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    border: 1px solid rgba(0, 0, 0, 0);
    display: inline-block;
    padding: 8px 14px;
}

.gallery_sec .my-selector a:hover,
.gallery_sec>.my-selector a.selected {
    color: white;
    border: 1px solid #eeeeee;
}

.gallery_sec .item_inner.item_inner {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery_sec .item_inner img {
    float: left;
    width: 100%;
}

.gallery_sec .item_inner .overlay {
    visibility: hidden;
    background: rgba(0, 0, 0, 0.61);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 400px;
}

.gallery_sec .project_two .item_inner .overlay {
    line-height: 0px;
}

.gallery_sec .item_inner .overlay>a {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -10px;
}

.gallery_sec .item_inner .overlay>a i {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
}

.gallery_sec .item_inner .overlay h5 a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.gallery_sec .item_inner:hover .overlay {
    visibility: visible;
}

.gallery_sec .item_inner:hover .overlay>a {
    top: 35%;
}

.project_two.before_after ul li.item {
    width: 20%;
    float: left;
}

.project_two.before_after ul li.item .item_inner {
    margin-bottom: -4px;
}

.project_two.before_after .item_inner .overlay>a {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -70px;
}

.project_two.before_after .item_inner:hover .overlay>a {
    top: 45%;
}


/*======================================
    ANIMATIONS
======================================*/


/*--------Nav-----------*/

nav ul li a {
    position: relative;
    z-index: 99;
}

nav ul li a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: var(--primaryColor);
    transition: .5s;
    z-index: -9;
}

nav ul li a:hover {
    color: #ffffff;
}

nav ul li a:hover:before {
    height: 100%;
}

nav ul li ul li a:before {
    content: none;
}

nav ul li ul li a:hover {
    color: #cd9967;
}


/*--------service-----------*/

.service {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service:before {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    z-index: 0;
}

.service:hover:before {
    -webkit-transition: .2s -webkit-transform linear, .2s height linear .2s;
    transition: .2s transform linear, .2s height linear .2s;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    height: 100%;
    border-color: var(--secondaryColor);
}

.service .inner_service:after {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    z-index: 0;
}

.service:hover .inner_service:after {
    -webkit-transition: .2s -webkit-transform linear .4s, .2s height linear .6s;
    transition: .2s transform linear .4s, .2s height linear .6s;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    height: 100%;
    border-color: var(--primaryColor);
}


/*--------service-----------*/

.slider-2 .lyr4 {
    position: relative;
    z-index: 99999 !important;
}

.slider-2 .lyr4:before {
    position: absolute;
    content: '';
    background: #ffffff;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    z-index: -9;
    transition: .3s;
    visibility: hidden;
}

.slider-2 .lyr4:hover:before {
    width: 100%;
    visibility: visible;
}

.slider-2 .lyr4:hover {
    color: #cd9967;
}

.work_section .item_inner:after {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    content: '';
    background: #000;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all .6s ease-in;
    -o-transition: all .6s ease-in;
    transition: all .6s ease-in;
}

.work_section .item_inner:hover::after {
    opacity: .7;
    transform: scale(.9);
}

.work_section .item_inner a.search {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 46%;
    color: #ffffff;
    z-index: 999;
    visibility: hidden;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    background: #cd9967;
    padding: 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.work_section .item_inner:hover a.search {
    visibility: visible;
}

.testi_carousel_2 .owl-item.center>.item .testi_outer img.quote2 {
    transform: rotate(180deg);
}

.footer-3 .footer-social a i {
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .map2 {
        margin-top: 30px;
    }
}

@media screen and (max-width: 425px) and (min-width: 320px) {
    .logo-img {
        width: 140px !important;
    }
    .map2 {
        margin-top: 30px;
    }
}