@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Specter TRIAL';
    src: url('../fonts/SpecterTRIAL-Regular.woff2') format('woff2'),
        url('../fonts/SpecterTRIAL-Regular.woff') format('woff'),
        url('../fonts/SpecterTRIAL-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Specter TRIAL';
    src: url('../fonts/SpecterTRIAL-Medium.woff2') format('woff2'),
        url('../fonts/SpecterTRIAL-Medium.woff') format('woff'),
        url('../fonts/SpecterTRIAL-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Specter TRIAL';
    src: url('../fonts/SpecterTRIAL-Bold.woff2') format('woff2'),
        url('../fonts/SpecterTRIAL-Bold.woff') format('woff'),
        url('../fonts/SpecterTRIAL-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Specter TRIAL';
    src: url('../fonts/SpecterTRIAL-Light.woff2') format('woff2'),
        url('../fonts/SpecterTRIAL-Light.woff') format('woff'),
        url('../fonts/SpecterTRIAL-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Specter TRIAL', sans-serif;
    font-size: 17px;
    color: #000;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.5px;
    background-color: #353C40;
}

*,
ul,
ol {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #000000;
    outline: none;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1F1F25;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

.bg-color1 {
    background-color: #f5f5f5;
}

.bg-nardo-grey {
    background-color: #686A6C;
}

.bg-anth-grey {
    /*background-color: #727071;*/
    background-color: #353C40;
}

.text-color1 {
    color: #292a60 !important;
}

.text-color2 {
    color: #d4af37 !important;
}

.txt-hover:hover,
.txt-hover:focus {
    color: #a9a9a9;
}

.width-30 {
    width: 30%;
}

.width-40 {
    width: 40%;
}

.width-50 {
    width: 50%;
}

.width-70 {
    width: 70%;
}

.width-60 {
    width: 60%;
}

.flexbox {
    display: -webkit-box;
    display: flex;
}

.flexbox .element {
    height: 100%;
}

.home-page .header {
    padding: 0;
    position: absolute;
    top: 0;
    z-index: 900;
    width: 100%;
    padding-top: 0;
    /* background-color: #ffffff; */
}

.callicon-border-list li {
    display: inline-block;
    margin-right: 10px;
}

.callicon-border-list li a {
    line-height: 1;
    min-height: 54px;
    color: #000;
    font-weight: 400;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 0 12px 0 0;
    border-bottom: 1px solid #727071;
}

.callicon-border-list li a i {
    transform: translateX(0px);
    background: #353c40;
    min-height: 54px;
    color: #fff;
    transition: transform 0.4s ease;
    line-height: 54px;
    padding-left: 12px;
    padding-right: 12px;
}

.callicon-border-list li a:hover i {
    transform: translateX(0px);
    background: #727071;
}

.header-btn a {
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 15px 0;
    padding: 12px 25px;
    color: #fff;
}

.header-btn a:hover,
.header-btn a:focus {
    color: #fff;
    background-color: #727071;
}

.header_stick_nav {
    background-color: #fff;
    padding: 0;
    position: relative;
    width: 100%;
    border: 1px solid #727071;
}

.header-bottom .navigation {
    display: flex;
}

.header-bottom .navigation li {
    flex: 1 1 0;
}

.header-bottom.isStuck {
    background-color: #000;
}

.isStuck .header_stick_nav {
    background-color: #000;
}

.isStuck .navigation a {
    color: #fff;
}

.logo {
    display: inline-block;
    margin: 5px auto;
    width: 48%
}

/* .logo .img-fluid{
	max-width: 100px;
} */
.mobile-menu {
    display: none;
}

.nav-wrapper {
    display: block;
    text-align: left;
}

.navigation {
    display: block;
    text-align: right;
}

.navigation>li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: -4px;
    transition: all 0.25s ease-in-out;
}

.navigation>li:last-child {
    margin-right: 0;
}

.navigation li.dropdown>.dropdown-menu {
    opacity: 0;
    position: absolute;
    top: 130%;
    left: 0;
    width: 250px;
    z-index: 999;
    background-color: #ff8daa;
    visibility: hidden;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-bottom: 3px solid #9a9a9a;
    transition: all 500ms ease;
    display: block;
}

.navigation li.dropdown>.dropdown-menu li {
    border-bottom: 1px solid #e6e6e6;
    margin-right: 0;
}

.navigation li.dropdown>.dropdown-menu li:last-child {
    border-bottom: none;
}

.navigation li.dropdown>.dropdown-menu li a {
    background-color: #ffffff;
    padding: 10px 15px;
    color: #000;
}

.navigation li.dropdown:hover>.dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.navigation>li:first-child {
    display: none;
}

.navigation a {
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 8px 24px;
    transition: all 500ms ease 0s;
}

.navigation li.dropdown>a {
    padding-right: 35px;
}

.navigation>li.dropdown>a:after {
    font-family: "bootstrap-icons";
    content: "\F282";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    /*    display: block;*/
    font-size: 14px;
    transition: all 500ms ease 0s;
}

.navigation li:hover a,
.navigation li:focus a,
.navigation li.active a {
    color: #dfdfdf;
}

.navigation li.dropdown>.dropdown-menu li a:hover,
.navigation li.dropdown>.dropdown-menu li a:focus,
.navigation li.dropdown>.dropdown-menu li.active a {
    color: #fff;
    background-color: #727071;
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: auto;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.fs-70 {
    font-size: 70px;
}

.list1 li,
.list2 li,
.areas-list li {
    padding: 0px 0 15px 26px;
    position: relative;
}

.list1 li:before,
.list2 li:before,
.areas-list li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\F133';
    font-family: "bootstrap-icons";
    font-size: 18px;
    color: #353C40;
}
.list1.text-white li:before,
.list2.text-white li:before{
    color: #fff;
}
.areas-list li:before {
    content: '\F3E7';
}

.list2 li:before {
    color: #686A6C;
}

.list3 {
    margin-left: 16px;
}

.list3 li {
    list-style-type: decimal;
    padding-bottom: 18px;
}

.parallax {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.parallax .container,
.parallax .container-xxl,
.parallax .container-fluid,
.parallax .container-auto {
    position: relative;
    z-index: 1;
}

.overlap {
    position: relative;
}

.overlap:before,
.overlap1:before,
.overlap2:before {
    background-color: rgba(41, 42, 96, 0.85);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlap1:before {
    background-color: rgba(0, 0, 0, 0.7);
}

.overlap2:before {
    background-color: rgb(55 57 60 / 80%);
}

.widget-title {
    font-size: 24px;
    font-weight: 600;
    color: #018859;
    margin-bottom: 20px;
}

.widget-title a:hover {
    color: #a9a9a9;
}

.footermain {
    position: relative;
}

.footermain:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    background-image: url(../images/slider/slider01.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: -1;
}

.footermain:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(0 0 0 / 81%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: -1;
}

.footer-top {
    position: relative;
    z-index: 0;
}

.footer-widget .user-links li {
    position: relative;
}

.footer-widget .user-links li a:before {
    content: "\f280";
    font-family: bootstrap-icons !important;
    position: absolute;
    color: #fff;
    font-size: 13px;
    left: 0;
    /*    top: 2px;*/
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget .user-links li a {
    color: #c7c7c7;
    position: relative;
    font-size: 17px;
    display: inline-block;
    padding: 0 0 15px 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget .user-links li a:hover::before {
    opacity: 1;
}

.footer-widget .user-links li a:hover {
    color: #fff;
    padding-left: 18px;
}

.footer-widget .widget-content p {
    color: #c7c7c7;
}

.footer-logo a img {
    width: 250px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.footersocial a {
    display: inline-block;
    width: 45px;
    height: 45px;
    margin: 0 auto;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
}

.footersocial a>i {
    font-size: 18px;
}

.new-inner-column {
    display: flex;
    justify-content: center;
    column-gap: 100px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    background-color: #dbdbdb;
}

.footer-bottom .footer-link a {
    color: #fff;
}

.linehere {
    display: inline-block;
    position: relative;
}

.linehere:after {
    position: absolute;
    content: '';
    left: 0;
    width: 60px;
    height: 1px;
    background: #ddd;
    top: -6px;
    opacity: 0.3;
    z-index: -1;
}

.footer-middle {
    background-color: #727071;
}

.phonewrap-footer .reservations .icon span {
    font-size: 30px;
    color: #fff;
    line-height: 30px;
}

.phonewrap-footer .reservations .icon {
    transform: rotate(2deg);
    padding-right: 10px;
}

.footemail a {
    color: #c7c7c7;
}

.footemail a:hover,
.footemail a:active,
.footemail a:focus {
    color: #fff;
}

.copyright p span {
    color: #000;
}

.widget-title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
    background: transparent;
    padding-right: 5px;
}

.widget-title a:hover {
    color: #a9a9a9;
}

.footer-menu li a {
    position: relative;
    padding: 2px 0 2px 20px;
    display: inline-block;
    color: #fff;
}

.footer-menu li a:before {
    position: absolute;
    top: 2px;
    left: 0;
    content: '\F231';
    font-family: 'bootstrap-icons';
}

.footer-links {
    display: block;
    color: #000;
}

.footer-menu li a:hover,
.footer-links a:hover {
    color: #727071;
}

.reservations {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.reservations .text a {
    font-size: 27px;
    color: #4a4a4a;
    letter-spacing: -1px;
}


.reservations .icon {
    position: relative;
    /*transform: rotate(32deg);*/
    top: 3px;
}

.reservations .text {
    padding-left: 15px;
}

.reservations .text p {
    font-size: 15px;
    margin: 0;
}

.color-1 {
    color: #fff
}


.navigation li.dropdown>.dropdown-menu.child-dropdown {
    top: 0;
    left: 100%;
    padding: 15px;
}

.btn-1 {
    background-color: #727071;
    color: #fff;
    padding: 15px 20px;
    min-height: 54px;
    font-size: 15px;
    text-align: left;
    line-height: 1.4;
    white-space: nowrap;
    font-weight: 500;
    display: inline-block;
    transition: all 0.50s ease-in-out;
}

.btn-1 span {
    display: inline-block;
    margin-right: 10px;
}

.btn-1 svg path {
    fill: #fff;
}

.btn-1:hover {
    color: #000;
    background-color: #a39e9d;
}

.btn-1:hover svg {
    animation: arrow-jump 0.25s ease-in-out;
}

.btn-1:hover svg path {
    fill: #000;
}


.btn-2,
.btn-3 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 12px 30px;
    margin: 1rem auto;
    text-transform: uppercase;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.5s;
}

.btn-2:hover {
    color: #fff;
}

.btn-3 {
    border: 1px solid #727071;
    color: #fff;
    transition: 0.5s ease-in-out;
}

.btn-2:before,
.btn-3:before {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    bottom: 0;
    left: 0;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #727071;
    transform: translateX(-100%);
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
}

.btn-3:before {
    transform: translateX(0);
    z-index: -1;
}

.btn-3:hover:before {
    color: #fff;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #4a4a4a;
    transform: translateX(-100%);
}

.btn-3:hover {
    color: #fff;
    border: 1px solid #fff;
}

.btn-2:hover:before {
    transform: translateX(0);
    z-index: -1;
    color: #fff;
}

@keyframes arrow-jump {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(10px, -10px);
        opacity: 0;
    }

    51% {
        transform: translate(-10px, 10px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.here-botm-border {
    border-bottom: 1px solid #727071;
}

.slide-text-h4 {
    font-size: 19px;
    color: #fff;
    font-weight: 500;
}

.gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 70vh;
}

.gallery-wrap .item {
    position: relative;
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: flex 0.8s ease;
    overflow: hidden;
    cursor: pointer;
}

.gallery-wrap .item:hover {
    flex: 2.5;
}

/* Overlay text container */
.overlay-custom {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 15, 29, 0.8), rgba(10, 15, 29, 0.2));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: all 0.5s ease;
}

.gallery-wrap .item h2 {
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    opacity: 1;
    transition: transform 0.5s ease;
}

.gallery-wrap .item p {
    font-size: 16px;
    max-width: 300px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-wrap .item:hover .overlay-custom {
    background: rgb(0 0 0 / 39%);
}

.gallery-wrap .item:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Background images */
.gallery-wrap .item-1 {
    background-image: url("../images/case1.jpg");
}

.gallery-wrap .item-2 {
    background-image: url("../images/case4.jpg");
}

.gallery-wrap .item-3 {
    background-image: url("../images/case3.jpg");
}

.gallery-wrap .item-4 {
    background-image: url("../images/4.jpg");
}

.social {
    position: absolute;
    right: 35px;
    bottom: 0;
}

.social img {
    display: block;
    width: 32px;
}

.line-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.line {
    flex: 1;
    height: 1px;
    background-color: #dccbc5;
}

.headingh2 {
    overflow: hidden;
    background-color: transparent;
    border-bottom: 1px solid #dccbc5;
    border-top: 0;
    padding: 15px 50px 15px 50px;
    position: relative;
}

.headingh2:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 50%;
    background: #dccbc5;
    left: 0;
    bottom: 0;
}

.headingh2:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 50%;
    background: #dccbc5;
    right: 0;
    bottom: 0;
}

.w-230-btn {
    width: auto;
}

.icon-img i {
    font-size: 55px;
    color: #fff;
    transition: color 0.4s ease;
}

.case-study-wrapper {
    position: relative;
    height: 300px;
    width: 600px;
    margin: 50px 0;
    display: flex;
    flex-direction: row;
    transition: all 200ms ease-in-out;
}

.image-wrapper {
    height: 300px;
    width: 450px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
}

.case-study-wrapper img {
    height: 300px;
    width: 450px;
    object-fit: cover;
    object-position: top;
    transition: all 200ms ease-in-out;
}

.book-design-image {
    object-position: center;
}

.header-wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    height: 300px;
    width: 300px;
    left: 380px;
    transition: all 200ms ease-in-out;
    overflow: hidden;

}

.case-study-wrapper h3 {
    position: relative;
    bottom: 0;
    height: 300px;
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    transition: all 200ms ease-in-out;
}

.case-study-wrapper:hover img {
    transform: scale(2);
    /*object-position: bottom;*/
}

.case-study-wrapper:hover h3 {
    bottom: 300px;
    transform: scale(.4);
}

.case-study-wrapper:hover .image-wrapper {
    width: 800px;
}

.case-wrap {
    position: relative;
    display: block;
    margin-bottom: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.case-wrap .img {
    position: relative;
    display: block;
    z-index: 1;
}

.case-wrap .img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #141414;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 12%, rgba(0, 0, 0, 0) 68%);
    border-radius: 5px;
}

.case-wrap .img img {
    width: 100%;
    border-radius: 5px;
}

.case-wrap .case-wrap-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.case-wrap .case-wrap-content .arrow {
    position: relative;
    display: block;
    top: 20px;
    transform: translateY(66%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
}

.case-wrap .cont h3 a {
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    text-decoration: none;
    padding-bottom: 4px;
    text-transform: uppercase;
}

.case-wrap .cont h3 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    /* underline color */
    transition: width 0.9s ease;
}

.case-wrap:hover .cont h3 a::after {
    width: 100%;
}

.case-wrap .details {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0px;
}

.case-wrap .case-wrap-content .arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #e4e4e4;
    border-radius: 50%;
    font-size: 15px;
    color: #000;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.case-wrap:hover .case-wrap-content .arrow {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.case-wrap .case-wrap-content .arrow a:hover {
    background-color: #727071;
    color: #fff;
}

#casestudy .owl-nav {
    outline: none;
    position: absolute;
    top: -50px;
    right: 0;
}

#testiCarousel .owl-nav {
    position: relative;
    bottom: 0;
    outline: none;
}

#casestudy .owl-nav span,
#testiCarousel .owl-nav span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: transparent;
    /* border-radius: 0; */
    color: #727071;
    font-size: 35px;
    cursor: pointer;
    border: 0 solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
    border-radius: 100%;
    text-align: center;
    outline: none;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
}

#testiCarousel .owl-nav button {
    position: absolute;
    bottom: -50px;
}

#testiCarousel .owl-nav .owl-prev {
    left: 43%;
}

#testiCarousel .owl-nav .owl-next {
    right: 43%;
}

#testiCarousel .owl-nav span {
    color: #727071;
}

#testiCarousel .owl-nav span:hover,
#testiCarousel .owl-nav button:hover {
    background-color: transparent;
    color: #fff;
}

#casestudy .owl-nav span:hover,
#casestudy .owl-nav button:hover {
    background-color: transparent;
    color: #fff;
}

.testimonial {
    background-color: #ebebeb;
    position: relative;
    padding: 60px 40px 40px;
    border: 1px solid #b9b9b9;
    text-align: center;
    border-radius: 0;
    margin-bottom: 90px;
    margin-top: 50px;
}

.testimonial::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #ebebeb;
}

#testiCarousel .testimonial img.usertesti {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #353C40;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
}

.testimonial p {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.6;
    font-weight: 400;
}

.stars {
    color: #aaa;
    font-size: 1.4rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.bottom-section {
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 100%;
    text-align: center;
}

.name {
    color: #fff;
    font-size: 18px;
    margin-top: 5px;
    font-weight: bold;
}

.layout-3-over-img {
    background: rgb(19 19 19 / 83%);
    padding: 40px;
}

.blur-water {
    background: rgb(0 0 0 / 20%);
    /*rgb(42 42 42 / 50%)  --  rgba(255, 255, 255, 0.2)*/
    backdrop-filter: blur(8px);
    padding: 40px;
}

.lava-border {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.lava-border a {
    font-weight: bold;
    color: #ffffff;
    text-decoration: underline;
    background: #727071;
    padding: 5px 10px;
    width: 100%;
    text-align: center;
}

.lava-border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 0;
    background: linear-gradient(90deg, #5f4b4b, #d7c8b1, #bf6060, #3d352d, #251515);
    background-size: 300% 300%;
    animation: moveGlow 3s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 0;
    pointer-events: none;
}

@keyframes moveGlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.lava-border::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    box-shadow: 0 0 25px 5px rgba(255, 90, 0, 0.6);
    z-index: -1;
}

.footer-top {
    position: relative;
    overflow: hidden;
}

.footer-top:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 46%;
    background-color: #4f4f4f;
}

.footer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    padding: 40px 60px 40px 60px;
    position: relative;
    overflow: hidden;
}

footer .overlay-custom {
    background: linear-gradient(rgb(2 2 2 / 87%), rgb(10 11 16 / 76%));
}

/*.footer-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-color: #ecedee;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}*/
.footer-right .callicon-border-list li a {
    color: #fff;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-bottom {
    background: #9d999a;
}

.footerhead {
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
}

.footer-content p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

.footer-right {
    position: relative;
    z-index: 1;
    margin-left: 60px;
}

.contact-btn {
    background-color: #0e2d28;
    color: #f4ecd8;
    border: none;
    padding: 12px 40px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.contact-btn:hover {
    background-color: #123c34;
    color: #fff;
}

.social-icons li {
    display: inline-block;
}

.slider-nav-item {
    position: relative;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    cursor: pointer;
    display: inline-block;
    line-height: 35px;
    height: 35px;
    width: 35px;
    box-shadow: 0 5px 25px rgba(93, 70, 232, 0.15);
    margin: 0 5px;
    font-size: 22px;
    transition: all .4s ease;
}

.slider-nav-item:before {
    position: absolute;
    content: "";
    height: calc(100% + 16px);
    width: calc(100% + 16px);
    top: -8px;
    left: -8px;
    border-radius: 50%;
    border: 1px solid rgba(132, 132, 164, 0.35);
    animation: 1.5s linear 0s normal none infinite focuse;
}

.social-bar a:hover i {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}

@keyframes focuse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    75% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 1em;
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: 400;
    -webkit-appearance: none;
    /* for box shadows to show on iOS */
}

.input__field:focus {
    outline: none;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    color: #696969;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 15px 0 15px 0;
    width: 100%;
    font-weight: normal;
}

.graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}

.icon {
    color: #ddd;
    font-size: 150%;
}

.input--nao {
    overflow: hidden;
    padding-top: 40px;
    margin: 0;
    width: 100%;
}

.input__field--nao {
    padding: 0.5em 0em 0.25em;
    width: 100%;
    background: transparent;
    color: #9da8b2;
}

.input__label--nao {
    position: absolute;
    top: 26px;
    left: 0;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0em;
    pointer-events: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform 0.2s 0.15s, color 1s;
    transition: transform 0.2s 0.15s, color 1s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.graphic--nao {
    stroke: #92989e;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.7s, stroke 0.7s;
    transition: transform 0.7s, stroke 0.7s;
    -webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
    transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
}

.input__field--nao:focus+.input__label--nao,
.input--filled .input__label--nao {
    color: #333;
    -webkit-transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
    transform: translate3d(0, -1.25em, 0) scale3d(0.75, 0.75, 1);
}

.input__field--nao:focus~.graphic--nao,
.input--filled .graphic--nao {
    stroke: #333;
    -webkit-transform: translate3d(-66.6%, 0, 0);
    transform: translate3d(-66.6%, 0, 0);
}

.textarea-field-custom .input,
.yoshikoform-section .input {
    max-width: 100%;
}

.footer__link li {
    position: relative;
    display: inline-block;
}

.footer__link li a {
    display: inline-block;
    border: 1px solid #fff;
    padding: 5px 15px;
    transition: all .5s ease;
    color: #fff;
}

.footer__link li a:hover {
    background-color: #000;
}

.slider-wrapper .carousel-inner .carousel-item img {
	-webkit-animation: zoom 25s;
	animation: zoom 25s;
	padding: 0;
	width: 100%;
    height: 100vh;
}
@-webkit-keyframes zoom {
	from {
		-webkit-transform: scale(1, 1);
	}

	to {
		-webkit-transform: scale(1.5, 1.5);
	}
}

@keyframes zoom {
	from {
		transform: scale(1, 1);
	}

	to {
		transform: scale(1.5, 1.5);
	}
}

.home-parallax {
  position: relative;
  overflow: hidden;
  /*padding: 300px 0;*/
}

.home-parallax .container-fluid {
  position: relative;
  z-index: 9;
}

.sub-banner-overlay {
  background: rgb(32, 32, 32);
  background: linear-gradient(180deg,
      rgba(32, 32, 32, 0.40379901960784315) 29%,
      rgba(32, 32, 32, 0.8575805322128851) 98%);
  width: 100%;
  height: 100%;
  position: absolute;
}

.parallax-window {
  height: 400px;
  background: transparent;
  display: table;
  width: 100%;
}

.home-slide {
  text-align: center;
  position: relative;
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.parallax-fixed {
  background-attachment: fixed;
}

.home-parallax h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
}

.inner-box{
    padding: 30px;
    border: 1px solid #727071;
}

.inner-box1{
    padding: 30px;
    border: 1px solid #353C40;
}

.inner-box2{
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.inner-box3{
    padding: 30px;
    border: 3px dashed #727071;
}

.areas-btn {
    background-color: #686A6C;
    color: #fff;
    padding: 15px 25px;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    text-align: center;
}

/* ================================ */

.single-service-item {
    margin: 15px 0;
}

.single-service-item .img-holder {
    overflow: hidden;
    position: relative;
}

.single-service-item .img-holder .img-responsive {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
    /*border: 5px solid #0009;
    border-radius: 5px;*/
}

.single-service-item:hover .img-holder .img-responsive {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.single-service-item .img-holder .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 450ms ease-out 0s;
    transition: all 450ms ease-out 0s;
    -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
    transform: rotateY(180deg) scale(0.5, 0.5);
}

.single-service-item:hover .img-holder .overlay {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateY(0deg) scale(1, 1);
    transform: rotateY(0deg) scale(1, 1);
}

.single-service-item .img-holder .overlay .box {
    display: table;
    height: 100%;
    width: 100%;
}

.single-service-item .img-holder .overlay .box .content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-size: 30px;
}

.single-service-item .img-holder .overlay .box .content a i {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 20px;
    height: 45px;
    line-height: 48px;
    transition: all 500ms ease 0s;
    width: 45px;
}

.single-service-item .img-holder .overlay .box .content a:hover i {
    background: #9a9a9a;
}

.single-service-item .text-holder h3 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin: 20px 0 6px;
    text-transform: capitalize;
}

.single-service-item .text-holder h3 span {
    color: #fff;
}
.single-service-item1 {
  margin: 20px 0;
}

.box-style1 {
  padding: 20px;
  background-color: #f8f8f8;
  min-height: 300px;
}

.single-service-item1 .img-holder {
  overflow: hidden;
  position: relative;
}

.single-service-item1 .img-holder .img-responsive {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
}

.single-service-item1:hover .img-holder .img-responsive {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.single-service-item1 .img-holder .overlay {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.single-service-item1 .img-holder .overlay .box {
  display: table;
  height: 100%;
  width: 100%;
}

.single-service-item1 .img-holder .overlay .box .content {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 30px;
}

.single-service-item1 .img-holder .overlay .box .content a i {
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 20px;
  height: 45px;
  line-height: 48px;
  transition: all 500ms ease 0s;
  width: 45px;
}

/* ============================== */

.site-map-list li a {
    color: #fff;
}

.site-map-list li a:hover {
    color: #bdbdbd;
}

.site-map-list li {
    border-left: 1px solid #dfdfdf;
    padding: 10px 0 10px 30px;
    position: relative;
}

.site-map-list li:before {
    position: absolute;
    top: 20px;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: #dfdfdf;
    content: "";
}

.site-map-list li>ul.child-menu {
    margin: 10px 0 10px 20px;
}

.submit-icon {
	display: none;
}

.submit-icon.rotating-show {
	display: inline-block;
	vertical-align: middle;
}

@-webkit-keyframes rotating

/* Safari and Chrome */
	{
	from {
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotating {
	from {
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.rotating {
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}

.btn-two {
	padding: 15px 50px;
	border: 1px solid #353C40;
	background: #353C40;
	color: #ffffff;
	border-radius: 8px;
	display: inline-block;
	transition: 0.6s;
	transition: all 0.5s;
}

.btn-two:hover,
.btn-two:active,
.btn-two:Focus {
	box-shadow: inset 0 0 0 2em #d6d6d6;
	border-color: #d6d6d6;
	background: #d7d7d7;
	color: #000000;
}

.service-block-one .inner-box5 {
    position: relative;
    display: block;
    background: #fff;
    padding: 30px 30px 0px 30px;
    box-shadow: 0px 2px 70px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 100px 100px;
    margin-bottom: 35px
}

.service-block-one .inner-box5 .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 60px 60px;
}

.service-block-one .inner-box5 .image-box img {
    width: 100%;
    border-radius: 10px 10px 60px 60px;
    transition: all 500ms ease;
}

.service-block-one .inner-box5:hover .image-box img {
    transform: scale(1.05);
}

.service-block-one .inner-box5 .lower-content {
    position: relative;
    display: block;
    padding: 20px 0 30px 0;
}

.service-block-one .inner-box5 .lower-content p {
    font-weight:500;
}

.service-block-one .inner-box5 .lower-content h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-block-one .inner-box5 .lower-content p a:hover {
    color: #727071;
}

.service-block-one .inner-box5 .lower-content .link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
}

.service-block-one .inner-box5 .lower-content .link a {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 74px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    color: #101A30;
    box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.15);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px -3px 8px;
}

.service-block-one .inner-box5 .lower-content .link a i {
    font-size: 30px;
}

.service-block-one .inner-box5 .lower-content .link a:hover {
    color: #fff;
    background: #9d999a;
}

.testimonial-block {
    padding: 30px;
    border-left: 5px solid #ffffff;
    background-color: #9d999a;
    box-shadow: 3px 3px 4px 0 rgba(26, 26, 26, 0.3);
    color: #fff;
}

.contact-box {
    position: relative;
    z-index: 2;
    transition: 300ms ease;
    padding: 0 15px 15px;
}

.contact-box:hover::after {
    background-color: #9d999a;
}

.contact-box:hover .content {
    background-color: #000;
    border-color: #000;
    transform: translateY(-5px);
}

.contact-box:hover .text,
.contact-box:hover .title,
.contact-box:hover a {
    color: #fff;
}

.contact-box::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 128px;
    background-color: #dadada;
    content: "";
    transition: 400ms ease;
    z-index: -1;
}

.contact-box .content {
    position: relative;
    padding: 30px 30px 25px;
    background-color: #9d999a;
    border: 1px solid #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 400ms ease;
    color: #fff;
}

.contact-box .icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: absolute;
    right: -35px;
    top: -35px;
    z-index: 1;
    color: #353C40;
    background-color: rgb(53 60 64 / 12%);
    font-size: 40px;
    line-height: 1;
    transition: 300ms ease;
    margin: auto;
    padding: 0 0 30px 28px;
}

.contact-box .icon::after {
    position: absolute;
    content: "";
    background-color: #353C40;
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}

.contact-box .icon::before {
    width: calc(100% + 18px);
    height: calc(100% + 18px);
    content: "";
    border: 1px dashed #353C40;
    border-radius: 50%;
    position: absolute;
    bottom: -9px;
    left: -9px;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.contact-box .icon i {
    display: inline-block;
    transform: scale(1);
    transition: 500ms ease;
}

.contact-box:hover .icon {
    color: #fff;
    border-color: #353C40;
}

.contact-box:hover .icon::after {
    height: 100%;
}

.contact-box:hover .icon::before {
    border-color: #fff;
}

.contact-box:hover .icon i {
    transform: scale(0.9);
}

.contact-box .title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    transition: 200ms ease;
    text-transform: capitalize;
    margin: 0 0 20px;
    padding-right: 60px;
    color: #fff;
}

.contact-box .text {
    font-weight: 500;
    transition: 200ms ease;
    margin: 0 0 14px;
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width:991px) and (max-width:1199px) {
    .contact-box .content {
        min-height: auto;
    }
}

@media (min-width:220px) and (max-width:991px) {
    .contact-box .content {
        min-height: auto;
    }
}

@media (min-width:220px) and (max-width:575px) {
    .contact-box .content {
        padding: 40px 15px 25px;
    }

    .contact-box {
        padding: 0;
    }

    .contact-box::after{
        display: none;
    }
}


@media (min-width: 220px) and (max-width: 567px) {
  .parallax-window {
    height: 200px;
  }
}



/* col-xl */
@media (min-width: 1401px) and (max-width:1510px) {
    .navigation a {
        padding: 8px 18px;
    }
}

@media (min-width: 1300px) and (max-width:1400px) {
    .navigation a {
        padding: 8px 13px;
    }

    .header .btn-1 {
        font-size: 14px;
        padding: 15px 10px;
    }
}

@media (min-width: 1200px) and (max-width:1299px) {
    .header .btn-1 {
        font-size: 14px;
        padding: 15px 10px;
    }
    .navigation a {
        padding: 8px 7px;
    }
    .fs-mail{
        font-size: 15px;
    }
}

/* col-lg */
@media (min-width: 992px) and (max-width:1200px) {
    .header .btn-1 {
        font-size: 12px;
        padding: 15px 9px;
    }
}

/*for mobile to small tab */
@media (min-width: 220px) and (max-width:991px) {
    .mobile-menu {
        display: block;
        font-size: 25px;
        /* background: #727071; */
        padding: 8px 20px;
        color: #fff;
        cursor: pointer;
        margin: 0 auto;
        text-align: left;
    }
    .slide-text.d-md-block{
        /*display:none!important;*/
    }
    .home-page .header {
        position: static;
        background: #727071;
    }

    .header-bottom.isStuck {
        background-color: #727071;
    }

    .header-bottom .navigation {
        display: block;
    }

    .mobile-menu i {
        float: right;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -300px;
        width: 255px;
        height: 100%;
        overflow-x: scroll;
        z-index: 999;
        border-radius: 0;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        background-color: #727071;
        padding: 0;
    }

    .navigation {
        text-align: left;
    }

    .nav-wrapper.open {
        right: 0;
    }

    .navigation a {
        text-align: left;
    }

    .navigation>li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #333;
    }

    .navigation>li:first-child {
        display: block;
    }

    .navigation>li:before {
        display: none;
    }

    .navigation li a {
        padding: 10px 20px;
        color: #fff;
        text-transform: none;
    }

    .navigation li:hover>a,
    .navigation li:focus>a,
    .navigation li.active>a {
        background-color: #a39d9d;
        color: #ffffff;
    }

    .navigation>li.dropdown>a:after {
        right: 20px;
    }

    .navigation li.dropdown>.dropdown-menu,
    .navigation li.dropdown:hover>.dropdown-menu {
        position: static;
        top: 0;
        visibility: visible;
        opacity: 1;
        width: 100%;
        float: none;
    }

    .navigation li.dropdown>.dropdown-menu li a {
        padding: 10px 10px 10px 30px;
    }

    .fixed-top {
        position: static;
    }

    .gallery-wrap .item h2 {
        font-size: 17px;
        padding: 15px 7px 0 7px;
    }

    .gallery-wrap {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
    }

    .gallery-wrap .item {
        position: relative;
        flex: 1 1 50%;
        height: 60vh;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        transition: flex 0.8s ease;
        overflow: hidden;
        cursor: pointer;
    }

    .gallery-wrap .item:hover {
        flex: 1 1 50%;
    }

    .gallery-wrap .item p {
        opacity: 1;
    }

    .overlay-custom {
        height: 100%;
        inset: 0;
    }

    #casestudy .owl-nav {
        top: -66px;
    }

    .footer-top:before {
        display: none;
    }

    .footer-right {
        margin-left: 0;
    }

    .footer-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .footer-banner::before {
        display: none;
    }

    .footer-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-widget {
        margin-bottom: 15px;
    }

     .m-parallax-bg {
        background-image: none !important;
        min-height: auto !important;
    }
}

/* col-md */
@media (min-width: 768px) and (max-width:991px) {}

/* for all mobile */
@media (min-width: 220px) and (max-width:767px) {

    .gallery-wrap .item {
        flex: 1 100%;
    }

    .case-wrap .case-wrap-content {
        position: static;
        margin-top: 15px;
        display: block;
    }

    .case-wrap .case-wrap-content .arrow {
        position: relative;
        display: block;
        top: 0;
        transform: none;
        transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
        visibility: visible;
        opacity: 1;
    }

    #casestudy .owl-nav {
        position: relative;
        top: auto;
        bottom: 0;
    }

    .testimonial {
        padding: 25px;
    }

    #testiCarousel .owl-nav .owl-prev {
        left: 0;
    }

    #testiCarousel .owl-nav .owl-next {
        right: 0;
    }

    .blur-water {
        padding: 20px;
    }

    .headingh2 {
        padding: 15px 25px 15px 25px;
    }
}

/* col-sm  */
@media (min-width: 576px) and (max-width:767px) {
    .logo {
        width: 35%;
    }

    .middle-logo-wrap {
        text-align: center;
    }

    .callicon-border-list li a,
    .callicon-border-list li a i {
        line-height: 42px;
        min-height: 42px;
    }

    .callicon-border-list {
        text-align: center;
    }

    .callicon-border-list li {
        margin-right: 0;
    }

    .footer__link li {
        margin-bottom: 10px;
    }

    .footer-banner {
        padding: 40px 10px;
    }

    .emailid-font a {
        font-size: 12px;
    }

    .footer-link {
        text-align: center;
    }

    .home-parallax h1 {
        font-size: 40px;   
        line-height: 50px;    
    }
}

/* col-xs */
@media (min-width: 220px) and (max-width:575px) {

    .logo {
        width: 70%;
    }

    .middle-logo-wrap {
        text-align: center;
    }

    .callicon-border-list li a,
    .callicon-border-list li a i {
        line-height: 42px;
        min-height: 42px;
    }

    .callicon-border-list {
        text-align: center;
    }

    .callicon-border-list li {
        margin-right: 0;
    }

    .footer__link li {
        margin-bottom: 10px;
    }

    .footer-banner {
        padding: 40px 10px;
    }

    .footer-link {
        text-align: center;
    }

    .emailid-font a {
        font-size: 14px;
    }

    .slide-text-h4 {
        font-size: 15px;
        color: #fff;
        font-weight: 500;
    }

    .slide-text .btn-2,
    .slide-text .btn-3 {
        padding: 5px 18px;
        font-size: 13px;
    }

    .footemail a {
        font-size: 15px;
    }

    .home-parallax h1 {
        font-size: 25px;
        line-height: 34px;
    }

    .btn-two {
		padding: 15px 30px;
	}

    .fs-mail{
        font-size: 14px;
    }

}

@media (min-width: 220px) and (max-width:375px) {

    .emailid-font a {
        font-size: 12px;
    }

    .inner-box{
        padding: 15px;
    }

     .inner-box1{
        padding: 15px;
    }

    .inner-box2{
        padding: 15px;
    }

    .inner-box3{
        padding: 15px;
    }

    .contact-box .content {
        padding: 40px 8px 25px;
    }

    .fs-mail{
        font-size: 12px;
    }
}