/* Font */

/*font-family: "Inter", sans-serif; */


/* Font Inter Bold */
@font-face {
    font-family: "Inter";
    src: url('../fonts/Inter-Bold.woff') format('woff'),
        url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight:700;
}

/* Font Inter Medium */
@font-face {
    font-family: "Inter";
    src: url('../fonts/Inter-Medium.woff') format('woff'),
        url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight:500;
}



/* Font Inter Regular */
@font-face {
    font-family: "Inter";
    src: url('../fonts/Inter-Regular.woff') format('woff'),
        url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight:400;
}

body{
	margin: 0;
	padding: 0;
	
	
}

html {
	box-sizing: border-box;
}
*,
*:before,
*:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

:root{
    --black:#000000;
    --white:#ffffff;
    --gray:rgba(0,0,0,0.6);
    --darkgray:#5A5A5A;
    --green:#0F766E;
}
.text-white{
    color: var(--white);
}
.text-balck{
    color: var(--black);
}
.text-gray{
    color: var(--gray);
}

.fw-400{
    font-weight: 400;
}
.fw-700{
    font-weight: 700;
}
a{
    text-decoration: unset;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}
a:hover{
    color:var(--darkgray);
}

ul{
	list-style: none;
	padding-inline-start: 0px;
	margin: 0;
	padding: 0;
}
body{
	font-family: "Inter", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
    --lightblack:#383F47;
    background-color: var(--white);
}
h1,h2,h3,h4,h5,h6{
	margin-bottom: 0;
	font-family: "Inter", sans-serif;
	color: var(--black);
}


/* comaon */
h1{
    font-size: 55px;
    line-height: 70px;
    font-weight: 700;
}

h2{
    font-size: 32px;
    line-height: 44px;
    font-weight: 700;
}
h3{
    font-size: 26px;
    line-height: 31px;
    font-weight: 700;
}
h4{
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

p{
    color: var(--black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}


.btn-black{
    /* display: inline-block; */
    background-color: var(--black);
    border: 1px solid var(--black);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px !important;
    padding: 12px 20px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease-in-out;
}

.btn-black img{
    height: 14px;
    width: 14px;
    object-fit: contain;
    transition: 0.3s ease-in-out;
}
.btn-black:hover{
    background-color: var(--green);
    transition: 0.3s ease-in-out;
    border: 1px solid var(--green);
}
.btn-black:hover img{
    transform: rotate(45deg);
    transition: 0.3s ease-in-out;
}


.container{
    max-width: 1145px;
}
.sec-pad{
    padding:100px 8px;
}
.text-uppercase{
    text-transform: uppercase;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-20{
    margin-bottom: 20px;
}
.fw-500{
    font-weight: 500;
}
.fs-24{
    font-size: 24px;
    line-height: 38px;
}

/* ====  Header =====  */
.header-sec{
    position: sticky;
    top: 0;
    z-index: 88;
}
.header-sec .navbar{
    position: sticky;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: var(--white);
    padding:15px 8px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.header-sec .container{
    max-width: 1440px;
}

.navbar ul{
    display: flex;
    align-items: center;
    gap: 38px;
}
.navbar ul li a{
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-transform: uppercase;
    
}
.navbar ul li.active a,
.navbar ul li a:hover{
    color: var(--green);
}
.navbar .navbar-brand img{
    height: 40px;
    width: auto;
    object-fit: contain;
}
.navbar-light .navbar-toggler{
    color: unset;
    border-color: unset;
    padding: 0px !important;
    border:unset;
}
.navbar-light .navbar-toggler:focus{
    box-shadow: unset !important;
}
.header-sec .btn-black{
    font-size: 14px;
    line-height: 16px !important;
}

/* ===== Footer ====== */
.footer-sec{
    background-color: #E2E2E2;
    padding: 60px 8px 30px;
}
.footer-sec .footer-logo img{
    height: 40px;
    filter: grayscale(1);
    opacity: 0.4;
}
.footer-sec a:hover{
    color: var(--green) !important;
}
.footer-sec .social-icons ul{
    display: flex;
    gap: 7px;
    align-items: center;
}
.footer-sec .cont-info a{
    color: rgba(0,0,0,0.6);
    font-weight: 500;
}
.footer-sec .social-icons ul li a{
    background-color: var(--darkgray);
    height: 29px;
    width: 29px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-sec .social-icons ul li a:hover{
    background-color: var(--green);
}
.fs-16{
    font-size: 16px;
    line-height: 19px;
}

.footer-sec h4{
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-sec .footer-menu ul li a{
    text-transform: capitalize;
    color: var(--gray);
    font-weight: 500;
}
.footer-sec .footer-menu ul li{
    margin-bottom: 14px;
}
.footer-sec .footer-menu ul li:last-child{
    margin-bottom: 0px;
}
.footer-sec .footer-menu-content{
    display: flex;
    justify-content: center;
}
.footer-sec .subscribe-info input{
    border-radius: 10px;
    background-color: var(--white);
    border:unset;
    padding: 10px 16px;
    color: var(--black);
    font-size: 16px;
    line-height: 19px;
    min-height: 40px;
}
input:focus,
textarea:focus{
    box-shadow: unset !important;
}
/* .footer-sec .btn-black{
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px !important;
} */
.footer-sec .btn-black img{
    width: 16px;
    height: 16px;
    
}

/* ==== Hero Section===== */
.hero-sec{
    padding: 125px 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-sec .hero-content p{
    max-width: 612px;
    margin: 0 auto 30px;
}
/* Introducing Royal Ring */

.ring-sec{
    overflow: hidden;
    padding-top: 200px;
    margin-top: -100px;
}
.royal-ring-info p{
    margin-bottom: 77px;
}
.ring-sec .ring-img img{
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}
.ring-sec .g-lg-5{
    --bs-gutter-x: 0 !important;
}
.ring-sec .row > div{
    padding: 0 15px;
}
/* About Us */
.lh-26{
    line-height: 26px;
}
.about-sec{
    scroll-margin-top: 150px;
}
.about-sec .about-box-info{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.about-sec .about-box-info .about-box{
    background-color: rgba(221, 221, 221, 0.4);
    border: 1px solid #CCCCCC;
    padding: 30px 14px;
    width: calc(20% - 12px);
    border-radius: 10px;
    text-align: center;
}

.about-sec .about-box-info .about-box .about-icon img{
    height: 44px;
    width: 44px;
    object-fit: contain;
}

.about-sec .about-box-info .about-box h4{
    margin-bottom: 12px;
}
.about-sec .mt-50{
    margin-top: 50px;
}
/* Our Journey */
.mb-40{
    margin-bottom: 40px;
}
.our-journey{
    padding: 0px 8px;
}
.journey-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}
.journey-details .journey-box{
    width: calc(50% - 20px);
    position: relative;
} 
.journey-details .journey-box::after{
    content: "";
    width: 60%;
    height: 1px;
    border-top:2px dashed var(--black) ;
    position: absolute;
    right: 5px;
    top: 35px;
    /* transform: translateY(-50%); */
}
.journey-details .journey-box:last-child:after,
.journey-details .journey-box:last-child::before{
    display: none;
}
.journey-details .journey-box::before{
    content: "";
    background-image: url(../images/home/share-icon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
    width: 18px;
    position: absolute;
    right: 83px;
    top: 25px;
    background-color: #ffffff;
    z-index: 9;
}

.journey-details .journey-box .date-icon{
    background-color: rgba(111, 111, 111, 0.1);
    height: 70px;
    width: 70px;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.journey-details .journey-box .date-icon img{
    width: 32px;
    height:32px;
    object-fit: contain;
}
.our-comp-sec .company-img{
    height: 100%;
}
.our-comp-sec .company-img img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.our-comp-sec .company-info{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.our-comp-sec .company-info .comp-details-btn {
    margin-top: auto;
}
.our-comp-sec .company-info .comp-details-btn .btn-black{
    padding: 18px 22px;
}
.our-comp-sec .company-info .mb-30:last-child{
    margin-bottom: 0px;
}
#careers{
    scroll-margin-top:80px
}

/* testimonial-sec */

.testimonial-sec {
    scroll-margin-top: 140px;
}
.testimonial-slider .testimonial-info {
    background-color: var(--white);
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    padding: 40px 36px;
}
.testimonial-slider .testimonial-info p{
    font-size: 18px;
    line-height: 34px;
}
.testimonial-slider .slick-track{
    display: flex;
    gap:30px;
}
.testimonial-slider .slick-list {
    display: flex;
}
.testimonial-slider .slick-dots{
    position: relative;
    bottom: unset;
    margin-top: 40px;
}
.testimonial-slider .slick-dots li button,
.testimonial-slider .slick-dots li button::before,
.testimonial-slider .slick-dots li{
    height: 15px;
    width: 15px;
}
.testimonial-slider .slick-dots li button::before{
    font-size: 15px;
    color: #A7A7A7;
}
.testimonial-slider .slick-dots li.slick-active button::before{
    color: var(--green);
}

.testimo-details .review-star img{
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Logos */
.logo-sec {
    padding: 60px 8px;
}

/* .logo-sec .logo-images-row{
    display: flex;
    column-gap: 30px;
    row-gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
} */

.logo-sec .logo-images-row a img{
    height: 87px;
    width: 159px;
    object-fit: contain;
}
/* .logo-sec .brand-logo .slick-track{
    display: flex;
    gap: 30px;
} */
/* .logo-sec .brand-logo .slick-track .logo-img{
    width: auto !important;
} */

/* Get In Touch */
.get-in-touch-sec {
    padding-bottom: 140px;
    scroll-margin-top: 40px;
}
.get-in-touch-sec .contact-information{
    max-width: 754px;
    width: 100%;
    margin: 0 auto;
}
.get-in-touch-sec label{
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: var(--black); 
    margin-bottom: 8px;
}
.get-in-touch-sec input,
.get-in-touch-sec textarea{
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.3);
    padding: 9px 16px;
    color: var(--black);
    font-size: 16px;
    line-height: 19px;
    min-height: 40px;
}
.get-in-touch-sec textarea{
    height: 120px;
}
.get-in-touch-sec .form-group{
    margin-bottom: 30px;
}

.team-sec .team-info-row{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.team-sec .team-info-row .team-box{
    width: calc(25% - 23px);
}
.team-sec .team-info-row .team-box .team-img{
    margin-bottom: 28px;
}
.team-sec .team-info-row .team-box .team-img img{
    height: 330px;
    width: 100%;
    object-fit: cover;
    border-radius: 21px;
}