@font-face {
    font-family: 'montserrat';
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'montserrat', sans-serif;
    line-height: normal;
}

a,
a:hover,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
ul,
li {
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    padding: 15px 50px;
    transition: all 0.4s ease-in-out;
}

header .nav-link {
    font-size: 18px;
    color: #1c1c1c;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

header .nav-link:hover {
    color: #1f95d3;
}

header .nav-link.active {
    color: #1f95d3;
}

header .nav-item {
    margin-right: 30px;
}

header .nav-item:last-child {
    margin-right: 0px;
}
.header-container {
    padding-left: 40px;
    padding-right: 40px;
}

header .nav-item:last-child .nav-link {
    color: #fff;
    background: #000;
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    display: table;
    text-align: center;
    width: auto;
    margin: 0 auto;
}
header .nav-item:last-child {
    border: none;
    padding: 0 15px;
}
.nav-list li.active a, .header ul.nav-list a:hover {
    color: #1f95d3;
}
header .nav-item:last-child .nav-link:hover {
    color: #1f95d3;
    background: #fff;
    border-color: #1f95d3;
}
.header.is-sticky {
    position: fixed;
    background: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    left: 0;
}
.header.is-sticky.remove-header{
    left: 101%;
    transition: all .3s ease-in-out !important;
}

.header .logo-wrap img {
    transition: height 0.15s ease, opacity 0.2s ease;
}
.header.is-sticky .logo-wrap img {
    height: 16px;
    transition: height 0.3s ease, opacity 0.2s ease;
}

/* hambarger animation */
/*.hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #1f95d3;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger.is-active {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hamburger:before {
    content: "";
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
    border: 5px solid transparent;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger.is-active:before {
    border: 3px solid #76ba43;
}

.hamburger.is-active .line {
    width: 35px;
    color: #1f95d3;
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
    transform: translateY(13px);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(90deg);
    -ms-transform: translateY(-13px) rotate(90deg);
    -o-transform: translateY(-13px) rotate(90deg);
    transform: translateY(-13px) rotate(90deg);
}*/









.sidebar-open {
    overflow: hidden;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}
.header {
    padding: 20px 0;
    background-color: #fff;
/*    box-shadow: 3px 3px 3px #ccc;*/
    z-index: 99;
   /* position: fixed;
    top: 0;
    left: 0;*/
    width: 100%;
}
.logo {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
}
.logo-wrap img{width: 100%;}
.container {
    padding: 0 15px;
}
.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.nav-list {
    display: flex;
    align-items: center;
}
.nav-list li {
    padding: 0 15px;
}
.nav-list li a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    display: block;
    text-transform: uppercase;
}
/*.nav-list li a::after {
    content: "";
    background-color: #ffffff;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s linear;
}
.nav-list li a:hover::after {
    width: 100%;
}
.nav-list li.active a::after {
    width: 100%;
}*/
.nav-list li.with-submenu {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.nav-list li.with-submenu > a {
    margin-right: 10px;
}
.nav-list li.with-submenu::after {
    content: "";
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    position: absolute;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    right: 10px;
    margin-bottom: 5px;
    transition: all 0.3s;
}
.nav-list li.with-submenu:hover::after {
    transform: rotate(225deg);
    margin-top: 10px;
}
.nav-list li.with-submenu .submenu {
    position: absolute;
    left: 50%;
    top: 115%;
    background: #ffffff;
    border-radius: 0;
    transform: translateX(-50%);
    box-shadow: 1px 1px 2px 1px #7a7979
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    width: 16rem;
}
.nav-list li.with-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}
.nav-list li.with-submenu .submenu li {
    padding: 0;
}
.nav-list li.with-submenu .submenu a {
    color: #000000;
    display: block;
    padding: 8px 15px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.submenu-inner{
    background: #fff;
     position: relative;
}
.nav-list li.with-submenu .submenu a:hover {
    background-color: rgba(0,106,180,0.75);
}
.nav-list li.with-submenu .submenu li.active a {
    color: #1f95d3;
}
/* .nav-list li.with-submenu .submenu a::after {
    display: none;
} */
.nav-list li.with-submenu > a {
    position: relative;
    z-index: 1;
}
.hamburger {
    display: none;
    z-index: 99;
}
.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: #000;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-child(2) {
/*    width: 15px;*/
}
.hamburger:hover {
    cursor: pointer;
}
.hamburger.is-active .line {
    background-color: #311432;
}
.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    -ms-transform: translateY(6.5px) rotate(45deg);
    -o-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-7.5px) rotate(-45deg);
    -ms-transform: translateY(-7.5px) rotate(-45deg);
    -o-transform: translateY(-7.5px) rotate(-45deg);
    transform: translateY(-7.5px) rotate(-45deg);
}


/* banner css */
.hero_section {
    height: calc(100vh - 80px);
}

.banner_holder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.banner_holder img {
    width: 100%;
}

.banner_left,
.banner_right {
    width: 34%;
    height: 100%;
    display: flex;
    position: relative;
}

.bg-one {
    background: url(../images/real-estate.webp) no-repeat center center/cover;
}

.bg-two {
    background: url(../images/diagnostic.webp) no-repeat center center/cover;
}

.bg-three {
    background: url(../images/furnish.webp) no-repeat center center/cover;
}

.bg-four {
    background: url(../images/interior.webp) no-repeat center center/cover;
}

.bg-five {
    background: url(../images/travel.webp) no-repeat center center/cover;
}

.banner_mid {
    width: 32%;
    height: 100%;
    position: relative;
}

.banner_mid_top,
.banner_mid_bottom {
    height: 50%;
    position: relative;
        width: 100%;
}

.banner_right_inner {
    width: 50%;
    position: relative;
}

.banner_left h3 {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #fff;
}

.banner_mid_top h3 {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
}

.banner_mid_bottom h3 {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #1c1c1c;
}

.banner_right_inner h3 {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #fff;
}

.banner_right_inner_last h3 {
    color: #1c1c1c
}
.parent {
    overflow: hidden;
    position: relative;
    float: left;
    display: inline-block;
    cursor: pointer;
}
.child {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s;
}
.parent:hover .child:before, .parent:focus .child:before {
    display: block;
}
.child:before {
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(52,73,94,0.75);
}
.child.bg-one:before{background-color: rgba(0,106,180,0.75);}
.child.bg-two:before{background-color: rgba(0,101,53,0.75);}
.child.bg-three:before{background-color: rgba(208,93,0,0.75);}
.child.bg-four:before{background-color: rgba(58,22,112,0.75);}
.child.bg-five:before{background-color: rgba(213,119,135,0.75);}
.parent:hover .child, .parent:focus .child {
    transform: scale(1.2);
}
.banner_left:hover .child.bg-one h3, 
.banner_mid_top:hover .child.bg-two h3,
.banner_mid_bottom:hover .child.bg-three h3,
.banner_right_inner:hover .child.bg-four h3,
.banner_right_inner:hover .child.bg-five h3 {
    top: 50%;
    color: #fff;
    transition: auto;
}
.banner_mid_top:hover .child.bg-two h3,
.banner_mid_bottom:hover .child.bg-three h3{
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
}


/* about_section css */
.about_section {
    width: 100%;
    padding: 80px 0px 80px;
}

.about_holder {
    display: flex;
    flex-wrap: wrap;
}

.about_left_box {
    width: 30%;
    padding: 0 30px 0 50px;
}

.about_right_box {
    width: 70%;
}

.about_text,
.our_legacy,
.value_inner {
    width: 100%;
    max-width: 920px;
}

.about_text h1 {
    font-size: 36px;
    color: #000;
    font-weight: 600;
}

.about_text h1 span {
    color: #1f95d3;
    text-transform: uppercase;
}

.about_text h1 span:last-child {
    color: #76ba43;
}

.about_text p,
.our_legacy p {
    font-size: 16px;
    color: #5a5a5a;
    margin: 20px 0;
}

.value_box {
    padding: 30px;
    background: #e0e9ed;
    margin-bottom: 20px;
}

.value_box h4,
.our_legacy h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 20px;
}

.value_box ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.value_box ul li {
    width: 30%;
}

.value_box ul li {
    display: block;
    color: #1f95d3;
    border: 1px solid #1f95d3;
    padding: 10px 15px;
    border-radius: 8px;
    background: #fff;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.value_box ul li:hover {
    background: #76ba43;
    color: #fff;
    border-color: #76ba43;
}

/* business domain section css */
.domain-section {
    padding: 50px 0;
    text-align: center;
    background: url(../images/business-bg.webp) no-repeat center center/cover;
}

.domain-title {
    margin-bottom: 50px;
}

.domain-title h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
}

.domain-title p {
    color: #5b5b5b;
    font-size: 15px;
    font-weight: 500;
}

.domain-section p.subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.domain-card {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    height: 330px;
}

.domain-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-icon img {
    width: 100%;
    max-width: 70px;
}

.real_estate_card .domain-icon {
    background: #59849a;
}

.diagnostic_card .domain-icon {
    background: #69ab90;
}

.furniture_manufacturing_card .domain-icon {
    background: #c6a565;
}

.Interior_design_card .domain-icon {
    background: #7c6997;
}

.tours_travels_card .domain-icon {
    background: #b67a85;
}

.domain-card h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.domain-card p {
    color: #5b5b5b;
    font-size: 14px;
    font-weight: 500;
}

.plus-btn {
    background-color: #1f95d3;
    border-radius: 50%;
    color: white;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    margin: 10px auto 0;
    padding: 10px;
    transition: transform 0.3s ease;
}
.plus-btn i {
  transition: transform 0.3s ease;
}
.domain-card:hover .plus-btn{
    background-color: #606060;  
}
.domain-card:hover .plus-btn i {
  transform: rotate(90deg);
}

/* contact section css */

.contact-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.6);
    background: url(../images/footer_bg.jpg) 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.contact-section h2.text-info {
    padding-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    padding-left: 0;
    font-style: italic;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: none;
    border-bottom: 2px solid #0d6efd;
    background: none;
    color: #fff;
}

.contact-form label {
    color: #ccc;
}

.form-control::placeholder {
    color: #bbb;
}
.button {
    pointer-events: auto;
    cursor: pointer;
    background: #e7e7e7;
    border: none;
    padding: 0.8rem 2rem;
    margin: 0;
    position: relative;
    display: inline-block;
}
.button::before, .button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.button--mimas {
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 0.5rem;
    overflow: hidden;
    color: #fff;
    background: #fff;
}
.button--mimas::before {
    content: '';
    background: #1f95d3;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.button--mimas span {
    position: relative;
        color: #000;
    font-weight: 500;
}

.button--mimas:hover::before {
    transform: translate3d(100%, 0, 0);
}
.contact-form .btn-submit {
    background-color: #1f95d3;
    color: #000;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
}

.contact-info .cont_add_item  i {
    font-size: 20px;
    margin-right: 10px;
    color: #76ba43;
}
.fot_sub_con{
    color: #cbcbcb;
}
.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
}
.contact-form h4 {
    color: #fff;
    margin-bottom: 20px;
}
.contact-info h4 {
    margin-bottom: 15px;
    color: #fff;
}
.contact-info .cont_add_item i {
    border: 2px solid #76ba43;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
.contact-info .cont_add_item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
/*    flex-wrap: wrap;*/
}
.contact-info .cont_add_item .cont_aino_inner {
    display: flex;
    flex-direction: column;
    width: 85%;
}
/*@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -webkit-transform: translateY(0);
        -ms-transform:     translateY(0);
        transform:         translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform:     translateY(-30px);
        transform:         translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform:     translateY(-15px);
        transform:         translateY(-15px)
    }
}*/
.contact-info .cont_add_item:hover i{
    color: #fff;
}
.contact-info .cont_add_item .cont_aino_inner span {
    color: #cbcbcb;
    font-size: 12px;
}
.contact-info .cont_add_item .cont_aino_inner span.below_add_text {
    color: #fff;
    font-size: 14px;
}
.contact-info .cont_add_item .cont_aino_inner span.below_add_text a {
/*    color: #1f95d3 !important;*/
    text-decoration: underline;
}
.contact-info .cont_add_item .cont_aino_inner span.below_add_text a.white {
    color: #fff !important;
    text-decoration: none;
}
.foot_foloow {
    border-top: 1px solid rgb(255,255,255,0.4);
    border-bottom: 1px solid rgb(255,255,255,0.4);
    margin-top: 50px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

p.foot_folotext {
    color: #b3b3b3;
    font-size: 22px;
    padding-right: 25px;
/*        padding-bottom: 10px;*/
}
.foot_foloow .social-icons {
    display: flex;
}
.foot_foloow .social-icons a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    height: 35px;
    width: 35px;
    border: 2px solid #fff;
    border-radius: 100px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.foot_foloow .social-icons a:first-child {
    margin-left: 0;
}
.foot_foloow .social-icons a .icon {
  position: relative;
  color: #fff;
  transition: .5s;
  z-index: 3;
}
.foot_foloow .social-icons a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}
.foot_foloow .social-icons a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}
.foot_foloow .social-icons a:hover:before {
    top: 0;
}
.foot_foloow .social-icons a:before {
    background: #1f95d3;
}
/*.foot_foloow .social-icons a:hover {
    background: #1f95d3;
    border-color: #1f95d3;
}*/

.foot_copy{
    background: #1F95D3;
    background: linear-gradient(90deg,rgba(31, 149, 211, 1) 0%, rgba(68, 168, 147, 1) 50%, rgba(110, 190, 73, 1) 100%);
    padding: 25px 0;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}
.foot_copy .companytext {
    text-align: right;
}


.hovicon {
    cursor: pointer;
    text-align: center;
    position: relative;
    text-decoration: none;
    z-index: 1;
    color: #fff;
}

.hovicon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content:'';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.hovicon:before {
    speak: none;
    font-size: 48px;
    line-height: 90px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
}

/* Effect 8 */
 .hovicon.effect-8 {
   
    -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
    -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
    transition: transform ease-out 0.1s, background 0.2s;
}
.hovicon.effect-8:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}
.domain-card:hover .hovicon.effect-8{
    -webkit-transform: scale(0.93);
    -moz-transform: scale(0.93);
    -ms-transform: scale(0.93);
    transform: scale(0.93);
    color: #fff;
}
.domain-card:hover .hovicon.effect-8 i {
    color: #fff;
}
.domain-card:hover .hovicon.effect-8:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}
@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.3;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #999, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #999, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}
@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.3;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #999, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #999, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes sonarEffect {
    0% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.3;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #999, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #999, 0 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}


.landing_about p {
    font-size: 20px;
    text-align: center;
}
.landing_banner{
    background: url(../images/landing_banner_bg.jpg) 0 0 no-repeat;
    background-size: cover;
    padding: 150px 0;
}
.lading_info h3 {
    color: #1f95d3;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
}
.lading_info p {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 16px;
    color: #5a5a5a;
}
.lading_info a {
    border: 2px solid #000;
    padding: 6px 25px 6px 6px;
    display: inline-block;
    color: #000;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.lading_info a:hover{
    border-color: #1f95d3;
    background: #1f95d3;
    color: #fff;
}
.lading_info a:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    right: -16px;
    top: 16px;
    background: #1f95d3;
}

.readmore_top {
    border: 2px solid #000;
    padding: 6px 25px 6px 6px;
    display: inline-block;
    color: #000;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.readmore_top:hover{
    border-color: #1f95d3;
    background: #1f95d3;
    color: #fff;
}
.readmore_top:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    right: -16px;
    top: 16px;
    background: #1f95d3;
}
.readmore_top:hover:after {
    background: #000;
}


.lading_info a:hover:after {
    background: #000;
}
.lading_info.lading_info_right h3 {
    text-align: right;
}
.lading_info.lading_info_right p {
    text-align: right;
}
.lading_info.lading_info_right a {
    float: right;
    margin-right: 15px;
}
.lading_whychoose {
    background: #f4f4f4;
    padding: 50px 0;
}
.whychoose_info h3 {
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 20px;
}
.ladwhychoose_img img {
    max-width: 300px;
}
.ladwhychoose_img {
    text-align: center;
}
.whychoose_info li {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}
.whychoose_info li .whicon_left {
   /* max-width: 65px;
    width: 100%;*/
    text-align: center;
    /*border-radius: 100%;
    background: #76ba43;*/
/*    padding: 10px;*/
    margin-right: 15px;
    width: 10%;
}
.whychoose_info li .whicon_left img {
    width: 60px;
    background-color: #76ba43;
    padding: 10px;
    border-radius: 92%;  
}
.whicon_right {
    width: 90%;
}
.whychoose_info li .whicon_left.whiccon_blue {
   /* border-radius: 100%;
    background: #1f95d3;
    padding: 10px;
    margin-right: 15px;*/
}
.whychoose_info li .whicon_left.whiccon_blue img{
    background-color: #1f95d3;
}
.banner_iner_centertext {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.banner_iner_centertext h3 {
    line-height: 40px;
}
.landingcontct-section{
     background: url(../images/digonisht_cont_bg.jpg) 0 0 no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.landingcontct-section h2.text-info {
    color: #fff !important;
}
.landingcontct-section p.fot_sub_con {
    color: #fff;
}

.landing_inner{
    background-size: cover;
    padding: 150px 0;
}
.furniture_banner{
    background: url(../images/decor_furniture_banner.png) 0 0 no-repeat;
}
.realstage_banner{
    background: url(../images/realstage_banner_bg.jpg) 0 0 no-repeat;
}
.interiordesign_banner{
    background: url(../images/interior-design_banner_bg.jpg) 0 0 no-repeat;
}
.tourdesign_banner{
    background: url(../images/tour-travels_banner_bg.jpg) 0 0 no-repeat;
}
.furniture_brand h3 {
    margin-bottom: 20px;
    font-size: 30px;
}
.fur_brandlogo ul {
    display: flex;
    flex-wrap: wrap;
}
.fur_brandlogo ul li {
    width: 30%;
    padding: 0 10px 13px;
}
.fur_brandlogo ul li img {
    box-shadow: 1px 0px 4px 1px #b8aeae;
}
.certifications_slider .owl-nav {
    position: absolute;
    top: -58px;
    right: 0;
    margin-top: 0;
}
.certifications_slider .owl-nav button {
    margin: 0 !important;
    font-size: 34px !important;
}
.certifications_slider .owl-nav button.owl-prev {
    margin-right: 21px !important;
}
.certifications_slider .owl-nav button:hover{
    color: #0d4c8d !important;
    background: none !important;
}
.home_lastbgv{
    width: 100%;
    height: 100%;
}

#gettouch_contact .modal-content {
    background: #000;
}
#gettouch_contact .modal-content .modal-header {
    border: none;
    position: relative;
    padding: 0;
}
#gettouch_contact .modal-content .modal-header button.btn-close {
    background: #fff !important;
    opacity: 1;
    color: #000;
    border-radius: 100px;
}
#gettouch_contact .modal-content .modal-header button.btn-close {
    background: #fff !important;
    opacity: 1;
    color: #000;
    padding: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    border-radius: 100%;
    top: -7px;
    font-size: 20px;
    z-index: 999;
}
.gettouch_section {
    color: #fff;
    padding: 15px;
}
.gettouch_section h4 {
    text-align: center;
    padding-bottom: 20px;
}
.gettouch_section input, .gettouch_section textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    color: #fff;
    padding-left: 0;
    font-style: italic;
}
.gettouch_section input:focus, .gettouch_section textarea:focus {
    box-shadow: none;
    border-bottom: 2px solid #0d6efd;
    background: none;
    color: #fff;
}




.tooltip {
      --a: 90deg; /* angle */
      --h: 1em; /* height */
      --b: 4px; /* border width */

      padding: 1em;
      max-width: 400px;
      position: relative;
      z-index: 0;
    }

    .tooltip:before,
    .tooltip:after {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 0;
      background: linear-gradient(to bottom, #05b8cc, #3cb585)
    }

    .tooltip:before {
      padding: var(--b);
      background-size: 100% calc(100% + var(--h));
      clip-path: polygon(
        0 0,
        0 100%,
        100% 100%,
        100% 0,
        calc(
          50% + var(--h) * tan(var(--a) / 2) - var(--b) *
            tan(45deg - var(--a) / 4)
        )
        0,
        calc(
          50% + var(--h) * tan(var(--a) / 2) - var(--b) *
            tan(45deg - var(--a) / 4)
        )
        var(--b),
        calc(
          50% - var(--h) * tan(var(--a) / 2) + var(--b) *
            tan(45deg - var(--a) / 4)
        )
        var(--b),
        calc(
          50% - var(--h) * tan(var(--a) / 2) + var(--b) *
            tan(45deg - var(--a) / 4)
        )
        0
      );
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
    }

    .tooltip:after {
      top: calc(-1 * var(--h));
      clip-path: polygon(
        calc(50% + var(--h) * tan(var(--a) / 2)) var(--h),
        50% 0,
        calc(50% - var(--h) * tan(var(--a) / 2)) var(--h),
        calc(
          50% - var(--h) * tan(var(--a) / 2) + var(--b) *
            tan(45deg - var(--a) / 4)
        )
        calc(var(--h) + var(--b)),
        50% calc(var(--b) / sin(var(--a) / 2)),
        calc(
          50% + var(--h) * tan(var(--a) / 2) - var(--b) *
            tan(45deg - var(--a) / 4)
        )
        calc(var(--h) + var(--b))
      );
    }


