@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADINGS */

h1,
p {
    line-height: 1.4;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    color: #000;
    font-size: 1.3rem;
}

h1,
h2,
h3,
h3,
h5,
h6 {
    font-family: 'Ubuntu', sans-serif;
}

img {
    width: 100%;
}

body {
    font-size: 16px;
    font-family: 'Yantramanav', sans-serif;
}

.container {
    width: 1250px;
    margin: auto;
}

.head-margin {
    height: 90px;
}

/* header */

header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 1px 3px #3333334a;
    float: left;
    z-index: 8;
    position: fixed;
    transition: height .4s ease, opacity .3s ease;
    height: 100px;
    top: 0;
}

.grad-bar {
    width: 100%;
    height: 5px;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    -webkit-animation: gradbar 15s ease infinite;
    -moz-animation: gradbar 15s ease infinite;
    animation: gradbar 15s ease infinite;
}

#top-link-block {
    background: rgba(0, 0, 0, 0.255);
    width: 30px;
    height: 30px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    line-height: 30px;
    border-radius: 4px;
}

#top-link-block a {
    color: rgba(255, 255, 255, 0.812);
}

/* fixed header */

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 40px;
    border-bottom: 1px dotted #ccc;
}

.top-bar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.top-bar ul a {
    margin-left: 15px;
    color: #000;
    text-decoration: none;
}

.top-bar.hid {
    display: none;
}

header.fixed {
    width: 100%;
    height: 80px;
    background-color: #f1f1f1;
    position: fixed;
    z-index: 13;
    box-shadow: 0 1px 3px #3333334a;
    /* border-bottom: 1px solid #fff; */
}

header.fixed .navbar ul {
    margin-top: 10px;
}

/* NAVIGATION */

.navbar {
    width: 100%;
    float: left;
    margin-top: 5px;
}

.navbar img {
    width: 268px;
    justify-self: start;
    transition: all 0.25s ease;
}

header.fixed .navbar img {
    width: 180px;
}

.navbar ul {
    float: right;
    margin-top: 20px;
    margin-right: 20px;
    transition: all 0.25s ease;
}

.navbar .social {
    float: right;
    margin-top: 10px;
    transition: all 0.25s ease;
}

header.fixed .navbar .social {
    margin-top: 0;
}

.navbar .social span {
    float: left;
    background: #e9e9e9;
    margin-left: 12px;
    width: 30px;
    height: 30px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    transition: 0.2s;
    cursor: pointer;
}

.navbar .social i {
    color: #333333;
    font-size: 19px;
}

.navbar .social span:hover {
    box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.205);
    transform: scale(1.1);
    background: #fff;
}

.navbar .social span:hover i {
    color: #000;
}

.navbar ul li {
    float: left;
    list-style: none;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #f5316e;
}

.navbar ul li:first-child {
    display: none;
}

.nav-item a {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    /* transition: color 0.3s ease-out; */
    transition: margin .4s ease, padding .4s ease;
    padding: 10px 0 0;
    margin-left: 20px;
}

.nav-item a:hover {
    color: #fff;
}

/* SECTIONS */

.headline {
    width: 100%;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url('https://d2v9y0dukr6mq2.cloudfront.net/video/thumbnail/jPLiQ-9/mountains-background-for-titles-intro-projects-and-etc_ew22rur3l__F0000.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features {
    width: 100%;
    height: auto;
    background-color: #f1f1f1;
    display: flex;
    padding: 50px 20px;
    justify-content: space-around;
}

.feature-container {
    flex-basis: 30%;
    margin-top: 10px;
}

.feature-container p {
    color: #000;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 15px;
}

.feature-container img {
    width: 100%;
    margin-bottom: 15px;
}

/* SEARCH FUNCTION */

#search-icon {
    font-size: 0.9rem;
    margin-top: 3px;
    margin-left: 15px;
    transition: color 0.3s ease-out;
}

#search-icon:hover {
    color: #3498db;
    cursor: pointer;
}

.search {
    transform: translate(-35%);
    -webkit-transform: translate(-35%);
    transition: transform 0.7s ease-in-out;
    color: #3498db;
}

.no-search {
    transform: translate(0);
    transition: transform 0.7s ease-in-out;
}

.search-input {
    position: absolute;
    top: -4px;
    right: -125px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.search-active {
    opacity: 1;
    z-index: 0;
}

input {
    border: 0;
    border-left: 1px solid #ccc;
    border-radius: 0;
    outline: 0;
    padding: 5px;
}

/* MOBILE MENU & ANIMATION */

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #494949;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fixed .menu-toggle .bar {
    background-color: #000;
}

.menu-toggle {
    justify-self: end;
    margin-right: 25px;
    display: none;
}

.menu-toggle:hover {
    cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes gradbar {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

/* common classes */

.section-heading {
    font-size: 35px;
    margin-bottom: 20px;
    position: relative;
}

.section-heading::before {
    position: absolute;
    content: '';
    bottom: -5px;
    width: 70px;
    height: 3px;
    background: #f1ab43;
}

.main-sec .common {
    width: 50%;
    padding: 0 20px;
}

.main-sec .common-3 {
    width: 33.33%;
    padding: 0 20px;
}

.main-sec .common-4 {
    width: 25%;
    padding: 0 20px;
}

.main-sec {
    display: flex;
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

.mob {
    display: none;
}

/* common classes end */

/*  */

.about-us {
    padding: 50px 0;
}

.about-us h3 {
    font-weight: 400;
}

.about-us p {
    font-size: 20px;
    opacity: 0.7;
    margin-top: 20px;
}

/* Portfolio */

.advertisment {
    padding: 40px 0;
    background: #f9f9f9;
}

.advertisment h2 {
    text-align: center;
    color: #333;
    font-size: 30px;
    position: relative;
    margin-bottom: 40px;
}

.advertisment h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    background: #333;
    width: 100px;
    height: 2px;
}

.advertisment p {
    text-align: center;
    text-transform: uppercase;
    color: #333;
    margin-top: 20px;
}

.advertisment .photo-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    list-style: none;
}

.advertisment .photo-list li {
    width: 24%;
    position: relative;
    float: left;
    color: #333;
    margin: 0.5%;
    padding: 0;
}

.advertisment .cat-list li {
    cursor: pointer;
    text-align: center;
}

.advertisment .cat-list li.active {
    color: #f5316e;
    transition: 0.2s;
    border-bottom: 2px solid #f5316e;
}

.advertisment .photo-list.tab {
    display: none;
}

.advertisment .photo-list.tab.tab-1 {
    display: block;
}

.advertisment .photo-list li span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.651);
    left: 50%;
    opacity: 0;
    transition: 0.3s;
}

.advertisment .photo-list li img {
    margin-bottom: -6px;
}

.advertisment .photo-list li span p::before {
    content: "\f002";
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    font: normal normal normal 14px/1 FontAwesome;
}

.advertisment .photo-list li span p.vid-icon::before {
    content: "\f16a";
    top: -22px;
    font: normal normal normal 40px/1 FontAwesome;
}

.advertisment .photo-list li span a {
    border: 0;
    width: 100%;
    height: 100%;
    float: left;
}

.advertisment .photo-list li span:hover {
    opacity: 1;
}

.advertisment .photo-list li span p {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 50%;
    height: 100%;
    color: #fff;
    display: none;
}

.advertisment .cat-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.advertisment .cat-list li {
    color: #666;
    margin-left: 5px;
    margin-right: 5px;
    text-transform: uppercase;
    margin-top: 20px;
    padding: 6px;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

.advertisment .cat-list li::before {
    position: absolute;
    content: '';
    right: -10px;
    background: rgba(0, 0, 0, 0.07);
    top: 0;
    width: 1px;
    height: 100%;
}

/* Our services */

.services {
    padding: 50px 0;
}

.services .common-4 {
    margin-bottom: 20px;
}

.services .section-heading::before {
    left: 50%;
    transform: translateX(-50%);
}

.services .section-heading {
    margin-bottom: 40px;
}

.services .serv-list {
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}

.services ul {
    list-style: none;
}

.services ul li h3 {
    font-size: 16px;
}

.services ul li {
    position: relative;
}

.services ul li::before {
    content: "\f058";
    position: absolute;
    font: normal normal normal 20px/1 FontAwesome;
    top: 50%;
    transform: translateY(-50%);
    left: -6px;
    color: #ce2226;
    z-index: 1;
    background: #fff;
}

.services ul li::after {
    content: '';
    position: absolute;
    width: 68px;
    height: 1px;
    border-bottom: 1px dashed #ce2226;
    transform: rotate(90deg);
    top: 1px;
    left: -31px;
    z-index: -1;
}

.services ul li:first-child::after {
    border: 0;
}

/* Enq */

.enquiry-form {
    padding: 100px 25px;
    /* background: url(../images/enquery-bg.jpg); */
    background-color: #fff;
    /* background-position: bottom;
  background-attachment: fixed; */
    overflow: hidden;
}

.left-text {
    width: 50%;
    float: left;
}

.left-text figure {
    float: right;
    width: 100%;
    overflow: hidden;
    height: 530px;
}

.left-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
    width: 100%;
    color: #fff;
}

.left-text p {
    font-size: 18px;
    color: #fff;
}

.left-text ul {
    width: 100%;
    float: left;
    margin-top: 50px;
    list-style: none;
}

.left-text ul li i.fa-facebook {
    color: #fff;
    background-color: #3a559f;
    font-size: 50px;
    padding: 10px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 87px;
    transition: .4s;
}

.left-text ul li i.fa-facebook:hover {
    background-color: #000;
}

.right-form {
    width: 50%;
    float: left;
    padding: 23px 26px;
    padding-left: 0;
    background-color: #f06175;
}

.right-form .heading {
    text-transform: capitalize;
    padding: 10px 0;
    padding-top: 0;
    margin-left: 25px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.right-form .heading h2 {
    color: #fff;
    font-size: 40px;
    padding-bottom: 6px;
}

.right-form .heading p {
    padding: 15px 0;
}

.right-form form input::placeholder,
.right-form form textarea::placeholder {
    color: #ffffff;
}

.right-form form input,
.right-form form textarea {
    color: #fff;
    width: calc(50% - 25px);
    float: left;
    height: 50px;
    padding: 10px;
    background: #fc6b7f;
    margin-left: 25px;
    margin-bottom: 25px;
    border: none;
    /* transition: all ease .5s; */
}

.right-form form input:focus,
.right-form form textarea:focus {
    color: #fff;
    outline: 1px solid;
    border: none;
}

.right-form form input.phone {
    width: 95%;
}

.right-form form textarea {
    width: 95%;
    height: 100px;
}

.g-recaptcha {
    padding-left: 26px;
    width: 100%;
    float: left;
}

.right-form form button {
    width: 200px;
    margin: 22px 0 0;
    border: 1px solid #fc6b7f;
    margin-left: 25px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fc6b7f;
    cursor: pointer;
    height: 50px;
    background: #fff;
    position: relative;
    z-index: 0;
}

.right-form form button::before {
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all ease .4s;
    background-color: #fc6b7f;
}

.right-form form button:hover {
    border: 1px solid #fff;
    color: #fff;
}

.right-form form button:hover::before {
    width: 100%;
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}

.client-details {
    padding: 50px 0;
    background-color: #f6f6f6;
}

.client-details ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    box-shadow: 0 5px 12px rgb(226, 226, 226);
    background-color: #fff;
    border-radius: 10px;
}

.client-details ul li {
    width: 20%;
    text-align: center;
    border-left: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
    height: 125px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-details ul li:nth-child(1),
.client-details ul li:nth-child(6),
.client-details ul li:nth-child(11),
.client-details ul li:nth-child(16),
.client-details ul li:nth-child(21) {
    border-left: none;
}

.client-details ul li img {
    width: 100px;
}

.client-details ul li:nth-child(18) img {
    margin-top: 37px;
}

.client-details h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
}

.client-details .section-heading::before {
    left: 50%;
    transform: translateX(-50%);
}

.whatsapp {
    background-color: #25D366;
    color: #fff;
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

.whatsapp a {
    color: #fff;
}

.whatsapp i {
    font-size: 40px;
    margin-top: 5px;
}

/********************footer**********************/

footer {
    width: 100%;
    float: left;
    padding: 0;
    font-weight: 300;
}

footer .main_up_foot {
    background: #253147;
    padding: 40px 0;
    float: left;
    width: 100%;
}

footer p {
    color: #888;
    padding: 20px 0;
    font-size: 12px;
}

footer .container {
    width: 1200px;
}

footer .low_foot {
    background: #eaeaea;
    width: 100%;
    float: left;
    padding: 40px 0 0;
    border-top: 1px solid rgb(198, 198, 198);
}

footer .low_foot h3 {
    color: rgb(74, 74, 74);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

footer .low_foot .ab_us {
    padding-left: 0;
}

footer .low_foot .what-we {
    margin-top: 12px;
}

footer .low_foot .inn_foot.left_align {
    padding-left: 18px;
}

footer .low_foot .inn_foot.left-ali {
    padding-left: 20px;
}

footer .low_foot .inn_foot {
    width: 18%;
    float: left;
    margin-bottom: 10px;
    padding: 20px;
}

footer .low_foot .social-media-icon a {
    margin-right: 20px;
    border: 1px solid rgb(109, 109, 109);
    float: left;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

footer .low_foot .inn_foot.foot-1 {
    position: relative;
}

footer .low_foot .inn_foot .inn {
    color: #888;
    margin-bottom: 20px;
}

footer .low_foot a {
    color: rgb(51, 51, 51);
    text-decoration: none;
    font-size: 12px;
}

footer .low_foot a:hover {
    color: rgb(168, 168, 168);
}

footer .low_foot img {
    width: 200px;
}

footer .low_foot .social-media {
    margin: 9px 0 19px;
    color: rgb(51, 51, 51);
}

footer .low_foot ul {
    list-style: none;
}

footer .low_foot .inn_foot h4 {
    margin-bottom: 5px;
    color: #64b42b;
    font-weight: 500;
}

footer .low_foot .inn_foot h5 {
    color: #1e9acf;
}

footer .low_foot .inn_foot p {
    line-height: 19px;
}

footer .low_foot .inn_foot ul li {
    padding-bottom: 13px;
    position: relative;
    margin-left: 0;
    color: rgb(46, 46, 46);
    font-size: 12px;
}

footer .low_foot .inn_foot .social i {
    background-color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 0;
    border-radius: 50%;
}

footer .low_foot .inn_foot .social i.fa-facebook {
    color: #253147;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.2s;
}

footer .low_foot .inn_foot .social i:hover {
    transform: scale(1.1);
}

footer .low_foot .inn_foot .social {
    margin-top: 20px;
}

footer .low_foot .inn_foot .social i.fa-instagram,
footer .low_foot .inn_foot .social i.fa-whatsapp,
footer .low_foot .inn_foot .social i.fa-youtube-play {
    color: rgb(97, 97, 97);
    font-size: 20px;
}

footer .low_foot .inn_foot:nth-child(1) {
    width: 25%;
    padding-right: 30px;
    padding-left: 0;
}

footer .low_foot .inn_foot:last-child p {
    padding-top: 10px;
    padding-bottom: 15px;
}

footer .low_foot .inn_foot:nth-child(2) ul li::before {
    content: '';
    position: absolute;
    background: url(../images/location.png) no-repeat;
    width: 20px;
    height: 30px;
    background-size: 100%;
    left: -29px;
}

footer .low_foot .inn_foot .btn-l {
    width: 39px;
    height: 30px;
    border-radius: 0;
    line-height: 20px;
    border: 0;
    margin-left: -43PX;
    vertical-align: top;
    color: #fff;
    background: #ef7f1a;
    font-size: 20px;
}

footer .low_foot .inn_foot input {
    height: 30px;
    border: 1px solid #ccc;
    background: none;
    color: #fff;
    padding: 10px;
}

footer .low_foot .inn_foot:nth-child(2) ul li:nth-child(2)::before {
    background: url(../images/email.png) no-repeat;
    width: 20px;
    height: 30px;
    background-size: 100%;
}

footer .low_foot .inn_foot:nth-child(2) ul li:nth-child(3)::before {
    background: url(../images/phone-icon.png) no-repeat;
    width: 20px;
    height: 30px;
    background-size: 100%;
}

/* ***** thanks page css ***** */

/* ***** thanks page css ***** */

.thankyou {
    width: 52%;
    margin: 130px auto 50px;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
    text-align: center;
    padding-bottom: 50px;
}

.thankyou h1 {
    text-transform: uppercase;
    color: #333333;
}

.thankyou p {
    border-top: 1px dotted #ccc;
    margin-top: 25px;
    padding-top: 10px;
    color: #333333;
}

.thankarea {
    width: 100%;
    float: left;
    background-color: #9d98ca;
    padding: 50px 0;
    margin-bottom: 50px;
}

.thankarea .fa {
    background: #fff;
    width: 150px;
    font-size: 90px;
    color: #9d98ca;
    border-radius: 100%;
    line-height: 150px;
}

/* ***** thanks page css ***** */

/* ***** thanks page css ***** */

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 54px;
        left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 100%;
        background: #f1f1f1;
        max-width: 320px;
        height: 100vh;
        overflow-y: auto;
    }
    .navbar-collapse.collapsing {
        height: 100%;
        -webkit-transition: left 0.2s ease;
        -o-transition: left 0.2s ease;
        -moz-transition: left 0.2s ease;
        transition: left 0.2s ease;
        left: -100%;
    }
    .navbar-collapse.show {
        left: 0;
        -webkit-transition: left 0.2s ease-in;
        -o-transition: left 0.2s ease-in;
        -moz-transition: left 0.2s ease-in;
        transition: left 0.2s ease-in;
    }
}

@media (max-width: 767px) {
    .container {
        width: 90%;
    }
    .mob_nav_scroll {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    /* MOBILE HEADINGS */
    h1 {
        font-size: 1.9rem;
    }
    h2 {
        font-size: 1rem;
    }
    p {
        font-size: 0.8rem;
    }
    header {
        height: 70px;
    }
    .head-margin {
        height: 71px;
    }
    /* MOBILE NAVIGATION */
    header.fixed {
        /* background: #1d70ac; */
        top: -2px;
    }
    header.fixed .navbar img {
        width: 55px;
    }
    .navbar {
        margin-top: 13px;
    }
    .echron-header-top .top {
        display: unset;
        color: #fff;
        padding: 2px 0px;
        line-height: 30px;
    }
    .echron-header-top i {}
    .echron-header-top .lft {
        text-align: center;
    }
    .echron-header-top .rgt {
        text-align: center;
    }
    .navbar img {
        float: left;
        width: 200px;
    }
    header.fixed {
        height: 70px;
    }
    .top-bar {
        display: none;
    }
    header.fixed .navbar img {
        width: 150px;
    }
    .navbar ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: start;
        top: 0;
        left: 0;
        background-color: #f1f1f1;
        width: 70%;
        height: 100vh;
        transform: translate(-101%);
        text-align: center;
        overflow: hidden;
        z-index: 999;
        margin-top: 0;
    }
    .navbar .social {
        display: none;
    }
    .navbar ul::before {
        position: absolute;
        content: '';
    }
    .navbar .nav-item {
        display: block;
        text-align: left;
    }
    .navbar img.nav_img {
        display: none;
    }
    .navbar li {
        padding: 15px;
    }
    .navbar ul li:first-child {
        display: block;
        border-bottom: 1px solid #fff;
    }
    .navbar li a {
        font-size: 12px;
        color: #444;
        text-decoration: none;
    }
    .advertisment .photo-list li span p::before {
        top: 0;
    }
    .fixed .menu-toggle {
        top: 20px;
    }
    .menu-toggle {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 20px;
    }
    .bar {
        display: block;
    }
    .mobile-nav {
        transform: translate(0%) !important;
    }
    .main-sec .common {
        width: 100%;
    }
    .main-sec .common-3 {
        width: 100%;
    }
    .desk {
        display: none;
    }
    .mob {
        display: block;
    }
    .client-details ul {
        justify-content: center;
    }
    .client-details ul li {
        width: 50%;
    }
    .client-details ul li:last-child {
        border: 1px;
    }
    .client-details ul li:nth-child(1),
    .client-details ul li:nth-child(6),
    .client-details ul li:nth-child(11),
    .client-details ul li:nth-child(16),
    .client-details ul li:nth-child(21) {
        border-left: 1px dotted #ccc;
    }
    .left-text figure {
        display: none;
    }
    .enquiry-form {
        padding: 50px 10px;
    }
    .right-form {
        width: 100%;
    }
    .right-form .heading h2 {
        font-size: 23px;
    }
    .right-form form input.phone {
        width: 92%;
    }
    .right-form form textarea {
        width: 92%;
    }
    footer .container {
        width: 90%;
    }
    footer .foot_inn {
        width: 100%;
        padding: 10px 0;
    }
    footer .low_foot .inn_foot {
        width: 100% !important;
        margin: 0;
        padding-left: 3px;
    }
    footer .foot_p {
        padding: 10px 0;
        text-align: left;
    }
    footer .main_head {
        text-align: left;
    }
    footer ul li {
        width: 100%;
        padding-bottom: 20px;
        padding-left: 0;
    }
    footer .copyryt span {
        font-size: 13px;
    }
}