/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Luggage lock
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header
3. Banner Section
4. Benefit Section
5. Secure Section
6. Price Section
7. Conatct Section
8. Work Section
9. Different Section
10. About Section
11. Safety Section
12. Footer Section
*/

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Rajdhani', sans-serif;
}

:root { 
    --e-global-color-primary: #353535;
    --e-global-color-secondary: #ffad00;
    --e-global-color-text: #727272;
    --e-global-color-accent: #353535;
	--e-global-color-white: #ffffff;
    --e-global-color-black: #000000;
    --e-global-color-bright-yellow: #fbba2d;
    --e-global-color-light-gray: #f9f9f9;
    --e-global-color-light-bright-yellow: #fbbc36;
    --e-global-color-light-gray-border: #f6f6f6;
    --e-global-color-light-grayish-blue: #d8e7f2;
    --e-global-color-pure-red: #ff0000;
}

h1{
    font-size: 74px;
    line-height: 78px;
    font-weight: 700;
}
h2{
    font-size: 50px;
    line-height: 56px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
h3{
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
}
h4{
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
}
h5{
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
}
h6{
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}
p{
    font-size: 22px;
    line-height: 28px;
    font-weight: 400;
}
.text-size-14{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
a {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
}
.default-btn {
    padding: 18px 40px;
    border-radius: 4px;
    display: inline-block;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}
.default-btn:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.hover-effect {
    transition: all 0.3s ease-in-out;
}
.hover-effect:hover {
    transform: translateY(-5px);
}
html{
    scroll-behavior: smooth;
}

/* Home Page */

.banner_outer {
   background-image: url('../images/banner-background.png');
   position: relative;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   height: 1168px;
}
.header {
    padding: 40px 0px;
    position: relative;
    z-index: 2;
}
.navbar-collapse ul{
    text-align: center;
    align-items: center; 
    display: inherit; 
}
.navbar-expand-lg{
    position: relative;
    z-index: 1;
}
.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav li {
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-nav .nav-item a{
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: -0.2px;
    word-spacing: -0.2px;
    text-transform: uppercase;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item a:hover{
    color: var(--e-global-color-accent) !important;
    background-color: transparent;
}
.navbar-nav .active > a{
    color: var(--e-global-color-accent) !important;
}
.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
    min-width: 220px;
}
.navbar-nav .dropdown-menu {
    background-color: var(--e-global-color-white);
    position: absolute;
    left: 0;
    top: 35px;
    padding: 0;
    border: none;
    border-radius: 4px;
    box-shadow: 0 30px 50px 20px rgb(0 0 0 /15%);
}
.navbar-nav .drop-down-pages .nav-item:first-child a:hover {
    border-radius: 4px 4px 0 0;
}
.navbar-nav .drop-down-pages .active:first-child > a {
    border-radius: 4px 4px 0 0;
}
.navbar-nav .drop-down-pages .nav-item:last-child a:hover {
    border-radius: 0 0 4px 4px;
}
.navbar-nav .drop-down-pages .active:last-child > a {
    border-radius: 0 0 4px 4px;
}
.navbar-nav .drop-down-pages li{
    margin: 0;
    border-bottom: 1px solid var(--e-global-color-white);
}
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    padding: 7px 20px;
    position: relative;
    color: var(--e-global-color-primary) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .drop-down-pages li:hover::after {
    display: none;
}
.navbar-nav .nav-item .dropdown-item:hover{
    padding: 7px 40px;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .active > a{
    padding: 7px 40px;
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-nav .drop-down-pages .dropdown-item:hover::before{
    content: "\f105";
    font-size: 12px;
    left: 20px;
    position: absolute;
    font-family: "Font Awesome 5 free";
    color: var(--e-global-color-white);
}
.navbar-nav .drop-down-pages .active > a:before {
    content: "\f105";
    font-size: 12px;
    left: 20px;
    position: absolute;
    font-family: "Font Awesome 5 free";
    color: var(--e-global-color-white);
}
.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}
.navbar-nav .drop-down-pages li:last-child{
    border: none !important;
}
.social_icon{
    margin-left: 10px;
}
.social_icon li {
    margin: 0 4px;
    display: inline-block;
}
.social_icon li:first-child{
    margin-left: 0;
}
.social_icon li:last-child{
    margin-right: 0;
}
.social_icon li i {
    font-size: 16px;
    height: 38px;
    width: 38px;
    line-height: 38px;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    color: var(--e-global-color-white);
    background-color: transparent;
    border: 1px solid var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.social_icon li:hover i{
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}

/*  Banner */

.banner-section{
    padding: 114px 0 150px;
    overflow: hidden;
}
.banner-section .banner_content h6 {
    margin-bottom: 26px;
    padding: 10px 37px;
    border-radius: 22px;
    display: inline-block;
    position: relative;
    background: var(--e-global-color-bright-yellow);
}
.banner-section .banner_content h1 {
    margin-bottom: 16px;
}
.banner-section .banner_content p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}
.banner-section .banner_content .btn_wrapper a {
    margin-right: 12px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    border: 1px solid transparent;
}
.banner-section .banner_content .btn_wrapper .contact_us {
    background: transparent;
    border: 1px solid var(--e-global-color-white);
}
.banner-section .banner_content .btn_wrapper a:hover {
    color: var(--e-global-color-accent);
    background: var(--e-global-color-white);
}
.banner-section .banner_wrapper{
    position: relative;
}
.banner-section .banner_wrapper .banner-image{
    position: absolute;
    top: -112px;
    right: -360px;
}

/* Benefit */

.benefit-section {
    padding-bottom: 134px;
    margin-top: -70px;
    z-index: 1;
}
.benefit-section h2{
    text-align: center;
    margin-bottom: 40px;
}
.benefit-section .benefit-box{
    padding: 60px 86px 62px;
    position: relative;
    text-align: center;
    border-radius: 4px;
    background: var(--e-global-color-light-gray);
    border: 1px dashed transparent;
    transition: all 0.3s ease-in-out;
}
.benefit-section .benefit-box:hover{
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 60%);
}
.benefit-section .benefit-box::before{
    content: "";
    width: 48px;
    height: 24px;
    background: url(../images/benefit-halfcircle.png);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.benefit-section .benefit-box .icon{
    margin-bottom: 30px;
}
.benefit-section .benefit-box h4{
    color: var(--e-global-color-primary);
}

/* Secure */

.secure-section {
    padding: 124px 0 134px;
    background: var(--e-global-color-light-gray);
}
.secure-section .secure_wrapper{
    position: relative;
}
.secure-section .secure_wrapper figure{
    position: relative;
    top: 10px;
    display: inline-block;
    background: var(--e-global-color-black);
    border-radius: 5px;
}
.secure-section .secure_wrapper figure img{
    opacity: 95%;
    border-radius: 4px;
}
.secure-section .secure_wrapper .secure-image1{
    position: absolute;
    left: -415px;
}
.secure-section .secure_wrapper .secure-image2{
    position: relative;
    right: -28px;
}
.secure-section .secure_content{
    padding-left: 8px;
}
.secure-section .secure_content h2{
    margin-bottom: 22px;
}
.secure-section .secure_content p{
    font-size: 22px;
    line-height: 34px;
}
.secure-section .secure_content .text1{
    margin-bottom: 46px;
}
.secure-section .secure_content .read_more{
    padding: 18px 42px;
}

/* Pricing */

.pricing-section{
    padding: 126px 0 130px;
}
.pricing-section h2{
    text-align: center;
    margin-bottom: 44px;
}
.pricing-section .pricing-box{
    padding: 44px 26px 30px;
    position: relative;
    text-align: center;
    border-radius: 4px;
    background: var(--e-global-color-light-gray);
    border: 1px dashed transparent;
    transition: all 0.3s ease-in-out;
}
.pricing-section .pricing-box:hover{
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 60%);
}
.pricing-section .pricing-box::before{
    content: "";
    width: 31px;
    height: 15px;
    background: url(../images/pricing-halfcircle.png);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.pricing-section .pricing-box .icon{
    margin-bottom: 30px;
}
.pricing-section .pricing-box h4{
    color: var(--e-global-color-primary);
}
.pricing-section .pricing-box .text{
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 22px;
    display: block;
    color: var(--e-global-color-primary);
}
.pricing-section .pricing-box ul{
    padding: 28px 5px 16px 30px;
    margin-bottom: 26px;
    border-radius: 4px;
    background: var(--e-global-color-primary);
}
.pricing-section .pricing-box ul li{    
    margin-bottom: 11px;
}
.pricing-section .pricing-box ul li:last-child{    
    margin-bottom: 0;
}
.pricing-section .pricing-box ul span{
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: var(--e-global-color-white);
}
.pricing-section .pricing-box ul .hour{
    width: 50%;
    float: left;
    text-align: left;
}
.pricing-section .pricing-box ul .money{
    font-weight: 600;
    color: var(--e-global-color-secondary);
}
.pricing-section .pricing-box .book_now{
    padding: 12px 30px;
    background: var(--e-global-color-secondary);
}
.pricing-section .pricing-box .book_now:hover{
    background: var(--e-global-color-primary);
}

/* Contact */

.contact-section{
    background-image: url(../images/contact-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.contact-section .contact_content .circle{
    width: 484px;
    height: 484px;
    border-radius: 300px;
    text-align: center;
    position: relative;
    display: table;
    background: var(--e-global-color-white);
    z-index: 1;
}
.contact-section .contact_content .circle .content {
    position: relative;
    top: 10px; 
    padding: 0 65px;
    display: table-cell;
    vertical-align: middle;
}
.contact-section .contact_content .circle .content h2{
    margin-bottom: 20px;
}
.contact-section .contact_content .circle .content .contact_us{
    padding: 18px 42px;
}
.contact-section .contact_content{
    padding: 78px 0 98px;
    position: relative;
}
.contact-section .contact_content .contact-circle{
    width: 484px;
    height: 484px;
    line-height: 484px;
    bottom: 70px;
    border-radius: 300px;
    text-align: center;
    position: absolute;
    background: var(--e-global-color-light-bright-yellow);
}
.contact-section .contact_wrapper{
    position: relative;
}
.contact-section .contact_wrapper .contact-sunimage{
    position: relative;
    display: inline-block;
    top: 152px;
    left: 8px;
}
.contact-sunimage img {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}
.contact-section .contact_wrapper .contact-image{
    position: absolute;
    top: 31px;
    right: -396px;
}

/* Work */

.work-section{
    padding: 185px 0 195px;
    position: relative;
    background: var(--e-global-color-white);
}
.work-section .work_wrapper .work-image{
    position: absolute;
    left: -58px;
    top: -62px;
}
.work-section .work_content h2{
    margin-bottom: 30px;
}
.work-section .work_content ul{
    margin-bottom: 50px;
    padding-left: 115px;
}
.work-section .work_content ul li{
    margin-bottom: 34px;
    position: relative;
}
.work-section .work_content ul li .image{
    position: absolute;
    left: -114px;
}
.work-section .work_content ul li .work-icon{
    position: relative;
    top: 4px;
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 100px;
    text-align: center;
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.work-section .work_content ul li .work-icon:hover{
    transform: translateY(-5px);
}
.work-section .work_content ul li .work-icon::before{
    content: "";
    position: absolute;
    border: 1px dashed var(--e-global-color-secondary);
    height: 65px;
    top: 83px;
    left: 40px;
}
.work-section .work_content ul li:last-child .work-icon::before{
    display: none;
}
.work-section .work_content ul li .content h4{
    color: var(--e-global-color-primary);
}
.work-section .work_content ul li .content p{
    padding-right: 10px;
    color: var(--e-global-color-text);
}
.work-section .work_content ul li:last-child{
    margin-bottom: 0;
}
.work-section .work_content .book_now{
    padding: 18px 46px;
}

/* Different */

.different-section{
    overflow: hidden;
    position: relative;
    background: var(--e-global-color-light-gray);
}
.different-section .different-image{
    position: absolute;
}
.different-section .different_content{
    padding: 122px 0 126px;
}
.different-section .different_content h2{
    margin-bottom: 32px;
}
.different-section .different_content ul{
    margin-bottom: 46px;
    padding-left: 52px;
}
.different-section .different_content ul li{
    margin-bottom: 34px;
    position: relative;
}
.different-section .different_content ul li .icon{
    position: absolute;
    left: -50px;
}
.different-section .different_content ul li i{
    position: relative;
    font-size: 18px;
    top: 4px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.different-section .different_content ul li i:hover{
    transform: translateY(-5px);
}
.different-section .secure_provide_content ul li .content h4{
    color: var(--e-global-color-white);
}
.different-section .secure_provide_content ul li .content p{
    color: var(--e-global-color-text);
}
.different-section .secure_provide_content ul li:last-child{
    margin-bottom: 0;
}
.different-section .different_content .book_now{
    padding: 18px 48px;
}

/* About */

.about-section {
    position: relative;
    padding: 122px 0 130px;
}
.about-section h2 {
    text-align: center;
    margin-bottom: 45px;
}
.about-section .box1{
    padding: 40px 26px 42px;
    position: relative;
    text-align: center;
    border-radius: 4px;
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 60%);
    transition: all 0.3s ease-in-out;
}
.about-section .box1:hover{
    transform: translateY(-5px);
}
.about-section .box1 h5{
    font-weight: 500;
    margin-bottom: 14px;
}
.about-section .box1 .number{
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    display: block;
    margin-bottom: 11px;
}
.about-section ul {
    margin-bottom: 18px;
}
.about-section ul li {
    display: inline-block;
    margin: 0 1px;
}
.about-section ul li:first-child {
    margin-left: 0;
}
.about-section ul li:last-child {
    margin-right: 0;
}
.about-section ul li i {
    font-size: 16px;
    color: var(--e-global-color-secondary);
}
.about-section .box1 .text{
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}
.about-section .box1 .all_review{
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-secondary);
    border-bottom: 1px solid var(--e-global-color-secondary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.about-section .box1 .all_review:hover{
    color: var(--e-global-color-primary);
    border-bottom: 1px solid var(--e-global-color-primary);
}
.about-section .box2{
    padding: 30px 25px 30px 32px;
    border-radius: 4px;
    background: var(--e-global-color-light-gray);
    border: 1px dashed transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.about-section .box2:hover{
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
}
.about-section .box2 ul {
    margin-bottom: 15px;
}
.about-section .box2 h6{
    font-weight: 600;
    margin-bottom: 6px;
}
.about-section .box2 .text{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
}
.about-section .box2 .heading{
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.about-section .box2 .hour{
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
}
#abouttestimonialcarousel .carousel-control-prev{
    position: relative;
    left: -40px;
    top: 188px;
    width: 63px;
    height: 63px;
    line-height: 65px;
    font-size: 20px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    border-radius: 100px;
    opacity: 1;
    padding: 0 10px;
    font-weight: bold;
    display: inline-block;
}
#abouttestimonialcarousel .carousel-control-next{
    position: relative;
    right: -28px;
    top: 110px;
    width: 63px;
    height: 63px;
    line-height: 65px;
    font-size: 20px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    border-radius: 100px;
    opacity: 1;
    padding: 0 10px;
    font-weight: bold;
    display: inline-block;
}
#abouttestimonialcarousel .carousel-control-prev:hover,
#abouttestimonialcarousel .carousel-control-next:hover {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-white);
}
.about-section .pagination-outer{
    position: absolute;
    right: -136px;
    top: -26px;
}

/* Safety */

.safety-section{
    background-image: url(../images/safety-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 122px 0 126px;
}
.safety-section .safety-sideimage{
    position: absolute;
    left: 0;
    bottom: 0;
}
.safety-section .safety_content{
    padding: 0 60px;
}
.safety-section .safety_content h2{
    margin-bottom: 20px;
}
.safety-section .safety_content p{
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 28px;
}
.safety-section .safety_content .book_now{
    padding: 18px 46px;
}
.safety-section .safety_content .book_now:hover{
    color: var(--e-global-color-primary);
    background: var(--e-global-color-white);
}

/* Footer */

.footer-section{
    background: var(--e-global-color-white);
    position: relative;
    overflow: hidden;
}
.footer-section .middle-portion{
    padding: 105px 0 76px;
}
.footer-section .middle-portion .logo-heading{
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 10px;
}
.footer-section .middle-portion .footer-text{
    font-size: 20px;
    line-height: 28px;
    margin-right: 12px;
    margin-bottom: 10px;
}
.footer-section .middle-portion .contact{
    padding-left: 12px;
}
.footer-section .middle-portion .heading{
    margin-bottom: 14px;
}
.footer-section .middle-portion .contact .content{
    margin-bottom: 12px;
}
.footer-section .middle-portion .contact h6{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--e-global-color-secondary);
}
.footer-section .middle-portion .contact p{
    font-size: 20px;
    line-height: 24px;
    color: var(--e-global-color-text);
}
.footer-section .middle-portion a{
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .link li{
    margin-bottom: 12px;
}
.footer-section .middle-portion li:last-child{
    margin-bottom: 0 !important;
}
.footer-section .middle-portion a:hover{
    color: var(--e-global-color-secondary);
}
.footer-section .middle-portion .email-form{
    padding-left: 30px;
}
.footer-section .middle-portion .email-form .heading{
    margin-bottom: 24px;
}
.footer-section .middle-portion .email-form input {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 20px 12px;
    margin-bottom: 26px;
    border-radius: 4px;
    width: 100%;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 100%);
    overflow: visible;
    border: 1px solid transparent;
    outline: none;
}
.footer-section .middle-portion .email-form input::placeholder {
    white-space: break-spaces;
}
.footer-section .middle-portion .email-form input:focus {
    border: 1px solid var(--e-global-color-secondary);
}
.footer-section .middle-portion .email-form button {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    padding: 16px 18px;
    top: 6px;
    right: 6px;
    border-radius: 4px;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    float: right;
    position: absolute;
    overflow: visible;
    outline: none;
    border: none;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .email-form button:hover {
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.footer-section .middle-portion .social-icons li{
    display: inline-block;
    margin: 0 2px;
}
.footer-section .middle-portion .social-icons li:first-child{
    margin-left: 0;
}
.footer-section .middle-portion .social-icons li:last-child{
    margin-right: 0;
}
.footer-section .middle-portion .social-icons i{
    font-size: 16px;
    height: 38px;
    width: 38px;
    line-height: 38px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-secondary);
    border: 1px solid var(--e-global-color-secondary);
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .social-icons a:hover i{ 
    color: var(--e-global-color-white);   
    border: 1px solid var(--e-global-color-secondary);
    background-color: var(--e-global-color-secondary);
    transform: translateY(-5px);
}
.footer-section .copyright {
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid var(--e-global-color-light-gray-border);
}
.footer-section .copyright span{
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

/* About Page */

.sub_banner_outer{
    position: relative;
    height: 790px;
    background-image: url(../images/sub-bannerbackground.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.sub-banner-section{
    padding: 60px 0;
}
.sub-banner-section .sub_banner_content{
    text-align: center;
}
.sub-banner-section .sub_banner_content .box {
    margin-bottom: 26px;
    padding: 11px 36px 7px;
    border-radius: 22px;
    display: inline-block;
    text-align: center;
    background: var(--e-global-color-bright-yellow);
}
.sub-banner-section .sub_banner_content .box span {
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    display: inline-block;
    color: var(--e-global-color-white);
}
.sub-banner-section .sub_banner_content .box .oblique {
    display: inline-block;
    margin: 0 15px;
}
.sub-banner-section .sub_banner_content h1 {
    margin-bottom: 14px;
}
.sub-banner-section .sub_banner_content p {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    padding: 0 260px;
}

/* Carry */

.carry-section {
    padding-bottom: 108px;
    margin-top: -50px;
    z-index: 1;
}
.carry-section .carry_wrapper{
    position: relative;
}
.carry-section .carry_wrapper .carry-image{
    position: absolute;
    left: -172px;
    top: -14px;
}
.carry-section .carry_content{
    padding-left: 30px;
}
.carry-section .carry_content h2{
    margin-bottom: 22px;
}
.carry-section .carry_content p{
    font-size: 22px;
    line-height: 34px;
}
.carry-section .carry_content .text1{
    margin-bottom: 40px;
}
.carry-section .carry_content .book_now{
    padding: 18px 46px;
}

/* Service */

.service-section {
    padding: 134px 0;
    background: var(--e-global-color-light-gray);
}
.service-section .service-box {
    padding: 34px 30px;
    margin-bottom: 28px;
    border-radius: 4px;
    position: relative;
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 60%);
    transition: all 0.3s ease-in-out;
}
.service-section .service-box:hover {
    transform: translateY(-5px);
}
.service-section .service-box .icon {
    position: absolute;
}
.service-section .service-box i {
    position: relative;
    font-size: 18px;
    top: 4px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.service-section .service-box i:hover {
    transform: translateY(-5px);
}
.service-section .service-box .content {
    width: 94%;
    padding-left: 50px;
}

/* Video carousel */

.video-section{
    padding-top: 138px;
}
.video-section .image{
    position: relative;
    transition: all 0.3s ease-in-out;
}
.video-section .image .video-icon{
    display: none;
}
.video-section .owl-carousel .item .image .video-icon:hover{
    transform: translateY(-5px);
}
.video-section .owl-carousel .active.center .item .image .video-icon img{
    transform: scale(1);
}
.video-section .owl-carousel .center .item .image .video-icon{
    display: block;
    position: absolute;
    width: 106px;
    height: 106px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 100px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.video-section .owl-carousel {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.video-section .owl-carousel .item {
    text-align: center;
}
.video-section .owl-carousel .item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease; /* Add a smooth transition for zoom effect */
}
.video-section .owl-carousel .item .video-image {
    transform: scale(.7);
    border-radius: 4px;
    position: relative;
}
.video-section .owl-carousel .item .video-image img{
    height: 423px;
}
.video-section .owl-carousel .item .video-image::after {
    content: "";
    background-color: rgba(0, 0, 0, 20%); /* Adjust the RGBA values and opacity as needed */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.video-section .owl-carousel .owl-item.center .video-image {
    transform: scale(1.0);
    position: relative;
    border-radius: 4px;
    margin: 0 -30px;
}
.video-section .owl-carousel .owl-item.center .video-image img {
    border-radius: 4px;
}
.video-section .owl-carousel .owl-item.center .video-image::after {
    content: "";
    background-color: rgba(0, 0, 0, 20%); /* Adjust the RGBA values and opacity as needed */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.aboutpage-about{
    padding: 126px 0 130px;
}

/* Faq's Page */

.faq-section {
    margin-top: -70px;
    z-index: 1;
}
.faq-section h2{
    text-align: center;
    margin-bottom: 45px;
}
.faq-section .accordion-card{
    margin-bottom: 32px;
    width: 100%;
    border-radius: 4px;
    background: var(--e-global-color-light-gray);
    border: 1px dashed transparent;
    transition: all 0.3s ease-in-out;
}
.faq-section .accordion-card:last-child{
    margin-bottom: 0;
}
.faq-section .accordion-card.active {
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 60%);
}
.faq-section .accordion-card .card-header .btn:not(.collapsed) {
    border: none;
}
.faq-section .accordion-card.active .card-header .btn:focus-visible{
    outline: none;
    border: none;
    box-shadow: none;
}
.faq-section .accordion-card h4{
    margin-bottom: 0;
    display: inline-block;
    color: var(--e-global-color-primary);
    outline: none;
    border: none;
    box-shadow: none;
}
.faq-section .accordian-inner p{
    font-size: 22px;
    line-height: 32px;
    color: var(--e-global-color-text);
}
.faq-section .accordian-inner .card-header {
    padding: 22px 30px 20px 36px;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-section .accordian-inner .card-body {
    padding: 0 42px 20px 38px;
}
.faq-section .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-section .accordian-inner .accordion-card i{
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.faq-section .accordian-inner .accordion-card .btn {
    padding: 0;
    text-decoration: none;
    text-align: left;
    display: block;
    color: var(--e-global-color-white);
}
.faq-section .accordion-card a.btn.btn-link {
    position: relative;
    padding: 0;
    border: none;
}
.faq-section .accordion-card .btn-link:before {
    content: "\f068";
    font-size: 22px;
    right: 0px;
    top: 0;
    position: absolute;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    color: var(--e-global-color-primary);
}
.faq-section .accordion-card .collapsed:before {
    content: "\2b";
    color: var(--e-global-color-primary);
}
.faqpage-about {
    padding: 132px 0 130px;
}

/* Contact Page */

.contactpage-section {
    margin-top: -58px;
    z-index: 1;
}
.contactpage-section .contact_boxescontent{
    margin-bottom: 70px;
}
.contactpage-section .contact-box{
    padding: 30px 28px 26px;
    height: 188px;
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 4px;
    background: var(--e-global-color-light-gray);
    border: 1px dashed transparent;
    transition: all 0.3s ease-in-out;
}
.contactpage-section .contact-box:hover{
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 60%);
}
.contactpage-section .contact-box::before{
    content: "";
    width: 14px;
    height: 27px;
    background: url(../images/contact-halfcircle.png);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
}
.contactpage-section .contact-box .icon{
    float: left;
    width: 30%;
}
.contactpage-section .contact-box .icon .contact-icon{
    position: relative;
    top: 8px;
    transition: all 0.3s ease-in-out;
}
.contactpage-section .contact-box .icon .contact-icon:hover{
    transform: translateY(-5px);
}
.contactpage-section .contact-box .content{
    position: relative;
    padding-left: 14px;
    padding-top: 3px;
    display: inline-block;
    width: 70%;
}
.contactpage-section .contact-box h6{
    font-weight: 600;
    color: var(--e-global-color-primary);
}
.contactpage-section .contact-box p{
    font-size: 20px;
    line-height: 28px;
    color: var(--e-global-color-text);
}
.contactpage-section .contact-box .content a {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    display: inline-block;
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}
.contactpage-section .contact-box .content a:hover {
    color: var(--e-global-color-secondary);
}
.contactpage-section .contact-info{
    padding: 30px 34px 40px;
    position: relative;
    display: inline-block;
    border-radius: 4px;
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 60%);
    transition: all 0.3s ease-in-out;
}
.contactpage-section .contact-info h2{
    margin-bottom: 16px;
    color: var(--e-global-color-primary);
}
.form_style::placeholder{
    color: var(--e-global-color-text);
}
.contactpage-section .contact-info .form-group{
    margin-bottom: 22px;
}
.contactpage-section .contact-info input {
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    padding: 14px 20px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-light-grayish-blue);
    border-radius: 4px;
    width: 100%;
    overflow: visible;
    outline: none;
}
.contactpage-section .contact-info .message{
    margin-bottom: 20px;
}
.contactpage-section .contact-info textarea {
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    padding: 18px 20px;
    height: 156px;
    width: 100%;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-light-grayish-blue);
    border-radius: 4px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contactpage-section .contact-info input:focus {
    border: 1px solid var(--e-global-color-bright-yellow);
}
.contactpage-section .contact-info textarea:focus {
    border: 1px solid var(--e-global-color-bright-yellow);
}
.contactpage-section .contact-info span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-top: 10px;
    display: block;
    color: var(--e-global-color-pure-red);
}
.contactpage-section .contact-info .send_now{
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
    padding: 18px;
    text-align: center;
    display: inline-block;
    border-radius: 4px;
    width: 100%;
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
    border: none;
    outline: none;
}
.contactpage-section .contact-info .send_now:hover{
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.contactpage-section .map iframe {
    width: 100%;
    height: 618px;
    border-radius: 5px;
}
.contactpage-section .map iframe:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.contactpage-about{
    padding: 120px 0 130px;
}

/* Work Page */

.workpage-section {
    margin-top: -70px;
    z-index: 1;
}
.workpage-section h2{
    text-align: center;
    margin-bottom: 45px;
}
.workpage-section .content2{
    padding: 132px 0;
}
.workpage-section .content3{
    padding-bottom: 0 !important;
}
.workpage-section .work_wrapper .work-image{
    position: relative;
    width: 445px;
    height: 445px;
    line-height: 445px;
    border-radius: 250px;
    text-align: center;
    background: var(--e-global-color-white);
    border: 1px dashed var(--e-global-color-secondary);
    box-shadow: 10px 0 68px rgba(237, 237, 237, 60%);
    transition: all 0.3s ease-in-out;
}
.workpage-section .content2 .work-image{
    float: right;
}
.workpage-section .work-wrap{
    position: relative;
}
.workpage-section .work-wrap::before{
    position: absolute;
    content: '';
    width: 15px;
    height: 100%;
    background-image: url(../images/work-dotedimage.png);
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
.workpage-section .content2 .work_content::before{
    display: none !important;
}
.workpage-section .work_content span{
    font-size: 34px;
    font-weight: 600;
    width: 65px;
    height: 65px;
    line-height: 65px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 100px;
    display: inline-block;
    color: var(--e-global-color-white);
    background: var(--e-global-color-secondary);
}
.workpage-section .work_content h4{
    font-size: 34px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--e-global-color-primary);
} 
.workpage-section .work_content p{
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 10px;
}
.workpage-section .button{
    padding-top: 86px;
    text-align: center;
}
.workpage-section .button .book_now {
    padding: 18px 46px;
}
.workpage-about {
    padding: 128px 0 130px;
}

/* 404 */

.otherpageone_outer{
    height: 890px;
}
.otherpageone_outer .sub-banner-section {
    padding: 140px 0;
}
.oop_footer-section{
    margin-top: -30px;
}

/* Coming Soon */

.comingsoon_outer{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
    background-color: var(--e-global-color-secondary);
    background-image: url(../images/sub-bannerbackground.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.comingsoon_outer .logo_outer{
    min-height: 120px;
}
.comingsoon_outer .comingsoon_section {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content h1 {
    font-size: 94px;
    line-height: 98px;
    margin-bottom: 30px;
}
.comingsoon_outer .sub_banner_content p {
    font-weight: 500;
    margin-bottom: 10px;
}
.comingsoon_outer .sub_banner_content form{
    display: flex;
    align-items: center;
    justify-content: center;
}
.comingsoon_outer .sub_banner_content .form-group{
    margin-bottom: 30px;
}
.comingsoon_outer .sub_banner_content input {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding: 16px;
    width: 540px;
    position: relative;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-white);
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: visible;
    outline: none;
}
.comingsoon_outer .sub_banner_content button {
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    padding: 17.5px 30px;
    top: 0;
    right: 0;
    position: absolute;
    color: var(--e-global-color-white);
    background: var(--e-global-color-primary);
    border: 1px solid transparent;
    border-radius: 4px;
    overflow: visible;
    outline: none;
    transition: all 0.3s ease-in-out;
}
.comingsoon_outer .sub_banner_content input:focus {
    border: 1px solid var(--e-global-color-primary);
}
.comingsoon_outer .sub_banner_content button:hover {
    color: var(--e-global-color-primary);
    background: transparent;
    border: 1px solid var(--e-global-color-primary);
}
.comingsoon_outer .sub_banner_content .social-icon li {
    display: inline-block;
    margin: 0 4px;
}
.comingsoon_outer .sub_banner_content .social-icon li:first-child {
    margin-left: 0;
}
.comingsoon_outer .sub_banner_content .social-icon li:last-child {
    margin-right: 0;
}
.comingsoon_outer .sub_banner_content .social-icon i {
    font-size: 16px;
    height: 38px;
    width: 38px;
    line-height: 38px;
    border-radius: 100px;
    text-align: center;
    color: var(--e-global-color-white);
    border: 1px solid var(--e-global-color-white);
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
.comingsoon_outer .sub_banner_content .social-icon a:hover i {
    color: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-white);
    background-color: var(--e-global-color-white);
    transform: translateY(-5px);
}
.footer_copyright {
    margin-top: auto;
    display: flex;
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid rgb(255 255 255 /15%);
}
.footer_copyright span {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: var(--e-global-color-white);
}

/* Back to top button */

#button {
    display: inline-block;
    background-color: #ffbe00;
    width: 65px;
    height: 65px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 60px;
    right: 80px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;    
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;  
    text-decoration: none; 
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 22px;
    line-height: 22px;
    color: #FFF;
    font-weight: 600;
}
#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    transform: translateY(-5px);
}
@-webkit-keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgba(255, 190, 0)
}
to {
    box-shadow: 0 0 0 45px rgba(250, 87, 51, .01)
}
}

@keyframes spineer {
from {
    box-shadow: 0 0 0 0 rgba(255, 190, 0)
}
to {
    box-shadow: 0 0 0 45px rgba(250, 87, 51, .01)
}
}

/* PRELOADER */ 

.js {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #ffbe00;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.preloader-speeding-wheel {
    width: 49px;
    height: 49px;
    margin: 0 auto;
    border: 3px solid rgb(0, 0, 0);
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: cssload-spin 575ms infinite linear;
    -o-animation: cssload-spin 575ms infinite linear;
    -ms-animation: cssload-spin 575ms infinite linear;
    -webkit-animation: cssload-spin 575ms infinite linear;
    -moz-animation: cssload-spin 575ms infinite linear;
}

@keyframes cssload-spin {
100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@-o-keyframes cssload-spin {
100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@-ms-keyframes cssload-spin {
100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@-webkit-keyframes cssload-spin {
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}

@-moz-keyframes cssload-spin {
100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
}
}