@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --orange-01: #f26418;
    --orange-02: #ff673a;
    --orange-03: #ff7932;
    --dark-teal: #00334E;
    --black-01: #1a1a1a;
    --color-02: #676767;
    --color-03: rgb(255, 255, 255);
    --background-01:#fff;
    --background-02:#333;
    --background-03:#f8f5ff;
    --background-04:#fffaeee3;
    --white-op-01: rgb(46, 163, 176);
    --textcolor-01: #fff;
    --textcolor-02: #00334E;
    --textcolor-03: #a5a5a5;
    --textcolor-05: #e0e0e0;
    --lightblue: #a6d6ff;
    --lightblue-op: rgba(166, 214, 255, 0.26);
}

body {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.4rem;
    color: var(--textcolor-02);
    background-color: #ffffff;
    overflow-x: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}


.container {
    /*padding: 0 80px;*/
}

.container-fluid {
    margin: 0;
    padding: 0 !important;
}

.animate__animated{
    animation-duration: 2s;
}

.bg-color {
    background-color: var(--background-01);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
}


a:hover {
    color: var(--orange-01);
}

h1,h2,h3,h4,h5,h6 {
    color: var(--textcolor-02);
    margin: 0;
}

p {
    font-size: 16px;
    color: var(--textcolor-02);
    text-align: justify;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
    width: 100%;
}

.pd-top {
    padding-top: 80px;
}
.pd-bottom {
    padding-bottom: 80px;
}

section {
    background-color: var(--background-01);
}

.c-01 {
    opacity: .8;
}

.link {
    color: var(--orange-01);
    text-decoration: underline;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

    /*header Area*/

#header {
    position: absolute;
    z-index: 10;
    width: 100%;
    top: 0;
}


.top-logo {
    max-width: 150px;
    padding: 1rem;
}

.header-topper a {
    padding: 1rem 0;
}

/*header Area End*/

/*menu*/
#header .navbar {
    display: flex;
    justify-content: space-around;
    /*background-color: var( --background-01);*/
}

#header .navbar-light .navbar-nav .nav-link {
    display: block;
    padding: 20px 20px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    outline: none;
    color: white;
    transition-duration: 0.4s;
    position: relative;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}
.dropdown-toggle::after {
    color: var(--orange-01);
    display: none;
}

#navbarSupportedContent {
    justify-content: end;
    padding: 0 1rem;
}

#header .navbar-toggler {
    background-color: var(--orange-01);
    border-radius: 2px;
    padding: 6px;
}

#header .navbar-toggler-icon {
    background-image: url(../_frontend/img/icons/bar.png);
}
#header .navbar-light .navbar-toggler {
    color: transparent;
    border-color: transparent;
}
#header .dropdown-menu {
    border-radius: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition-duration: 0.5s;
    margin-top: 0.4rem;
    padding: 0;
    min-width: 12rem;
    background-color: white;
}
#header .dropdown-menu .dropdown-item {
    padding: 15px 20px;
    color: var(--textcolor-02);
    display: flex;
    align-items: center;
}

#header .dropdown-item:active {
    color: var(--textcolor-01);
    text-decoration: none;
}
#header .dropdown-item:hover, #header .dropdown-item:focus {
    color: var(--orange-01);
    background-color: rgba(248, 214, 175, 0.12);
    border-top: 1px solid #ffffff3b;
}
.dropdown-item i {
    font-size: .6rem;
    color: var(--orange-01);
    padding-left: 5px;
}

/* Submenu positioning */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Remove Bootstrap caret */
.custom-toggle::after {
    display: none !important;
}

/* Arrow style */
.submenu-arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when submenu is open */
.dropdown-submenu > .dropdown-menu.show ~ .submenu-arrow,
.dropdown-submenu.open .submenu-arrow {
    transform: rotate(90deg);
}

/* Desktop hover behavior */
@media (min-width: 992px) {
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}

/* Remove Bootstrap’s default caret if needed */
.custom-toggle::after {
    display: none !important;
}

/* Smooth submenu appearance */
.dropdown-menu {
    transition: all 0.3s ease;
}







/* Fullscreen slide with background */
.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-slide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}
.hero-content p {
    font-size: 1.3rem;
    color: #ddd;
    margin: 1rem 0 2rem;
    line-height: 1.7rem;
}

/* Smooth hover button */
.btn-org {
    display: inline-block;
    background: var(--orange-01);
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    /*border-radius: 30px;*/
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 2;
}
.btn-org::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    border-radius: inherit;
}
.btn-org:hover {
    color: var(--orange-01);
}
.btn-org:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.carousel-control-next-icon , .carousel-control-prev-icon {
    background-image: none;
}





    /* title */
.sec-title{
    color: var(--textcolor-02);
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.sec-title:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--orange-01);
    bottom: -6px;
}

.heading-title {
    color: var(--textcolor-02);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}
    /* title */



/*Loader*/
/*spinner*/
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/*ABOUT*/
.df-all {
    display: flex;
    align-items: start;
}
.icon-box {
    background-color: var(--orange-01);
    max-height: 80px;
    max-width: 80px;
    margin: 1rem 1rem 1rem 0;
}
.icon-box img {
    padding: 1rem;
}
/*Home-Services*/
#home-services {
    background-image: url(../_frontend/img/demo-img/2200.jpg);
    background-position: center;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
#home-services:before {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    z-index: 2;
    opacity: .9;
}

.home-services-container {
    position: relative;
    z-index: 2;
}


.service-box img {
    max-width: 80px;
}
.service-box {
    text-align: left;
    background-color: #FFFFFF;
    padding: 50px 40px 50px 40px;
    position: relative;
    transition: all .4s ease;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    height: 100%;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.07);
}

.service-box:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-size: 101% 101%;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    bottom: -101%;
    left: 0;
    z-index: 1;
}

.service-box:hover::before {
    background-color: #0B2B43;
    bottom: 0;
    left: 0;
}
.service-box-text {
    position: relative;
    z-index: 2;
}

.service-box-text h5 {
    transition: all .4s ease-in-out;
}

.service-box:hover .service-box-text h5 {
    color: var(--textcolor-01);
}

.service-box:hover .service-box-text p {
    color: var(--textcolor-01);
}

.service-box-active {
    background-color: #0B2B43;
}


.service-box-active .service-box-text p{
    color: var(--textcolor-01);
}

.service-box-active .service-box-text h5{
    color: var(--textcolor-01);
}

.link-more {
    color: var(--orange-01);
}
.link-more i {
    padding-left: .5rem;
}



.contact-box img {
    max-width: 50px;
}
.contact-box {
    text-align: left;
    background-color: #FFFFFF;
    padding: 1.5rem 2rem;
    transition: all .4s ease;
    height: 100%;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.07);
    border-left: 2px solid var(--orange-01);
}





/*Home-product*/

.product-wrapper{
    background-image: url(../_frontend/img/demo-img/jute/2150440642.jpg);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    background-position: center;
    border-radius: 0;
    text-align: center;
    padding: 4rem;
    position: relative;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.product-wrapper:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    background-color: #000000;
    opacity: .7;
    z-index: 2;
    height: 100%;
    width: 100%;
    border-radius: 0;
    transition: all .4s ease-in-out;
}

.product-wrapper-tx {
    position: relative;
    z-index: 3;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-wrapper-tx i{
    color: white;
    padding-left: 1.5rem;
    transition: all .4s ease-in-out;
}

.product-wrapper-tx h3 {
    color: var(--textcolor-01);
}

.product-wrapper:hover:after {
    background-color: #fb5c3f;
    opacity: 1;
}

.product-wrapper:hover .product-wrapper-tx i{
    padding-left: 2.5rem;
}

/* Media */
.img-div {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.img-div::after{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: var(--dark-teal);
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .5s;
}
.img-icon {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .5s;
    z-index: 1;
    transform: translateY(50px);
}
.img-div i {
    font-size: 2rem;
    color: var(--orange-01);
}

.img-div:hover::after{
    opacity: .8;
}
.img-div:hover .img-icon {
    opacity: 1;
    transform: translateY(0px);
}

.zoom img {
    transform: scale(1);
    transition: 0.4s ease-in-out;
}
.img-div:hover img {
    transform: scale(1.15);
}

/* Media */



    /*pre-footer*/
.pre-footer-box {
    background-image: url(../_frontend/img/demo-img/ezgif-317e944e664b1d.jpg);
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    background-position: top;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}
.pre-footer-box:after {
    top: 0;
    right: 0;
    position: absolute;
    content: "";
    background-color: #000000;
    opacity: .7;
    z-index: 2;
    height: 100%;
    width: 100%;
    border-radius: 0;
}

.pre-footer-box-info {
    position: relative;
    z-index: 3;
}

.pre-footer-box-info h3 {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 500;
}

.pre-footer-icon-div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.pre-footer-icon-box img {
    max-width: 80px;
    position: relative;
    z-index: 4;
    padding: .5rem;
}

.pre-footer-icon-box {
    position: relative;
    height: 80px;
    width: 80px;
}

.pre-footer-icon-box:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--orange-02);
    z-index: 3;
    top: 0;
    border-radius: 10px;
    rotate: 45deg;
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.28);
}

.pre-footer-icon-div h4 {
    font-size: 1.5rem;
    color: white;
    margin-top: 2rem;
}
/*pre-footer*/


/* <!--------- Footer ------> */
.logo-footer {
    width: 100%;
    display: flex;
    justify-content: center;
}
.logo-footer img {
    width: 50%;
}
.pt-footer-bottom-list {
    padding: 0 0 60px;
    margin-top: -60px;
    position: relative;
    z-index: 9;
}


footer {
    font-size: 14px;
    position: relative;
}

footer li {
    padding: 4px 0;
    color: white;
}

footer::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: black;
    opacity: 0.95;
    z-index: 2;
}

footer::after {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
    background-repeat: no-repeat;
    margin-bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-size: cover;
    background-image: url(../_frontend/img/demo-img/3092.jpg);
    height: 100%;
    width: 100%;
    background-attachment: fixed;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer .logo {
    max-width: 150px;
    text-align: center;
    margin-bottom: .4rem;
}

footer p{
    padding: 10px 0 0 0;
    color: white;
    margin: 0;
}

footer h3, h4 {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

footer h3 {
    font-size: 2.5rem;
}

footer h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

footer h5 {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.footer-icon li i{
    padding-right: 1rem;
    color: var(--orange-01);
}

.footer-links li a{
    color: white;
    transition: all .3s ease-in-out;
}
.footer-links li a:hover{
    color: var(--orange-01);
}
.footer-line {
    border-top: 1px solid #113c4c;
    color: #507f97;
}
.footer-line a {
    color: #395868;
}

.footer-links i {
    padding-right: 1rem;
    color: var(--orange-01);
}
.social-icons ul {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 1rem;
}

.social-icons ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    cursor: pointer;
    height: 40px;
    width: 40px;
    list-style: none;
    margin-right: 1rem;
    position: relative;
    transition: .6s;
    background-color: #1a2d37;
}

.social-icons ul li:hover {
    background-color: #223b49;
}

.social-icons ul li a {
    transition: .4s;
}

.social-icons ul li:hover a {
    color: var(--orange-01);
}


/*BREADCRUMB*/
.breadcrumb-img {
    background-image: url(../_frontend/img/demo-img/3092.jpg);
    height: 50vh;
    position: relative;
    color: #fff;
    padding: 140px 0 100px 0;
    background-color: #fafafa;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.breadcrumb-img:before {
    position: absolute;
    content: '';
    background-color: #0d1113;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .8;
    z-index: 1;
}
.breadcrumb-text-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.breadcrumb-text-wrap h2 {
    color: var(--textcolor-01);
    font-size: 4em;
}
.breadcrumb-text-wrap span {
    color: var(--orange-01);
    font-size: 1.5em;
    text-transform: uppercase;
}
/*BREADCRUMB*/



/* COURSES */
.mission-detail {
    background-color: var(--background-01);
    padding: 50px 40px 20px 40px;
    box-shadow: 0 0 20px rgb(0 0 0 / 9%);
    margin-bottom: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}


.mission-detail h5 {
    font-weight: 600;
    text-align: start;
    padding: 10px 0;
    font-size: 2rem;
}

.mission-detail p {
    padding: 1rem 0;
    border-top: 1px solid var(--background-03);
    border-bottom: 1px solid var(--background-03);
    height: 100%;
    display: flex;
    align-items: center;
}

.mission-detail img {
    width: 80px;
}








/*CONTACT PAGE*/
.contact-title h6 {
    color: var(--orange-01);
}
.contact-title h4 {
    font-weight: 600;
    color: var(--dark-teal);
}
.contact-title {
    margin-bottom: 2rem;
}



.contact-info-box
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--color-03);
    padding: 2rem;
    border-radius: 5px;
    /*box-shadow: 0 0 20px rgb(0 0 0 / 9%);*/
    height: 100%;
}

.contact-info-box i {
    font-size: 3.5rem;
    color: var(--orange-01);
    padding-bottom: 20px;
    position: relative;
}
.contact-info-box h6 {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact_form {
    padding: 0 20px;
    /*border: 1px solid var(--navy-01);*/
}

.contact_form .form-control {
    border-radius: 0;
}

.form-select {
    border-radius: 0;
}
.form-select:focus {
    border: 1px solid #ced4da;
    box-shadow: 0 0 0 0.25rem rgba(222, 222, 222, 0.05);
}

.contact_form .form-control:focus {
    color: #888;
    background-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(117, 117, 117, 0.11);
    border: 1px solid #999;
}

.form-check {
    margin: 1rem 0;
}

.form-check a{
    font-weight: 600;
}

#contact-us .pre-footer-icon-box {
    margin-bottom: 1.5rem;
}

#contact-us .pre-footer-icon-box img{
    padding: 1rem;
}

button.btn-org:hover {
    color: var(--orange-01);
}
/*CONTACT PAGE*/




/*Apparel Page*/

.filter-btn {
    color: var(--orange-01);
    font-size: 1.2em;
    padding: .5em .9em;
    background-color: white;
    border: transparent;
    outline: none;
    border-radius: 0;
    transition: .3s all ease-in-out;
}
.filter-btn:hover {
    color: #666666;
    background-color: white;
}
.filter-btn:focus, .filter-btn.active {
    background-color: var(--orange-01);
    color: white;
}

.element-item {
    padding: 12px;
}

.isotope-item {
    padding-bottom: 1.5rem;
}
.work {
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.work-box {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.work-box::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-color: var(--dark-teal);
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .4s;
    z-index: 1;
    transform: translateY(-380px);
}

.work-box .zoom {
    height: 100%;
}


.work-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
    width: 100%;
    height: 100%;
    bottom: 0;
    opacity: 0;
    transition: all .5s;
    transform: translateY(-300px);
}
.work-text a{
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -100px;
    text-align: center;
    padding: 20px;
    font-family: 'Hind', sans-serif;
    color: var(--orange-01);
}


.work-view {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .5s;
    z-index: 3;
    transform: translateY(150px);
}

.work-view a {
    color: var(--orange-01);
    font-size: 2.3rem;
    transition: all .5s;
}
.work-view a:hover {
    /*background-color: var(--white-01;*/
    transform: scale(.8);
}

.work-box:hover::after {
    transform: translateY(0px);
    opacity: .8;
}

.work-box:hover .work-view {
    opacity: 1;
    transform: translateY(50px);
}
.work-box:hover .work-text {
    opacity: 1;
    transform: translateY(0px);
}
.zoom img {
    transform: scale(1);
    transition: 0.4s ease-in-out;
}

.work-box:hover img {
    transform: scale(1.15);
}
/*Apparel Page*/

/* GO TO TOP    */
.top-div {
    position: relative;
    z-index: 100;
}
.top-div .animate__animated {
    animation-duration: .5s;
}
.top{
    --offset: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    place-self: end;
    margin-top: calc(100vh + var(--offset));
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1rem;
    color: var(--textcolor-01);
    background: var(--orange-01);
    border: 1px solid transparent;
    border-radius: 50%;
    white-space: nowrap;
    transition: all 1s ease;
    box-shadow: 0 0 3px rgba(134, 41, 5, 0.66);
}
.top:hover{
    background: var(--background-01);
    border: 1px solid var(--orange-01);
    color: var(--orange-01);
}
/* GO TO TOP    */











/*Media Query*/
@media (max-width: 1200px) {
    .container{
        padding: 0 10px;
    }
    #navbarSupportedContent {
        padding: 0 .6rem;
    }
    .header-topper .top-logo {
        max-width: 130px;
        padding: 10px;
    }
    #header .navbar-light .navbar-nav .nav-link {
        padding: 20px 10px;
        font-size: 12px;
    }

    /*Pre-footer*/
    .pre-footer-box-info h4 {
        font-size: 1.2rem;
        font-weight: 500;
    }


}

@media (max-width: 992px) {
    /*.wallpaper {*/
    /*    padding-top: 5rem;*/
    /*}*/
    #header .navbar {
        border-radius: 10px;
    }
    .header-topper .top-logo {
        padding: 16px;
    }
   .pc-nav .container {
        padding: 0;
    }
    .header-text {
        font-size: 2.8rem;
        font-weight: 600;
    }

    .header-text-02 {
        font-size: 1.5rem;
    }

    .heading-title {
        font-size: 2rem;
    }

    .btn-org,.btn-blue {
        font-size: 14px;
        font-weight: 400;
        padding: 10px 20px;
    }

    .title span {
        display: none;
    }
    .title {
        font-size: 3rem;
    }
    .pd-top {
        padding-top: 40px;
    }

    .pd-bottom {
        padding-bottom: 40px;
    }

    .title {
        margin: 80px 0 40px 0;
    }

    /*About-home*/
    #home-about:before {
        width: 100%;
    }
    #home-about:after {
        width: 100%;
    }

    .compare-box {
        padding: 2rem;
    }
    .compare-box img {
        margin-top: 0;
        margin-bottom: 2rem;
    }


    #navbarSupportedContent {
        justify-content: end;
        padding: 0 1rem;
        background-color: white;
    }

    #header .navbar-light .navbar-nav .nav-link {
        color: var(--textcolor-02);
    }

    .nav-link.dropdown-toggle.show:focus {
        color: var(--orange-01);
    }


}

@media (max-width: 767px) {

    .prd-range-box p {
        font-size: 14px;
        text-align: initial;
    }
    .carousel .carousel-control-prev, .carousel .carousel-control-next {
        width: 10%;
    }

    .hero-content {
        margin: 0 2.5rem;
    }
}


@media (max-width: 576px) {
    #header .navbar-toggler {
        margin-right: 20px;
    }
    /*About-home*/
    .about-box {
        padding: 1rem;
    }
    .about-box-tx {
        font-size: 1.3rem;
    }

    /*Safety info*/
    .info-details {
        font-size: 14px;
    }
    .info-details ul li {
        font-size: 14px;
    }

    /*Mission*/
    .mission-detail {
        padding: 1.5rem;
    }

    .mission-detail img{
        width: 60px;
    }

    .hero-content p {
        text-align: initial;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2.2rem;
        font-weight: 500;
    }
    .hero-content p {
        font-size: 1rem;
    }

    /*About-home*/
    .about-box {
        padding: 1rem;
    }
    .about-box-tx {
        font-size: 1rem;
    }
}

