@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --main-color: #F16A22;
    --white-color: #ffffff;
    --black-color: #000000;
    --black-color-opacity: #2b2540c4;
    --paragraph-color: #818090;
    --bg-color: #F3F6FD;
    --transition: .4s all ease-in-out;
}

html,
body {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: "Montserrat", serif;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
}
.main-navbar .container {
    max-width: 100%;
}
.main-navbar .container {
    display: flex;
    justify-content: space-between;
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.mb-30 {
    margin-bottom: 30px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0.1s;
    transition: all 0.3s ease-in-out 0.1s;
    outline: 0 !important;
    color: var(--main-color);
}

a:hover {
    text-decoration: none;
    color: var(--heading-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", serif;
    margin: 0;
}

h1 {
    font-size: 82px;
    font-weight: 400;
    line-height: 90px;
}

h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
}

h3 {
    font-size: 24px;
    font-weight: 300;
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

h5 {
    font-size: 18px;
    font-weight: 400;
}

h6 {
    font-size: 14px;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 28px;
    color: var(--paragraph-color);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    padding: 0;
}
.form-control::placeholder {
    color: #fff;
    opacity: 1; /* Firefox */
  }
  
.form-control::-ms-input-placeholder { /* Edge 12 -18 */
    color:#fff;
  }

/* --Top To Bottom-- */

.go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 15px;
    color: #fff;
    background-color: var(--main-color);
    z-index: 999;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
    border-radius: 50%
}

.go-top.active {
    top: auto;
    bottom: 30px;
    -webkit-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible
}

.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: .6s;
    transition: .6s
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%
}

.go-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #393953;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .6s;
    transition: .6s;
    border-radius: 50%
}

.go-top:hover,
.go-top:focus {
    color: #fff
}

.go-top:hover::before,
.go-top:focus::before {
    opacity: 1;
    visibility: visible
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    vertical-align: middle;
}
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: var(--white-color);
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    right: 0
}

.preloader .lds-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.preloader .lds-spinner div {
    -webkit-transform-origin: 40px 40px;
    transform-origin: 40px 40px;
    -webkit-animation: lds-spinner 1.2s linear infinite;
    animation: lds-spinner 1.2s linear infinite
}

.preloader .lds-spinner div::after {
    content: " ";
    display: block;
    position: absolute;
    top: 5px;
    left: 35px;
    width: 5px;
    height: 20px;
    border-radius: 20%;
    background: var(--main-color)
}

.preloader .lds-spinner div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.preloader .lds-spinner div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

.preloader .lds-spinner div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -.9s;
    animation-delay: -.9s
}

.preloader .lds-spinner div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -.8s;
    animation-delay: -.8s
}

.preloader .lds-spinner div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -.7s;
    animation-delay: -.7s
}

.preloader .lds-spinner div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -.6s;
    animation-delay: -.6s
}

.preloader .lds-spinner div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -.5s;
    animation-delay: -.5s
}

.preloader .lds-spinner div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -.4s;
    animation-delay: -.4s
}

.preloader .lds-spinner div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -.3s;
    animation-delay: -.3s
}

.preloader .lds-spinner div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -.2s;
    animation-delay: -.2s
}

.preloader .lds-spinner div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -.1s;
    animation-delay: -.1s
}

.preloader .lds-spinner div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes lds-spinner {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

/* --Common Style-- */
section {
    position: relative;
}

.form-control {
    height: 50px;
    border: none;
    box-shadow: 0px 1px 13px 0px #0000000d;
    padding: 10px 22px;
    font-size: 16px;
}

.form-control:focus {
    color: var(--heading-color);
    background-color: #fff;
    border: 1px solid var(--main-color);
    outline: none;
    box-shadow: none;
}

.section_padding {
    padding: 100px 0;
}

.section_padding_top {
    padding: 100px 0 0 0;
}

.section_padding_bottom {
    padding: 0 0 100px 0;
}

/* --Heading Area-- */

.heading_left_area h2 {
    font-weight: 400;
    padding-bottom: 17px;
    line-height: 45px;
}

.heading_left_area h2 span {
    display: inline-block;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
}

.heading_left_area h5 {
    color: var(--black-color-opacity);
}

.section_heading_center {
    text-align: center;
    padding-bottom: 30px;
}

.section_heading_center h2 {
    position: relative;
    padding-bottom: 15px;
}

.section_heading_center h2:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 1px;
    background: var(--main-color);
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
}

.img_animation {
    overflow: hidden;
}

.img_animation img {
    transition: var(--transition);
    position: relative;
}

.img_animation::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #8b3eea9c;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.img_animation:hover::after {
    opacity: 1;
    visibility: visible;
}

.img_animation:hover img {
    transform: scale(1.2);
}

.slick-prev,
.slick-next {
    display: none !important;
}

/* --Button Area start-- */
.btn-check:focus+.btn,
.btn:focus {
    outline: none;
    box-shadow: none
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 16px;
    border-radius: 30px;
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.btn:hover {
    color: var(--main-color);
    background-color: transparent;
}

.btn-six:hover {
    color: var(--black-color);
}

.btn_theme {
    color: var(--white-color);
    background-color: var(--main-color);
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: none
}

.btn_theme:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 580px;
    height: 550px;
    margin: auto;
    background: var(--black-color);
    border-radius: 50%;
    z-index: -1;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
    transform: translateX(-50%) translateY(-5%) scale(.4);
    transition: var(--transition);

}

.btn_theme:hover:before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transform: translateX(-45%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    border: none;
}

.btn_theme_white {
    color: var(--black-color);
    background-color: var(--white-color);
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: 1px solid var(--white-color);
}

.btn_theme_white:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 580px;
    height: 550px;
    margin: auto;
    background: var(--black-color);
    border-radius: 50%;
    z-index: -1;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
    transform: translateX(-50%) translateY(-5%) scale(.4);
    transition: var(--transition);

}

.btn_theme_white:hover:before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transform: translateX(-45%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    border: none;
}

.btn_theme_transparent {
    color: var(--white-color);
    background-color: transparent;
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    border: 1px solid var(--white-color);
}


.btn_theme_transparent:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 580px;
    height: 550px;
    margin: auto;
    background: var(--black-color);
    border-radius: 50%;
    z-index: -1;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: translateX(-50%) translateY(-5%) scale(.4);
    transform: translateX(-50%) translateY(-5%) scale(.4);
    transition: var(--transition);

}

.btn_theme_transparent:hover:before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transform: translateX(-45%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    border: none;
}


.btn_md {
    padding: 12px 35px;
    font-size: 18px;
}

.btn_sm {
    font-size: 14px;
    padding: 5px 18px;
}

.btn_navber {
    color: #fff;
    border: 2px solid var(--main-color);
    padding: 7px 10px;
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: var(--main-color);
    z-index: 0;
}
.btn_navber svg {
    max-width: 20px;
    vertical-align: text-bottom;
    margin-right: 5px;
}
.btn_navber:hover svg path{
    fill: var(--main-color);
 }
.btn_navber:hover:before {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    -webkit-transform: translateX(-42%) translateY(-57%) scale(4);
    transform: translateX(-42%) translateY(-57%) scale(4);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    background-color: transparent;
}

.is-sticky .btn-six {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.btn-primary{
    color: #fff;
    border: 2px solid var(--main-color) !important;
    padding: 7px 30px;
    transition: var(--transition);
    box-shadow: none;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: var(--main-color);
    z-index: 0;
}
.btn-primary:hover{
    color: var(--main-color);
    background-color: transparent;
}
.banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}
.banner-image {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}
.banner-image img {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.banner-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
}
.banner_area_three {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}
.banner_area_three h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 73.14px;
    color: #fff;
    margin: 0 0 10px;
    padding: 0;
}
.banner_area_three p {
    font-size: 24px;
    font-weight: 500;
    line-height: 29.26px;
    color: #fff;
}
.enquire-now-box {
    width: 100%;
    background-color: #0C3267;
    margin: 0;
    padding: 30px 0;
    display: block;
}

.enquire-now {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
}
.enquire-now h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 70px;
    color: #fff;
    margin: 0 30px 0 0;
    padding: 0;
}
.enquire-form {
    width: calc(100% - 200px);
    margin: 0;
    padding: 0;
    display: block;
}
.enquire-form .form-control {
    background-color: transparent;
    border: 1px solid #A3A3A3;
    color: #fff;
}

.prosperity-realtors {
    width: 100%;
    display: block;
    margin: 100px 0;
    padding: 0;
}   
.prosperity-realtors .row {
    align-items: center;
}
.prosperity-image {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.prosperity-inner {
    width: 100%;
    padding: 10px;
    display: block;
    margin: 0;
}
.prosperity-inner h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 54.6px;
    color: #000;
    margin: 0 0 20px 0;
    padding: 0;
    display: block;
}
.prosperity-inner p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #3A3A3A;
    width: 100%;
    display: block;
    margin: 0 0 40px 0;
}
.apply-channel {
    width: 100%;
    margin: 0 0 100px 0;
    padding: 100px 0;
    display: block;
    background-image: url(../img/apply_channel.png);
    background-size: cover;
    background-position: center center;
    position: relative;
}
.apply-channel:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000000A3;
    right: 0;
    left: 0;
    top: 0;
}
.apply-channel-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 9;
    max-width: 1050px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.apply-channel-inner .apply-channel-text {
    width: 50%;
    margin: 0;
    padding: 0;
    display: block;
}
.apply-channel-inner .apply-channel-text h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 54px;
    color: #fff;
    width: 100%;
    margin: 0 0 20px 0;
    display: block;
}
.apply-channel-inner .apply-channel-p {
    width: 50%;
    margin: 0;
    padding: 0;
    display: block;
}
.apply-channel-inner .apply-channel-p p {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    display: block;
    position: relative;
    padding-top: 20px;
}
.apply-channel-inner .apply-channel-p p:after {
    content: "";
    background: #F16A22;
    width: 100%;
    max-width: 180px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
}
.exclusive-top {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
    display: block;
}
.exclusive-top h2 {
    margin: 0 0 10px;
}
.exclusive-top  p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #0A0C12;
    margin: 0 0 30px 0;
    display: block;
}
.exclusive-opportunities {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    z-index: 9;
}
.exclusive-opportunities .row {
    align-items: center;
    background-image: url(../img/bg-banner.png);
    background-repeat: no-repeat;
    background-position: bottom center;
}
.exclusive-opportunities .align-right {
    text-align: right;
}
.exclusive-opportunities .exclusive-image {
    width: 100%;
    margin: 0 0 0;
    padding: 0;
    display: block;
}
.exclusive-opportunities .exclusive-image img {
    margin: 0 0 0 0;
    padding: 0;
}
.exclusive-opportunities .exclusive-image h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.26px;
    color: #000000;
    width: 100%;
    display: block;
    margin: 15px 0 15px 0;
}
.exclusive-opportunities .exclusive-image p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #434749;
    width: 100%;
    display: block;
    margin: 0 0 30px;
}
.three-decades-result {
    width: 100%;
    margin: -20px 0 0 0;
    padding: 100px 0;
    display: block;
    background: #FFF7ED;
}
.three-decades-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.three-decades-inner h2 {
    text-align: center;
    margin: 0;
    padding: 0;
}
.three-decades-inner > p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
    text-align: center;
    margin: 10px 0 0 0;
    padding: 0;
}
.result-count {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 50px 0 0 0;
}
.result-count .deli-item {
    width: calc(14.28% - 10px);
    margin: 0 5px 10px;
    background: #FFFFFF;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}
.result-count .deli-item .w-auto {
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    max-width: 55px;
    max-height: 55px;
}
.result-count .deli-item .category {
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    display: block;
    margin: 0 0 6px 0;
    padding: 0;
}
.result-count .deli-item  h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #0A0C12;
    width: auto;
    display: block;
    margin: 0;
}

.featured-properties {
    background: #111B34;
    width: 100%;
    display: block;
    margin: 0 0 90px 0;
    padding: 80px 0;
}
.featured-box {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}
.featured-box h2 {
    color: #fff;
    margin: 0 0 10px 0;
}
.featured-box > p {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 31.2px;
    width: 100%;
    display: block;
    margin: 0 0 20px 0;
}
.Properties-tab {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.Properties-tab ul {
    text-align: center;
    justify-content: center;
    margin: 0 0 20px;
    width: 100%;
}
.Properties-tab ul .nav-item {
    margin: 0;
    padding: 0;
    display: inline-block;
}
.Properties-tab ul .nav-item button {
    padding: 0 0px 10px;
/*    background-color: transparent !important;*/
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    margin: 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    color: #fff !important;
	background: #f16a22;
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
}
.Properties-tab ul .nav-item button.active {
    color: #F16A22 !important;
    border-color: #F16A22;
	background-color: #fff!important;
}

.Kolkata-box {
    width: 100%;
    margin: 0;
    padding: 0 0 50px 0;
    display: block;
}
.Kolkata-box .three_offer_item {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    background: #E8DCCE;
    height: 100%;
}

.Kolkata-box .three_offer_item h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    padding: 10px 10px 5px;
    color: #000;
}
.Kolkata-box .three_offer_item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20.8px;
    width: 100%;
    display: block;
    padding: 0 10px 10px;
}

.three_offer_slider .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: auto;
    bottom: -80px;
}
.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev {
    background: #C1BEBE;
    color: #25247C;
    border: none;
    padding: 0 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 44px;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--main-color);
    color: var(--white-color);
}

.Kolkata-box-inner {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: 1160px;
    margin: 30px 0 30px 0;
    padding: 0;
}
.Kolkata-box-inner p {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: #FFFFFF;
    max-width: 620px;
    margin-right: 30px;
}
.three-decades {
    width: 100%;
    margin: 0;
    padding: 0 0 70px 0;
    display: block;
}
.three-decades .three-decades-inner h2 {
    margin: 0 0 40px;
}
.three-decades-box {
    width: 100%;
    display: block;
    margin: 0 0 30px 0;
    padding: 30px;
    background: #F7F7F7;
    height: calc(100% - 30px);
    border-radius: 10px;
    text-align: center;
}
.three-decades-box img {
    display: block;
    text-align: center;
    margin: 0 auto 20px;
}
.three-decades-box h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.26px;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 20px 0;
    padding: 0;
}
.three-decades-box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #434749;
    display: block;
    width: 100%;
}
.business-results {
    width: 100%;
    margin: 0;
    padding: 100px 0 30px 0;
    display: block;
    position: relative;
    background-image: url(../img/cp-rt-bgimg.png);
    background-size: cover;
    background-position: center center;
}
.business-results:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000000A3;
    right: 0;
    left: 0;
    top: 0;
}
.business-results-inner {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 9;
}
.business-results-inner h2 {
    text-align: center;
    color: #fff;
    margin: 0 0 40px 0;
}
.business-results-box {
    width: 100%;
    display: block;
    margin: 0 0 30px 0;
    padding: 30px;
    height: calc(100% - 30px);
    text-align: center;
}
.business-results-box h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.26px;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0 0 25px 0;
}
.business-results-box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #fff;
    display: block;
    margin: 0;
}
.business-results-box img {
    margin: 0 0 25px 0;
}
.payment-clarity {
    width: 100%;
    display: block;
    margin: 0 0;
    padding: 100px 0;
}
.payment-clarity-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.payment-clarity-inner h2 {
    text-align: center;
    margin-bottom: 50px;
}
.payment-clarity-box {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
}
.payment-clarity-box:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) -58.2%, rgba(0, 0, 0, 0.6) 89.8%);
    right: 0;
    left: 0;
    top: 0;
}
.payment-clarity-box img {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.payment-clarity-box .clarity-box {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    padding: 30px;
    text-align: center;
    z-index: 1;
    color: #fff;
}
.payment-clarity-box .clarity-box h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
 
}
.payment-clarity-box .clarity-box h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.03em;
    margin: 10px 0 10px 0;
}
.payment-clarity-box .clarity-box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
}

.empowering-channel {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0 0 100px 0;
}
.empowering-channel-img {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    height: 100%;
}
.empowering-channel-img img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    height: 100%;
}
.empowering-channel-inner {
    height: 100%;
    background-color: #111B34;
    padding: 40px;
    margin: 0;
    display: block;
    color: #fff;
}
.empowering-channel-inner h3 {
    font-size: 42px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: -0.03em;
    display: block;
    margin: 0 0 20px 0;
}
.empowering-channel-inner p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    display: block;
    margin: 0 0 30px 0;
    color: #FFFFFF;
}
.empowering-channel-inner ul {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
.empowering-channel-inner ul li {
    display: flex;
    align-items: center;
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
}
.empowering-channel-inner ul li img {
    margin-right: 15px;
}
.empowering-channel-inner ul li span {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.26px;
    letter-spacing: -0.03em;
    margin: 0;
    display: inline-block;
}

.what-our-item {
    width: 100%;
    margin: 20px 0 0;
    padding: 40px;
    display: block;
    background: #F0FAFF;
    border-radius: 15px;
    text-align: center;
}
.what-our-item.box-2{
    background: #FFFBEA;
}
.what-our-item.box-3{
    background: #FFF4F6;
}
.what-our-item p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    display: block;
    margin: 30px 0 40px 0;
}
.what-our-item img {
    width: auto !important;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}
.what-our-item > img {
    margin-top: -60px;
}
.what-our-item .user-box {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}
.what-our-item .user-box img {
    margin-bottom: 15px;
	border-radius: 80px;
}
.what-our-item .user-box h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #1D55A2;
    display: block;
    margin: 0 0 5px;
}
.what-our-item .user-box span {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #797979;
}
.three_offer_slider-one {
    padding-top: 50px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #CEAC6E;
}

.what-our-channel-inner {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0;
    text-align: center;
    display: block;
}
.what-our-channel-inner h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
    text-align: center;
    text-decoration-skip-ink: none;
    margin: 0 0 15px 0;
}
.what-our-channel-inner p {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}


.events {
    width: 100%;
    margin: 0 0 0 0;
    padding: 100px 0;
    text-align: center;
    display: block;
    background-color: #F7F7F7;
}

.events h2{
    font-size: 48px;
    font-weight: 600;
    line-height: 58.51px;
    color: #000000;
    margin: 0 0 10px 0;
    padding: 0;
    display: block;
    width: 100%;
}
.events p {
    font-size: 22px;
    font-weight: 500;
    line-height: 31.2px;
    margin: 0 0 40px 0;
    padding: 0;
    display: block;
    width: 100%;
    color: #000000;
}
.events-inner h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 31.2px;
    letter-spacing: -0.03em;
    text-align: left;
    margin: 13px 0;
    padding: 0;
    width: 100%;
    display: block;
}

.events-inner span{
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.03em;
    text-align: left;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.success-story {
    width: 100%;
    margin: 0 0 0 0;
    padding: 100px 0;
    text-align: center;
    display: block;
}
.success-story h2{
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
    letter-spacing: -0.03em;
    margin: 0 0 20px 0;
    padding: 0;
    display: block;
    width: 100%;
}

.success-story .success-inner {
    width: 100%;
    margin: 0 0 0 0;
    padding: 40px;
    text-align: left;
    display: block;
    background-color: #FFF7ED;
    height: 100%;
}

.success-story .success-inner h3{
    width: 100%;
    margin: 0 0 25px 0;
    padding: 0;
    text-align: left;
    display: block;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.03em;
    color: #000000;
}

.success-story .success-inner p{
    width: 100%;
    margin: 0 0 25px 0;
    padding: 0;
    text-align: left;
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
}
.success-story .success-inner ul li {
    padding: 0 0 0 15px;
    width: 100%;
    display: block;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    position: relative;
}
.success-story .success-inner ul li::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #D7A96C;
    border-radius: 50px;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 10px;
}
.success-img {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    height: 100%;
}
.success-img img {
    height: 100%;
}
.Our-Offer-inner h5 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36.4px;
    letter-spacing: -0.03em;
    border-bottom: 3px solid #F16A22;
    display: inline-block;
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
}

.Our-Offer-inner h3 {
    font-size: 42px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: -0.03em;
    width: 100%;
    display: block;
}

.Our-Offer-inner h6 {
    font-size: 24px;
    font-weight: 500;
    line-height: 31.2px;
    letter-spacing: -0.03em;
    width: 100%;
    display: block;
    margin: 0 0 20px 0;
}

.Our-Offer-inner span b {
    font-size: 42px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: -0.03em;
    margin: 0 5px 0 0;
}
.Our-Offer-inner span {
    font-size: 18px;
    font-weight: 500;
    line-height: 23.4px;
    letter-spacing: -0.03em;
}

.Our-Offer-inner p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 10px;
}
.Our-Offer-inner {
    padding: 100px 50px;
}
.our-offer {
    padding-bottom: 0;
}
.partners-associates {
    width: 100%;
    display: block;
    margin: 0;
    padding: 90px 0;
    background: #F6F6F6;
    text-align: center;
}
.partners-associates-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.partners-associates-inner h2 {
    margin: 0 0 15px 0;
}
.partners-associates-inner p {
    font-size: 24px;
    font-weight: 500;
    line-height: 31.2px;
    color: #000000;
    display: block;
    margin: 0 0 30px 0;
    padding: 0;
}
.associates-box {
    width: 100%;
    margin: 0;
    padding: 5px;
    background: #fff;
}
.associates-box img {
    width: auto !important;
    height: auto !important;
}
.partners-associates .container {
    max-width: 1130px;
}
.download-app {
    width: 100%;
    display: block;
    margin: 0;
    padding: 70px 0;
}
.download-inner {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.download-inner h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    color: #000000;
    margin: 0 30px 0 0;
}
.download-inner a {
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 0;
    width: auto;
}
.download-inner a img {
    max-height: 80px;
    width: auto;
    height: auto;
}
.download-inner .btn {
    width: 50px;
    height: 50px;
    background: #F16A22;
}
.download-inner .btn svg {
    max-width: 25px;
}

.footer-enquire-now {
    background: #111B34;
    width: 100%;
    display: block;
    margin: 0;
    padding: 100px 0;
}
.footer-enquire-now .contactus {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.footer-enquire-now .contactus h3 {
    font-size: 42px;
    font-weight: 600;
    line-height: 46px;
    color: #FFFFFF;
    display: block;
    margin: 0 0 20px 0;
    padding: 0;
}
.footer-enquire-now .contactus p {
    font-size: 18px;
    font-weight: 500;
    line-height: 23.4px;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 20px;
    padding: 0;
}
.footer-enquire-now .contactus ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}
.footer-enquire-now .contactus ul li {
    display: flex;
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    align-items: center;
}
.footer-enquire-now .contactus ul li span,
.footer-enquire-now .contactus ul li a {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    width: calc(100% - 45px );
}
.footer-enquire-now .contactus ul li svg {
    margin-right: 15px;
}

.footer-enquire-now .contactus .form-control {
    height: 50px;
    border: none;
    box-shadow:none;
    padding: 10px 22px;
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #fff;
    color:white;
}
.footer-enquire-now .contactus .col-sm-12 {
    margin-bottom: 25px;
}
.form-check .form-check-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
    position: relative;
    width: calc(100% - 30px);
    display: inline-block;
    padding: 0 !important;
    vertical-align: text-bottom;
}
.form-check input[type=checkbox] {
    position: relative;
      border: 2px solid #F16A22;
      border-radius: 2px;
      background: none;
      cursor: pointer;
      line-height: 0;
      margin: 0 .6em 0 0;
      outline: 0;
      padding: 0 !important;
      vertical-align: text-top;
      height: 20px;
      width: 20px;
      -webkit-appearance: none;
    opacity: 1;
  }
  
  
.form-check input[type=checkbox]:checked {
    background-color:#F16A22;
    opacity: 1;
  }
  
.form-check input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
}
.form-check input[type=checkbox]:checked::before{
    opacity: 1;
}
.form-check {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.footer {
    width: 100%;
    display: block;
    margin: 0;
    padding: 50px 0 30px 0;
    background: #000000;
}
.footer .footer-inner {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.footer-inner .footer-logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.footer-inner .footer-logo span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24.38px;
    color: #FFFFFF;
    margin-left: 15px;
    display: inline-block;
}
.footer-inner .footer-link {
    width: auto;
    margin: 0 auto;
    padding: 0;
}
.footer-inner .footer-link a {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 24.38px;
}
.footer-soical ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.footer-soical ul li {
    margin: 0 0 0 20px;
    width: auto;
    display: inline-block;
    padding: 0;
}
.footer-soical ul li a {
    display: inline-block;
}
.footer-soical ul li a img {
    max-width: 40px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 0;
    padding: 30px 0 0 0;
    border-top: 1px solid #FFFFFF80;
    color: #fff;
}

.owl-carousel.owl-drag .owl-item {
    height: 100%;
}