/* Webfont include */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
}

/* Color */


:root {
    --primary-color: #ff6600;
    --secondary-color: #ff6600;
    --white-color: #ffffff;
    --black-color: #000000;
    --charcoal-color: #16171a;
    --light-grey: #d1d1d1;
    --light-grey-two: #e3e3e3;
    --light-grey-three: #d9d9d9;
    --smoke-color: #f2f3f6;
    --dark-grey: #494949;
    --body-color: #4d5765;
    --dark-grey-two: #888686;
    --border-color: #e4e4e4;
    --bg-light-yellow: #fbcc111f;
    --primary-rgb: 54,70,69;
    --secondary-rgb: 251, 204, 17;
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;
    --primary-background: #ff6600;
    --secendary-background: #364645;
    --background-light: #f8f8f8;
    --carousel-dot-bg: #eaeaea;
    --fs-xsmall: 12px;
    --fs-small: 14px;
    --fs-regular: 16px;
    --fs-large: 18px;
    --fs-xl: 20px;
    --fs-xxl: 24px;
    --fs-26: 26px;
    --fs-28: 28px;
    --title-fs: 32px;
    --section-title-fs: 40px;
    --banner-title-fs: 60px;
    --fs-40: 40px;
    --big-fs: 40px;
    --error: #ff0000;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1 {
    font-size: 75px;
}

ul,
li {
    margin: 0px;
    font-weight: 500;
    list-style-type: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

p {
    margin: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

a {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ced4da;
    outline: 0;
    box-shadow: none;
}

textarea {
    resize: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-background);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-background);
    border-radius: 10px;
}


input,
button,
input:focus,
button:focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    box-shadow: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
    outline: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--Primary-dark-800);
}

/* buttons add */
.globalBtnDark {
    padding: 10px 30px 10px 30px;
    color: var(--primary-background);
    background-color: var(--secondary-color);
    border-radius: 40px;
    display: inline-flex;
    text-transform: uppercase;
    font-size: 16px;
    align-items: center;
    gap: 20px;
    border: 0px;
    transition: all 0.4s ease-in-out;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.globalBtnDark i {
    margin-left: 10px;
}

.globalBtnDark:hover:before {
    transform: translateX(0);
}

.globalBtnDark:hover,
.globalBtnDark:hover span,
.globalBtnDark:hover i {
    color: var(--white);
}

.globalBtnDark:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-background);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnDark span,
.globalBtnDark i {
    position: relative;
    z-index: 9;
    color: var(--white-color);
    top: 0px !important;
    bottom: 0px !important;
    right: 0px !important;
    left: 0px !important;
    height: auto !important;
    width: auto !important;
}



.globalBtnOutline {
    padding: 10px 35px;
    color: var(--primary-background);
    background-color: transparent;
    border-radius: 40px;
    border: 1px solid var(--primary-background);
    display: inline-flex;
    text-transform: uppercase;
    font-size: 16px;
    align-items: center;
    transition: all 0.4s ease-in-out;
    font-size: 14px;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.globalBtnOutline:hover:before {
    transform: translateX(0);
}

.globalBtnOutline:hover,
.globalBtnOutline:hover span {
    color: var(--white);
}

.globalBtnOutline:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-background);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.globalBtnOutline span {
    position: relative;
    z-index: 9;
}

/* Slider navbar */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link,
.nav-pills .nav-link {
    background-color: transparent;
    color: var(--text-secondary);
}

.owl-nav {
    color: #fff;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
}

.owl-nav button.owl-prev span {
    left: -40px;
}
.owl-nav button.owl-next span {
    right: -40px;
}
.owl-nav button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
	font-size:50px;
    color: var(--primary-color);
    border-radius: 50%;
    position: relative;
}
.owl-dots button.owl-dot span {
    background: var(--white);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots button.owl-dot.active span {
    background: var(--white);
    display: inline-block;
    width: 15px;
    height: 6px;
    border-radius: 5px;
    margin: 5px;
}

.owl-dots {
    margin-top: 50px;
    text-align: center;
}

/* global header start */
.global-header {
    margin-bottom: 40px;
}

.global-header p {
    width: 55%;
    text-align: center;
}

.global-header h2 {
    font-size: 45px;
    font-weight: 200;
}

.global-header h2 span {
    font-weight: 700;
}

/* global header end */

/* top navbar start */

.top-navbar a.nav-link {
    font-size: 18px;
    position: relative;
    font-weight: 400;
    line-height: 17.58px;
    color: var(--primary-background);
    padding-top: 0px;
    padding-bottom: 0px;
    transform: all 0.4s ease-in-out;
}

.top-navbar a.nav-link::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0px;
    right: 0px;
    width: calc(0% - 10px);
    background-color: var(--primary-background);
    height: 1px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.top-navbar a.nav-link:hover::before {
    opacity: 1;
    visibility: visible;
    width: calc(100% - 10px);
}

header.sticky a.nav-link:hover {
    color: var(--primary-color);
    transform: all 0.4s ease-in-out;
}

header.sticky.top-navbar a.nav-link::before {
    background-color: var(--primary-color);
}

.top-logo-part {
    font-size: 28px;
}

header.sticky .top-logo-part {
    color: var(--primary-color);
}

header.sticky a.nav-link {
    color: var(--primary-color);
}

header.sticky .loginBtn-cntn .globalBtnOutline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

header.sticky .loginBtn-cntn .globalBtnOutline:hover:before {
    background-color: var(--primary-color);
    color: var(--white-color) !important;
}

header.sticky .loginBtn-cntn .globalBtnOutline:hover span {
    color: var(--white-color);
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile_logo a {
    font-size: 25px;
}

.dropdown-menu {
    -webkit-animation: fadeIn 0.3s alternate;
    animation: fadeIn 0.3s alternate;
    padding: 0px;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item {
    padding: 10px 19px;
}

li.nav-item.dropdown .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: auto;
    left: 5%;
}

li.nav-item.dropdown:hover .dropdown-menu:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 14px solid #ffffff;
    top: -12px;
    left: 24px;
}

li.nav-item.dropdown:hover .dropdown-menu:before {
    content: '';
    position: absolute;
    width: calc(100% - 50px);
    height: 14px;
    top: -14px;
    left: 0px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--blue-dark-bg);
    text-decoration: none;
    background-color: var(--border-light);
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

li.nav-item.dropdown .dropdown-menu a.dropdown-item:hover {
    background-color: transparent;
    color: var(--secondary-light);
}

.navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
    right: 0px;
}

.only_mobile_view {
    display: none;
}

.navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 2px;
    position: absolute;
    background: #333;
    border-radius: 1px;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
    left: 0px;
}

header.sticky .navbar-toggler .hamburger-toggle .hamburger span {
    background-color: var(--white);
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
    right: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
}

.top-navbar {
    background-color: var(--light-grey);
}

.top-navbar li.nav-item {
    padding: 0px 8px;
}

.top-navbar {
    padding: 15px 0px;
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: transparent;
    width: 100%;
    transition: 0.6s;
    z-index: 99999;
}

.top-navbar.sticky {
    padding: 8px 0px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.top-navbar ul.navbar-nav {
    margin: 0 auto;
}

.dropdown-toggle::after {
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    border-top: .0em solid !important;
    vertical-align: 0em;
    transition: all 0.4s ease-in-out;
}

.dropdown-toggle.show::after,
li.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    transition: all 0.4s ease-in-out;
}

li.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    top: 30px;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
    box-shadow: 1px -4px 20px 0px #4a4a4a6e !important;
    transition: all 0.4s ease-in-out;
}

.dropdown-menu {
    border: none;
}

.navbar .custom-container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

/* top navbar end */

.top-header {
    background: var(--primary-background);
    padding: 7px 0px;
    color: var(--white);
}

.top-header ul.header-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header ul.header-list a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 300;
}

.top-header ul.header-list a i {
    color: var(--white-color);
}

/* ============== */
.banner-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url(https://bebran.com/public/frontend_new/img/home/banner/1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.banner-section h1 {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 15px;
}

.banner-section h3 {
    color: var(--secondary-color);
}

/* ====================== */
.about-section {
    position: relative;
    z-index: 1;
}

.section-title p,
.section-title p.title-border {
    position: relative;
    color: var(--secondary-color);
    display: inline-block;
}

.section-title .title-border::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -10px;
    width: 85%;
    height: 100%;
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #072c6d12;
    z-index: -1;
}

.section-title h1,
.section-title h3 {
    color: var(--primary-color);
    font-size: var(--section-title-fs);
    line-height: 60px;
    text-transform: uppercase;
    font-family: var(--primary-semibold-font);
}

.section-title h1 .title-span-text,
.section-title h3 .title-span-text {
    color: var(--secondary-color);
}

.about-img img {
    max-height: 650px;
}

.about-count {
    padding: 30px;
    background-color: var(--white-color);
    box-shadow: 10px 5px 62px 0px #a8a8a840;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    right: -20px;
}

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-count p {
    color: #5b6d84;
    margin-bottom: 0px;
    line-height: 15px;
}

.about-count h4 {
    font-size: var(--big-fs);
    color: var(--primary-color);
    font-family: var(--primary-bold-font);
}

.about-section .shape-3 {
    position: absolute;
    top: 0px;
    left: -20%;
    z-index: -1;
}

.about-section .shape-2 {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
}

.about-section .shape-1 {
    position: absolute;
    top: 50%;
    left: 0px;
    z-index: -1;
    display: none;
}

/* ===================== */

.counter-section {
    background-color: var(--white-color);
    padding: 40px 60px;
    border-radius: 0px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.counter-section:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--secondary-color);
    width: 46%;
    clip-path: polygon(0 0, 70% 0, 0% 40%, 0% 100%);
    z-index: -1;
}

.counter-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    list-style: none;
    padding: 0;
    margin: 0;
    justify-items: center;
}

.counter-list li {
    font-size: var(--fs-large);
    font-family: var(--primary-medium-font);
    position: relative;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
    width: 100%;
    transition: all 0.5s;
}

.counter-list li:nth-child(1),
.counter-list li:nth-child(2),
.counter-list li:nth-child(4),
.counter-list li:nth-child(5) {
    border-right: 1px solid var(--border-color);
}

.counter-list li:nth-child(1),
.counter-list li:nth-child(2),
.counter-list li:nth-child(3) {
    border-bottom: 1px solid var(--border-color);
}

.counter-list li .icon-box {
    background-color: var(--white-color);
    width: 80px;
    height: 80px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: all 0.5s;
    box-shadow: 0px 10px 50px rgba(30, 40, 58, 0.12);
}

.counter-list li .content-box {
    transition: all 0.5s;
}

.counter-list li .icon-box img {
    width: 50px;
}

.counter-list h4 {
    font-size: var(--fs-40);
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: var(--primary-bold-font);
}

/* ======================= */
.service-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background: linear-gradient(282.57deg, #062b6c08 0.89%, #fbcc111a 54.81%, #062b6c08 100%);
}

.service-carousel .item {
    display: flex;
    flex-direction: column;
}

.service-card {
    border: 0px;
    border-radius: 0px;
    margin: 10px;
    transition: all 0.5s;
    position: relative;
    background: transparent;
    height: 100%;
    padding-bottom: 50px;
}

.service-card .card-body {
    padding: 0px;
}

.service-card .content {
    height: 100%;
    padding: 25px 25px 80px 25px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
}

.service-card .service-bottom {
    position: absolute;
    align-items: end;
    bottom: 0px;
    left: 50px;
}

.service-card .title {
    font-size: var(--fs-xl);
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--primary-bold-font);
}

.btn-outline-secondary,
.btn-outline-secondary:focus {
    padding: 7px 15px;
    color: var(--secondary-color);
    background-color: transparent;
    font-family: var(--primary-semibold-font);
    border: 1px solid var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.5s;
}

.service-card .icon {
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--secondary-color);
    border-radius: 8px;
    position: relative;
    z-index: 3;
    bottom: 0px;
    background-color: var(--primary-color);
}

.service-card .icon img {
    width: 60px !important;
    position: relative;
    object-fit: contain;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}

/* ====================== */
.help-you-tab .nav-tabs {
    gap: 30px;
    border: 0px;
    margin-bottom: 30px;
    overflow-x: auto;
    flex-wrap: nowrap;
    overflow-y: visible;
    padding: 12px 10px 32px;
    justify-content: center;
}

.help-you-tab .nav-tabs {
    gap: 30px;
    border: 0px;
    margin-bottom: 30px;
    overflow-x: auto;
    flex-wrap: nowrap;
    overflow-y: visible;
    padding: 12px 10px 32px;
    justify-content: center;
}

.help-you-tab .nav-tabs .nav-link.active {
    color: var(--white-color);
    background-color: var(--primary-color);
}
.help-you-tab .nav-tabs .nav-link.active img {
    filter: invert(1);
}
.help-you-tab .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-1px);
    bottom: -22px;
    width: 30px;
    height: 25px;
    z-index: 1;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.help-you-tab .nav-tabs .nav-link {
    position: relative;
    padding: 25px;
    box-shadow: 0px 0px 40px 0px rgba(var(--black-rgb), 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--black-color);
    background-color: var(--white-color);
}

.help-card .content-box h3 {
    margin-bottom: 20px;
}

.help-card {
    border: 0px;
    margin: 10px;
    height: 100%;
    border-radius: 0px;
    background-color: transparent;
}

.help-card img {
    border-radius: 20px;
    max-height: 500px;
}

/* ========================= */
.faq-accordion .accordion-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 52px 20px 30px;
    line-height: 1.3;
    font-size: 18px;
    font-family: var(--primary-semibold-font);
    background: var(--white-color);
    color: var(--black-color);
    border-radius: 30px 30px 0 0;
    border: 0px;
    box-shadow: none;
}

.faq-accordion .accordion-button.collapsed:after {
    color: var(--white-color);
    content: "\f067";
}

.faq-accordion .accordion-button:after {
    position: absolute;
    font: normal normal normal 14px / 1 FontAwesome;
    content: "\f068";
    font-weight: 900;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 12px;
    color: var(--white-color);
    background-image: linear-gradient(250deg, #4e95ed 0%, var(--primary-color) 100%);
    width: 30px;
    height: 30px;
    line-height: 31px;
    border-radius: 100%;
    background-size: cover;
}

.faq-accordion .accordion-item {
    border: 0px;
    margin-bottom: 15px;
    border-radius: 30px !important;
    overflow: hidden;
    box-shadow: 0px 0px 10px 7px rgba(var(--black-rgb), 0.03);
}

.spanClass span,
.spanClass strong {
    color: var(--secondary-color);
}

/* ======================= */
.why-us-carousel .item {
    display: flex;
    flex-direction: column;
}

.why-us-card {
    height: 100%;
    display: flex;
    gap: 10px;
    background-color: transparent;
    overflow: hidden;
}

.why-us-card .img-box {
    flex-shrink: 0;
    width: 40%;
}

.why-us-card .img-box img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 60px 60px 0px;
}

.why-us-card .content-box {
    padding: 30px;
    height: 100%;
}

.section-title p,
.section-title p.title-border {
    position: relative;
    color: var(--secondary-color);
    display: inline-block;
}

/* ==================== */

.certified-section .section-title h3 {
    color: var(--white-color);
}

.certified-carousel {
    background-color: var(--white-color);
    box-shadow: 0 2px 4px 0 rgba(var(--black-rgb), 0.12);
    border-radius: 4px;
}

.certified-card .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.certified-card img {
    transition: all 0.5s;
    transform: scale(0.9);
    width: auto !important;
    height: 50px;
}

.certified-section .card.certified-card {
    border: 0px;
}

/* ===================== */
.idea-section {
    padding: 100px 70px 100px;
    background-image: url(https://bebran.com/public/frontend_new/img/backgrounds/service-bg.webp);
}

.idea-section h3 {
    color: #fff;
}

.idea-section ul li {
    color: var(--white);
}

.form-card {
    border: 0;
    border-radius: 0px;
    padding: 10px;
    background-color: var(--white-color);
    box-shadow: 0px 2px 10px 0px rgba(var(--black-rgb), 0.099);
}

.form-card h4 {
    font-family: var(--primary-bold-font);
    color: var(--primary-color);
    text-transform: uppercase;
    background-color: var(--bg-light-yellow);
    padding: 20px 20px 17px;
    text-align: center;
    border-bottom: 2px dashed var(--secondary-color);
    margin-bottom: 20px;
}

.call-back-form .form-label,
.call-back-form .form-check-label {
    color: var(--dark-grey);
}

.certified-section {
    padding-top: 60px;
    padding-bottom: 60px;
    color: var(--white-color);
    background-image: url(https://bebran.com/public/frontend_new/img/home/banner/2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.certified-section::before {
    content: "";
    background-color: rgba(var(--primary-rgb), 0.95);
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}


/* footer */
/* footer start */
footer.footer {
    padding: 80px 0px 50px;
    color: var(--white);
    background: var(--secendary-background);
}

.ftr-logo-cntn {
    margin-top: 20px;
}

.footer-left {
    padding-right: 25px;
}

.footer-right {
    display: flex;
    gap: 30px;
    margin-top: 0px;
    margin-left: 20px;
}

.footer-right h5 {
    margin-bottom: 30PX;
    font-size: 18px;
    font-weight: 700;
}

.footer-right .footer-nav {
    flex:auto;
}

.footer-right .footer-nav:last-child {
    flex: auto;
    max-width: 200px;
}

.ftr-right-nav .footer-nav {
    width: 46%;
}

.ftr-logo-cntn iframe {
    width: 300px;
    height: 150px;
    border-radius: 15px;
}

.ftr-up-social-logo {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #ffffff36;
    padding-bottom: 25px;
    margin-bottom: 45px;
}

.footer-right li,
.footer-right li a {
    padding: 5px 0;
    transition: all 0.3s ease-in-out;
}
.footer-right li a{
	  word-break: break-all;
}
.footer-right li a:hover,
.copy-right-btns a:hover {
    color: var(--secondary-color);
}

.ftr-social {
    color: #fff;
    display: inline-flex;
    gap: 20px;
}

.ftr-social li a:hover i {
    color: var(--secondary-color);
}

p.copyright-text {
    font-size: 18px;
    line-height: 48px;
    text-align: center;
}

.copy-right {
    margin-top: 50px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
}

.copy-right-btns a.review-cluth-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    color: #000;
    border-radius: 30px;
    gap: 20px;
}

.copy-right-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

form.ftr-form {
    margin-top: 40px;
    padding-bottom: 10px;
    display: flex;
}

form.ftr-form input {
    flex: 1;
    background-color: transparent;
    box-shadow: none;
    border: 0px;
    border-bottom: 1px solid var(--secondary-color);
    padding: 20px 10px;
    color: var(--white);
}

form.ftr-form input::placeholder {
    color: var(--white);
}

form.ftr-form button {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    border: none;
}

/* footer end */


/* ============== */
.portfolio-card h4 {
    font-family: var(--secondary-bold-font);
    padding: 10px;
    display: inline-block;
    margin-bottom: 0;
    border-bottom: 1px solid var(--light-grey);
    color: var(--white-color);
    background-color: var(--primary-color);
    font-size: var(--fs-regular);
    position: absolute;
    right: 20px;
    top: -40px;
}

.portfolio-card h5 {
    font-size: var(--fs-large);
    color: var(--black-color);
    font-family: var(--primary-bold-font);
}
.portfolio-card .content-box{display:none;}
.portfolio-card .content-box p {
    color: var(--black-color);
    font-family: var(--primary-regular-font);
}

.portfolio-card img {
    display: inline-block !important;
    width: auto !important;
    max-height: 30px;
}

.portfolio-card .img-box img {
    transition: all 0.4s linear;
    width: 100% !important;
    max-height: 215px;
    height: 215px;
    object-fit: contain;
}

.portfolio-card .img-box {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.portfolio-card h5 {
    font-size: var(--fs-large);
    color: var(--black-color);
    font-family: var(--primary-bold-font);
}

.portfolio-card h5 span {
    font-size: var(--fs-xxl);
    color: var(--secondary-color);
}

.portfolio-card .content-box {
    position: relative;
    padding:0px;
}


/* get in touch start */
.get-in-touch {
    background: url('../images/get-in-touch.png')no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0px;
    position: relative;
    overflow-x: hidden;
}

.get-in-touch h2.verticle-heading {
    left: auto;
    right: -180px;
    color: #ededed;
}

.get-in-touch .get-in-touch-left h2 {
    position: relative;
    padding-bottom: 25px;
}

.get-in-touch-left p {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    color: var(--secondary-dark);
    margin: 20px 0px;
}

.get-in-touch-left ul.follow-media {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.get-in-touch-left ul.follow-media li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: var(--light-secondary);
}

.get-in-touch-left ul.follow-media li a i {
    background: var(--secondary-color);
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color:white;
}

.follow-us-on h4 {
    color: var(--secondary-dark);
    font-weight: 600;
    font-size: 22px;
    line-height: 39px;
    text-transform: capitalize;
    margin-top: 33px;
}

.get-touch-form {
    padding-left: 65px;
}

.get-touch-form p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--light-secondary);
    margin: 15px 0px;
    max-width: 90%;
}

.get-touch-form .form-control {
    border: none;
    border-bottom: 1px solid #001E2B80;
    border-radius: 0px;
    padding-left: 0px;
    background-color: transparent;
}

.get-touch-form form .form-floating span.form-icon {
    position: absolute;
    right: 0;
    top: 15px;
}

.form-floating .form-control,
.form-floating .form-control-plaintext {
    padding: 1rem 0rem 1rem;
}

.get-touch-form form .form-floating {
    position: relative;
}
.get-touch-form form .form-floating p {
    width: 100%;
	max-width:100%;
}
.form-floating label {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 100%;
	font-weight:600;
    padding: 1rem 0rem -1rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

.get-touch-form textarea.form-control {
    max-height: 140px;
    resize: none;
}

.get-touch-form .form-floating>label {
    padding-left: 0;
}

.get-touch-form .form-check label {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-transform: capitalize;
}

.get-touch-form .form-check label a {
    color: var(--light-secondary);
    text-decoration: underline;
}

.get-touch-form .form-check {
    margin: 20px 0px;
}

.get-touch-form input[type="checkbox"] {
    accent-color: var(--light-secondary) !important;
}

.get-touch-form form {
    background: url('../images/map-outline.png')no-repeat;
    background-position: center;
    background-size: contain;
}

/* get in touch end */

/* privacy policy page */
.bg-grey-light {
    background-color: #f6f6f6;
}

.bg-grey-light p,
.bg-grey-light h3,
.bg-grey-light ul {
    margin: 18px 0px;
}

.bg-grey-light li {
    list-style-type: disc;
    margin: 6px 0px 0px 20px;
}
.bg-grey-light li ul li {
    margin-left: 4px;
}

/* privacy policy page end */
