@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.rajdhani {
    font-family: "Rajdhani", serif;
}

.bebas {
    font-family: "Bebas Neue", serif;
}

.barlow {
    font-family: "Barlow Condensed", serif;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", serif;
    font-size: 14px;
    width: 100%;
}

section .container-fluid,
footer .container-fluid {
    width: 95%;
    margin: 0 auto;
    z-index: 111;
}

li {
    list-style: none;
}

p {
    font-size: 14px;
}

a,
a:hover,
a:active {
    text-decoration: none;
}

ul {
    margin-bottom: 0;
    padding-left: 0;
}

.main-btn {
    background: linear-gradient(to right, #f46f23, #ffbb19);
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
    border: none;
}

.main-btn.with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 30px;
    margin: 0 auto;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.px-80 {
    padding-left: 80px;
    padding-right: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.navbar {
    padding: 5px 15px;
    box-shadow: none;
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 1111;
}

.navbar .navbar-nav {
    gap: 25px;
    align-items: center;
    margin-right: 30px;
}

.navbar-nav>li {
    padding: 15px 0;
    position: relative;
}

nav.shrink {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: #3283ff;
    border-bottom: 1px solid #ccc;
}

nav.shrink .navbar-nav>li {
    padding: 5px 0;
    position: relative;
}

nav.shrink .navbar-nav>li a {
    color: #fff;
}

nav.shrink .navbar-brand img {
    width: 90px;
}

.navbar-nav li a.nav-link {
    color: #e7e8ea;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 0 !important;
}

.navbar .main-btn {
    font-size: 14px;
    padding: 8px 10px;
}

.navbar-nav li.active a {
    color: #f1833c;
}

.navbar-nav li:hover a {
    color: #fff;
}

.navbar-nav li .nav-link.show {
    color: #f1833c;
}

.navbar .nav-item .dropdown-menu {
    top: 80%;
    padding: 5px;
    border-radius: 5px;
    background-color: #e2e6e9;
    width: 220px;
    border: none;
}

.navbar .nav-item .dropdown-menu li a {
    color: #000;
    display: block;
    padding: 10px;
    padding-left: 15px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 500;
}

.navbar .nav-item .dropdown-menu li a:hover {
    background-color: #58c7f5;
}

.board-of-directors-text {
    background-image: url(../images/board-of-directors.jpg);
    background-size: cover;
    margin-top: 80px;
}

.board-of-directors-text p {
    color: #fff;
    font-size: 24px;
    font-weight: 200;
    line-height: 1.3;
    padding-bottom: 15px;
}

.directors-list .directors-card {
    text-align: center;
}

.directors-list .directors-card h4 {
    color: #3283ff;
    font-size: 24px;
    font-weight: 600;
    padding-top: 10px;
    margin-bottom: 0;
}

.directors-list .directors-card p {
    font-size: 18px;
    margin: 0;
    line-height: 1.1;
}

footer {
    background-color: #1d1d1d;
    padding: 50px 0 30px;
}

footer p {
    color: #fff;
    font-size: 12px;
    width: 80%;
    padding-top: 15px;
    font-weight: 200;
}

footer h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

footer h4 a {
    font-weight: 700;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #ff00ff);
    /* This is the key! */
    background-size: 400% 400%;
    animation: gradient 20s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

footer ul.footer-links li a {
    font-size: 12px;
    color: #fff;
    display: block;
    padding-bottom: 10px;
    font-weight: 400;
}

footer ul.footer-social li a {
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    gap: 15px;
}

footer ul.footer-social li:first-child span {
    position: relative;
    top: 5px;
}

footer ul.footer-social li a img {
    width: 22px
}

.membership-card {
    background-color: #f3f3f3;
    padding: 30px 40px;
    border-radius: 8px;
}

.membership-card .membership-img {
    height: 35px;
    margin: 0 auto;
    display: table;
}

.membership-card h3 {
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 0;
    margin: 0;
}

.membership-card li {
    padding-bottom: 5px;
}

.membership-card li a {
    color: #111;
    font-weight: 600;
}

.membership-card li a img {
    margin-right: 10px;
}

.new-homes-card {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.new-homes-card .new-homes-img img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.new-homes-card .new-homes-content {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.new-homes-card .new-homes-card-right,
.new-homes-card .new-homes-card-left {
    width: 50%;
}

.new-homes-card .new-homes-card-right {
    display: flex;
    justify-content: end;
}

.new-homes-card .new-homes-content .new-homes-price span {
    color: #595959;
    font-weight: 500;
}

.new-homes-card .new-homes-content .new-homes-price h3 {
    color: #3283ff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.new-homes-card .new-homes-content .new-homes-address {
    color: #000;
    font-weight: 600;
    padding: 20px 0;
    line-height: 1;
}

.new-homes-card .new-homes-content .new-homes-bed-bath {
    display: flex;
    align-items: center;
}

.new-homes-card .new-homes-content .new-homes-bed-bath .section {
    display: flex;
    align-items: center;
    color: #505050;
    padding: 0 15px;
    line-height: 1;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    gap: 10px;
}

.new-homes-card .new-homes-content .new-homes-bed-bath .section:first-child {
    border-right: 1px solid #505050;
    padding-left: 0;
}

.new-homes-card .new-homes-content .new-homes-bed-bath img {
    filter: invert(1);
    opacity: .8;
}

.new-homes-card .membership-card {
    background-color: #fff;
    padding: 0;
}

.new-homes-card .membership-card img {
    display: block;
    margin: 0;
}

.new-homes-card .membership-card h3 {
    text-align: left;
    font-size: 18px;
}

.new-homes-card .membership-card li a {
    color: #111;
    font-weight: 600;
    display: flex;
    gap: 10px;
    font-weight: 600;
    display: flex;
    gap: 10px;
}

.new-homes-card .new-homes-footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 20px;
}

.new-homes-card .new-homes-footer a {
    width: calc(50% - 3px);
    padding: 10px;
    text-align: center;
    background-color: #3283ff;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
}

.new-homes-card .new-homes-footer a:nth-child(2) {
    background-color: #fdd91b;
    color: #111;
}

.new-homes-card .new-homes-footer a:nth-child(3) {
    background-color: #139f00;
}

.new-homes-card .new-homes-footer a:nth-child(4) {
    background-color: #25aae1;
}

.new-communities-card {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    padding: 15px;
}

.new-communities-card .new-communities-card-top {
    height: 200px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 10px 0px;
    background-color: #e8e8e8;
    position: relative;
}

.new-communities-card .new-communities-card-top .new-communities-card-top-actions {
    position: absolute;
    right: 10px;
    /* width: 100px; */
    background: #3283ff;
    border-radius: 40px;
    padding: 3px;
    display: flex;
    top: 10px;
}

.new-communities-card .new-communities-card-top .new-communities-card-top-actions a {
    color: #fff;
    width: 45px;
    display: inline-block;
    text-align: center;
    padding: 4px 0;
    border-radius: 40px;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}

.new-communities-card .new-communities-card-top .new-communities-card-top-actions a.active {
    background: linear-gradient(to right, #f57220, #fdbc1a);
    color: #111;
}

.new-communities-card .new-communities-card-top .communities-card-img,
.new-communities-card .new-communities-card-top .communities-card-map {
    height: 200px;
    width: 100%;
    border-radius: 5px;
    display: none;
}

.new-communities-card .new-communities-card-top .communities-card-map.active,
.new-communities-card .new-communities-card-top .communities-card-img.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-communities-card .new-communities-card-top .communities-card-img .logo {
    height: 50px;
}

.new-communities-card .new-communities-card-top .communities-card-img .img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.new-communities-card .new-communities-card-top .communities-card-map img {
    width: 95%;
}

.new-communities-card h3 {
    color: #3283ff;
    font-weight: 600;
    font-size: 20px;
    padding-top: 20px;
    line-height: 1;
}

.new-communities-card ul li {
    font-weight: 400;
    padding-bottom: 5px;
}

.new-communities-card ul li span {
    font-weight: 600;
}

.new-communities-card .new-communities-footer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 20px;
}

.new-communities-card .new-communities-footer a {
    width: calc(50% - 3px);
    padding: 8px 10px;
    text-align: center;
    background-color: #3283ff;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 12px;
}

.new-communities-card .new-communities-footer a:nth-child(2) {
    background-color: #fdd91b;
    color: #111;
}

.new-communities-card .new-communities-footer a:nth-child(3) {
    background-color: #139f00;
    width: 100%;
}

.homepage-banner {
    background-color: #3283ff;
    padding: 200px 0;
    text-align: center;
	height: 100vh;
}

.homepage-banner::before {
    content: "";
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 111;
    opacity: .5;
}

.homepage-banner h6 {
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    letter-spacing: 5px;
    font-weight: 400;
}

.homepage-banner h1 {
    text-transform: uppercase;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: 8px;
    line-height: 1;
    background: linear-gradient(to right, #fed61b, #f17f3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.homepage-banner h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 50px;
}

.homepage-banner video,
.landing-banner-2 video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.homepage-banner h3 {
    background: linear-gradient(to right, #fed61b, #f17f3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.membership-values .container-fluid {
    background-color: #fff;
    margin-top: -50px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 50px;
}

.membership-values h2 {
    background: linear-gradient(to right, #fed61b, #f17f3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 72px;
    letter-spacing: 2px;
    text-align: center;
}

.value-tab {
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.value-tab .tab-content {
    width: calc(100% - 400px);
    padding: 20px 40px;
}

.value-tab .tab-content .value-tab-content {
    display: none;
}

.value-tab .tab-content .value-tab-content.active {
    display: block;
}

.value-tab .tab-content h4 {
    color: #0081ff;
    font-weight: 600;
    font-size: 30px;
}

.value-tab .tab-content p {
    font-weight: 500;
    line-height: 1.4;
    text-align: justify;
}

.value-btns {
    height: 400px;
    width: 400px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.value-btns .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.value-btns .center-logo img {
    width: 100%;
}

.value-btns .value-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 55px solid #3283ff;
    cursor: pointer;
    border-radius: 50%;
    clip-path: polygon(calc(50% + 10px / 2) 50%, calc(50% + 10px / 2) 0%, 100% 0%, 100% calc(78.665% - 10px / 2), 50% calc(50% - 10px / 2));
}

.value-btn.value-btn-networking {
    transform: rotate(-60deg);
}

.value-btn img {
    position: relative;
    top: 37px;
    left: 196px;
    transform: rotate(58deg);
    width: 165px;
}

.value-btn.value-btn-education {
    transform: rotate(-180deg);
}

.value-btn.value-btn-community {
    transform: rotate(60deg);
}

.value-btn.active {
    border-color: #ff7e00;
}

.value-tab .main-btn {
    padding: 8px;
}

.homepage-image-section {
    position: relative;
}

.homepage-image-section .image-name {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: linear-gradient(to left, #fed61b, #f17f3e);
    color: #fff;
    padding: 20px 50px;
}

.homepage-image-section .image-name h3 {
    font-size: 50px;
    line-height: 1;
    margin: 0;
}

.homepage-image-section .image-name p {
    font-size: 24px;
    margin-bottom: 0;
    line-height: 1;
}

.upcoming-events {
    background-color: #3283ff;
}

.upcoming-events h2 {
    color: #fff;
    font-size: 72px;
    letter-spacing: 2px;
    text-align: center;
}

.events-card {
    background-color: #f5f5f5;
    display: flex;
    border-radius: 10px;
    align-items: center;
    padding: 10px 0;
    padding-right: 15px;
    margin-bottom: 20px;
}

.events-card .events-date {
    width: 15%;
    text-align: center;
}

.events-card .events-date h3 {
    color: #000;
    font-size: 28px;
    line-height: 1;
}

.events-card .events-date h3 span {
    display: block;
    color: #f46f23;
    font-size: 80px;
    font-weight: 500;
}

.events-card .event-details {
    width: 45%;
}

.events-card .event-details h4 {
    color: #3283ff;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 24px;
}

.events-card .event-details p {
    font-size: 14px;
    width: 90%;
    font-weight: 500;
    margin-bottom: 0;
}

.events-card .event-addons {
    width: 25%;
}

.events-card .event-addons ul.event-date-time li {
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
}

.events-card .event-addons ul.event-date-time li img {
    margin-right: 10px;
}

.events-card .event-addons .event-attendance {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.events-card .event-addons .event-attendance .dropdown-toggle::after {
    display: none;
}

.events-card .event-addons .event-attendance .attendance {
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.events-card .event-addons .event-attendance .attendance li {
    margin-left: -10px;
}

.events-card .event-addons .event-attendance .attendance img {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 30px;
}

.events-card .event-addons .event-attendance p {
    margin: 0;
    font-size: 14px;
}

.events-card .event-actions {
    width: 15%;
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-actions .event-img-container {
    min-height: 170px;
    position: relative;
}

.event-actions .event-img-container .event-container-img {
    object-fit: cover;
    width: 100%;
    min-height: 170px;
    border-radius: 5px;
}

.event-actions .event-img-container .main-btn {
    background: #0e77bd;
    font-size: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px;
    bottom: 5px;
    width: max-content;
}

.events-card .event-actions button {
    background: linear-gradient(to right, #fed61b, #f17f3e);
    padding: 10px 40px;
    border: none;
}

.events-card .event-actions button.show {
    background: #555;
}

.events-card .event-actions .dropdown-menu {
    border: none;
}

.events-card .event-actions ul li img {
    margin-right: 10px;
}

.events-card .event-actions ul li a {
    font-size: 14px;
    padding: 8px 15px;
}

.events-card .event-actions ul li a:active,
.events-card .event-actions ul li a:hover {
    background: linear-gradient(to right, #0e77bd, #25a9e1);
    color: #fff;
}

.events-card .event-actions ul li a:active img,
.events-card .event-actions ul li a:hover img {
    filter: sepia(1);
    -webkit-filter: sepia(1);
}

.homepage-new-homes h2 {
    font-size: 72px;
    line-height: 1;
}

.homepage-new-homes h2 span {
    background: linear-gradient(to right, #fed61b, #f17f3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.homepage-new-homes a.btn {
    background: linear-gradient(to left, #fed61b, #f17f3e);
    color: #fff;
    padding: 8px 30px;
    border-radius: 5px;
    display: table;
    width: max-content;
    margin: 0 auto;
    margin-top: 50px;
    border: none;
}

.join-builders {
    background-image: url(../images/join-us.jpg);
    background-size: cover;
    padding: 150px 0;
    text-align: center;
}

.join-builders h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 60px;
}

.join-builders h2 {
    line-height: 1;
    margin: 0;
    margin-top: -10px;
}

.join-builders h4.two {
    margin-top: -10px;
}

.online-application h3 {
    background: linear-gradient(to right, #0e77bd, #25a9e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    margin: 0;
    padding-bottom: 15px;
}

.online-application .form-section {
    padding-bottom: 50px;
}

.online-application .form-check.form-check-radio {
    display: flex;
    align-items: start;
    gap: 5px;
    margin-bottom: 15px;
}

.online-application .form-check.form-check-radio label {
    font-size: 18px;
    line-height: 1;
    padding-top: 4px;
    padding-bottom: 0;
    font-weight: 400;
}

.online-application .form-check.form-check-radio label b {
    line-height: 1;
}

.online-application .form-check.form-check-radio input {
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    box-shadow: none;
}

.online-application label {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px;
}

.online-application input.form-control,
.online-application select.form-select {
    padding: 10px;
    font-size: 18px;
    box-shadow: none;
}

.online-application select.form-select {
    background-image: url(../images/select1.png);
    background-position: right center;
    background-size: 60px;
}

.online-application p {
    font-size: 18px;
}

.online-application ul {}

.online-application ul li {
    font-size: 18px;
    padding-bottom: 10px;
    position: relative;
    margin-left: 40px;
}

.online-application ul li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(to left, #fed61b, #f17f3e);
    border-radius: 3px;
    left: -20px;
    top: 8px;
}

.online-application .form-check.form-check-checkbox {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.online-application .form-check.form-check-checkbox label {
    font-size: 18px;
    line-height: 1;
    padding-top: 4px;
    padding-bottom: 0;
    font-weight: 400;
}

.online-application .form-check.form-check-checkbox label b {
    line-height: 1;
}

.online-application .form-check.form-check-checkbox input {
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    box-shadow: none;
}

.online-application .form-check .form-check-input:checked {
    background-color: #f1833c !important;
    border-color: #f1833c !important;
}

.online-application .blue-box {
    background: linear-gradient(to right, #0e77bd, #25a9e1);
    color: #fff;
    text-align: center;
    width: 70%;
    font-size: 22px;
    margin: 15px auto;
    padding: 20px;
    border-radius: 10px;
    font-weight: 500;
}

.signature-pad {
    width: 100%;
    height: 300px;
    border: 1px solid #e8eaec;
}

.online-application button.main-btn {
    font-size: 20px;
    letter-spacing: 2px;
}

button.clear-btn {
    background-color: #0081ff !important;
    border-radius: 3px;
    color: #fff !important;
    width: auto;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 20px;
    transition: .3s;
}

.members-login-section .member-sidebar {
    width: 270px;
    background-color: #f2f2f2;
    padding: 50px 15px 20px;
    float: left;
    border-radius: 10px;
    position: sticky;
    position: -webkit-sticky;
    top: 70px;
}

.members-login-section .member-sidebar .member-image,
.members-login-section .member-sidebar .member-logo {
    margin: 0 auto;
    display: table;
    text-align: center;
    margin-bottom: 20px;
}

.members-login-section .member-sidebar .member-image img {
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 180px;
}

.members-login-section .member-sidebar .member-logo img {
    max-height: 50px;
    object-fit: cover;
}

.members-login-section .member-sidebar .member-image .delete-btn,
.members-login-section .member-sidebar .member-logo .delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
}

.members-login-section .member-sidebar ul {
    margin-top: 20px;
}

.members-login-section .member-sidebar ul li a {
    padding: 10px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    position: relative
}

.members-login-section .member-sidebar ul li a img {
    transform: scale(.8);
    margin-right: 5px;
}

.members-login-section .member-sidebar ul li.active a {
    background: linear-gradient(to left, #fed61b, #f17f3e);
    color: #fff;
}

.members-login-section .membership-login-details {
    width: calc(100% - 270px);
    margin-left: 270px;
    padding: 0 40px;
    padding-right: 0;
}

.members-login-section .membership-login-details h3 {
    color: #0e77bd;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 5px;
}

.members-login-section .membership-login-details .form-section {
    margin-bottom: 30px;
}

.members-login-section .membership-login-details label {
    font-size: 18px;
    font-weight: 600;
}

.members-login-section .membership-login-details input.form-control,
.members-login-section .membership-login-details select.form-select {
    padding: 10px;
    font-size: 18px;
}

.members-login-section .membership-login-details .form-section h4 {
    font-size: 18px;
    color: #f1833c;
    margin-left: -5px;
}

.members-login-section .membership-login-details .new-homes-card .new-homes-content {
    padding: 15px;
}

.members-login-section .membership-login-details .new-homes-card h3,
.members-login-section .new-communities-card h3 {
    letter-spacing: 0;
    font-size: 18px;
    text-transform: capitalize;
}

.members-login-section .membership-login-details .new-homes-card .new-homes-content .new-homes-address {
    font-size: 12px;
}

.members-login-section .membership-login-details .new-homes-card .membership-card img.membership-img {
    height: 25px;
}

.members-login-section .membership-login-details .new-homes-card .new-homes-card-right h3 {
    color: #111;
    font-size: 16px;
    padding: 5px 0 10px;
}

.members-login-section .membership-login-details .new-homes-card .new-homes-card-right .membership-card li a {
    font-size: 12px;
    gap: 5px;
}

.members-login-section .membership-login-details .new-homes-card .new-homes-card-right .membership-card li a img {
    width: 15px;
    height: 15px;
}

.members-login-section .membership-login-details .new-homes-card .new-homes-footer a,
.members-login-section .new-communities-card .new-communities-footer a {
    font-size: 12px;
    background-color: #e6212a;
    width: 100%;
    padding: 5px;
}

.members-login-section .new-communities-card ul li {
    font-weight: 400;
    font-size: 12px;
    padding-bottom: 0;
}

.landing-banner-2 {
    padding: 120px 0;
    text-align: center;
    background-color: #3283ff;
}

.landing-banner-2::before {
    content: "";
    background: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 111;
    opacity: .5;
}

.landing-banner-2 h1 {
    background: linear-gradient(to left, #fed61b, #f17f3e);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 120px;
    font-weight: 600;
    padding-top: 70px;
    line-height: 1;
    margin-bottom: 0;
}

.landing-banner-2 h2 {
    font-size: 60px;
    font-weight: 300;
    color: #fff;
}

.landing-banner-2 h4 {
    font-size: 36px;
    font-weight: 200;
    color: #fff;
}

.saltwater-showdown {
    display: block;
    margin: 20px auto;
    padding: 15px;
    padding-bottom: 40px;
    border: 2px solid #999;
    border-radius: 15px;
    width: 100%;
    text-align: center;
    position: relative;
}

.saltwater-showdown h3 {
    font-size: 48px;
    margin: 0;
    padding-bottom: 5px;
    font-weight: 500;
}

.saltwater-showdown h2 {
    background: linear-gradient(to bottom, #0e77bd, #25a9e1);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.saltwater-showdown legend {
    display: table;
    font-size: 48px;
    font-weight: 500;
    position: absolute;
    bottom: -33px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 20px;
    width: auto;
}

.tournament-rules h4 {
    background: linear-gradient(to left, #fed61b, #f17f3e);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    font-weight: 600;
    padding-top: 70px;
    padding-bottom: 30px;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}

.tournament-rules h4+p {
    font-size: 30px;
    font-weight: 600;
}

.tournament-rules .section h5 {
    background: linear-gradient(to bottom, #0e77bd, #25a9e1);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    font-weight: 600;
}

.tournament-rules .section {
    padding-bottom: 30px;
}

.tournament-rules .section ul li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 15px;
}

.tournament-rules .section ul li:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #f17f3e;
    display: inline-block;
    margin-right: 8px;
}

.tournament-sponsers {
    background-color: #eee;
}

.saltwater-sponsers {
    display: block;
    margin: 20px auto;
    padding: 15px;
    padding-bottom: 30px;
    border: 4px dashed #555;
    border-radius: 15px;
    width: fit-content;
    text-align: center;
    position: relative;
}

.saltwater-sponsers h2 {
    color: #cf4a2b;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.saltwater-sponsers legend {
    display: table;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 500;
    position: absolute;
    bottom: -33px;
    text-align: center;
    left: 50%;
    letter-spacing: 5px;
    transform: translateX(-50%);
    background: #eee;
    padding: 0 20px;
    width: auto;
}

.sponsers-box {
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

.sponsers-box h2 {
    position: absolute;
    background: linear-gradient(to bottom, #d9a444, #fae860, #d9a444);
    color: #000;
    text-transform: uppercase;
    padding: 10px 20px;
    font-size: 55px;
    font-weight: 600;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    border-radius: 8px;
}

.sponsers-box.silver-box h2 {
    background: linear-gradient(to bottom, #b3b3b3, #e1e1e1, #b3b3b3);
    font-size: 36px;
    top: -20px;
}

.sponsers-box.bronze-box h2 {
    background: linear-gradient(to bottom, #9d523d, #f1cab9, #9d523d);
    font-size: 36px;
    top: -20px;
}

.sponsers-box.gold-box {
    background: linear-gradient(to bottom, #d9a444, #fae860, #d9a444);
}

.sponsers-box.silver-box {
    background: linear-gradient(to bottom, #b3b3b3, #e1e1e1, #b3b3b3);
}

.sponsers-box.bronze-box {
    background: linear-gradient(to bottom, #9d523d, #f1cab9, #9d523d);
}

.sponsers-box .sponsers-box-container {
    background-color: #fff;
    border-radius: 5px;
    padding: 50px 30px 30px;
}

.sponsers-box.silver-box .sponsers-box-container {
    padding: 30px;
}

.sponsers-box .sponsers-box-container ul li {
    display: inline-block;
    padding: 20px;
}

.sponsers-box .sponsers-box-container ul.bronze-sponsers {
    display: flex;
    flex-wrap: wrap;
}

.sponsers-box .sponsers-box-container ul.bronze-sponsers li {
    width: 33.3333%;
    text-align: center;
}

.sponsers-box .sponsers-box-container ul li h3 {
    font-size: 24px;
}

.team-registration h2 {
    background: linear-gradient(to left, #fed61b, #f17f3e);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 60px;
    font-weight: 600;
    padding-bottom: 50px;
    line-height: 1;
    margin-bottom: 0;
    text-align: center;
}

.team-registration h2.barlow-small {
    padding-top: 70px;
    font-size: 48px;
    padding-bottom: 20px;
}

.team-registration h2.barlow-small+p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.team-registration input.form-control,
.team-registration select.form-select {
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
}

.team-registration select.form-select {
    background-image: url(../images/select1.png);
    background-position: right center;
    background-size: 60px;
}

.team-registration label {
    font-size: 20px;
    padding-bottom: 5px;
    font-weight: 600;
}

.team-registration form [class*="col-"] {
    padding: 12px 10px;
}

ul.companies-attending {
    min-width: 220px;
    padding: 5px;
    max-height: 250px;
    left: 50% !important;
    transform: translate3d(-50%, 32.5px, 0px) !important;
    overflow: auto;
}

ul.companies-attending li:first-child {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 5px;
}

ul.companies-attending li a {
    display: block;
    color: #000;
    font-size: 14px;
    padding-bottom: 5px;
    font-weight: 400;
}

.inner-banner {
    background: radial-gradient( #0e77bd, #25a9e1);
    padding: 170px 0 80px 0;
    text-align: center;
}

.inner-banner h2 {
    background: linear-gradient(to right, #fed61b, #f17f3e);
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 70px;
    font-weight: 600;
    filter: drop-shadow(2px 4px 6px rgba(255, 255, 255, .2));
    -webkit-filter: drop-shadow(2px 4px 6px rgba(255, 255, 255, .2));
    letter-spacing: 2px;
}

.inner-banner h2 span {
    display: block;
    font-size: 60px;
}

.upcoming-previous-btns {
    background: #1d97d4;
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 50px;
}

.upcoming-previous-btns a {
    padding: 10px 0;
    display: inline-block;
    border-radius: 50px;
    color: #fff;
    width: 180px;
    font-size: 16px;
    text-align: center;
}

.upcoming-previous-btns a.active {
    background: linear-gradient(to left, #fed61b, #f17f3e);
}

.previous-tab-content {
    display: none;
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 500;
    color: #333;
    font-size: 20px;
    border: 1px solid #999;
    background-color: #fff;
    color: #999;
}

.pagination .page-item:first-child a,
.pagination .page-item:last-child a {
    border: none;
    background-color: #fff;
    color: #f17f3e;
}

.pagination .page-item.active a {
    background: linear-gradient(to left, #fed61b, #f17f3e);
    color: #fff;
    border-color: transparent;
}

.sticky-footer {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.sticky-footer .sticky-form {
    background-color: #f4f4f4;
    padding: 15px 10px;
    text-align: center;
    width: 300px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: none;
}

.sticky-footer .sticky-form h4 {
    color: #0081ff;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
}

.sticky-footer .sticky-form p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
}

.sticky-footer .sticky-form input,
.sticky-footer .sticky-form textarea {
    width: 100%;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
    margin: 5px 0;
    border: 1px solid #ccc;
}

.sticky-footer .sticky-form .main-btn {
    padding: 5px;
    font-size: 14px;
}

.sort-by-div {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.sort-by-div p {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.sort-by-div .sort-category {
    width: 350px;
    border: 1px solid #999;
    display: flex;
    justify-content: space-between;
    padding: 12px;
    align-items: center;
    font-size: 20px;
    color: #000;
    border-radius: 5px;
    position: relative;
}

.sort-by-div .sort-category i {
    position: absolute;
    right: 0;
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to left, #fed61b, #f17f3e);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
}

.sort-by-div .sort-category::after {
    display: none;
}

.sort-by-div .dropdown-menu {
    width: 350px;
    padding: 5px;
}

.sort-by-div .dropdown-menu .checkbox {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-by-div .dropdown-menu .checkbox.active {
    background: linear-gradient( #0e77bd, #25a9e1);
    color: #fff;
}

.sort-by-div .dropdown-menu .checkbox label {
    width: 100%;
}

.sort-by-div .dropdown-menu .checkbox input {
    width: 20px;
    height: 20px;
}

.new-homes-filter {}

.new-homes-filter .filter {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.new-homes-filter .filter p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.new-homes-filter .filter select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #bbb;
    background-image: url(../images/select2.png);
    background-position: right center;
    background-size: 50px;
}

.new-homes-filter .filter .range-slider {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
}

.new-homes-filter .filter .range-value {
    display: flex;
    align-items: center;
}

.new-homes-filter .filter .range-value div {
    width: 80px;
    height: 46px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
}

.range-slider .range-bar {
    border: none;
    background: #ccc;
    height: 5px;
    width: 100%;
    border-radius: 5px;
}

.range-slider .range-bar .ui-slider-range {
    background: linear-gradient(to right, #fed61b, #f17f3e);
}

.range-slider .range-bar .ui-slider-handle {
    border: none !important;
    outline: none;
    border-radius: 25px;
    background: #fed61b;
    height: 18px;
    width: 18px;
    top: -7px;
    cursor: pointer;
}

.view-gallery {
    display: none;
}

.range-slider .range-bar .ui-slider-handle+span {
    background: #f17f3e;
}


/* Modal */

.modal-backdrop.show {
    z-index: 1112;
}

.modal {
    z-index: 1113;
}

.modal .modal-content {
    background-color: #333;
}

.modal .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    color: #fff;
    z-index: 4444;
    opacity: 1;
    font-size: 24px;
}

.modal .modal-logo {
    margin-bottom: 20px;
}

.modal label {
    color: #fff;
    font-size: 16px;
}

.modal h2 {
    text-transform: uppercase;
    color: #fff;
}

.modal h2 span {
    color: #f1833c;
    font-weight: 700;
}

.modal .main-btn {
    padding: 8px;
}

.modal input.form-control,
.modal select.form-select,
.modal textarea.form-control {
    padding: 10px;
}

.popup-property-img h3 {
    font-size: 16px;
    color: #fff;
}

.popup-property-img h4 {
    font-size: 14px;
    color: #fff;
}

.choose-file {
    position: relative;
    height: 100%;
}

.choose-file .choose-file-container {
    height: 100%;
}

.choose-file .choose-file-container img {}

.choose-file::before {
    content: "";
    width: 100%;
    position: absolute;
    height: 100%;
    background: #000;
    border-radius: 10px;
    opacity: .5;
}

.choose-file-container .image-container {
    height: 100%;
}

.choose-file-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.choose-file .main-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 10px 20px;
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.choose-file .main-btn .choose-file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.choose-file-container .delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
}

.otp-input-fields {
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.otp-input-fields input[type=number]::-webkit-outer-spin-button,
.otp-input-fields input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

.otp-input-fields input[type=number] {
    -moz-appearance: textfield;
}

.otp-input-fields input {
    height: 40px;
    width: 40px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #c07a0d;
    text-align: center;
    outline: none;
    font-size: 16px;
    color: #fff;
}