@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    text-decoration: none;
    list-style-type: none;
}

body {
    overflow-x: hidden;
}

:root {
    --darkBlue: rgba(23, 61, 84, 1);
    --skyWhite: rgba(121, 177, 212, 1);
    --darkBlue2: rgba(37, 97, 135, 1);
    --blueGrey: rgba(88, 130, 155, 1);
    --lightBlue: rgba(57, 152, 212, 1);
}

.container {
    padding: 1rem 6rem;
}

.containerHead {
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 45px;
    color: #256187;
}

.hero {
    /* background: url('/rara-frontend/images/Rectangle\ 4.png'); */
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero #openNav,
.hero #closeNav {
    display: none;
}

.hero .yellowTint {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero .opacityImg {
    position: absolute;
    top: 0;
    left: 0;
    height: 97vh;
    width: 100%;
    z-index: -1;
}

.hero .mainBG {
    position: absolute;
    top: 0;
    left: 0;
    height: 97vh;
    width: 100%;
    z-index: -3;
    object-fit: cover;
}

.hero .mobileHero{
    display: none;
}

.hero nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10%;
}

nav img {
    width: 8.4rem;
    object-fit: cover;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

nav ul li a {
    color: rgba(255, 255, 255, 1);
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
    border-right: 3.3px solid #fff;
    cursor: pointer;
}

.banner {
    display: flex;
    flex-direction: column;
    height: 90%;
    animation-name: banner;
    animation-iteration-count: 1;
    animation-duration: 1s;
}

@keyframes banner {
    0%{
        transform: translateY(-70%);
        opacity: 0;
    }
    100%{
        transform: translateY(0%);
        opacity: 1;
    }
}
.banner h3 {
    font-size: 3.127rem;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: 0.2px;
    width: 70%;
    color: #fff;
    margin-top: 5.3rem;
}

.banner p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    margin-top: 1.5rem;
}

.banner .buttons {
    display: flex;
}

.banner button {
    width: 12rem;
    height: 3.125rem;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 23px;
    margin: 0rem 1rem 0 0;
    margin-top: 4.375rem;
    transition: all 0.3s;
    cursor: pointer;
}

.banner .blueBtn {
    background-color: var(--darkBlue2);
    color: #fff;
    z-index: 4;
}

.banner .blueBtn:hover {
    color: var(--darkBlue2);
    background-color: #fff;
}

.banner .whiteBtn {
    color: var(--darkBlue2);
    background-color: #fff;
    z-index: 4;
}

.banner .whiteBtn:hover {
    background-color: var(--darkBlue2);
    color: #fff;
}

/* Facilities Section */
.whyUs {
    margin: 2rem 0;
}

.whyUs .description {
    font-size: 1rem;
    font-weight: 500;
    color: #757575;
    line-height: 1.5rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.facilities-brand {
    display: flex;
}

.facilities {
    width: 80%;
}

.facilities h3 {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 30px;
    color: #2C2C2C;
    margin: 1rem 0rem;
}

.facilities .points {
    display: flex;
    flex-wrap: wrap;
}

.points p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 24px;
    padding: 1rem 0;
    color: #757575;
    width: 50%;
}

.points p img {
    margin-right: 1rem;
}

.facilities-brand .brand {
    width: 25.5rem;
    object-fit: contain;
}

/* Brands Container */
.brandsContainer {
    background-color: var(--darkBlue);
    padding-bottom: 1.5rem;
}

.brandsContainer h2 {
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 45px;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.brandsContainer .brandImg {
    display: grid;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    grid-template-columns: repeat(6, 0fr)
}

.brandsContainer .brandImg img {
    width: 7.2rem;
    opacity: 1;
}


/* Process */

.process .processDiagrams {
    display: flex;
    justify-content: space-between;
    margin-top: 1.2rem;
    width: 100%;
}

.processDiagrams div {
    width: 19.75rem;
}

.processDiagrams div .thumbnail {
    width: 100%;
    height: 14.6rem;
    object-fit: cover;
    margin: 0 auto;
    z-index: 2;
}

.processDiagrams div h4 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.9rem;
    display: flex;
    align-items: center;
    color: rgba(37, 97, 135, 1);
    margin: 0.6rem 0;

}

.processDiagrams div h4 img {
    width: 1.9rem;
    height: 1.9rem;
    margin-right: 12px;
}

.processDiagrams div p {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5rem;
    color: #747575;
    text-align: justify;
}


/* Testimonials */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 10px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial {
    background-color: var(--darkBlue2);
    padding-bottom: 3rem;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.testimonial h2 {
    background-color: var(--darkBlue2);
    font-weight: 600;
    font-size: 2rem;
    line-height: 45px;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin: 1.5rem 0rem;
}

.testimonial .testimonialCard {
    width: 17.813rem;
    height: 18.575rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 7px;
}

.testimonialCard .profileImage {
    position: relative;
}

.testimonialCard .profileImage .dp {
    width: 4.75rem;
    height: 4.75rem;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 1rem;
}

.testimonialCard .profileImage .anchor {
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    z-index: 10;
    bottom: 0;
    right: 0;
    object-fit: contain;
}


.testimonialCard .comment {
    font-weight: 500;
    font-size: 0.813rem;
    line-height: 20px;
    letter-spacing: -0.015rem;
    color: #3C3D48;
    margin-top: 2.7rem;
    line-height: 1.2rem;
}

.testimonialCard .name {
    font-weight: 600;
    position: relative;
    font-size: 0.87rem;
    line-height: 20px;
    letter-spacing: -0.015em;
    color: var(--darkBlue2);
    margin-top: 2rem;
}

.testimonialCard .name::before {
    content: "";
    position: absolute;
    background-color: var(--darkBlue2);
    width: 4rem;
    height: 4px;
    top: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonialCard .place {
    font-weight: 500;
    font-size: 0.813rem;
    line-height: 20px;
    letter-spacing: -0.015em;
    color: #808080;
    margin-top: 2px;
}

:root {
    --swiper-navigation-color: #22135a;
    --swiper-navigation-size: 1rem !important;
    opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 9px 2px rgb(0 0 0 / 25%);
    font-weight: 600;
    padding: 1rem;
}

.swiper-button-next {
    right: 3px !important;
}

.swiper-button-left {
    left: 3px !important;
}

/* Contact Us */
.contactUs {
    margin: 2rem 0;
    padding: 0 4rem;
}

.contactUs .flexDiv {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.flexDiv img{
    width: 626px;
    height: 460px;
    transform: scale(0.96);
}

.flexDiv .right{
    width: 45%
}


.right form .fields {
    display: flex;
    justify-content: space-between;
}

.right form .field input,
.right form .fields .field input {
    height: 41px;
    width: 260px;
    margin-bottom: 15px;
    border: 1px solid rgba(232, 232, 232, 1);
    background: #F3F3F3;
    font-size: 14px;
    letter-spacing: -0.015em;
    line-height: 21px;
    padding: 0 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
}

.right form .field label,
.right form .fields .field label {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: rgba(116, 117, 117, 1);

}

.checkbox{
    margin: 20px 0;
}

.checkbox p{
    color: #747575;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
}

.checkbox label{
    color: #747575;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    margin-right: 1.5rem;
    cursor: pointer;
}

.checkbox input{
    cursor: pointer;
}

.right form .textarea textarea {
    height: 100px;
    width: 95%;
    margin-bottom: 15px;
    border: 1px solid rgba(232, 232, 232, 1);
    background: #F3F3F3;
    font-size: 14px;
    letter-spacing: -0.015em;
    line-height: 21px;
    padding: 0 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.right form .name {
    margin-right: 10px;
}

.right form .field input:focus,
.right form .textarea textarea:focus {
    border-color: #b3b3b3;
}

.right form .textarea textarea {
    padding-top: 10px;
    resize: none;
    margin-bottom: 50px;
    outline: none;
}

.right form .button-area {
    display: flex;
    align-items: center;
    width: 100%;
}

.right form .button-area button {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height */
    width: 540px;
    background-color: var(--darkBlue2);
    outline: none;
    border: none;
    color: #fff;
    height: 50px;
    border-radius: 7px;
    transition: all 0.3s;
    cursor: pointer;
}

.right form .button-area button:hover {
    transform: scale(1.01);
}

.right form .button-area button a {
    height: 45px;
}


/* Download */

.download{
    height: 353px;
    border-radius: 50px;
    background-color: var(--darkBlue2);
    margin: 6rem 4rem 2rem;
    display: flex;
    justify-content: space-between;
    padding: 4.18rem 4.75rem;
    width: 100%;
    position: relative;
}

.download .info{
    width: 100%;
}
.download .info h3{
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 2.6rem;
    color: rgba(255, 255, 255, 1);
}

.download .info p{
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 24px;
    color: rgba(255, 255, 255, 1);
    margin-top: 1rem;
}

.buttons{
    margin-top: 2.68rem;
}

.buttons img{
    border-radius: 7px;
}

.buttons img:nth-of-type(1){
    margin-right: 2rem;
}

.download .img{
    width: 100%;
    height: 100%;
}

.download .img img{
    position:absolute
}

.img .smPhone{
    bottom: 0;
    right: 20rem;
    z-index: 10;
}

.img .bgPhone{
    bottom: 0;
    right: 10.5rem;
    z-index: 9;
}

/* Footer */

footer{
    display: flex;
    justify-content: space-between;
}

footer .column{
    width: 30%;
    display: flex;
    flex-direction: column;
    height: 10rem;
}

footer .firstCol p{
    margin-top: 0.9rem;
}


footer .midCol .innerCols{
    display: flex;
}

.innerCols .col{
    display: flex;
    flex-direction: column;
}

.innerCols .col:nth-of-type(2){
    margin-left: 2rem;
}

footer .lastCol p{
    margin-bottom: 1rem;
}

footer .lastCol img{
    margin-right: 0.8rem;
}



footer h5, footer a{
    color: var(--darkBlue2);
}

footer h5{
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0.8rem;
}

footer a{
   font-weight: 500;
   font-size: 14px;
   line-height: 21px;
   margin-bottom: 8px
}

footer p{
    color: #747575;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}


/* End */
.end{
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: var(--darkBlue);
    color: #ffffff;
}

.end p{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.end a, .end span{
    font-weight: 500;
    font-size: 15px;
    color: #fff;
}