* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

:root {
    --main-radius: 5px;
    --main-padding: 5px
}

@font-face {
    font-family: Lato-Regular;
    src: url(../fonts/Lato-Regular.ttf);
}

body {
    font-family: Lato-Regular;
}

.contanier {
    display: grid;
    height: 100vh;
    padding: 1em;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 0.2fr 1.5fr 1.2fr 0.8fr;
    grid-template-areas:
        "nav nav nav nav"
        "siderbar main main main "
        "siderbar content1 content2 content3 "
        "siderbar footer footer footer";
    grid-gap: 0.2rem;
    font-size: 800;
    /* text-transform: uppercase; */
    font-size: 12px;


}

.background {
    background-color: #0e2044;
    /* height: fit-content; */

    /* width: 100%;
    height: 100vh;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat; */
}

nav {
    background-color: #212d50;
    grid-area: nav;
    border-radius: var(--main-radius);
    padding-top: var(--main-padding);
    padding: 1.2em;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 1;
    width: 97%;
    margin: 0% auto;
    /* align-items: center; */
    border-radius: 10px;
    transform: translateY(-17px);
}

nav i {
    font-size: 20px;
    color: white;

}

/* .icon {
    background-color: #c59c40;
    padding: 0.6em;
    width: 3%;
    border-radius: 20px 10px;

} */

.trackA a {
    text-decoration: none;
    color: white;
    padding: 0.3em;
    border-radius: 5px;
    border: none;
    font-size: 20px;
}

.color a {
    color: white;
}


.footer-background {
    height: fit-content;
}

.track a {
    text-align: center;
    background-color: #c09838;
    padding: 0.6em;
    color: black;
    font-size: 17px;
    border-radius: 10px;
    transition: all ease-in-out 500ms 200ms;
    background-image: linear-gradient(to right, #dbbc78, white);
    border: 1px solid #c69d41;

}

.track:hover {
    transform: scaleY(110%);
}

.track {
    margin-top: 1em;



}

a {
    text-decoration: none;
}


.headr-text {
    font-size: 20px;
    color: white;
}

.headr-text span {
    color: #c59c40;
    font-size: 17px;
}



main {
    grid-area: main;
    padding: 1em;

}

/* body{


} */

.main-style {
    border: 1px solid #c59c40;
    box-shadow: 2px 2px 2px rgba(46, 46, 59, 0.5);
    width: 27%;
    padding: 0.4em;
    border-radius: 10px;

    color: white;
    word-spacing: 5px;
    margin-top: 6em;
}

.main-style span {
    position: relative;
    left: 20px;
    bottom: 1px;
}

.box {
    background-color: green;
    height: 10px;
    position: relative;
    top: 10px;
    width: 10px;
    border-radius: 50%;
    animation: box 2s forwards infinite alternate;


}


@keyframes box {
    50% {
        transform: scale(1.3);


    }

    100% {
        transform: scale(1);

    }

}

.main-text {
    font-size: 50px;
    text-transform: none;
    font-weight: bold;
    color: white;

}

.main-text span {
    color: #917b49;
}

.main-textA {
    font-size: 19px;
    color: white;
    margin-top: 1em;
    line-height: 1.5em;
}



.main-small-background {
    font-size: 19px;
    border: 1px solid #c59c40;
    box-shadow: 5px 2px 5px rgba(153, 153, 165, 0.5);
    height: 67px;
    color: white;
    margin-top: 2em;
    width: 30%;
    transform: translateX(200%);
    padding: 0.7em;
    border-radius: 15px;
}

.main-small-background span {
    position: relative;
    left: 1.5em;
    bottom: 0.3em;
}

.from-style form {
    margin-top: 2em;
}

.from-style i {
    position: relative;
    left: 1.5em;
    color: white;
}

.from-style input {
    padding: 1.1em;
    width: 38%;
    border: none;
    font-size: 17px;
    border-radius: 10px;
    border: 1px solid #c59c40;
    box-shadow: 5px 2px 5px rgba(153, 153, 165, 0.5);
    background: none;
    color: white;

}

.from-style button {
    padding: 1em;
    width: 18%;
    color: black;
    border: none;
    font-size: 17px;
    border-radius: 10px;
    box-shadow: 5px 2px 5px rgba(62, 62, 71, 0.5);
    margin-left: 1em;
    background-image: linear-gradient(to right, #dbbc78, white);
    border: 1px solid #c69d41;


}

.track a {
    text-decoration: none;

}

.bg-imge img {
    margin-top: 2em;
    /* width: 100%;
    padding: 0.4em; */
}

.bgsuccess {
    background-color: #917b49;
    padding: 0.2em;
    border-radius: 5px;
    color: white;
}

.main-contant {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 1.6em;
    color: white;
    font-size: 17px;
    line-height: 1.5em;
}



#content1 {
    background-color: blueviolet;
    grid-area: content1;
}

#content2 {
    background-color: burlywood;
    grid-area: content2;
}

#content3 {
    background-color: chocolate;
    grid-area: content3;
}

#siderbar {
    grid-area: siderbar;
    line-height: 3.2em;
    padding: 1em;
    font-size: 16px;
    margin-top: 2em;

}

#siderbar a {
    text-align: center;
    background-color: #c09838;
    padding: 0.2em;
    color: black;
    font-size: 17px;
    border-radius: 10px;
    transition: all ease-in-out 500ms 200ms;
    background-image: linear-gradient(to right, #dbbc78, white);
    border: 1px solid #c69d41;
    font-weight: 200;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1em;
}

/* #siderbar a:hover {
    text-decoration: underline #5e5b55;
    margin-top: 1em;
    padding: 0.5em;
} */

footer {
    background-color: darkcyan;
    grid-area: footer;
}

.text {
    text-align: center;
    color: #c59c40;
    word-spacing: 0.3em;
    font-size: 21px;
    margin-top: 3em;
    text-transform: uppercase;
}

.textA {
    font-size: 46px;
    font-weight: 900;
    text-align: center;
    margin-top: 0.4em;
}

.textB {
    font-size: 19px;
    text-align: center;
    margin-top: 0.4em;
}

.displayflex {
    display: flex;
    justify-content: space-between;
    width: 90%;
    gap: 2em;
    margin: 5% auto;
}

.flexA {
    border: 1px solid rgb(214, 212, 212);
    width: 100%;
    height: 200px;
    border-radius: 10px;
    padding: 1em;
}

.flexA:hover {
    background-image: linear-gradient(to right, #f8efdc, white);
    border: 1px solid #c69d41;

}

.spanA {
    margin-top: 2em;
    line-height: 2em;
}

.spanE {
    font-weight: 100;
    font-size: 22px;
}

.fottergg ul li {
    list-style: none;
    line-height: 2.3em;
}

ul li {
    text-decoration: none;
    color: white;
}

.flexA img {
    background: none;
    height: 50px;
    border-radius: 10px;

}


.flexB {
    border: 1px solid rgb(214, 212, 212);
    width: 100%;
    height: 200px;
    border-radius: 10px;
    padding: 1em;
}

.flexB:hover {
    background-image: linear-gradient(to right, #f8efdc, white);
    border: 1px solid #c69d41;

}

.flexB img {
    background: none;
    height: 50px;
    border-radius: 10px;
}

.spanB {
    margin-top: 2em;
    line-height: 2em;
}

.spanW {
    font-weight: 100;
    font-size: 22px;
}

.flexC {
    border: 1px solid rgb(214, 212, 212);
    width: 100%;
    height: 200px;
    border-radius: 10px;
    padding: 1em;
}

.flexC:hover {
    background-image: linear-gradient(to right, #f8efdc, white);
    border: 1px solid #c69d41;
}

.spanC {
    margin-top: 2em;
    line-height: 2em;
}

.spanQ {
    font-weight: 100;
    font-size: 22px;
}

.flexC img {
    background: none;
    height: 50px;
    border-radius: 10px;
}


.background-col {
    background-color: #f8f9fd;
    height: 600px;
    /* margin-bottom: 3em; */
}

.background-colA {
    background-color: #0a1527;
    height: 400px;
    padding: 1em;
    width: 90%;
    margin: 0% auto;
    border-radius: 17px;
    /* margin-top: 20em; */
}


/* Fixed translation icon at the top-right */
#translate-btn {
    position: fixed;
    bottom: 20px;
    /* top: 10px; */
    left: 10px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    font-size: 24px;
    color: #333;
    transition: background 0.3s;
}



#translate-btn:hover {
    background: #f0f0f0;
}

/* Hide Google Translate default banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


.background-style {
    color: #c59c40;
    text-align: center;
    padding-top: 4em;
    /* padding: 4em; */
    font-size: 18px;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.background-colA .span {
    text-align: center;
    font-size: 50px;
    margin-top: 0.3em;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
}

.background-colA .spanp {
    text-align: center;
    margin: 1% auto;
    line-height: 1.4em;
    letter-spacing: 2px;
    color: white;
    width: 47%;
}

.link-flex {
    display: flex;
    justify-content: space-between;
    width: 30%;
    margin: 5% auto;
}

.linkA {
    color: white;
    font-size: 19px;
    background-color: #c09838;
    padding: 0.9em;
    border-radius: 10px;

}

.linkA:hover {
    box-shadow: 1px 6px 19px #fcdf9b;
}

.linkB {
    color: white;
    font-size: 19px;
    background-color: #232f3f;
    padding: 0.9em;
    border-radius: 10px;
}

.linkB:hover {
    box-shadow: 1px 6px 19px #232f3f;
}

.footer-background {
    background-color: #0a1527;
    height: 325px;
    padding: 3em;
}

.footerA {
    /* align-items: center; */
    color: white;


}

.footerA span {
    color: #dbbc78;
    font-size: 20px;


}

.footerA img {
    transform: translateX(-20px);
    transform: translateY(20px);

}

.footerA ul li {
    margin-top: 1em;
    list-style: none;

}

/* .del {
    width: 70%;
    text-align: left;
    margin-left: em;
} */

.QuickA ul li {
    margin-top: 1em;
    list-style: none;

}

.exs {
    color: rgb(214, 212, 212);
}

.line {
    background-color: black;
}

.cont ul li {
    margin-top: 1em;
    list-style: none;


}

.fol ul li {
    margin-top: 1em;
    list-style: none;

}

.footer-flex {
    display: flex;
    justify-content: space-between;
    padding-left: 1em;
    /* text-align: center; */
    margin-top: 1em;
    /* align-items: center; */
    color: rgb(223, 221, 221);
    width: 80%;
    font-weight: 500;
    margin-right: 7em;


}

.footer-flex i {
    color: #c59c40;
}

.footer-flex a:hover {
    color: #c59c40;
}

.footer-flex a {
    color: rgb(221, 220, 220);
}

/* styling for track section */

.tr-flex {
    display: flex;
    justify-content: space-between;
    width: 80%;
    /* margin-top: 2em; */
    /* position: absolute; */
    align-items: center;
    font-size: 23px;
    padding: 0.4em;
    color: white;
    border-radius: 15px;
    /* position: relative; */
    /* position: fixed; */
    /* z-index: 1; */
    margin-left: 5em;

}

.parentA {
    text-align: center;
    color: white;
    font-size: 49px;
    font-weight: 600;
    margin-top: 0.5em;
}

.parentB {
    text-align: center;
    color: white;
    font-size: 17px;
    margin-top: 0.5em;
}

/* .btn {
    font-size: 17px;
    width: 10%;
    padding: 0.7em;
    background: none;
    border: none;
} */

.btnA {
    color: white;
    font-size: 19px;
    background-color: #c69d41;
    padding: 0.8em;
    border-radius: 10px;
    border: none;
}

.btnA:hover {
    box-shadow: 1px 6px 19px #c69d41;
    transition: all ease-in-out 300ms;
}

.bt-form {
    text-align: center;
    margin-top: 3em;

}

/* .bt-form input{

} */

.bt-form input {
    color: white;
    font-size: 19px;
    background-color: #232f3f;
    border: none;
    padding: 0.9em;
    width: 50%;
    border-radius: 10px;

}

.bt-form input:hover {
    box-shadow: 1px 6px 19px #232f3f;
    /* border: 1px solid #c69d41; */
}

.tr-flex span {
    color: #d39d20;
}

.li-flex {
    display: flex;
    justify-content: space-between;
    column-gap: 2em;
    font-size: 16px;

}

.tr-flex a {
    align-items: center;

}

.st-li {
    transition: all ease-in-out 500ms 200ms;
    background-color: #c69d41;
    padding: 0.6em;
    color: white;
    border-radius: 17px;
    font-size: 19px;
}

.st-li:hover {

    box-shadow: 1px 6px 19px #c69d41;

}

.li-flex a {
    color: rgb(187, 185, 185);
}

.li-flex a:hover {
    color: white;
}

.hero-blackground {
    background-color: #0a1527;
    height: 500px;
    /* position: relative; */
}



.parent {
    text-align: center;
    color: white;
    margin-top: 3.2em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c59c40;

}

/* styling for track section */


/* styling for services section */

.hero-blackgroundA {
    background-color: #0a1527;
    height: 400px;
    /* position: relative; */
}

.sh-text {
    text-align: center;
    color: #dbbc78;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5em;

}

.sh-textA {
    text-align: center;
    color: white;
    font-size: 50px;
    font-weight: 600;

}

.sh-textB {
    color: rgb(211, 210, 210);
    width: 31%;
    text-align: center;
    margin: 1% auto;
}


.bn-background {
    background-color: #f8f9fd;
    height: 600px;
}

.bn-backgroundA {
    background-color: white;
    width: fit-content;
    height: fit-content;
    margin: 0% auto;
    padding: 3em;
    border-radius: 5px;
    box-shadow: 1px 2px 8px #232f3f;


}

.bn-backgroundA i {
    background-color: #c69d41;
    width: 7%;
    padding: 0.8em;
    border-radius: 50%;
    height: 36px;
    color: white;
}

.bn-backgroundA span {
    text-transform: uppercase;
    font-size: 19px;
}

/* .inline-form {} */

.inline-flexx {
    display: flex;
    justify-content: space-between;
    width: 60%;
    font-size: 18px;
    line-height: 1.7em;

    /* Makes all direct children flex items, aligning them horizontally */
    /* align-items: center; */
    /* Vertically centers the items */
    gap: 5em;
    /* Adds space between form elements */
}

/* Optional: Add some basic styling for input fields and buttons */
.inline-flexx input {

    padding: 0.5em;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;

}

.inline-flexx input:focus {
    outline: 1px solid #c69d41;
}



.inline-form button {
    border: none;
    color: white;
    font-size: 18px;
    padding: 0.6em;
    border-radius: 10px;
    width: 100%;
    margin-top: 1rem;
    background-color: #c69d41;


}

.inline-form button:hover {
    box-shadow: 1px 6px 19px #c69d41;

}


.inline-flexx select {

    padding: 0.5em;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;


}


.inline-flexx select:focus {
    outline: 1px solid #c69d41;
}




/* styling for services section */


/* order tracking*/
.hero-blackgroundC {
    background-color: #0a1527;
    height: 110px;
}

.or-background {
    background-color: #ccc;
    height: 70px;
    margin: 4% auto;
    padding: 2em;
    text-transform: uppercase;
    color: #b88612;
    font-size: 20px;
    width: 80%;
    border-radius: 10px 4px 6px;

}

.custom-loader {
    width: 50px;
    height: 50px;
    display: grid;
    border-radius: 50%;
    /* -webkit-mask: radial-gradient(farthest-side, #0000 40%, #000 41%); */
    background:
        linear-gradient(0deg, #F4294080 50%, #F42940FF 0) center/4px 100%,
        linear-gradient(90deg, #F4294040 50%, #F42940BF 0) center/100% 4px;
    background-repeat: no-repeat;
    animation: s3 1s infinite steps(12);

}

.custom-loader::before,
.custom-loader::after {
    content: "";
    grid-area: 1/1;
    border-radius: 50%;
    background: inherit;
    opacity: 0.915;
    transform: rotate(30deg);

}

.custom-loader {
    margin: 0% auto;
    margin-top: 20em;
}

.custom-loader::after {
    opacity: 0.83;
    transform: rotate(60deg);

}

@keyframes s3 {
    100% {
        transform: rotate(1turn)
    }
}

.loader {
    background-color: #0a1527;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 2;
    animation: loader 4s ease-in-out forwards;

}

.Contact-form input {
    width: 80%;
}

.d-flex span {
    color: #b88612;
    font-size: 30px;
}

.fs-5 {
    text-align: justify;
    width: 80%;
}




@keyframes loader {
    50% {
        background-color: #0a1527;
        /* Start color */




    }

    100% {
        background: none;
        /* End color */

    }

}

.or-backgroundA {
    background-color: #0a1527;
    height: fit-content;
    margin: 0% auto;
    padding: 2em;
    /* font-size: 20px; */
    width: 80%;
    transform: translateY(-56px);
    border-radius: 4px 6px;
    color: white;
}

.br-flex {
    display: flex;
    justify-content: space-between;
    line-height: 2em;
}



.process {
    background-color: green;
    padding: 0.5em;
    animation: process 2s forwards infinite alternate;
    height: 40px;
    position: relative;
    top: 10px;
    border-radius: 5px;
    width: 100px;
    text-align: center;


}

.Payment {
    line-height: 1.5em;
    text-align: justify;
}


.line {
    height: 11px;
    background-color: red;
    margin-top: 1.4em;

}

.pack-img img {
    width: 30%;
    align-items: center;
    height: 420px;
}


.icon-f i {
    margin: 0% auto;
    background-color: red;
    height: 43px;
    width: 50px;
    padding: 0.9em;
    border-radius: 50%;
    transform: translateY(49px);
    transform: translateX(500px);
    animation: process 2s forwards infinite alternate;


}

.fl-text {
    text-align: center;
    font-size: 20px;
}


.icon-f {
    transform: translateY(-30px);

}

.btt {
    width: 30%;
    color: black;
    border: none;
    font-size: 19px;
    border-radius: 5px;
    box-shadow: 5px 2px 5px rgba(62, 62, 71, 0.5);
    margin-left: 1em;
    background-image: linear-gradient(to right, #dbbc78, white);
}

.danger {
    width: 80%;
    height: 70px;
}

.circle-box {
    background-color: red;
    height: 16px;
    width: 20px;
    transform: translateY(-100px);
    transform: translateX(630px);
    animation: circle-box 2s forwards infinite alternate;



}

@keyframes circle-box {
    50% {
        transform: scale(1.2);
        background-color: #ccc;


    }

    100% {
        transform: scale(1);

    }

}



@keyframes icon-f {
    50% {
        transform: scale(1.2);
        color: #ccc;


    }

    100% {
        transform: scale(1);

    }

}



@keyframes process {
    50% {
        transform: scale(1.2);
        color: #ccc;


    }

    100% {
        transform: scale(1);

    }

}

#myModal i {
    color: red;
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    /* distance from bottom */
    right: 20px;
    /* distance from right */
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b358;
}

/* Optional: icon size */
.whatsapp-icon {
    font-size: 30px;
}

.bi {
    width: 8%;
}

#exampleFormControlTextarea1 {
    width: 80%;
    resize: none;
}

/* .gi-wid {
    width: 100%;
} */
















/* order tracking*/


/* for delivered item */
.bg-black {
    background-color: black;
    height: fit-content;
    margin-top: 1em;
    padding: 2em;
}

.card {
    margin: 0% auto;

}

.color {
    background-color: #0a1527;
    color: #917b49;
}

.bg-success {
    color: white;
    padding: 0.2em;
    margin-left: 1em;
    border-radius: 5px;
}



.flag {
    width: 10%;
}

/* for delivered item */



/* for About-Us */

.c-hold {

    background-image: url(../images/carrgo.jpg);
    width: 100%;
    height: 100vh;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 3em;


}


.c-hold h3 {
    color: white;
    text-align: center;
    font-size: 50px;
}

.wo-text {
    width: 90%;
    margin: 3% auto;
}

.wo-text span {
    font-size: 32px;
    font-weight: bold;
}

.wo-text p {
    font-size: 20px;
    line-height: 2em;
    text-align: justify;
    width: 70%;
}

.img-fluid img {
    width: 70%;
}

.bg-greey {
    background-color: #0a1527;
    width: 100%;
    height: 200px;
    text-align: center;
}

.bg-greey h1 {
    color: white;
}

.bg-greey p {
    color: white;
    font-size: 18px;
}


.icc-icon i {
    border: 2px solid #232f3f;
    padding: 1.5em;
    width: 79px;
    height: 70px;
    border-radius: 50%;
}

.icc-icon i:hover {
    background-color: #232f3f;
    color: white;
}

.bb-ff {
    text-align: center;
    margin: 4% auto;
    width: 50%;
}

.card-img-top {
    background-color: #dfc7c7;
}

.footer-background {
    background-color: #212d50;
    height: fit-content;
}

.progress-show {
    width: 75%;
}





/* .img-fluid {
    width: 80%;
} */

/* for About-Us */




/* loading page */

/* Loader full-screen overlay */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 9999;
}

/* Spinning animation */
.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* loading page */


.float {
    animation: float 3s ease-in-out infinite;

}

.right img {
    width: 100%;
    max-width: 500px;
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
}



@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }

}

footer {
    background: #111;
    color: white;
    padding: 25px;
    text-align: center;
}





@media only screen and (max-width:550px) {
    .contanier {
        grid-template-columns: 1fr;
        grid-template-rows: 0.4fr 0.4fr 2.2fr 1.2fr 1.2fr 1.2fr 1fr;
        grid-template-areas:
            "nav"
            "main"
            "siderbar"
            "content1"
            "content2"
            "content3"
            "footer"
        ;
    }


    .main-small-background {
        transform: translateX(18%);
        margin-top: 1em;
        width: 80%;


    }

    .from-style form {
        display: grid;
    }

    .from-style input {
        width: 100%;
        padding: 1.5em;
    }

    .from-style form button {
        width: 90%;
        margin-top: 1em;
    }

    .from-style form i {
        position: relative;
        right: 19em;
        top: 2.9em;
    }

    .main-style {
        width: 65%;
    }

    .contanier {
        height: 170vh;
    }

    .displayflex {
        flex-direction: column;
    }

    .background-colA .spanp {
        width: 100%;
        text-align: justify;
        padding: 1em;
    }

    .link-flex {
        width: 100%;
        flex-direction: column;
        gap: 1em;
    }

    .background-colA {
        height: fit-content;
    }

    .footer-flex {
        flex-direction: column;
        height: 600px;

    }

    .footer-background {
        height: fit-content;
    }

    .tr-flex {
        margin-left: 2em;
        flex-direction: column;
        line-height: 1.9em;
    }

    .hero-blackground {
        height: fit-content;
        padding: 1em;
    }

    .parentB {
        padding: 0.2em;
    }

    .parentA {
        padding: 0.1em;
        font-size: 40px;
    }

    .hero-blackgroundA {
        height: fit-content;
        padding: 2.3em;
    }

    .sh-textB {
        width: 80%;
    }

    .inline-flexx {
        flex-direction: column;
    }

    .inline-flexx select {
        width: 160%;
    }

    .bn-backgroundA i {
        width: 15%;
        padding: 0.8em;
        height: 36px;
    }

    .bn-backgroundA {
        padding: 2em;
    }

    .bn-background {
        height: fit-content;
    }

    .from-style button {
        width: 90%;
        margin-top: 1em;
    }

    .hero-blackgroundC {
        height: 200px;
    }

    .br-flex {
        flex-direction: column;

    }

    .or-backgroundA {
        height: fit-content;
    }

    .pack-img img {
        width: 100%;
        height: 300px;
    }

    .main-contant {
        flex-direction: column;
        gap: 1.4em;
    }


    .flexA {
        height: fit-content;
    }

    .flexB {
        height: fit-content;
    }

    .flexC {
        height: fit-content;
    }


    .background {
        height: 200vh;
    }

    .bg-imge img {
        margin-top: 2em;
        width: 100%;
        padding: 0.4em;
    }

    .Contact-form input {
        width: 100%;
    }

    .Contact-form {
        padding: 0.7em;
    }

    .fs-5 {
        width: 100%;
        padding: 0.7em;
    }

    /* 
    .cont textarea {
        width: 100%;
    } */

    #exampleFormControlTextarea1 {
        width: 100%;
    }

    .alert-dismissible {
        width: 100%;
    }

    .danger {
        width: 100%;
    }

    .bb-ff {
        width: 100%;
    }

    .wo-text p {
        width: 100%;
    }

    .progress-show {
        width: 100%;
    }







}