@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=Montserrat: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');

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: #000;
    overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #0071b5;
    --primary-color: #c82025;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3 {
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}

/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--primary-color);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
    background: var(--theme-color);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.95em 1.76em;
    border-radius: 0;
    line-height: normal;
    border: 1.5px solid #fff;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

.themeBtn.redBg {
    background: var(--primary-color);
}

/* btn css */

/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}

/* mouse animation css  */

/* navigation css */
header {
    position: absolute;
    left: 0;
    right: 0;
    top: 2rem;
    z-index: 11;
}

.form-inline {
    gap: 1.2rem;
    margin: 0 0 0 2.5rem;
}

.navbar-nav {
    align-items: center;
    justify-content: flex-end;
    /* width: 100%; */
    gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
}

/* .navbar-nav .nav-item:last-child .nav-link {
	background: var(--theme-color);
	font-size: 1rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	border-radius: 0;
	padding: 1.04em 1.56em;
	border-radius: 0;
} */
.an-navbar {
    /* background: var(--theme-color); */
    /* padding: 1.35rem 0; */
}

/* navigation css */

/* slider css */

.mainSlider {
    height: 1080px;
    position: relative;
    z-index: 1;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    /* overflow: hidden; */
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slideContent {
    text-align: left;
    background: rgb(2 52 120 / 40%);
    width: 729px;
    height: 729px;
    border-radius: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 7rem;
    margin-left: -5rem;
    padding-right: 4rem;
}

.subHeading {
    font-size: 2.125rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subHeading span {
    width: 154px;
    height: 4px;
    background: var(--theme-color);
    display: block;
}

.heading {
    font-size: 6.5625rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.mainHeading {
    font-size: 5.3125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.slideContent .mainHeading {
    margin: 0 0 1rem;
}

.slideContent p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0 0 1.5rem;
}

.slideContent .themeBtn {
    border: 0;
}

.explore {
    position: absolute;
    left: 7rem;
    bottom: 5rem;
    font-size: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    writing-mode: tb-rl;
    text-transform: uppercase;
    gap: 1.2rem;
}

.explore span {
    transform: scale(-1);
}

.explore i {
    font-size: 1.5rem;
    transform: scale(1.5);
}

/* slider css */

.aboutSec {
    background: url(../images/aboutbg.jpg) no-repeat top center/ cover;
    padding: 7rem 0;
}

.aboutImg figure {
    position: relative;
}

.aboutImg figure img + img {
    display: table;
    margin-left: auto;
    margin-top: -9rem;
}

.aboutContent .subHeading span {
    width: 365px;
    background: var(--primary-color);
}

.aboutContent p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0 0 2rem;
}

.aboutContent .themeBtn {
    background: var(--primary-color);
    border: 0;
}

.aboutImg figure:before {
    content: '';
    position: absolute;
    left: 13%;
    right: 0;
    top: 29%;
    margin: auto;
    width: 92px;
    height: 92px;
    background: #7a7a7a;
    border-radius: 50%;
}

.wellSec {
    background: url(../images/probg.jpg) no-repeat top center/ cover;
    padding: 8rem 0;
}

.wellContent {
    background: #fff;
    padding: 4rem 4rem;
}

.wellContent .subHeading {
    color: #282828;
    margin: 0 0 10px;
}

.wellContent .heading {
    font-size: 3.125rem;
    color: #282828;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 0.8rem;
}

.wellContent p {
    color: #282828;
    margin: 0 0 2.2rem;
}

.proImg img {
    border: 10px solid var(--primary-color);
}

.proImg {
    margin-top: -3rem;
}

.serviceSec {
    background: url(../images/servicebg.jpg) no-repeat top center/ cover;
    padding: 8rem 0;
}

.serviceSec .proImg {
    margin-top: 0;
}

.sectionHeading {
    font-size: 3.5625rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.serviceContent ul li {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
    background: url(../images/check.png) no-repeat;
    padding-left: 1.8rem;
    background-position: 1px 9px;
    line-height: 1.8;
}

.serviceContent ul li + li {
    margin: 1.7rem 0 0;
}

.testimonialSec {
    background: url(../images/testimonialbg.jpg) no-repeat top center/ cover;
    padding: 6rem 0;
    position: relative;
}

.thumbMain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.thumbMain ul {
    flex-shrink: 0;
}

.testimonialContent p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0 0 1.2rem;
}

.testimonialContent span {
    font-size: 1.8125rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
}

.thumbMain ul li {
    margin: -11px 0;
}

.thumbMain ul li a img {
    border: 1px solid #ffffff;
    border-radius: 50%;
}

.mySwiper2 img {
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.testimonialContent {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.testimonialContent .mainHeading {
    font-size: 3.8125rem;
}

.testimonialContent .subHeading {
    margin: 0 0 1rem;
}

.testimonialContent .subHeading span {
    background: var(--primary-color);
}

.mySwiper .swiper-pagination {
    left: 1rem;
    width: auto;
    right: inherit;
    text-align: left;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mySwiper {
    padding-bottom: 100px;
}

.mySwiper .swiper-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid transparent;
    opacity: 1;
    margin: auto;
    position: relative;
}

.mySwiper .swiper-pagination-bullet:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
}

.mySwiper .swiper-pagination-bullet-active {
    border-color: var(--primary-color) !important;
}

.mySwiper .swiper-pagination-bullet-active:before {
    background: var(--primary-color);
}

.contactSec {
    background: url(../images/contactbg.jpg) no-repeat top center/ cover;
}

.contactHeading p {
    color: var(--white);
    font-size: 1.125rem;
    margin: 0 0 1.7rem;
}

.contactForm input {
    width: 100%;
    height: 60px;
    border: 0;
    padding: 0 1.5rem;
    margin: 0 0 1.2rem;
}

.contactForm textarea {
    width: 100%;
    height: 140px;
    border: 0;
    padding: 1.2rem 1.5rem;
    margin: 0 0 1.2rem;
}

.contactForm .themeBtn {
    border: 0;
    padding: 0.95em 2.76em;
}

.subscribeSec {
    background: url(../images/newsleterbg.jpg) no-repeat top center/ cover;
}

.newsleterContent .sectionHeading {
    margin: 0 0 0rem;
}

.newsleterContent p {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 2.5rem;
}

.newsleterContent form {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.newsleterContent form input {
    width: 74%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 1rem;
}

.newsleterContent form input::placeholder {
    color: #fff;
}

footer {
    background: #001827;
    padding-top: 5rem;
}

.ftrPara {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
    padding-right: 6rem;
    line-height: 2.2;
    padding-top: 3rem;
}

.quickList h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 0 2rem;
}

.quickList ul li a {
    font-size: 1.0625rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
}

.quickList ul li + li {
    margin: 1.2rem 0 0;
}

.calFoter ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calFoter ul li h6 {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    margin: 0 0 6px;
}

.calFoter ul li a {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

.calFoter ul li + li {
    margin: 3.5rem 0 0;
}

.calFoter ul li p {
    color: var(--white);
    line-height: 28px;
}

.copyRight .foterSocial {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
}

.copyRight .foterSocial li a {
    background: var(--white);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #707070;
    font-size: 1.1rem;
}

.copyRight {
    border-top: 1px solid rgb(238 232 227 / 21%);
    padding: 2.5rem 0;
    margin-top: 3rem;
}

.copyRight p {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0;
    text-align: center;
}

.copyRight .foterSocial li a:hover {
    background: var(--theme-color);
    color: var(--white);
}

.quickList .foterSocial li a:hover,
.calFoter .foterSocial li a:hover {
    color: var(--theme-color);
}

.termsPolicy {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
}

.termsPolicy li a {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}

.termsPolicy li span {
    color: #fff;
}

.termsPolicy li a:hover,
.quickList ul li a:hover,
.calFoter ul li a:hover {
    color: var(--primary-color);
}

.themeBtn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.aboutContent .themeBtn:hover {
    background: var(--theme-color);
}

.themeBtn.redBg:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

body.formBody {
    background: #000;
}

body.formBody header {
    position: unset;
    padding-top: 2rem;
}

body.formBody header .container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2rem;
}

.agentForm {
    background: #131313;
    border-radius: 25px;
    padding: 5rem 3rem;
}

.agentForm .row {
    gap: 2rem 0;
}

.agentForm .form-group label {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.agentForm .form-group {
    margin: 0;
}

.agentForm .form-group label span {
    color: #C82025;
}

.agentForm .form-group .form-control {
    height: 50px;
    border-radius: 0;
}

.agentForm .form-group.radio div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agentForm .form-group.radio div label {
    margin: 0;
}

.agentForm .form-group .imgHolder {
    position: relative;
    background: #fff;
    height: 350px;
}

.agentForm .form-group .imgHolder input {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
}

.agentForm .form-group .imgHolder span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgb(37 37 37 / 50%);
    font-weight: 400;
}

.agentForm .form-group .imgHolder i {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #6E6E6E;
}

.agentForm .form-group .imgHolder img {
    width: 100%;
    height: 100%;
}

.agentForm .form-group .imagePreview {
    height: 50px;
}

#up_images {
    padding: 0 0.25rem;
}

.imageThumb {
    height: 120px;
    width: 120px;
    object-fit: cover;
    border: 0;
    cursor: pointer;
}

.pip {
    display: inline-block;
    margin: 10px 10px 0 0;
}

.remove {
    display: block;
    background: #1c92ff;
    border: 1px solid #1c92ff;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 300;
    padding: 5px 5px;
    transition: 0.3s ease-in-out;
}

.remove:hover {
    background: var(--white);
    color: #1c92ff;
}

img:not([src]) {
    display: none;
}

section.formSec {
    padding: 15rem;
}

.loginBtn {
    font-size: 1.5rem;
    color: var(--white);
    display: inline-block;
}

.loginBtn:hover {
    color: var(--primary-color);
}

.forgetPassword {
    color: #fff;
}

.forgetPassword:hover {
    color: var(--lightgary-color);
}

.userlogindropdown {
    padding: 1rem 3rem;
}

button#dropdownMenuButton:hover {
    background-color: #0071b5;
    border: #0071b5;
}

.dropdown-menu.show {
    margin: 0 3rem;
}

.sender {
    text-align: right;
}

.sender .comment-header {
    justify-content: right;
}

#agentModal .modal-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.35);
}

#agentModal .modal-content .modal-title {
    color: #fff;
}

#agentModal .modal-content .modal-body p {
    color: #fff;
    margin: 0;
}

#agentModal .modal-content .close {
    color: #fff;
    opacity: 1;
}

.reviewBox {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1rem 0.5rem;
}

.reviewBox h4 {
    font-size: 1.125rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.reviewBox p {
    font-size: 13px;
    line-height: initial;
}

.reviewBox .stars {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.5rem;
}

.reviewBox .stars i {
    color: rgba(255, 255, 255, 0.5);
}

.reviewBox .stars i.active {
    color: gold;
}

#agentModal .modal-content .modal-header {
    align-items: center;
}

#agentModal .modal-content .modal-body #modal_image img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
