:root {
    --theme_color: #52494a;
    --blue_color: #3368C6;
    --red_color: #f9060a;
    --yellow_color: #ffcd5a;
    --orange_color: #ff7300;
}

@font-face {
    font-family: 'DINPro';
    src: url('../fonts/DINPro-Regular.woff2') format('woff2'), url('../fonts/DINPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #2C2E35;
    background: #fff;
}

html {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    font-weight: 500;
}

.heading {
    font-family: "Red Rose", serif;
}

img {
    max-width: 100%;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

a {
    color: var(--red_color);
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

a:hover {
    color: #000;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}


/*Slim Scroll*/

* {
    scrollbar-width: thin;
    scrollbar-color: var(--red_color) #d4d4d4;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: #d4d4d4;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--red_color);
    border-radius: 6px;
}

.container {
    max-width: 1400px;
}

.optima_font {
    font-family: 'Optima', sans-serif;
}

.font150 {
    font-size: 150px;
}

.font70 {
    font-size: 70px;
}

.font50 {
    font-size: 50px;
    letter-spacing: 3px;
}

.brown_bg {
    background: var(--theme_color);
}

.red_bg {
    background: var(--red_color);
}

.gray_bg {
    background: #161244;
}

.orange_bg {
    background: #ff7300;
}

.gray_light_bg {
    background: #f7f7f7;
}

.text_theme {
    color: var(--theme_color);
}

.red_text {
    color: var(--red_color);
}

.text_gray {
    color: #898989;
}

.text_gray_light {
    color: #cccccc;
}

.gold_hr {
    border: solid 1px var(--theme_color);
}

.border_gold {
    border: solid 1px var(--theme_color);
}

.modal-header {
    border-bottom: 0 !important;
}

.modal-header .btn-close {
    border: solid 1px var(--theme_color);
    width: 40px;
    height: 40px;
    border-radius: 0;
    font-size: 28px;
    margin-right: 10px;
    margin-top: 10px;
}

.btn_orange {
    background: var(--orange_color);
}

.theme_btn {
    background: var(--red_color);
    border: solid 1px var(--red_color);
    color: #fff;
    padding: 10px 25px;
    transition: all 0.2s ease;
    display: inline-table;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 100px;
}

.theme_btn:hover,
.theme_btn:focus {
    background: var(--theme_color) !important;
    border: solid 1px #fff;
    color: #fff !important;
    outline: 0;
    opacity: 0.9;
}

.theme_btn_outline {
    background: transparent;
    border: solid 1px var(--theme_color);
    color: var(--theme_color);
    padding: 10px 25px;
    transition: all 0.2s ease;
    display: inline-table;
    letter-spacing: 2px;
    font-size: 16px;
    border-radius: 100px;
}

.theme_btn_outline:hover,
.theme_btn_outline:focus {
    background: #04a259;
    border: solid 1px #04a259;
    color: #dfdfdf !important;
    outline: 0;
}


/*Top Bar*/

.topbar {
    background: var(--theme_color);
    color: #fff;
    font-size: 14px;
}

.topbar a {
    color: #fff;
}

.topbar a:hover {
    color: #b78484;
}

.topbar .btn_top {
    background: #1372BA;
    font-size: 16px;
    color: #fff;
    border-radius: 0;
}

.topbar .btn_top:hover {
    background: #1372BA;
    opacity: 0.8;
}


/*Navber*/

.sticky-top {
    box-shadow: 0 0 2px #ccc;
}

.logo {
    max-width: 100%;
    width: auto;
    max-height: 60px;
}

.nav-link {
    font-size: 18px;
    padding: 25px 14px !important;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-toggle::after {
    float: right;
    margin-top: 11px;
}

.dropdown-menu {
    border-radius: 0;
    min-width: 240px;
    border: solid 1px #fff;
    -webkit-box-shadow: 0 0 50px 3px rgba(0, 0, 0, .15) !important;
    -moz-box-shadow: 0 0 50px 3px rgba(0, 0, 0, .15) !important;
    box-shadow: 0 0 50px 3px rgba(0, 0, 0, .15) !important;
}

.dropdown-menu .dropdown-item {
    padding: 7px 10px !important;
    font-size: 16px;
    color: #555;
    border-bottom: solid 1px #ececec;
    white-space: normal;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: var(--theme_color);
    color: #fff;
}

.nav-link:focus,
.nav-link:hover {
    color: #0D213A;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: var(--red_color);
    border-bottom: solid 4px var(--red_color);
}

.dropdown-menu {
    padding: 0;
}

.dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    animation: fadeIn 0.3s alternate;
    max-height: 275px;
    overflow-y: auto;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 100%;
    margin: auto;
    max-width: 1300px;
    left: 0;
    right: 0;
}

.navbar-toggler {
    color: var(--red_color);
    border: none;
}

.navbar_fixed {
    top: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    animation: smoothScroll 1s forwards;
}

.navbar_fixed .nav-link {
    color: #000;
}

.navbar_fixed .nav-link:focus,
.navbar_fixed .nav-link:hover {
    color: var(--theme_color);
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px)
    }
    100% {
        transform: translateY(0)
    }
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.sidebar {
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0;
    bottom: 0;
    background-color: #0b063e;
    overflow-x: hidden;
    transition: 0.5s;
    padding: 60px 0 80px;
}

.sidebar ul {
    margin: 0;
    padding: 20px 0 0 0;
}

.sidebar li {
    list-style: none;
}

.sidebar li a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: var(--theme_color);
    display: block;
    transition: 0.3s;
    letter-spacing: 4px;
    margin-bottom: 35px;
    white-space: nowrap;
}

.sidebar li a:hover,
.sidebar li a.active {
    color: #fff;
}

.sidebar li .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
    padding: 0;
}

.sidebar li .closebtn span {
    font-size: 36px;
    height: 43px;
    display: inline-block;
    padding: 0;
    position: relative;
    top: 4px;
}

.sidebar li .closebtn:hover {
    color: var(--theme_color);
}

.openbtn {
    cursor: pointer;
    background-color: transparent;
    color: #000;
    border: none;
    font-weight: 400;
    ;
    text-transform: uppercase;
}

.openbtn:hover {
    background-color: transparent;
}


/*Banner*/

.banner {
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #f1f1f1;
}

.banner .item {
    position: relative;
}


/* .banner .item:after {
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
} */

.banner .banner_content {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    text-align: left;
    color: #fff;
    z-index: 10;
    width: 100%;
    max-width: 1300px;
    display: block;
}

.banner .banner_content h1 {
    text-transform: uppercase;
    font-size: 60px;
}

.banner .banner_content .banner_bottom_text {
    margin: auto;
    z-index: 9;
    width: 100%;
    max-width: 1300px;
}

.home_slider {
    position: relative;
}

.home_slider .item .title {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: 9;
    text-align: left;
    color: #fff;
    text-align: center;
}

.home_slider .item .know_more {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 9;
    margin: auto;
}

.home_slider .owl-theme .owl-nav {
    margin-top: 10px;
}

.home_slider.owl-theme .owl-dots {
    position: absolute;
    bottom: 10px;
    margin: auto;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    width: auto;
    display: table;
    border-radius: 10px;
    padding-top: 5px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background: transparent;
    border: solid 1px var(--red_color);
}

.home_slider.owl-theme .owl-dots .owl-dot.active span,
.home_slider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--red_color);
}

.home_slider.owl-carousel .owl-nav button.owl-prev,
.home_slider.owl-carousel .owl-nav button.owl-next {
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: solid 1px #fff;
}

.home_slider.owl-carousel .owl-nav button.owl-prev .fa,
.home_slider.owl-carousel .owl-nav button.owl-next .fa {
    color: #fff;
}

.enquiry_btn {
    position: absolute;
    right: -66px;
    transform: translateY(-50%);
    top: 50%;
    z-index: 99;
    background: var(--red_color);
    font-size: 16px;
    font-weight: 700;
    color: #000;
    padding: 10px;
    rotate: -90deg;
}

.img_minus_top {
    position: relative;
    top: -120px;
}

.our_value .heading1,
.vision_mission .heading1 {
    border-bottom: solid 2px #fff;
}


/*Search Top*/

.search_top {
    position: absolute;
    top: 4px;
    right: 80px;
}

.search_top:hover>.search_top-txt {
    width: 240px;
    padding: 8px 15px;
    background: #181161;
    height: 40px;
    border-radius: 40px;
    margin-right: 0;
}

.search_top:hover>.search_top-btn {
    background: #fff;
    color: #000;
}

.search_top-btn {
    color: #000;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
    position: absolute;
    right: 0;
}

.search_top-txt {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: azure;
    font-size: 16px;
    transition: 0.4s;
    line-height: 22px;
    width: 0px;
}

.our_projects {
    position: relative;
}

.our_projects .item .title {
    position: absolute;
    left: 100px;
    top: 100px;
    z-index: 9;
    text-align: left;
    color: #fff;
}


/* .our_projects .item:before{content:"";position: absolute;width: 100%;height: 100%;left: 0;top: 0;background: rgb(0,0,0);background: linear-gradient(0deg, rgba(25,7,97,0.6) 0%, rgba(102,92,232,0.2) 50%, rgba(25,7,97,0.6) 100%);} */

.our_projects .item .know_more {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    z-index: 9;
    margin: auto;
}

.our_projects.owl-theme .owl-dots {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.our_projects.owl-theme .owl-dots .owl-dot.active span,
.our_projects.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.our_projects.owl-carousel .owl-nav button.owl-prev,
.our_projects.owl-carousel .owl-nav button.owl-next {
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: solid 1px #fff;
}

.our_projects.owl-carousel .owl-nav button.owl-prev .fa,
.our_projects.owl-carousel .owl-nav button.owl-next .fa {
    color: #fff;
}


/*Slider Arrow*/

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    z-index: 1;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: solid 1px #ccc;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--red_color);
    color: #fff;
}

.owl-carousel .owl-nav button.owl-prev .fa,
.owl-carousel .owl-nav button.owl-next .fa {
    color: var(--red_color);
    font-size: 30px;
}

.owl-carousel .owl-nav button.owl-prev:hover .fa,
.owl-carousel .owl-nav button.owl-next:hover .fa {
    color: #fff;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0px;
}

.our_clients.owl-carousel .owl-nav button.owl-prev,
.our_clients.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
}

.our_clients.owl-carousel .owl-nav button.owl-prev .fa,
.our_clients.owl-carousel .owl-nav button.owl-next .fa {
    font-size: 20px;
}


/*Vilas Gallery*/

.vilas_gallery_slider .owl-dots {
    margin: 30px auto 0;
    left: 0;
    right: 0;
    display: table;
}

.vilas_gallery_slider.owl-carousel button.owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 5px;
    border: solid 1px var(--theme_color);
    background: #fff;
}

.vilas_gallery_slider.owl-carousel button.owl-dot:hover,
.vilas_gallery_slider.owl-carousel button.owl-dot.active {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 5px;
    border: solid 1px var(--theme_color);
    background: var(--theme_color);
}

.vilas_gallery_slider.owl-carousel .owl-nav button.owl-prev,
.vilas_gallery_slider.owl-carousel .owl-nav button.owl-next {
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    border: solid 1px #fff;
}

.vilas_gallery_slider.owl-carousel .owl-nav button.owl-prev .fa,
.vilas_gallery_slider.owl-carousel .owl-nav button.owl-next .fa {
    color: #fff;
}

.owl-carousel.product_box .owl-nav .owl-next .fa,
.owl-carousel.product_box .owl-nav .owl-prev .fa {
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    padding: 8px;
    color: #fff;
}

.upcoming_projects .item h3 {
    color: var(--theme_color);
}

.club_house_img {
    position: relative;
    top: 50px;
    left: -50px;
}

.what_we_do {
    position: relative;
}

.what_we_do .what_we_do_box {
    position: absolute;
    width: 100%;
    height: 32%;
    left: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(55, 55, 55, 0.3) 100%);
}

.what_we_do .what_we_do_box h4 {
    line-height: 1;
}

.enquiry_form .card {
    background: #fff;
    box-shadow: 0 0px 20px #c6d9e1;
    border: 0;
}

.enquiry_form .form-control,
.enquiry_form .form-select {
    border-radius: 0;
    font-size: 20px;
    color: #333;
}

.enquiry_form .form-control:focus {
    box-shadow: none;
}

.enquiry_form ::placeholder {
    color: #d9d9d9 !important;
    opacity: 1;
    /* Firefox */
}

.enquiry_form :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #d9d9d9 !important;
    opacity: 1;
}

.enquiry_form ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #d9d9d9 !important;
    opacity: 1;
}

.team_member {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.quote {
    position: relative;
}

.quote:before {
    position: absolute;
    top: -60px;
    left: -30px;
    content: "\f10d";
    z-index: -2;
    font: normal normal normal 140px/1 FontAwesome;
    ;
    color: #f7f7f7;
}

.quote:after {
    position: absolute;
    bottom: -60px;
    right: -30px;
    content: "\f10e";
    z-index: -2;
    font: normal normal normal 140px/1 FontAwesome;
    color: #f7f7f7;
}

.linkedin_arrow {
    width: 110px;
    height: 110px;
}


/*Footer*/

footer {
    width: 100%;
    color: #8a91ac;
    background: url(../images/footer.png) no-repeat center top var(--theme_color);
}

footer .logo {
    filter: invert(73%) sepia(91%) saturate(1429%) hue-rotate(251deg) brightness(300%) contrast(98%);
    transition: 0.3s;
}

footer h4 {
    font-family: "Red Rose", serif;
    color: #fff;
}

footer p {
    color: #dfdfdf;
}

footer a {
    color: #dfdfdf;
}

footer a:hover {
    color: var(--yellow_color);
}

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    color: #dfdfdf;
    list-style: none;
    margin-bottom: 10px;
    transition: .3s;
    position: relative;
}

footer ul li::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

footer ul li:last-child {
    margin-bottom: 0;
}

footer ul li a {
    text-decoration: none;
    line-height: 30px;
    color: #dfdfdf;
}

footer ul li a:hover {
    letter-spacing: 1px;
    color: #fff;
}

footer .address {
    position: relative;
    padding: 0 0 0 40px;
    z-index: 1;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

footer .address .icon {
    position: absolute;
    left: 0px;
    top: 0;
    color: var(--yellow_color);
    ;
    font-size: 20px;
    z-index: 1;
    text-align: center;
}

footer ul.social li {
    display: inline-block
}

footer ul.social li a {
    color: var(--theme_color);
    display: inline-block;
    font-size: 24px;
    margin: 0 15px 0 0;
}

footer ul.social li a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px dashed rgba(255, 255, 255, .2);
    background: transparent;
}

.copyright p {
    font-size: 14px;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}

.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 10px;
    display: none;
    background: var(--theme_color);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.back-to-top:hover {
    background: #bba25f !important;
    color: #fff;
}

.submit_btn {
    min-width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    height: 42px;
    text-align: center;
    border: none;
    border-radius: 50px;
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ase-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.submit_btn.color_hover {
    background-image: linear-gradient(to right, #70ace8, #e88d06, #1b72c8, #e88d06);
}

.services_img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.zoom_img {
    border-radius: 0.2rem 0.2rem 0 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.zoom_img img {
    max-height: 100%;
    width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
}

.zoom_img:hover img {
    max-height: 100%;
    width: 100%;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.inner_banner {
    background: url(../images/inner_banner.jpg) no-repeat 0 0 /cover #f0f0f0;
}

.contact_banner {
    background: url(../images/contact_banner.jpg) no-repeat 0 0 /cover #f0f0f0;
}

.ice_banner {
    background: url(../images/ice_banner.jpg) no-repeat 0 0 /cover #f0f0f0;
}

.dairy_banner {
    background: url(../images/dairy_banner.jpg) no-repeat 0 0 /cover #f0f0f0;
}

.cheese_banner {
    background: url(../images/cheese_banner.jpg) no-repeat 0 0 /cover #f0f0f0;
}

.vision_mission {
    background: #534a30;
}

.breadcrumb-item a {
    color: #000 !important;
}

.table thead tr th {
    background: var(--theme_color);
    color: #fff;
}

.bank_logo {
    max-width: 100%;
    max-height: 60px;
}

.side_tabs li {
    width: 100%;
}

.thumbnail img {
    width: 100%;
    height: 240px;
    display: table;
}

.nav-pills-custom .nav-link {
    color: #333;
    background: #fff;
    position: relative;
    margin-bottom: 5px;
    border: solid 1px #c2c2c2;
    border-radius: 2px;
    padding: 7px 10px !important;
}

.nav-pills-custom .nav-link.active {
    color: #fff;
    background: var(--theme_color);
    border: solid 1px #c2c2c2;
    border-radius: 2px;
}

.nav-pills-custom .nav-link::before {
    content: '';
    display: block;
    border-top: 8px solid transparent;
    border-left: 10px solid var(--theme_color);
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    opacity: 0;
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}

.gallery_thum {
    width: 100%;
    height: 100%;
    border: solid 1px #bfbfbf;
    border-radius: 2px;
    padding: 10px;
    object-fit: cover;
}

.video_thum {
    width: 100%;
    height: 220px;
    margin: auto;
    display: table;
    border: solid 1px #bfbfbf;
    border-radius: 2px;
    padding: 10px;
}

.product_box {
    padding: 0;
    margin: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.form {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact_form {
    background-color: var(--theme_color);
    position: relative;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, var(--theme_color));
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact_form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--theme_color);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: var(--theme_color);
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title {
    color: var(--theme_color);
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    font-size: 0.95rem;
}

.information i {
    color: var(--theme_color);
}

.social-icons {
    margin-top: 0.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: var(--red_color);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    transform: scale(1.05);
    background: var(--orange_color);
    color: #fff;
}

.contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--theme_color);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

.contact_form .valid-feedback {
    color: #02e77d;
}

.contact_form .form-control,
.contact_form .form-select {
    height: 46px;
    border-radius: 1px;
}

.for_sale {
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    left: 0;
    padding: 8px 15px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #FFF;
    background: var(--red_color);
    z-index: 99;
}

.for_sale:after {
    content: "";
    content: "";
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent transparent var(--red_color);
    position: absolute;
    left: 100%;
    top: 20px;
    transform: translateY(-50%);
    z-index: 99;
}

.card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    transition: all .4s;
    border: 0;
}

.card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, .2);
    transition: all .4s;
    border: 0;
}

.form-container form {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

.form-container input {
    background: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

button {
    border-radius: 20px;
    border: 1px solid #ff4b2b;
    background: #ff445c;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

button:active {
    transform: scale(.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background: transparent;
    border-color: #fff;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all .6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container {
    left: 0;
    width: 50%;
    z-index: 1;
    opacity: 0;
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform .6s ease-in-out;
    z-index: 100;
}

.overlay {
    background: #ff416c;
    background: linear-gradient(to right, #ff4b2b, #ff416c) no-repeat 0 0 / cover;
    color: #fff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
}

.overlay-panel {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 100%;
    width: 50%;
    text-align: center;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
}

.overlay-right {
    right: 0;
    transform: translateY(0);
}

.overlay-left {
    transform: translateY(-20%);
}


/* Move signin to right */

.container.right-panel-active .sign-in-container {
    transform: translateY(100%);
}


/* Move overlay to left */

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}


/* Bring signup over signin */

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
}


/* Move overlay back to right */

.container.right-panel-active .overlay {
    transform: translateX(50%);
}


/* Bring back the text to center */

.container.right-panel-active .overlay-left {
    transform: translateY(0);
}


/* Same effect for right */

.container.right-panel-active .overlay-right {
    transform: translateY(20%);
}

.footer {
    margin-top: 25px;
    text-align: center;
}

.icons {
    display: flex;
    width: 30px;
    height: 30px;
    letter-spacing: 15px;
    align-items: center;
}

.form-control,
.form-select {
    min-height: 38px;
    border-radius: 2px;
}


/*Plot Details*/

.plot_box {
    border-radius: 4px;
    padding: 20px 10px;
    text-align: center;
    text-align: center;
    color: #fff;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}

.plot_box a {
    color: #fff;
}

.plot_box.green_plot {
    background: #04a259;
}

.plot_box.red_plot {
    background: #f00;
}

.plot_box.yellow_plot {
    background: #fbff01;
    color: #000;
}

.plot_box.mahroon_plot {
    background: #780f13;
}

.plot_box.pink_plot {
    background: #f7007c;
}

.plot_box .plot_detail {
    display: none;
}

.plot_box:hover .plot_detail {
    display: block;
    min-width: 200px;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    font-size: 13px;
    text-align: left;
    font-weight: 400;
    box-shadow: 0 5px 10px #666;
    border: solid 1px #fff;
}

.plot_box:hover .plot_detail:before {
    display: inline-block;
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    border-bottom: 16px solid #fff;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    bottom: 100%;
    position: absolute;
    z-index: 999;
}

.plot_detail table th,
.plot_detail table td {
    padding: 4px;
}

.plot_form label {
    font-size: 14px;
}

.plot_form .form-control,
.plot_form .form-select {
    font-size: 14px;
}

.whatsapp_button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
}

.whatsapp_button img {
    max-width: 100%;
    max-height: 40px;
}

.btn-close {
    position: absolute;
    right: 0;
    z-index: 9;
    opacity: 1;
}

.upcoming_projects .item h3 {
    color: #cccccc;
}

.theme_bg {
    background: var(--theme_color);
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #909090;
    font-size: 18px;
    font-weight: 500
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored {
    background: #3acf87
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff
}

.nav .nav-item button.active {
    background-color: transparent;
    color: var(--bs-danger) !important;
}

.nav .nav-item button.active::after {
    content: "";
    border-bottom: 4px solid var(--bs-danger);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 5px 5px 0 0;
}

.tabelist {
    margin: 0 !important;
    padding: 0 !important;
    background: #f2f2f2;
}

.tabelist ul {
    margin: 0 !important;
    padding: 0 !important;
}

.tabelist li {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tabelist li a {
    display: inline-block;
    padding: 12px 15px 15px;
    color: var(--theme_color);
    position: relative;
}

.tabelist li a:hover:after {
    content: "";
    width: 100%;
    z-index: 999;
    border-bottom: solid 4px var(--red_color);
    color: var(--red_color);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.sub_navbar_fixed {
    top: 92px;
    z-index: 1;
    position: sticky;
    width: 100%;
    background: var(--theme_color);
    left: 0;
    right: 0;
    margin: auto !important;
    padding: 0;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px)
    }
    100% {
        transform: translateY(0)
    }
}

.sub_navbar_fixed.tabelist li a {
    color: #fff;
}

.sub_navbar_fixed.tabelist li a:hover {
    color: var(--yellow_color);
}

.sub_navbar_fixed.tabelist li a:hover:after {
    border-bottom: solid 4px var(--yellow_color);
    color: var(--yellow_color);
}

#Overview {
    scroll-margin-top: 250px;
}

#Amenities {
    scroll-margin-top: 200px;
}

#SitePlan,
#Gallery,
#Connectivity,
#Location,
#Download {
    scroll-margin-top: 120px;
}

.project_logo {
    max-width: 100%;
    max-height: 80px;
}

.features_icon {
    max-width: 100%;
    max-height: 80px;
}

.owl-theme .owl-nav {
    margin-top: 0
}


/* Portfolio */

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: var(--red_color);
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio_box {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio_box::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 0px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio_box .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio_box .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio_box .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio_box .portfolio-info h4 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio_box .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio_box .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio_box .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 13px;
    display: inline-block;
    transition: 0.3s;
    padding: 5px 10px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.portfolio .portfolio_box .portfolio-links a:hover {
    color: #4ae3c6;
}

.portfolio .portfolio_box:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio_box:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio_box:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio_box:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

.portfolio .portfolio_box .img_thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio .portfolio_box .filter_icon {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #fff;
    width: 30px;
    height: 30px;
    padding: 4px;
    border-radius: 4px;
    box-sizing: content-box;
    text-align: center;
}


/*** Testimonial ***/

.testimonial {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../images/testimonial.jpg) left center no-repeat;
    background-size: cover;
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    color: var(--bs-primary);
    font-size: 30px;
    line-height: 0;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

.testimonial_photo {
    width: 200px;
    height: 200px;
    border: solid 1px #f1f1f1;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
}

.testimonial_photo img {
    max-width: 100%;
    max-height: 200px;
}

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-light);
}

.portfolio-container {
    margin: auto;
    padding: auto;
}


/*-- About --*/

.about-area {
    position: relative;
}

.about-area .about-shape img {
    position: absolute;
}

.about-area .about-shape img:nth-child(1) {
    top: 100px;
    left: 0;
}

.about-area .about-shape img:nth-child(2) {
    left: 40px;
    top: 140px;
    -webkit-animation: about-ani-two 15s linear infinite;
    animation: about-ani-two 15s linear infinite;
}

.about-area .about-shape img:nth-child(3) {
    top: 100px;
    left: 30px;
    max-width: 210px;
    -webkit-animation: about-ani-one 5s linear infinite;
    animation: about-ani-one 5s linear infinite;
}

.about-area .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.about-area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.about-area .left-padding {
    padding-left: 0;
}

.about-area .about-img .one {
    margin-bottom: 30px;
    text-align: right;
    position: relative;
}

.about-area .about-img .one img:nth-child(1) {
    border-radius: 0 30% 0 0;
    max-width: 375px;
    margin-left: auto;
    z-index: 1;
    position: relative;
}

.about-area .about-img .one img:nth-child(2) {
    position: absolute;
    top: 0;
    right: -60px;
    -webkit-animation: about-ani-three 20s linear infinite;
    animation: about-ani-three 20s linear infinite;
}

.about-area .about-img .three img {
    border-radius: 30% 0 0 0;
}

.about-area .about-content {
    max-width: 750px;
}

.about-area .about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-area .about-content .middle {
    margin-bottom: 35px;
}

.about-area .about-content .middle span {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
    display: block;
}

.about-area .about-content .middle p {
    margin-bottom: 0;
}

.about-area .about-content .bottom {
    margin-bottom: 40px;
}

.about-area .about-content .bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-area .about-content .bottom ul li {
    list-style-type: none;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333333333333%;
    flex: 0 0 33.33333333333333%;
    max-width: 33.33333333333333%;
    position: relative;
    padding-left: 80px;
}

.about-area .about-content .bottom ul li i {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 15px;
    color: #e93c05;
    font-size: 50px;
    z-index: 1;
}

.about-area .about-content .bottom ul li i:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    top: -10px;
    left: -15px;
    border-radius: 50%;
    background-color: #fcd1c4;
    z-index: -1;
}

.about-area .about-content .bottom ul li h3 {
    font-size: 40px;
    margin-bottom: 5px;
}

.about-area .about-content .bottom ul li p {
    margin-bottom: 0;
    font-weight: 600;
    color: #e93c05;
}

.about-area .about-content .years {
    position: relative;
    left: -110px;
}

.about-area .about-content .years ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-area .about-content .years ul li {
    list-style-type: none;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}

.about-area .about-content .years ul li:nth-child(2) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}

.about-area .about-content .years ul li .years-inner {
    background-color: #011a41;
    border-radius: 10px 0 10px 0;
    position: relative;
    padding: 18px 150px 20px 130px;
}

.about-area .about-content .years ul li .years-inner span {
    display: inline-block;
    font-size: 80px;
    color: #e93c05;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 25px;
}

.about-area .about-content .years ul li .years-inner h4 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 0;
}

.about-area .about-content .years ul li .years-inner i {
    display: inline-block;
    font-size: 85px;
    color: #5d6d86;
    position: absolute;
    top: -3px;
    right: 25px;
}

.about-area .about-content .years ul li .years-inner img {
    position: absolute;
    right: -55px;
    bottom: -20px;
    -webkit-animation: about-ani-three 20s linear infinite;
    animation: about-ani-three 20s linear infinite;
    z-index: -1;
}

@-webkit-keyframes about-ani-one {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-15px, 0);
        transform: translate(-15px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes about-ani-one {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(-15px, 0);
        transform: translate(-15px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@-webkit-keyframes about-ani-two {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@keyframes about-ani-two {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
        transform: rotateY(360deg);
    }
}

@-webkit-keyframes about-ani-three {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes about-ani-three {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.video-wrap {
    z-index: 2;
    margin-left: 25px;
}

.video-wrap a {
    z-index: 10;
    display: inline-block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    font-size: 40px;
    text-align: center;
    color: #e93c05;
}

.video-wrap a i {
    line-height: 90px;
}

.video-wrap a:before {
    content: '';
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background-color: #fac7b7;
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-wrap a:after {
    content: '';
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background-color: #fac7b7;
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.video-wrap a:hover {
    color: #fff;
}

.video-wrap a:hover:before {
    background-color: #011a41;
}

.video-wrap a:hover:after {
    background-color: #011a41;
}

.video-wrap span {
    display: inline-block;
    color: #e93c05;
    font-weight: 600;
    position: relative;
    top: -20px;
    margin-left: 25px;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.owl-carousel .owl-item img {
    width: auto !important;
}

.our_clients .owl-item .item {
    padding: 5px;
    background: #fff;
    border-radius: 4px;
}

.service_box {
    width: 150px;
    height: 150px;
    box-shadow: 0px 0px 20px 0px #00000029;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 32px;
    font-size: 60px;
    background: #fff;
}

.service_box .service_icon {
    background: var(--theme_color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    vertical-align: middle;
    padding: 15px;
    line-height: 80px;
}

.service_box .service_icon img {
    max-width: 100%;
    max-height: 70px;
    vertical-align: middle;
}

.service_box .service_icon .fa {
    color: #fff;
    font-size: 4 5px;
}

.why_choose_icon {
    width: 100px;
    height: 100px;
    border: solid 1px #f1f1f1;
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
}

.why_choose_icon img {
    max-width: 100%;
    max-height: 80px;
}

.list1 {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    float: left;
}

.list1 li {
    margin: 0 0 7px 0;
    padding: 0 0 0 25px;
    position: relative;
    color: #333;
    list-style: none;
    font-size: 15px;
    width: 100%;
    line-height: 26px;
}

.list1 li:before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: bootstrap-icons !important;
    content: "\f26e";
    color: #f9060a;
    font-size: 22px;
}

.list1 li a:hover {
    color: #d86838;
    text-decoration: none;
}

.testimonial .owl-carousel .owl-nav button.owl-prev {
    left: -70px;
}

.testimonial .owl-carousel .owl-nav button.owl-next {
    right: -70px;
}


/*Rating*/

.rate {
    margin: auto;
    height: 46px;
    padding: 0 10px;
    display: table;
}

.rate:not(:checked)>input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked)>label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rate:not(:checked)>label:before {
    content: '★ ';
}

.rate>input:checked~label {
    color: #ffc700;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.side_tabs {
    width: 100%;
    margin: 0;
    padding: 0;
}

.side_tabs li {
    width: 100%;
    list-style: none;
}

.side_tabs li a {
    color: #333;
    background: #fff;
    position: relative;
    margin-bottom: 5px;
    border: solid 1px #eaeaea;
    display: block;
    padding: 6px 10px;
}

.side_tabs li a:hover,
.side_tabs li a.active {
    color: #fff;
    background: var(--theme_color);
    border: solid 1px #c2c2c2;
    border-radius: 2px;
}

.side_tabs li a.active::before {
    content: '';
    display: block;
    border-top: 8px solid transparent;
    border-left: 10px solid var(--theme_color);
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    opacity: 0;
}

.side_tabs li a.active::before {
    opacity: 1;
}

.card-header {
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: solid 1px #f2f2f2;
}