/* 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;
    --orange:#FF9326;
}
.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;
}
.ft-20{
    font-size: 20px;
    line-height: 32px;
}


.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(--orange);
    transition: 0.3s ease-in-out;
    border: 1px solid var(--orange);
}
.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(--orange);
}
.navbar .navbar-brand img{
            height: 25px;
    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: 31px;
    filter: grayscale(1);
    opacity: 0.4;
}
.footer-sec a:hover{
    color: var(--orange) !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(--orange);
}
.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;
}
/* 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;
}




/* 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;
}



.service-section{
    padding: 100px 0;
}
.service-section .service-row{
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 32px;
}
.service-section .service-row .service-box{
    width: calc(33.33% - 22px);
    text-align: center;
    padding: 30px 22px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
}
.service-section .service-row .service-box .service-img{
    width: 70px;
    height: 70px;
    border-radius: 4px;
    background: #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
}
.service-section .service-row .service-box h4{
    margin-bottom: 10px;
}

.about-section {
    padding-bottom: 100px;
}
.about-section .about-img{
    position: relative;
    padding-right: 25px;
    height: 100%;
}
.about-section .about-img img:nth-of-type(1){
    height: 100%;
    width: 80%;
    border-radius: 15px;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.about-section .about-img img:nth-of-type(2){
    position: absolute;
    right: 20px;
    bottom: 50px;
    height: 160px;
    width: 100%;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: 15px;
    width: 50%;
}
.about-section .about-content{
    padding: 40px 0;
}

.core-section {
    padding-bottom: 100px;
    margin-top: -120px;
    padding-top: 120px !important;
}
.core-section .container{
    padding: 50px;
    border-radius: 20px;
    background: #F6F6F6;

}
.core-section .core-content{
    padding-right: 30px;
    padding-top: 30px;
}
.core-section .core-box-list{
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 16px;
}
.core-section .core-box{
    text-align: center;
    width: calc(50% - 8px);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 34px rgba(0,0,0,0.05);
    padding: 24px 13px 20px;
}
.core-section .core-box h4{
    margin-bottom: 8px;
}
.core-section .core-box .number-text{
    font-size: 72px;
    line-height: 70px;
    font-weight: 700;
    color: rgba(0,0,0,0.1);
    margin-bottom: 4px;
    position: relative;
}
.core-section .core-box .number-text:after{
    content: '';
    width: 156px;
    height: 18px;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    background: #fff;
    z-index: 22;
    position: absolute;
}
.core-section .core-box .number-text:before{
    content: '';
    width: 100px;
    height: 18px;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    background: #fff;
    z-index: 18;
    box-shadow:  0 -6px 14px rgba(0,0,0,0.07);
    position: absolute;
}

.our-company-section .company-row .company-img{
    height: 100%;
    position: relative;
}
.our-company-section .company-row .company-img img{
    position: absolute;
    width: calc(100% - 40px);
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.our-company-section .company-row .company-content{
    padding-bottom: 236px;
}
.our-company-section .company-row.join-row{
    margin-top: -140px;
}
.our-company-section .company-row.join-row .company-content{
    padding-bottom: 0;
    padding-top: 200px;
}
.our-company-section .company-row.join-row .company-img img{
    right: 0;
}

.testimonial-section{
    padding-top: 100px;
}
.testimonial-section .testimonial-slider{
    margin-bottom: 0 !important;
}
.testimonial-section .testimonial-box .testimonial-box-content{
    padding: 0 12px;
}
.testimonial-section .testimonial-box .test-content{
    padding: 40px 30px 24px;
    border-radius: 15px;
    background: #F6F6F6;
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px;
}
.testimonial-section .testimonial-box .test-content p{
    margin-bottom: 6px;
}
.testimonial-section .testimonial-box .test-content img{
    width: 94px;
    margin-left: auto;
}
.testimonial-section .testimonial-box .test-content:before{
    content: '';
    position: absolute;
    background-image: url(../images/home/quote-icon.svg);
    width: 55px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: -20px;
    left: 30px;
}
.testimonial-section .testimonial-box .test-content:after{
    content: '';
    position: absolute;
    width: 29px;
    height: 33px;
    background-image: url(../images/home/tringle-shape.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: calc(100% - 2px);
    left: 30px;
}
.testimonial-section .test-user{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-left: 6px;
}
.testimonial-section .test-user img{
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 56px;
    flex-shrink: 0;
}
.testimonial-section .test-user .name{
    font-size: 18px;
    font-weight: 700;
}
.testimonial-section .slick-dots{
    position: unset;
    margin-top: 50px;   
}
.testimonial-section .slick-dots li button:before{
    font-size: 13px;
    color: #FF9326;
}