/*====================*/
/*=== Reset Styles ===*/
/*====================*/

/*@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: #f39020;
    --orange-02: #ff673a;
    --orange-03: #ff7932;
    --dark-teal: #00334E;
    --black-01: #1b1b1b;
    --color-02: #676767;
    --color-03: rgb(255, 255, 255);
    --background-01:#fff;
    --background-02: rgb(0, 0, 0);
    --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%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

a {
    color: var(--orange-01);
    text-decoration: none;
}


a:hover {
    color: var(--orange-01);
}

h1,h2,h3,h4,h5,h6 {
    color: black;
    margin: 0;
}

p {
    font-size: 16px;
    color: var(--color-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 {
    color: var(--orange-01);
    opacity: .8;
}

.link {
    color: var(--orange-01);
    text-decoration: underline;
    cursor: pointer;
}

.primary-tx-color {
    color: var(--orange-01);
}


    /* HTML5 tags */
header {
    display: block;
}

/*===================*/
/*=== Main Styles ===*/
/*===================*/



.slider-wrapper {
    width: 100%;
    margin: 0;
}

/*====================*/
/*=== Other Styles ===*/
/*====================*/
.clear {
    clear:both;
}



.btn-org {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    overflow: hidden;
    background-color: var(--orange-01);
    text-align: center;
    border-radius: 0;
    padding: 15px 25px;
    z-index: 1;
    border: 1px solid var(--orange-01);
}
.btn-org::before {
    content                 : "";
    position                : absolute;
    left                    : 0;
    top                     : 0;
    z-index                 : -1;
    height                  : 100%;
    width                   : 100%;
    background-color        : #ffff;
    color                   : var(--orange-01);
    -webkit-transform       : scale(0, 1);
    -ms-transform           : scale(0, 1);
    transform               : scale(0, 1);
    -webkit-transform-origin: right top;
    -ms-transform-origin    : right top;
    transform-origin        : right top;
    transition              : transform 600ms cubic-bezier(0.86, 0, 0.07, 1) 0s, -webkit-transform 500ms 0s;
}

.btn-org:hover::before {
    -webkit-transform       : scale(1, 1);
    -ms-transform           : scale(1, 1);
    transform               : scale(1, 1);
    border-radius           : 0;
    -webkit-transform-origin: top left;
    -ms-transform-origin    : top left;
    transform-origin        : top left;
    background-color        : #ffff;
}

.btn-blk {
    background-color: black;
}


/*header Area*/
#header {
    /*position: absolute;*/
    z-index: 10;
    width: 100%;
    top: 0;
    background-color: black;
}


.top-logo {
    max-width: 150px;
}

.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;
}

#header .navbar-light .navbar-nav .nav-link:hover {
    color: var(--orange-01);
}

.dropdown-toggle::after {
    color: var(--orange-01);
}

#navbarSupportedContent {
    justify-content: end!important;
    padding: 0 1rem;
}

#header .navbar-toggler {
    background-color: var(--orange-01);
    border-radius: 2px;
    padding: 6px;
}

#header .navbar-toggler-icon {
    background-image: url(img/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;
}


/*Slider*/
.wallpaper {
    height: 100vh;
    background-image: url(img/19733-cmp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    bottom: 0;
    background-position: center;
}

.wallpaper-wrap {
    width: 70%;
    margin: auto;
    height: 100%
}


.wallpaper .container {
    height: 100%;
}

.wallpaper:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0);
    opacity: .7;
}

.wallpaper02 {
    background-image: url(img/46606-cmp.jpg);
}
.wallpaper03 {
    background-image: url(img/why-choose-1-1.webp);
}

.wallpaper-tx-box {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 1rem 3rem;
}

.header-text {
    font-family: 'Poppins', sans-serif;
    /*font-size: 4.5rem;*/
    font-size: calc(3.2rem + 1vw);
    color: var(--textcolor-01);
    font-weight: 600;
}

.header-text-02 {
    font-size: 1.5rem;
    color: var(--textcolor-03);
    font-weight: 400;
    text-align: initial;
    margin-top: 2rem;
    line-height: 2rem;
}
.carousel-control-next-icon , .carousel-control-prev-icon {
    background-image: none;
}
/*Slider*/







/*Title*/
 .title-01 .sub {
    display: inline-block;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding-bottom: 15px;
     color: var(--orange-03);
     font-size: 14px;
}
.title-01 .sub:before {
    position: absolute;
    bottom: 0;
    left: 55px;
    content: "";
    width: 4px;
    height: 3px;
    background-color: var(--orange-03);
}
.title-01 .sub:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 3px;
    background-color: var(--orange-03);
}

.title-01 h1, .title-01 h2 {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 700;
}
/*Title*/

/*About*/
.about-content.feature-item-wrap .feature-item {
    box-shadow: none;
    padding: 0;
    border: none;
}

.feature-item-wrap .feature-item .feature-icon, .feature-item-wrap .feature-item .feature-icon{
    display: flex;
    flex-wrap: wrap;
}

.about-content.feature-item-wrap .feature-item .feature-icon {
    box-shadow: none;
    overflow: hidden;
    background: transparent;
    position: relative;
    top: 4px;
    width: 30px;
    text-align: left;
    transition: 0.4s;
}
.feature-text i {
    font-size: 1.5rem;
    padding-right: 1rem;
    color: var(--orange-01);
}
.about-img-wrap {
   position: relative;
}
/*About*/

/*Arrow Animation*/
.arrow {
    position: absolute;
    top: -50px;
    right: 0;
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
    cursor: pointer;
    z-index: 1;
}

.arrow span {
    display: block;
    /*width: 1.5vw;*/
    /*height: 1.5vw;*/
    height: 40px;
    width: 40px;
    border-bottom: 8px solid var(--orange-01);
    border-right: 8px solid var(--orange-01);
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/*Arrow Animation*/


/*FAQs*/
.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--orange-01);
    color: white;
}
.faqs-bg {
    background-image: url("img/faqs.png");
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    position: relative;
}


/*safety*/
.safety-text p{
    margin-left: 2.5rem;
    padding-bottom: 1rem;
}
.safety-item i {
    color: var(--orange-01);
    padding-right: 1rem;
}

/*Packages*/
.packages-box {
}
.packages-info {
    position: relative;
    background-color: black;
}
.packages-info:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-image: url(img/road_map.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .5;
}

.packages-info h6 {
    font-size: 2.5rem;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.packages-info h6 span{
    color: var(--orange-01);
    font-size: 3rem;
    padding-left: 1rem;
    font-weight: 700;
}
.packages-info-inner {
    background-color: rgba(101, 101, 101, 0.25);
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: black;
}
.packages-info-inner i{
    color: var(--orange-01);
    font-size: 1rem;
    padding-right: 1rem;
}


.img-sticker{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-image: url("img/asset.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
    z-index: 2;
    position: absolute;
    height: 30%;
    width: 30%;
    top: 25%;
}
.img-sticker span{
    display: block;
    position: relative;
    font-size: calc(2.5rem + .5vw);
    font-weight: 700;
    animation: heartBeat 2s infinite;
    animation-timing-function: ease-in-out;
    color: orangered;
}
.discount-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dis {
    z-index: 2;
    position: absolute;
    font-size: 3rem;
    color: black;
    bottom: 28%;
    text-align: center;
    letter-spacing: .2rem;
    font-weight: 900;
}
.dis-info {
    font-size: 1.5rem;
    font-weight: 500;
    color: black;
    padding-top: 1rem;
    letter-spacing: 0;
}


.ribbon-tx {
    font-size: 2rem;
    text-align: center;
    padding: 3rem;
    background: #393939;
    margin-bottom: 2rem;
    color: white;
    border-radius: 0;
}
.ribbon-tx i {
    color: var(--orange-01);
    padding-right: 1rem;
}

.pricing_bg.ribbon-tx {
    border-radius: 0;
    padding: 3rem 12rem 3rem 3rem;
}
    /* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}
.ribbon {
    --f: .9em; /* control the folded part*/
    --r: .8em; /* control the ribbon shape */

    position: absolute;
    right: 20px;
    top: calc(-1*var(--f));
    padding: .8em;
    background: #ff581a;
    border-right: var(--f) solid #0005;
    border-bottom: var(--r) solid #0000;
    clip-path: polygon(calc(100% - var(--f)) 0,0 0,0 100%,calc(50% - var(--f)/2) calc(100% - var(--r)),calc(100% - var(--f)) 100%,calc(100% - var(--f)) var(--f),100% var(--f));
}
    /*Packages*/




/*Features*/
.icon-box {
    display: flex;
    align-items: center;
    width: 70px;
    background: var(--orange-01);
    /*justify-content: center;*/
    /*margin-right: 20px;*/
    /*opacity: .5;*/
    transition: .3s;
}
.icon-box img {
   padding: 1rem;
}
.about-info {
    /*display: flex;*/
    /*align-items: center;*/
    margin-bottom: 1rem;
    background-color: rgba(223, 223, 223, 0.25);
    height: 100%;
    position: relative;
}

.about-info:hover .icon-box {
    opacity: .8;
    background: black;
}

.number {
    position: absolute;
    font-weight: 900;
    font-size: 5rem;
    color: rgba(203, 203, 203, 0.16);
    top: 2rem;
    right: 1rem;
}

.icon-box i {
    color: white;
    font-size: 25px;
}

.about-info-inner {
    padding: 0 1rem;
}

.about-info-inner h6 {
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 1rem;
}

.about-info-inner span {
    color: gray;
    font-size: 14px;
}
.why-bg-img {
    background-image: url("img/6604812.png");
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
}
/*Features*/

/*services*/
#services {
    position: relative;
    background-color: black;
}

.services-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    bottom: 0%;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.17;
    background-blend-mode: multiply;
}

.services-bg-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -100;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.services-bg-container-img {
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(img/why-choose-1-1.webp);
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
    margin-top: 11.8935px;
    transform: translate3d(0px, 13.8452px, 0px);
}

.service_icon {
    height: 120px;
    width: 120px;
    /*background-color: rgba(255, 255, 255, 0.44);*/
}

.service_icon img {
    padding: 1rem;
}

.services_wrap {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease-in-out;
    padding: 2rem 1rem;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.services_wrap .number {
    font-size: 4rem;
    color: rgba(203, 203, 203, 0.07);
}
.services_wrap span {
    color: gray;
    font-size: 14px;
    text-align: start;
}

.services_wrap__text {
    color: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.4s ease-in-out;
    color: white;
    margin: 0 0 1rem 0;
}
.services_wrap__icon i {
    font-size: 60px;
    color: #db7100;
    transition: all 0.4s ease-in-out;
}
.services_wrap__text a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}
.services_wrap::after {
    content: "";
    width: 100%;
    height: 0%;
    position: absolute;
    top: 0%;
    left: 0%;
    bottom: auto;
    background: rgba(var(--drivschol-primary-rgb, 236, 37, 38), 1);
    z-index: -5;
    transition: all 0.4s ease-in-out;
}
/*services*/

/*Pricing*/
.pricing_bg {
    /*background: #141414;*/
    background-image: url(img/tire.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    padding: 6rem;
    border-radius: 2rem;
}
.pricing_bg .title-01 h2 {
    color: white;
}

.pricing_bg_text {
    color: #8d8d8d;
    font-size: 18px;
    height: 100%;
    display: flex;
    align-items: center;
}



/*Join-us*/
.join-us {
    background-color: var(--orange-01);
    position: relative;
}

.join-us:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-image: url(img/road.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    top: 0;
}

.join-us-wrap {
    padding: 3rem 0;
    position: relative;
    z-index: 3;
}

.join-us-text {
    padding: 2rem 3rem 2rem 0;
    font-size: 1.5rem;
    letter-spacing: 0;
    color: white;
    line-height: 2rem;
    text-align: start;
}

    /*Pre Footer*/
.pre-footer {
    background-color: var(--orange-01);
    position: relative;
}

.pre-footer .container {
    position: relative;
    z-index: 4;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pre-footer:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 70%;
    height: 100%;
    background-color: black;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}

.pre-footer:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-image: url(img/cta-bg-1-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}

.pre-footer-info {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.pre-footer-title {
    color: white;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 125%;
    letter-spacing: -1.2px;
    /*max-width: 390px;*/
    margin-bottom: 30px;
}
.pre-footer-img {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
/*Pre Footer*/


/*Footer*/
footer {
    background-color: black;
}

.footer-logo {
    max-width: 150px;
}

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: #000000;
    opacity: 0.8;
    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(img/280-cmp.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 rgba(248, 214, 175, 0.12);
    color: #5c5c5c;
}
.footer-line a {
    color: #7d7d7d;
}

.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;
    cursor: pointer;
    height: 30px;
    width: 30px;
    list-style: none;
    margin-right: .6rem;
    position: relative;
    transition: .6s;
    background-color: #323232;
    border-radius: 50%;
}

.social-icons ul li:hover {
    background-color: rgba(154, 154, 154, 0.41);
}

.social-icons ul li a {
    transition: .4s;
}

.social-icons ul li:hover a {
    color: var(--orange-01);
}

/*Footer*/



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




/*BREADCRUMB*/
.breadcrumb-img {
    background-image: url("img/280-cmp.jpg");
    height: 40vh;
    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: #000000;
    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 h1, .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*/

/*contact*/
.contact-title h6 {
    color: var(--orange-01);
}
.contact-title h4 {
    font-weight: 600;
    color: var(--dark-teal);
}
.contact-title {
    margin-bottom: 2rem;
}

.contact_form {
    /*border: 1px solid var(--navy-01);*/
    background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 2px, transparent 2px) 0% 0%/8px 8px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 2px, transparent 2px) 100% 0%/8px 8px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 2px, transparent 2px) 0% 100%/8px 8px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 2px, transparent 2px) 100% 100%/8px 8px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 12px) calc(100% - 16px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 16px) calc(100% - 12px) no-repeat,
    repeating-linear-gradient(45deg, #000000 0%, #000000 5%, var(--orange-01) 5%, var(--orange-01) 10%);
    border-radius: 0;
    padding: 2rem;
    box-sizing: border-box;
}

.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 {
    padding-bottom: 1rem;
}
.contact-info{
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--orange-01);
}
.contact-info i{
    color: white;
    font-size: 2rem;
}

.contact-info-tx {
    font-size: 1rem;
}

.highlight_bg_contact {
    background-color: #ededed;
    padding: 2rem 3rem;
    border-radius: .5rem;
}
.highlight_bg_contact h2 {
    font-size: 2rem;
}
.cone_img {
    width: 100px;
    margin-right: 2rem;
}




.highlight_bg {
    /*background: #141414;*/
    background-image: url(img/tire.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    padding: 6rem;
    border-radius: 2rem;
}

.highlight_text {
    color: #505050;
    font-size: 1.2rem;
    height: 100%;
    display: flex;
    align-items: center;
}

/*Media Query*/
@media (max-width: 1200px) {
    .container{
        padding: 0 10px;
    }
    #navbarSupportedContent {
        padding: 0 .6rem;
    }
    .header-topper .top-logo {
        max-width: 150px;
        padding: 5px 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;
    }

    .discount-box-display {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .discount-box {
        width: 700px;
    }


}

@media (max-width: 992px) {
    #header .navbar {
        border-radius: 10px;
    }

    .pc-nav {
        padding: 1rem 0;
    }
    .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 {
        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*/

    #navbarSupportedContent {
        justify-content: end;
        padding: 0 1rem;
        background-color: black;
    }

    #header .navbar-light .navbar-nav .nav-link {
        color: white;
    }

    #header .navbar-light .navbar-nav .nav-link:hover {
        color: var(--orange-01);
    }

    .pricing_bg {
        padding: 4rem;
    }

    .pricing_bg_text {
        font-size: 16px;
    }
    .cone_img {
        display: none;
    }

    .carousel-inner {
        height: 70vh;
    }

    .wallpaper-wrap {
        height: 70vh;
    }


}

@media (max-width: 767px) {
    .header-text {
        font-size: 2.5rem;
        font-weight: 600;
    }
    .header-text-02 {
        font-size: 1.3rem;
    }
    .carousel .carousel-control-prev, .carousel .carousel-control-next {
        width: 10%;
    }

    .wallpaper-wrap {
        width: 90%;
    }
    .dis {
        font-size: 2rem;
    }
    .dis-info {
        font-size: 1.2rem;
    }
    .pricing_bg.ribbon-tx {
        padding: 3rem 10rem 3rem 2rem;
    }

}


@media (max-width: 576px) {
    #header .navbar-toggler {
        margin-right: 10px;
    }

    .header-text-02 {
        font-size: 1rem;
        line-height: 25px;
    }

    .header-text {
        font-size: 2.5rem;
    }


    .contact-info-tx {
        font-size: 1rem;
    }

    .title-01 h2 {
        font-size: 2rem;
    }

    .pre-footer h3 {
        font-size: 2rem;
    }

    .pre-footer-img {
        padding: 0;
    }

    .pricing_bg {
        padding: 3rem 2rem;
        border-radius: 1rem;
    }

    .join-us-text {
        padding: 2rem 1rem 2rem 0;
        font-size: 1.2rem;
    }
    .about-img-wrap {
        width: 400px;
    }
        .arrow {
            position: absolute;
            top: -40px;
            right: 32px;
        }

    .wallpaper-tx-box {
        padding: 1rem 2rem;
    }

    .pricing_bg.ribbon-tx {
       font-size: 1.5rem;
    }
    .ribbon {
        font-size: 25px;
        right: 0;
    }
    .pricing_bg.ribbon-tx {
        padding: 3rem 7rem 3rem 1rem;
    }
    .dis {
        font-size: 1.5rem;
    }
}

@media (max-width: 455px) {
    .dis {
        font-size: 1.2rem;
        padding: 0 4rem;
        margin-bottom: -34px;
    }
    .dis-info {
        padding-top: .5rem;
    }
}

@media (max-width: 400px) {
    .header-text {
        font-size: 2.2rem;
        font-weight: 500;
    }
    .header-text-02 {
        font-size: 1rem;
    }

    .about-img-wrap {
        width: 460px;
    }

    .pricing_bg.ribbon-tx {
        text-align: start;
        padding: 3rem 0 3rem 1rem;
    }
    .ribbon {
        font-size: 18px;
        right: 0;
        padding: .8em;
    }
    .img-sticker {
        height: 30%;
        width: 30%;
        top: 20%;
    }
    .packages-info h6 {
        font-size: 2rem;
    }
    .packages-info h6 span {
        font-size: 2.5rem;
    }
}

@media (max-width: 370px) {
    .dis-info {
        font-size: 1rem;
    }
}
