@import url(styles.css);
/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

@font-face {
    font-family: "bodoni";
    src: url(../fonts/bodoni-book.ttf);
}

/* End Fonts */
html ,body {
  scroll-behavior: smooth;
}
:root {
    --main-color: #01062D;
    --sec-color: #FAA300;
    --bg-color: #757aa2;
    --th-color: #e9ecef;
    --height: 0%;
     --rr-common-black: #000000;
      --rr-fw-sbold: 600;
       --rr-ff-heading: 'Outfit', sans-serif;
        --rr-theme-primary: #906E50;
    --rr-heading-primary: #080A0B;
}

* {
    box-sizing: border-box;
    /* text-transform: capitalize; */
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", serif;
    background: #fff;
    text-align: start;
    /* color: #fff; */
}

section,
footer {
    overflow: hidden;
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px;
    padding-top: 30.1px;
    padding-bottom: 53.1px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background:#000;
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 8%);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    /* margin: 0 0 20px; */
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    color: #333;
    padding: 10px 0;
    display: block;
    /*border-bottom: 1px #eee solid;*/
    text-align: start;
    text-transform: capitalize;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}

.mobile-menu .lang-menu {
    /*margin-inline-end:auto;*/
    margin-inline-start: 0 !important;
}

.mobile-menu .lang-menu .lang-btn {
    color: var(--main-color);
    font-weight: 600;
    gap: 15px;
}

.mobile-menu .menu-box .navigation li a {
    color: #fff;
    font-weight: 600;
}

.mobile-menu .sidebar-logo {
    display: flex;
    /* border-bottom: 1px solid gray; */
    margin: 10px 0;
}

/* End Sidebar */

/*** 

====================================================================
	Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}

.link-block {
    position: absolute;
    inset: 0;
}

.form-control {
    width: 100%;
    height: 54px;
    border-radius: 10px;
    padding: 0 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

/*** 

====================================================================
	End Search Popup
====================================================================

***/

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    gap: 20px;
}

header.sticky {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 15px 0;
    /* overflow: hidden; */
    top: 0;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: #fff;
    display: table;
    margin: 0 0 30px;
    margin-inline-start: auto;
    font-size: 24px;
    cursor: pointer;
    width: 30.37px;
    height: 30.37px;
    border-radius: 50%;
    border: 0.47px solid #fff;
    line-height: 28.37px;
    text-align: center;
    font-size: 16px;
    padding-top: 2px;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h {
    padding: 9px 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #393838;
}

.overlay {
    position: absolute;
    inset: 0;
    background: #0023793D;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay-img img {
    width: 100%;
    height: 101%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateY(0%);
    will-change: transform;
}

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-height: 100%; */
    /* overflow-y: auto; */
}

.navbar-collapse .navigation {
    /* width: 50%; */
    flex: 0 0 auto;
}

.mobile-menu .menu-box .navigation li a:hover {
    /* color: #fff; */
    /* text-decoration: underline; */
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 8px;
}

.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.logo-h {
    max-width: 110px;
    width: 100%;
    /* margin-inline-end: 47px; */
    filter: brightness(0) invert(1);
}

.logo-h a {
    display: block;
    width: 100%;
}

.header-med .head-inner ul li {
    position: relative;
}

/*.header-med .head-inner ul li.current-menu-item a,*/
.header-med .head-inner ul li a:hover,
.header-med .head-inner ul li .sub-menu li a:hover {
    color: var(--sec-color);
}

.header-med .head-inner ul li .sub-menu li a.active {
    color: var(--sec-color);
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f0d7";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 5px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 300px;
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 14px 0px #0000001A;
    border-radius: 8px;
    padding: 17px;
    visibility: hidden;
    z-index: 99;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu li a {
    font-size: 18px;
    font-weight: 300;
    line-height: 17.93px;
    padding: 11px 0;
    display: block;
    /* border-bottom: 1px solid #E1E1E1; */
}

.header-med .head-inner ul li .sub-menu li:first-child a {
    padding-top: 0;
}

.header-med .head-inner ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.header-med .head-inner ul li:hover .sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.header-med .head-inner ul li.menu-item-has-children>a:hover::after {
    transform: rotate(180deg);
}

.header-end {
    border-top: 1px solid #cecece;
    padding-block: 1.25rem
}

.header-end .breadcrumb-title,
.header-end .breadcrumb .breadcrumb-item {
    font-weight: 500;
}

.header-end .breadcrumb .breadcrumb-item a {
    color: #757AA2;
}

.header-end .breadcrumb .breadcrumb-item.active {
    color: var(--main-color);
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 8px;
}

.lang-h:hover {
    color: #fff;
}

.mobile-nav-toggler .lines {
    display: block;
    width: 18px;
    overflow: hidden;
    margin: 0 auto;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 100%;
    height: 4px;
    margin: 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
    margin: 2px auto;
}

.mobile-nav-toggler .lines ::after,
.mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    /*background: var(--main-color);*/
    background: #fff;
    transition: all .5s;
    top: 0;
}

.mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.mobile-nav-toggler .lines i:nth-child(1),
.mobile-nav-toggler .lines i:nth-child(3) {
    width: 100%;
}

.mobile-nav-toggler .lines i:nth-child(1) {
    /* margin-inline-start: auto; */
}

.item.res-menu {
    display: none;
    width: 40px;
    height: 40px;
    align-content: center;
    /*background: var(--main-color);*/
    border-radius: 4px;
}

.mobile-menu .menu-outer ul li.menu-item-has-children>a::after {
    content: "\f0d7";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 5px;
    transition: all .4s;
    position: relative;
    display: inline-block;
    float: right;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    border: none !important;
    padding: 10px 16px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 160px;
    background: var(--sec-color);
    min-height: 50px;
    border-radius: 8px;
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 24px;
    box-shadow: none !important;
    z-index: 1;
    /* border-bottom: 3px #E8E8E8 solid !important;
    border-inline-end: 1px #E8E8E8 solid !important; */
    font-weight: 500;
    gap: 11px;
}

header .btn {
    color: #fff;
    /* line-height: 18.23px; */
}

.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background-color: var(--sec-color);
    transition: 0.5s ease-in-out;
    z-index: -1;
    display: none;
}

.btn::before {
    left: 0;
}

.btn::after {
    left: 50%;
}

.btn:hover::before,
.btn:hover::after,
.btn:hover span::before,
.btn:hover span::after {
    height: 80px;
}

.btn span::before,
.btn span::after {
    top: auto;
    bottom: 0;
}

.btn span::before {
    left: 25%;
}

.btn span::after {
    left: 75%;
}

.nav-inner {
     margin-inline-start: auto; 
}

.search-box-btn.search-box-outer {
    color: #000;
    font-size: 16px;
    font-weight: 900;
    line-height: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.header-top {
    padding: 15px 0;
    background: var(--main-color);
}

.lang-menu {
    max-width: 119px;
    margin-inline-start: auto;
    position: relative;
}

.lang-menu .lang-btn {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    color: #fff;
    justify-content: end;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
}

.lang-menu .lang-btn .icon {
    width: 18px;
    height: 18px;
    line-height: 18px;
}


.lang-menu .sub-menu {
    width: 100%;
    position: absolute;
    border: 1px solid #898787;
    background: #fff;
    top: 42px;
    border-radius: 4px;
    padding: 14px;
    z-index: 9;
}

.lang-menu .sub-menu li a {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin: 8px 0;
    gap: 8px;
    color: var(--main-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}

.lang-menu .sub-menu li a .icon {
    width: 18px;
    height: 18px;
    line-height: 18px;
}

.lang-menu .sub-menu li a span {
    width: calc(100% - 26px);
}

.header-med {
    /* padding: 11px 0 26px; */
    padding: 11px 0 10px;

}

.logo-h a img {
    max-height: 60px;
    width: 100%;
}

.header-med .head-inner ul li a::before {
    content: "";
    bottom: 0;
    right: 0;
    left: 0;
    width: 0;
    transition: all .4s;
    border-bottom: 1px var(--sec-color) solid;
    position: absolute;
}

.header-med .head-inner ul li a:hover::before {
    width: 100%;
}

.header-med .head-inner ul li:last-child a {
    /* color: var(--main-color); */
    /* cursor: pointer; */
}

.btn:hover {
    color: #fff;
    background: var(--main-color);
}

.menu-left .fav-btn {
    width: 40px;
    height: 39px;
    border-radius: 4px;
    border: none !important;
    box-shadow: none;
    background: #757AA214;
    font-size: 19.5px;
    color: var(--sec-color);
}

/* End Header */

/* Start Banner-h */



.banner-h .row {
    height: 100vh;
    align-items: center;
    -webkit-align-items: center;
    padding-top: 10vh;
}

.banner-h .row .row {
    height: auto;
    align-items: start;
    -webkit-align-items: start;
    padding: 0;
}

.banner-inner {
    /* padding-bottom: 100px; */
}

.banner-text {
    /* margin: 0 auto; */
    margin-bottom: 30px;
    max-width: 600px;
}

.banner-text h1 {
    font-size: 117px;
    /* font-weight: bold; */
    color: #fff;
    margin-bottom: 24px;
    line-height: 94px;
    /*font-family: "bodoni";*/
font-family: "Montserrat", serif;
text-transform: none;
}

.banner-text p {
    font-size: 18px;
    color: #fff;
    line-height: 28px;
    /* margin-bottom: 24px; */
}

.banner-form {
    /* background: rgb(255 255 255 / 10%); */
    background: rgb(255 255 255 / 20%);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    margin: 0 auto;
    max-width: 900px;
}

.modal .banner-form{
    background:white;
}
.banner-form .form-group {
    margin: 3px 0;
}

.banner-form .form-group .form-control {
    height: 45px;
    border-radius: 5px;
    padding: 0 14px !important;
    font-size: 15px;
    background: #ffffff00;
    /*background:#fff;*/
    /* color: #777; */
    color: #ffffff9e;
    border-color: #00000047;
    /*align-content: center;*/
        align-content: start;
}
.banner-form .form-group .form-control::placeholder {
    /*color: #1a19197a;*/
    color:#ffffff9e;
}
.modal .form-group .form-control{
    color:#000 !important;
}
.modal .form-group .form-control::placeholder {
    color:#000 !important;
}
.banner-form .form-group label {
    /* color: #fff; */
    color: #000;
    font-size: 12px;
    margin-bottom: 10px;
}

.banner-form .form-group .form-control::after {
    left: auto;
    right: 18px;
    top: 12px;
    font-weight: 300;
    font-size: 20px;
}

.banner-form .form-group .btn {
    width: 100%;
    border-radius: 5px;
    margin-top: 15px;
    background-color: var(--sec-color);
    color: #fff;
}

.banner-form .form-group .form-p {
    text-align: center;
}

.banner-form .form-group .form-p p {
    /* color: #fff; */
    color: #000;
    max-width: 314px;
    margin: 0 auto;
    font-size: 10px;
    line-height: 20px;
}

.banner-form .col-md-12:last-child .form-group {
    margin-bottom: 0;
}

.banner-form .form-group .form-p p a {
    color: var(--sec-color);
    text-decoration: underline;
}

.banner-text h1 span {
    display: block;
    font-size: 40px;
    line-height: 50px;
    font-weight: normal;
}

.banner-count-block {
    margin: 10px 0;
    text-align: center;
}

.banner-count-block h2 {
    font-size: 70px;
    line-height: 70px;
    color: #fff;
    display: flex;
    font-weight: bold;
    justify-content: center;
    /*font-family: 'bodoni';*/
    font-family: "Montserrat", serif;
    align-items: center;
    -webkit-align-items: center;
}

.banner-count-block h4 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

.banner-count-block h2 span {
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
    padding-inline-start: 7px;
}

.banner-count-block h2 strong {
    display: block;
    line-height: 27px;
    font-size: 17px;
}

.banner-count-block h2 i {
    font-style: normal;
    /* font-weight: normal; */
    font-size: 50px;
    margin-inline-start: 5px;
    position: relative;
    top: 6px;
}

.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .3;
}

.banner-form .banner-title-form {
    margin-bottom: 10px;
}

.banner-form .banner-title-form h3 {
    font-size: 30px;
    line-height: 32px;
     color: #fff; 
    /*color: #000;*/
    font-weight: bold;
    margin-bottom: 5px;
}

.banner-form .banner-title-form p {
     color: #fff; 
    /*color: #000;*/
    font-size: 14px;
    line-height: 20px;
}

.iti {
    display: block;
}

/* End Banner-h */

/* Start Modal */
.whatsappIcon {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 6;
    width: 60px;
    height: 60px;
    background: #66c066;
    color: #fff;
    font-size: 35px;
    border-radius: 50%;
    margin: 30px;
}

.whatsappIcon i {
    width: 100%;
    height: 100%;
    align-content: center;
    text-align: center;
}

.formModal .modal-dialog {
    background: transparent;
}

.formModal .modal-dialog .modal-content {
    box-shadow: none;
    background: transparent;
    border: none;
}

.formModal .modal-dialog .modal-body {
    padding: 0;
}

.formModal .modal-dialog button.btn-close {
    position: absolute;
    /*left: 0;*/
    top: 0;
    z-index: 4;
    /*margin: 20px;*/
    /*filter: brightness(0) invert(1);*/
        right: 20px;
    margin-top: 35px;
}

.modal-form.banner-form {
    padding: 70px 30px 30px;
}

.modal-form.banner-form .form-group {
    margin: 15px 0;
}

.modal-form.banner-form .form-group .iti {
    display: block;
}

.banner-form .form-group .form-control.phone {
    padding-inline-start: 90px !important;
}

.banner-form .form-group textarea.form-control {
    height: 120px;
    align-content: start;
    padding: 20px !important;
}


/* End Modal */

/* Start Comp-h */

.comp-h .row,
.tax-h .row {
    /* min-height: 100vh; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
    padding: 20vh 0;
}

.comp-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgb(0 0 0 / 73%), transparent); */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.73), #ffffff4d);
}

.text-comp {
    margin-bottom: 30px;
}

.title-comp h3 {
    font-size: 50px;
    color: #fff;
}

.title-comp p {
    max-width: 700px;
    color: #fff;
    font-size: 17px;
    line-height: 27px;
    margin-top: 20px;
}

.text-comp table {
    width: 100%;
    background: rgb(255 255 255 / 5%);
    padding: 30px;
    backdrop-filter: blur(3px);
}

.text-comp table th,
.text-comp table td {
    padding: 10px 20px;
    color: #fff;
    border-bottom: 1px rgb(255 255 255 / 25%) solid;
    font-size: 15px;
    line-height: 25px;
}

.text-comp table tr:last-child th,
.text-comp table tr:last-child td {
    border: none;
}

.comp-map .text-inner .overlay-img {
    position: relative;
}

.comp-map .text-inner .overlay-img::after {
    display: none;
}

.comp-map .text-inner h3 {
    position: absolute;
    inset: 0;
    align-content: end;
    text-align: center;
    color: #fff;
    font-size: 45px;
    margin: 0 0 65px;
    font-weight: bold;
}

.all-comp .comp-slider {
    margin: 0;
    z-index:7;
}

.all-comp .item {
    padding: 0 10px;
}

.comp-block {
    height: 300px;
    position: relative;
}

.comp-block .img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.comp-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 80%) 23%, transparent);
}

.comp-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.comp-block .details {
    position: absolute;
    inset: 0;
    padding: 20px;
    color: #fff;
}

.comp-block .details h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 5px;
}

.comp-block .details span {
    font-size: 12px;
    line-height: 22px;
    display: inline-block;
}

.slick-prev,
.slick-next {
    /*width: 30px;*/
    /*height: 30px;*/
    /*align-content: center;*/
    /*text-align: center;*/
    /*background: #fff;*/
    /*border-radius: 50%;*/
    /*z-index: 6;*/
    /*border:1px solid var(--main-color);*/
      width: 40px;
    height: 42px;
    align-content: center;
    text-align: center;
    background: #ffffff5c;
    border-radius: 50%;
    z-index: 6;
    border: 1px solid #01062d0f;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Pro';
    color: #000;
    font-size: 16px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background: var(--main-color);
    
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    color: #fff;
}

.title {
    margin-bottom: 30px;
    text-align: center;
}
.lifeStyle-h .title,
.smart-h .title{
    margin-bottom: 60px;
}

.title h3 {
    font-size: 50px;
    color: #fff;
    line-height: 60px;
    font-weight: bold;
}
.what-h .title h3{
    color:var(--main-color);
}
.title h4 {
    color: #fff;
    font-size: 36px;
    margin: 0;
}
.title p {
 color: #fff;
}
.tax-h .overlay-img::after, .lifeStyle-h .overlay-img::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(1 6 45 / 60%) 50%, transparent);
}

.tax-block {
    margin: 10px 0;
    padding: 30px;
    background: #ffffff1a;
    border-radius: 10px;
    backdrop-filter: blur(3px);
    height: calc(100% - 20px);
        z-index: 2;
    position: sticky;
}

.tax-block .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.tax-block .icon img {
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.tax-block .details {
    padding: 20px 0 0;
}

.tax-block .details h3 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    line-height: 32px;
    margin-bottom: 10px;
}

.tax-block .details p {
    color: #fff;
    max-width: 340px;
    margin: 10px 0;
}

.tax-block .details .btn {
    margin-top: 15px;
    min-width: 125px;
}

/* End Comp-h */

/* Start Flexable-h */

.flexible-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    /*background: rgb(255 255 255 / 15%);*/
        background: rgb(0 0 0 / 36%);
}

.flexible-block .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.flexible-block .details {
    padding: 20px 0 0;
}

.flexible-block .details h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 34px;
    margin-bottom: 10px;
}

.flexible-block .details p {
    color: #333;
    max-width: 340px;
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 26px;
}

.flexible-block {
    background: #fff;
    height: calc(100% - 20px);
    padding: 30px;
    border-radius: 10px;
    margin: 10px 0;
}

.flexible-h .row {
    /* min-height: 100vh; */
    padding: 10vh 0;
}

.flexible-block .icon svg path {
    fill: var(--sec-color);
}

/* End Flexable-h */

/* Start LifeStyle-h */

.lifeStyle-h .row {
    min-height: 80vh;
    align-items: center;
    /*padding: 10vh 0;*/
}

.lifeStyle-h .title h3,
.smart-h .title h3 {
    font-size: 60px;
}

.lifeStyle-h .title h4,
.smart-h .title h4 {
    font-size: 50px;
    letter-spacing: 2px;
}

.lifeStyle-h .overlay-img img {
    object-position: top center;
}

.lifeStyle-text,
.smart-text {
    max-width: 800px;
}

.lifeStyle-text ul li,
.smart-text ul li {
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    text-shadow: 0 1px 2px #000;
}

.lifeStyle-text .btn {
    margin-top: 20px;
    min-height: 50px;
}

/* End LifeStyle-h */

/* Start Smart-h */
.smart-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgb(0 0 0 / 73%), transparent); */
        /*background: linear-gradient(to top, rgba(0, 0, 0, 0.73), #ffffff4d);*/
            background: linear-gradient(to top, rgb(0 0 0 / 70%), #5857574d);
}
.smart-h .row {
    align-items: center;
    -webkit-align-items: center;
    padding: 0 0 20vh;
    min-height: 80vh;
}

.smart-h .title h4 {
    font-size: 54px;
}

.smart-icons {
    position: absolute;
    display: flex;
    right: 0;
    bottom: 10vh;
    margin: 50px;
    max-width: 50%;
    width: 100%;
    justify-content: space-between;
    gap: 10px 30px;
    flex-wrap: wrap;
}

.smart-h {
    /* padding-bottom: 200px; */
}

.smart-icons .icon {
    width: 78px;
    height: 78px;
    line-height: 78px;
    animation: zoom-in-zoom-out 4s ease-out infinite;
}

.smart-icons .icon img {
    max-height: 78px;
    object-fit: contain;
    object-position: center;
}

.smart-icons .icon:nth-child(2) {
    animation: zoom-in-zoom-out 4.5s ease-out infinite;
}

.smart-icons .icon:nth-child(3) {
    animation: zoom-in-zoom-out 5s ease-out infinite;
}

.smart-icons .icon:nth-child(4) {
    animation: zoom-in-zoom-out 5.5s ease-out infinite;
}

.smart-icons .icon:nth-child(5) {
    animation: zoom-in-zoom-out 6s ease-out infinite;
}

.smart-icons .icon:nth-child(6) {
    animation: zoom-in-zoom-out 6.5s ease-out infinite;
}

.smart-icons .icon:nth-child(7) {
    animation: zoom-in-zoom-out 7s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

/* End Smart-h */

/* Start Why-h */

.why-h {
    padding: 100px 0;
}

.why-img {
    height: 600px;
    position: relative;
    max-width: 636px;
}

.why-img .img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.why-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-img .why-counter {
    position: absolute;
    right: 40px;
    bottom: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    padding: 13px 18px;
    border-radius: 6px;
    color: var(--main-color);
    box-shadow: 2px 2px 6px rgb(1 6 45 / 20%);
}

.why-img .why-counter .icon {
    /* color: #fff; */
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    align-content: center;
    text-align: center;
}

.why-img .why-counter .details {
    max-width: calc(100% - 34px);
    padding-inline-start: 12px;
}

.why-img .why-counter .details span {
    font-size: 10px;
    color: #666;
}

.why-img .why-counter .details h2 {
    margin: 0;
    font-weight: bold;
    font-size: 22px;
}

.why-text>h3 {
    font-size: 40px;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 20px;
}

.list-h .item {
    display: flex;
    /* align-items: center; */
    /* -webkit-align-items: center; */
    margin: 20px 0;
    gap: 19px;
}

.list-h .item .icon {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 50%;
    padding: 10px;
    align-content: center;
    text-align: center;
}

.list-h .item .deatils {
    width: calc(100% - 80px);
}

.list-h .item .icon svg path {
    fill: var(--main-color);
}

.list-h .item .icon img {
    max-width: 35px;
    max-height: 35px;
    object-fit: contain;
    object-position: center;
}

.list-h .item .deatils h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 25px;
}

.list-h .item .deatils p {
    color: #444;
}

.why-h .row {
    align-items: center;
    -webkit-align-items: center;
}

/* End Why-h */

/* Start What-h */

.what-h {
    /*padding: 100px 0;*/
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 30px;
}

.nav.nav-tabs {
    border: none;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 32px;
    gap: 16px;
}

.nav.nav-tabs .nav-item .nav-link {
    height: 48px;
    padding: 0 24px;
    background: #fff;
    border-radius: 6px;
    border: 1px #e1e8ed solid;
    min-width: auto;
    min-height: auto;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--main-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    font-weight: 600;
}

.nav.nav-tabs .nav-item .nav-link.active {
    border-color: var(--sec-color);
    border-width: 2px;
}

.what-slider .item {
    padding: 0 8px;
}

.what-block {
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .08), 0 0 2px 0 rgba(0, 0, 0, .16), 0 -12px 24px 0 transparent;
    height: calc(100% - 30px);
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
}

.what-block .img-block {
    height: 312px;
    overflow: hidden;
    position: relative;
    width: 100%;
}


.what-block .img-block .img-inner {
    width: 100%;
    height: 100%;
}

.what-block .img-block .img-inner .what-inner-slider {
    margin: 0;
    height: 100%;
}

.what-block .img-block .img-inner .what-inner-slider .item,
.what-block .img-block .img-inner .what-inner-slider .item * {
    width: 100%;
    height: 100% !important;
    padding: 0;
    object-fit: cover;
    object-position: center;
}

.what-block .img-block .img-inner .what-inner-slider .slick-arrow {
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    /*margin: 0 10px;*/
    margin: 0 7%;
}

.tab-banner-inner .what-block .img-block .img-inner .what-inner-slider .slick-arrow {
    margin: 0 10px !important;
}

.what-block .img-block .img-inner .what-inner-slider .slick-arrow::before {
    font-size: 24px;
}

.what-block .img-block .img-inner .what-inner-slider .slick-dots {
    bottom: 35px;
}

.what-block .img-block .img-inner .what-inner-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.what-block .img-block .img-inner .what-inner-slider .slick-dots li button {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    margin: 0 3px;
    padding: 0;
    transition: all .4s;
    opacity: .8;
}

.what-block .img-block .img-inner .what-inner-slider .slick-dots li button::before {
    display: none;
}

.what-block .img-block .img-inner .what-inner-slider .slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    opacity: 1;
}

.what-block .img-block .icon-imgs {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    padding: 2px 5px;
    position: absolute;
    margin: 15px;
    z-index: 1;
    flex-direction: row-reverse;
}

.what-block .img-block .labels-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    margin: 8px;
    display: flex;
    gap: 10px;
}

.what-block .img-block .labels-img span {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, .4);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    left: 0;
    padding: 10px 16px;
    position: relative;
    text-transform: capitalize;
    top: 0;
    index: 1;
}

.what-block .details {
    padding: 24px;
}

.what-block .details .title-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: column;
    align-items: start;
    -webkit-align-items: start;
}

.what-block .details .title-block .name-pro {
    font-size: 18px;
    color: var(--main-color);
    font-weight: 600;
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    -webkit-align-items: center;
}

.what-block .details .title-block .btn-fav button {
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    padding: 0;
    color: var(--sec-color);
    font-size: 20px;
}

.what-block .details .title-block .btn-fav button i {
    font-weight: 300;
}

.what-block .details .content-block>p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #35373c;
    display: -webkit-box;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
}

.what-block .details .content-block .location-in {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 4px;
    min-height: 40px;
    color: #a3a3a3;
    gap: 4px;
}

.what-block .details .content-block .location-in span {
    max-width: calc(100% - 20px);
}

.name-what-inner-h .location-in {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 4px;
    min-height: 40px;
    color: #212529;
    gap: 4px;
}

.name-what-inner-h .location-in span {
    max-width: calc(100% - 20px);
}

.what-block .details .content-block .content-in {
    display: flex;
    flex-wrap: wrap;
    padding-top: 16px;
    padding: 0;
    align-items: center;
    column-gap: 24px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: start;
}

.what-block .details .content-block .content-in .item {
    padding: 0;
    font-size: 14px;
    align-items: center;
    color: var(--main-color);
    display: flex;
    font-weight: 600;
    margin-inline-end: 12px;
    gap: 6px;
    align-items: center;
    display: flex;
    font-size: 14px;
    margin: 0;
    color: #35373c;
    font-weight: 400;
    /* width: 33.33%; */
    flex: 0 0 auto;
}

.what-block .details .content-block .content-in .item:nth-child(1)::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #e1e8ed;
    margin-inline-start: 12px;
}

.what-block .details .content-block .btns-block {
    display: flex;
    padding-top: 20px;
    gap: 8px;
    justify-content: space-between;
}

.what-block .details .content-block .btns-block .btn {
    align-items: center;
    background-color: #f0f3f8;
    border-radius: 6px;
    color: #07234b;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 46px;
    justify-content: center;
    padding: 0 16px;
    width: 33.33%;
    min-width: auto;
    gap: 6px;
    width: 50%;
    flex: 0 0 auto;
    padding: 0 4px;
    font-size: 11px;
}

.what-block .details .content-block .btns-block .btn i {
    font-size: 14px;
}

.what-block .details .content-block .btns-block .btn-call i {
    color: var(--sec-color);
}

.what-block .details .content-block .btns-block .btn-whats i {
    color: rgb(42, 211, 102);
}

.what-block .img-block .img-inner .what-inner-slider .slick-list,
.what-block .img-block .img-inner .what-inner-slider .slick-list .slick-track {
    height: 100%;
}


/* End What-h */

/* Start Video-h */

.video-h {
    padding: 100px 0 10px;
}

.video-h .title h3 {
    color: var(--main-color);
}

.title p {
    max-width: 700px;
    margin: 20px auto;
}

.video-h .title p {
    margin: 20px auto 0;
    color:var(--main-color);
}

.video-block {
   height: 600px;
    border-radius: 10px;
    /* overflow: hidden; */
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
}
.video-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
    bottom: -32px;
    height: 48px;
background: radial-gradient(ellipse at center, rgb(0 0 0 / 96%) 0%, transparent 80%);  z-index: -1;
  filter: blur(8px);
}

.video-imgs {
    margin-top: 30px;
}

.video-img {
    max-width: 300px;
    height: 250px;
    text-align: center;
    align-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px #0000000f;
}

.video-img img {
    width: 100%;
    height: 74%;
    object-fit: contain;
    object-position: center;
}
.label-partner{
        font-weight: 500;
}

.comp-map .text-inner .overlay-img img {
    transform: none !important;
}

.why-img .img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: var(--height);
    bottom: 0;
    left: 0;
    background: var(--main-color);
}

.title-flex .title {
    margin: 0;
}

.what-block .details .title-block .name-pro .logo-small {
    max-width: 60px;
    width: 60px;
    height: 60px;
    margin-top: -15px;
}

.what-block .details .title-block .name-pro .logo-small img {
    max-height: 100%;
}

.pro-price {
    font-size: 16px;
    margin-top: 5px;
}

.pro-price span strong {
    font-size: 18px;
    color: var(--main-color);
}


/* End Video-h */


.comp-h::before, .comp-h::after,
.tax-h::before, .tax-h::after,
.flexible-h::before, .flexible-h::after,
.lifeStyle-h::before, .lifeStyle-h::after,
.smart-h::before, .smart-h::after
{
    content: "";
    position: absolute;
    inset: 0;
}
.comp-h::before,
.tax-h::before,
.flexible-h::before,
.lifeStyle-h::before,
.smart-h::before

{
        /*background-image: linear-gradient(0deg, #1110 88%, #111111e0);*/
            /*background-image: linear-gradient(0deg, #1110 88%, #111111d6 100%);*/
   /*background-image: linear-gradient(0deg, #1110 90%, #111 );*/
   /*background-image: linear-gradient(180deg, transparent 95%, rgba(17, 17, 17, 0.05) 100%);*/
       background-image: linear-gradient(0deg, #1110 88%, #11111136 100%);

    pointer-events: none;
    z-index: 1;

}

.tax-h:after,
.flexible-h:after,
.lifeStyle-h:after,
.smart-h:after,
.comp-h:after
{
    /*background-image: linear-gradient(180deg, #1110 95%, #111 99%);*/
    /*background-image: linear-gradient(180deg, #1110 95%, #111 99%);*/
        /*background-image: linear-gradient(180deg, #1110 98%, #111 100%);*/
    /*background-image: linear-gradient(180deg, transparent 80%, rgba(17, 17, 17, 0.03) 100%);*/
     
    background-image: linear-gradient(180deg, #1110 95%, #1111113b 99%);
}
/* {*/
/*    background-image: linear-gradient(180deg, #1110 95%, #4a4747c9 99%);*/
/*}*/
.mobile-only{
    display:none;
}
   .footer-formFeild .intl-tel-input .country-list {
                position: absolute!important;
            }

            footer form label {
                color: #000!important;
            }

            footer .phonenumber {
                border: none!important;
                border-bottom: 1px solid #000!important
            }

            footer .footer-formBtn button:hover::after {
                z-index: -1!important
            }

            .fixedcta a.whatsappbtn, .fixedcta a.whatsappbtn:hover {
            }

            .fixedcta a.whatsappbtn {
                margin-right: 20px;
            }

            .fixedcta a.callbtn, .fixedcta a.callbtn:hover {
            }

            .fixedcta i.fa-whatsapp {
                font-size: 30px;
                color: #fff;
            }

            .whatappouter {
                z-index: 100000;
                position: fixed;
                bottom: 10px;
                right: 20px;
                height: 58px;
                width: 58px;
                background-color: #4CAF50;
                padding: 8px 11px;
                border-radius: 50%;
            }

            .fixedcta i.fa-whatsapp {
                font-size: 41px;
            }

            .modal form label.newstyle {
                color: #fff !important;
            }

            .optioncss option {
                color: black !important;
            }

            #learnModal .modal-content {
                position: relative;
            }

            #learnModal .modal-content .btn-close {
                position: absolute;
                top: 20px;
                right: 40px;
                filter: invert(1);
            }
            .homeSection7 .hSec7-mian .hSec7-card .hSec7-cardFooter {
  padding: 0 15px;
}
.homeSection7 .hSec7-mian .hSec7-card .hSec7-cardFooter ul {
  display: flex;
  align-items: center;
  gap: 14px;
}
.homeSection7 .hSec7-mian .hSec7-card .hSec7-cardFooter ul li a {
  font-size: 20px;
  color: #000;
}
.homeSection7 .hSec7-mian .hSec7-card .hSec7-cardFooter ul li a:hover {
  color: #ED9C4B;
}
.homeSection7 .hSec7-mian .hSec7-card .hSec7-cardBody {
  padding: 25px;
  border-radius: 15px;
  background-color: #E8E8E8;
}
.homeSection7 .hSec7-mian .hSec7-card .hSec7-cardBody p {
  color: #666666;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.8px;
}

footer {
  padding: 200px 0 120px;
}
footer .sideCont.first {
  padding-bottom: 90px;
}
footer .widget-left .footer-hd {
  padding-bottom: 60px;
}
footer .widget-left .footer-hd h6 {
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1.1;
  color: #000;
  padding-bottom: 30px;
}
footer .widget-left .footer-hd p {
  color: #000;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.4;
}
footer .widget-left h5 {
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.1;
  color: #000;
  padding-bottom: 15px;
}
footer .widget-left h4 {
  font-size: 18px;
  line-height: 1.1;
  color: #000;
  padding-bottom: 30px;
}
footer .widget-left .location {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 40px;
}
footer .widget-left .location a {
  display: flex;
  gap: 10px;
  color: #000;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
  align-items: center;
}
footer .widget-left .location a:hover {
  color: #ED9C4B;
}
footer .widget-left span {
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.1;
  color: #999;
  padding-bottom: 30px;
}
footer .widget-left ul {
  display: flex;
  align-items: center;
  gap: 35px;
}
footer .widget-left ul li a {
  font-size: 22px;
  color: #999999;
}
footer .widget-left ul li a:hover {
  color: #3A748A;
}
footer .footer-form {
  padding-left: 30px;
}
footer .footer-formFeild {
  padding-bottom: 30px;
}
footer .footer-formFeild label {
  display: block;
  font-weight: 700;
  line-height: 1.2;
  font-size: 18px;
  padding-bottom: 10px;
}
footer .footer-formFeild input, footer .footer-formFeild select, footer .footer-formFeild textarea {
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid #000;
  border-radius: 10px; 
  padding-left:10px;
}
footer .footer-formFeild textarea {
  height: 160px;
}
footer .footer-formBtn input, footer .footer-formBtn button {
  display: inline-block;
  background-color: transparent;
  color: #000;
  font-size: 18px;
  line-height: 1.2;
  position: relative;
  padding: 20px 30px;
  margin: 32px 0;
  font-family: "Montserrat", serif;
  font-weight: 400;
  text-transform: uppercase;
}
footer .footer-formBtn input span, footer .footer-formBtn button span {
  position: relative;
  z-index: 1;
  color: #000;
  transition: all 0.4s ease-in-out;
}
footer .footer-formBtn input::after, footer .footer-formBtn button::after {
  content: "";
  border: 1px solid #000;
  border-radius: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 18px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8px;
  right: 0;
  margin: auto;
  transform: rotate(335deg);
  transition: all 0.4s ease-in-out;
}
footer .footer-formBtn input:hover, footer .footer-formBtn button:hover {
  color: #fff;
}
footer .footer-formBtn input:hover span, footer .footer-formBtn button:hover span {
  color: #fff;
}
footer .footer-formBtn input:hover::after, footer .footer-formBtn button:hover::after {
  background-color: #000;
}

.copyright {
  background-color: #000;
  width: 100%;
  height: 60px;
}
footer .submitBtn{
    background-color:#01062d;
}
.flexible-h,.lifeStyle-h,.smart-h{
        padding-top: 100px;
    padding-bottom: 90px;
}
/* why choose */
.why-choose-us{
       margin:80px auto;
}
.why-choose-us__content {
    max-width: 412px;
 
}

.why-choose-us__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

@media (max-width: 575px) {
    .why-choose-us__item {
        gap: 15px;
    }
}

.why-choose-us__item:not(:last-child) {
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .why-choose-us__item:not(:last-child) {
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .why-choose-us__item:not(:last-child) {
        margin-bottom: 30px;
    }
}

.why-choose-us__icon {
    margin-top: 8px;
}

.why-choose-us__text h6 {
    color: var(--rr-common-black);
    font-weight: var(--rr-fw-sbold);
}

.why-choose-us__media {
    overflow: hidden;
}

.why-choose-us__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.why-choose-us__media.img1 {
    border-radius: 120px 0px;
    height:500px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .why-choose-us__media.img1 {
        margin-top: 30px;
       
    }
}

@media (max-width: 575px) {
    .why-choose-us__media.img1 {
        margin-top: 30px;
        margin-bottom: 30px;
          height:250px;
    }
}

.why-choose-us__media.img2 {
    border-radius: 70px 0px 0;
      height:220px;
}

@media (max-width: 575px) {
    .why-choose-us__media.img2 {
        margin-bottom: 30px;
    }
}

.why-choose-us__media.img3 {
    border-radius: 0px 70px 0px 0px;
      height:220px;
}
.section__title-wrapper {
    position: relative;
    z-index: 55;
}

.section__subtitle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    font-family: var(--rr-ff-heading);
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    color: var(--main-color);
}

@media (max-width: 575px) {
    .section__subtitle {
        font-size: 20px;
        line-height: 30px;
    }
}
