@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    overflow-x: hidden;
    background-color: #F5F5F5;
}

main {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: all .3s ease-in-out;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #DA0101;
    border-radius: 10px;
}

/* ::-webkit-scrollbar-thumb:hover {
    background: #FFFB01;
} */

figure {
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-family: "Anton", sans-serif;
}

p {
    font-family: "Roboto", sans-serif;
    color: #2D2D2D;
    font-size: 15px;
    line-height: 25px;
    text-transform: unset;
    font-weight: 400;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

p::first-letter {
    text-transform: capitalize;
}

/* i::before {
    font-family: "Font Awesome 6 pro";
} */

/* go to top start */
.go-top {
    position: fixed;
    bottom: 7%;
    right: 1%;
    padding: 0;
    display: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    z-index: 10000;
}

.go-top:after {
    font-family: "Font Awesome 6 Pro";
    content: "\f106";
    color: #fff;
    font-size: 25px;
    transition: all 0.2s ease-in-out;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 2px solid #fff;
    background-color: #DA0101;
}

/* go to top close */

/* go to top */
.scroll-to-top {
    width: 50px;
    height: 50px;
    background: #FFFB01;
    position: fixed;
    bottom: 88px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: .4s;
    transition: .4s;
    display: none;
    border-radius: 50%;
    cursor: pointer;
}

.scroll-to-top i {
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    -webkit-transition: .4s;
    transition: .4s;
}

/* go to top */
/**************************** Btn hover Start ***************************/
.btn {
    font-family: "Roboto", sans-serif;
    border-radius: 0px;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    transition: all .3s ease-in-out;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 12px;
}

.btn-box .icon-wh {
    width: 25px;
    height: 25px;
    border-radius: 2px !important;
}

.btn-box .btn-primary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    color: #fff;
    background-color: #DA0101;
    border-radius: 0px;
    border: 1px double #DA0101;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-primary:hover {
    background-color: #DA0101;
}

.btn-box .btn-secondary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    color: #000000;
    background-color: #FFFB01;
    border-radius: 0px;
    border: 1px double #FFFB01;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-secondary:hover {
    background-color: #FFFB01;
}

.btn-box .btn-icon {
    color: #232F3F;
}

/* Bounce To Right */
.hvr-bounce-to-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: #DA0101 !important;
    border-color: #DA0101 !important;
}

.hvr-bounce-to-right:hover:after,
.hvr-bounce-to-right:focus:after,
.hvr-bounce-to-right:active:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Right */
/* Bounce To left */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: #000000 !important;
    border-color: #FFFB01 !important;
}

.hvr-bounce-to-left:hover::after,
.hvr-bounce-to-left:focus::after,
.hvr-bounce-to-left:active::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To left */
/**************************** Btn hover Close ***************************/
/**************************** spinner Start ***************************/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
}

.overlay .overlayDoor:before,
.overlay .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #DA0101;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}

.overlay .overlayDoor:before {
    left: 0;
}

.overlay .overlayDoor:after {
    right: 0;
}

.overlay.loaded .overlayDoor:before {
    left: -50%;
}

.overlay.loaded .overlayDoor:after {
    right: -50%;
}

.overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}

.overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid #fff;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spinInner 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

/**************************** spinner Close ***************************/
/**************************** Form css Start ***************************/
.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
    text-transform: capitalize;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    opacity: 0.9;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    opacity: 0.9;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    opacity: 0.9;
}

select:focus,
textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #000 !important;
}

.input-main {
    margin: 0 0 10px 0;
    overflow: hidden;
}

.input-main p,
.form-group label,
.input-main label {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0 0 3px 0;
    padding: 0;
    color: #fff;
    font-family: "Roboto", sans-serif;
    line-height: 24px;
}

.input-main p span,
.input-main label span {
    color: #FF6B6B;
}

.input-main .form-group {
    position: relative;
}

.input-main .form-group .card-imgs {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 20px;
    color: #74769E;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 3px;
}

.input-main .form-group .card-imgs li img {
    min-width: 26px;
    max-width: 26px;
    min-height: 26px;
    max-height: 26px;
    object-fit: contain;
}

.input-main .form-control.img-bx {
    padding: 12px 20px 12px 60px;
}

.input-main.rightOne .form-control.img-bx {
    padding: 12px 60px 12px 12px;
}

.input-main.rightOne .form-group .card-imgs {
    right: 20px;
    left: inherit;
}

.input-main .form-select,
.input-main .form-control {
    font-family: "Roboto", sans-serif;
    border: none;
    height: 41px;
    background-color: #fff;
    border: 1px solid var(--Light-Grey, #D2D2D2);
    border-radius: 5px;
    padding: 8px 30px 8px 17px;
    color: #232F3F;
    font-size: 17px;
    font-weight: 400;
    position: relative;
}

.input-main .form-group .field-icon1 {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 10px;
    color: #313747;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-main .form-group .field-icon1.fa-eye:before,
.input-main .form-group .field-icon1.fa-eye-slash:before {
    font-family: "Font Awesome 6 pro";
}

.input-main .forgot {
    text-align: right;
    color: #313747;
    margin: 10px 0 0 0;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
}


.form-check {
    margin: 0;
}

.form-check .form-check-input:checked {
    background-color: #DA0101;
    border-color: #DA0101;
}

.form-check .form-check-input:focus {
    border-color: #DA0101;
    box-shadow: none;
}

.form-check .form-check-label {
    letter-spacing: 1.5px;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
    margin: 0;
    color: #313747;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/**************************** Form css End ***************************/
/**************************** offcanvas search-bar Start ***************************/
.offcanvas.search-bar {
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.offcanvas.search-bar .offcanvas-body .search-h {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 30px 0;
    display: block;
    text-align: center;
}

.offcanvas.search-bar .offcanvas-body .search .search-control {
    background-color: rgb(245, 245, 247);
    font-size: 13px;
    font-weight: 400;
    color: #000;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding-left: 25px;
    height: 45px;
}

.offcanvas.search-bar .offcanvas-body .search .search-btn {
    color: #fff;
    height: 45px;
    width: 45px;
    font-size: 16px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #936710;
    background: #936710;
    transition: all 0.2s ease-in-out;
    border-radius: 50px;
    overflow: hidden;
}

/**************************** offcanvas search-bar close ***************************/
/************************************* header *************************************/
.navbar-toggler {
    background-color: #FFFB01;
    color: #fff;
    border: none;
}

/* header top */
header {
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

/* header-btm */
header .header-btm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 17, 26, 1);
    box-shadow: 0px 0px 5px 1px #161c22;
}

header .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #151C22;
}

header .header-btm .navbar>.container-fluid {
    align-items: center;
}

header .header-btm .navbar {
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    background: transparent;
    position: relative;
}

header .header-btm.sticky .navbar {
    border-bottom: none !important;
}

header .header-btm .navbar .navbar-nav {
    align-items: center;
    gap: 30px;
}

header .header-btm .navbar .navbar-nav .nav-item {
    position: relative;
}

/* drop-down */
header .header-btm .navbar .navbar-nav .nav-item:hover .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 15px 0;
    top: 100%;
    transform: translateY(50px);
    left: 0;
    width: 250px;
    background-color: #fff;
    box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 111;
    transition: 0.4s all;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2px;
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown li .dropdown-item {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    letter-spacing: 0;
    word-spacing: 0;
    border: none;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s ease-in-out;
    padding: 12px 12px;
}

header .header-btm .navbar .navbar-nav .nav-item .dropdown li .dropdown-item:hover {
    background-color: #DA0101;
    color: #fff;
}

/* drop-down */

header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    color: #F0F7F7;
    font-size: 20px;
    line-height: 25px;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    word-spacing: 0;
    border: none;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.5s ease-in-out;
    font-family: "Anton", sans-serif;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.active {
    color: #FFFB01 !important;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #FFFB01;
}

header .header-btm .navbar .navbar-brand {
    margin: 0;
    padding: 0;
}

header .header-btm .navbar .navbar-brand .logo {
    min-width: 112px;
    max-width: 112px;
    max-height: 112px;
    min-height: 112px;
    object-fit: contain;
}

header.sticky .header-btm .navbar .navbar-brand .logo {
    height: 70px;
}

header .header-btm .side-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

header .header-btm .side-ul .sd-li .btn-started {
    font-size: 25px;
    color: #FFF;
    text-transform: uppercase;
    background: transparent;
    height: auto;
    border: transparent;
    width: 100%;
    gap: 10px;
    font-family: "Anton", sans-serif;
    transition: all .5s ease-in-out;
}

header .header-btm .side-ul .sd-li .btn-started:hover {
    color: #FFFB01;
}

header .header-btm .side-ul .sd-li .btn-started:hover i {
    background-color: #0D111A;
    color: #FFFB01;
}

header .header-btm .side-ul .sd-li .btn-started i {
    height: 47px;
    width: 47px;
    border: 1px solid #FFFB01;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    background-color: #FFFB01;
    color: #0D111A;
    border-radius: 100px;
    transition: all .5s ease-in-out;
}

header .header-btm .side-ul .sd-li .search-bar {
    font-size: 16px;
    color: #FFFB01;
    text-transform: capitalize;
    background: transparent;
    height: 48px;
    border: 2px solid #FFFB01;
    width: 50px;
}

/***************************** header close *****************************/
/***************************** Footer Start *****************************/
footer {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #000000;
}

footer .info-box {
    padding: 70px 0px;
    border-bottom: 1px solid #ffffff5c;
}

footer .info-box .info-card {}

footer .info-box .info-card .main-img {}

footer .info-box .info-card .main-img i {
    min-width: 156px;
    max-width: 156px;
    min-height: 150px;
    max-height: 150px;
    border-radius: 7px;
    border: 3px solid #FFFB01;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #3A3A39 0%, #797877 100%);
    color: #fff;
    font-size: 56px;
    margin: 0 auto;
}

footer .info-box .info-card .card-content {
    margin: 30px 0 0 0;
}

footer .info-box .info-card .card-content h4 {
    color: #fff;
    font-size: 30px;
    text-align: center;
    margin: 0 0 10px 0;
    line-height: 30px;
}

footer .info-box .info-card .card-content .btn-box {
    justify-content: center;
}

footer .info-box .info-card .card-content .btn-box .btn-wh {
    color: #fff;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    line-height: 25px;
}

footer .info-box .info-card .card-content .btn-box ul li:hover,
footer .info-box .info-card .card-content .btn-box .btn-wh:hover {
    color: #FFFB01;
}

footer .info-box .info-card .card-content .btn-box ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    list-style: disc;

}

footer .info-box .info-card .card-content .btn-box ul li {
    color: #fff;
    font-size: 25px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 25px;
    transition: all .3s ease-in-out;
}

footer .footer-top {
    padding: 70px 0;
}

footer .footer-top .footer-logo img {
    min-width: 212px;
    max-width: 212px;
    max-height: 212px;
    min-height: 212px;
    object-fit: contain;
}

footer .footer-top .footer-logo ul {
    margin: 80px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 40.5px;
}

footer .footer-top .footer-logo ul li a i {
    font-size: 20px;
    width: 29.1px;
    height: 29.1px;
    color: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    transition: all .5s ease-in-out;
}

footer .footer-top .footer-logo ul li a i:hover {
    color: #FFFB01;
}

footer .footer-top .quik-inks.last {
    width: 230px;
    margin: 0 0 0 auto;
}

footer .footer-top .quik-inks h4 {
    font-size: 30px;
    color: #E8E8E8;
    text-transform: capitalize;
    margin: 0 0 20px 0;
}

footer .footer-top .quik-inks h5 {
    font-size: 20px;
    color: #E8E8E8;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

footer .footer-top .quik-inks p {
    color: #E8E8E8;
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
}

footer .footer-top .quik-inks ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
    font-weight: 500;
}

footer .footer-top .quik-inks ul li a {
    color: #E8E8E8;
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    transition: all 0.5s ease-in-out;
    font-family: "Roboto", sans-serif;
}

footer .footer-top .quik-inks ul li a:hover {
    color: #FFFB01;
}

footer .footer-bottom {
    padding: 30px 0px;
    border-top: 1px solid #ffffff5c;
}

footer .footer-bottom .copyright p {
    color: #FAFBFD;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 20px;
}

footer .footer-bottom .copyright p a {
    color: #FAFBFD;
}

footer .footer-bottom .copyright p a:hover {
    color: #FFFB01;
}

footer .footer-bottom .privacy-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
}

footer .footer-bottom .privacy-links ul li a i {
    color: #FAFBFD;
    font-size: 21px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    transition: all .3s ease-in-out;
}

footer .footer-bottom .privacy-links ul li a i:hover {
    color: #FFFB01;
}

/*********************** footer close ***********************/

/*********************** Login & Register CSS Start ***********************/
.register-sec-wrap {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-color: #F5F5F5;
}

.register-sec-wrap .form-main {
    padding: 20px 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 0px 4px 0.5px #ccc;
}

.register-sec-wrap .form-main .heads {
    margin: 0 0 50px 0;
}

.register-sec-wrap .form-main .heads h6 {
    font-weight: 700;
    color: #000;
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 50px;
}

.register-sec-wrap .form-main .heads p {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.register-sec-wrap .form-main .btn-grp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 40px 0 40px 0;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn {
    color: #1F1F1F;
    height: 55px;
    width: 48%;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0;
    padding: 0 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 31, 31, 0.5);
    background: #fff;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 20%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 25px;
    width: 25px;
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn:nth-child(1)::before {
    background-image: url(../images/google.png);
}

.register-sec-wrap .form-main .btn-grp .sign-up-btn:nth-child(2)::before {
    background-image: url(../images/facebook.png);
    left: 18%;
}

.register-sec-wrap .form-main .input-main label {
    text-align: left;
    color: #000;
    font-size: 18px;
    font-weight: 400;
}

.register-sec-wrap .form-main .input-main .form-control {
    background-color: #F3F3F3;
    border: 1px solid #F3F3F3;
    color: #000;
    position: relative;
}

.register-sec-wrap .form-main .input-main {
    position: relative;
    margin: 0 0 20px 0;
}

.field-icon1 {
    z-index: 2;
    position: absolute;
    top: 66%;
    right: 20px;
    color: #DA0101;
}

.register-sec-wrap .form-main .btn-box {
    margin: 0 0 10px 0;
}

.register-sec-wrap .form-main .btn-box .btn-wh {
    width: 100%;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
}

.register-sec-wrap .form-main p {
    font-size: 20px;
    line-height: 30px;
}

.register-sec-wrap .form-main p .link {
    color: #DA0101;
    text-decoration: underline;
    background: #fff;
    border: none;
}

.register-sec-wrap .form-main .extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.register-sec-wrap .form-main .extra {
    margin: 30px 0;
}

.register-sec-wrap .form-main .extra .form-check .form-check-input:checked {
    background-color: #DA0101;
    border: #DA0101;
}

.register-sec-wrap .form-main .extra .form-check .form-check-label {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
}

.register-sec-wrap .form-main .extra .anchor {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #DA0101;
    text-decoration: underline;
}

/*********************** Login & Register CSS Close ***********************/
/*********************** home-page css Start ***********************/

/* home-section01 start*/

/* banner */
.home-banner-wrap {
    padding: 200px 0 100px;
    overflow: hidden;
    position: relative;
    background-image: url(../images/banner-bg.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.home-banner-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) -15%, rgba(0, 0, 0, 0) 99%);
}

.home-banner-wrap .banner-content {}

.home-banner-wrap .banner-content p {
    font-size: 50px;
    font-weight: 300;
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;
}

.home-banner-wrap .banner-content h2 {
    font-size: 80px;
    color: #fff;
    line-height: 100px;
    text-transform: uppercase;
}

.home-banner-wrap .form-body {
    background: linear-gradient(#3A3A39, #797877);
    border: 5px solid #fffb01;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 28px;
}

.home-banner-wrap .form-body .main-img {
    margin: 0px 0px 10px 0px;
}

.home-banner-wrap .form-body .main-img img {
    min-width: 82px;
    max-width: 82px;
    min-height: 82px;
    max-height: 82px;
}

.home-banner-wrap .form-body h2 {
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 68px;
    margin: 0px 0px 7px 0px;
}

.home-banner-wrap .form-body .main-form .btn-box {
    margin: 10px 0px 0px 0px;
}

.home-banner-wrap .form-body .main-form .btn-box .btn-wh {
    width: 100%;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
}

/* banner */
/* home-section01 start*/

.about-sec {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.england-sec .main-img,
.about-sec .main-img {
    transition: all .5s ease-in-out;
    overflow: hidden;
    border-radius: 15px;
}

.about-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 500px;
    max-height: 500px;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

.england-sec .main-img:hover img,
.about-sec .main-img:hover img {
    transform: scale(1.1);
}

.about-sec .about-contect-box {
    background-color: #F5F5F5;
    padding: 40px 36px;
    border-radius: 20px;
    margin: 2px 0px -48px -105px;
    z-index: 1;
    position: relative;
}

.about-sec .about-contect-box h2 {
    font-size: 50px;
    line-height: 65px;
    margin: 0px 0px 10px 0px;
    text-transform: uppercase;
    color: #000;
}

.about-sec .about-contect-box p {
    font-size: 20px;
    line-height: 30px;
}

.about-sec .about-contect-box .btn-box {
    margin: 10px 0px 0px 0px;
}

.about-sec .about-contect-box .btn-box .btn-wh {
    width: auto;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
}

/* sectio02 homepage */

.services-sec {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
    background-color: #F5F5F5;
}

.services-sec .head {
    margin: 0px 0px 55px 0px;
}

.services-sec .head h2 {
    text-align: center;
    font-size: 65px;
    line-height: 75px;
    text-transform: uppercase;
    color: #000000;
}

.services-sec .cart-box {
    transition: all .5s ease-in-out;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.services-sec .cart-box:hover {
    transform: translateY(-10px);
}

.services-sec .cart-box:hover .main-img img {
    transform: scale(1.1);
}

.services-sec .cart-box .main-img {
    overflow: hidden;
    background-color: #fff;
    transition: all .5s ease-in-out;
}

.services-sec .cart-box .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 300px;
    max-height: 300px;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

.services-sec.location-sec .cart-box .main-img img {
    object-fit: contain;
}

.services-sec.location-sec .cart-box .cart-text {
    margin: 7px 0 0 0;
}

.services-sec .cart-box .cart-text {
    text-align: center;
    background-color: #fff;
    padding: 20px 20px;
}

.services-sec .cart-box .cart-text h3 {
    font-size: 29px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    line-height: 46px;
    color: #000000;
}

.services-sec .cart-box .cart-text p {
        min-height: 150px;
    max-height: 150px;
    overflow-y: scroll;
    /*font-size: 18px;*/
    /*line-height: 26px;*/
    /*color: #333333;*/
    /*font-weight: 300;*/
    /*min-height: 210px;*/
    /*max-height: 210px;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
}

.services-sec .cart-box .cart-text .btn-box {
    justify-content: center;
    margin: 10px 0 0 0;
}

.services-sec .cart-box .cart-text .btn-box .btn-wh {
    width: auto;
    height: auto;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #DA0101;
    border-bottom: 2px solid #DA0101;
    border-radius: 0;
}

/* section03 homepage */

.need-servies {
    background-image: url(../images/need-bg.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.need-servies::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.4;
}

.need-servies .need-text {}

.need-servies .need-text p {
    font-size: 55px;
    color: #fff;
    line-height: 65px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

.need-servies .need-text h2 {
    color: #fff;
    font-size: 100px;
    line-height: 110px;
    text-align: center;
    text-transform: uppercase;
}

.need-servies .need-text .btn-box {
    margin: 35px 0px 0px 0px;
    justify-content: center;
}

.need-servies .need-text .btn-box .btn-wh {
    width: auto;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
}

/* section04 */

.england-sec {
    padding: 100px 0px;
    background-color: #F5F5F5;
    overflow: hidden;
    position: relative;
}

.england-sec .england-content {
    background-color: #fff;
    padding: 55px 30px;
    border-radius: 15px;
    /* min-height: 492px;
    max-height: 492px; */
}

.england-sec .england-content h2 {
    font-size: 55px;
    line-height: 66px;
    margin: 0px 0px 20px 0px;
    color: #000;
}

.england-sec .england-content p {
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    font-weight: 400;
}

.england-sec .england-content .btn-box {
    margin: 20px 0px 0px 0px;
}

.england-sec .england-content .btn-box .btn-wh {
    width: auto;
    padding: 0px 20px;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
}

.england-sec .main-img {}

.england-sec .main-img {
    height: 100%;
}
.england-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    transition: all .5s ease-in-out;
}

.move-sec .england-content h4 {
    font-size: 22px;
    line-height: 33px;
    margin: 10px 0px 0px;
    font-family: "Roboto", sans-serif;
}

.move-sec .england-content ul {
    margin: 10px 0px 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    list-style: number;
}

.move-sec .england-content ul li {
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    line-height: 30px;
}

.move-sec .england-content .btn-box {
    margin: 30px 0px 0px;
}

.england-sec .england-content .rack {
    margin: 20px 0px 0px;
}


/* section05 */

.video-sec {
    position: relative;
    overflow: hidden;
}

.video-sec .main-img {
    position: relative;
    overflow: hidden;
}

.video-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    max-height: 900px;
    min-height: 900px;
    object-fit: cover;
}

.video-sec .main-img .icon-box {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 90px 90px 0;
}

.video-sec .main-img .icon-box a i {
    font-size: 22px;
    font-weight: bold;
    z-index: 999;
}

.video-sec .main-img .icon-box a {
    width: 85px;
    height: 85px;
    border: 1px solid #fff;
    background-color: #ffffff;
    color: #000;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    position: relative;
}

.video-sec .main-img .icon-box a:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 85px;
    height: 85px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-sec .main-img .icon-box a:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 84px;
    height: 84px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 200ms;
}

.video-sec .main-img .icon-box a:hover:after {
    background-color: darken(#fa183d, 10%);
}


@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* section06 */

.testimonials-sec {
    padding: 100px 0px;
    overflow: hidden;
    position: relative;
    background-color: #F5F5F5;

}

.testimonials-sec .head {
    text-align: center;
    margin: 0px 0px 50px 0px;
}

.testimonials-sec .head h2 {
    font-size: 100px;
    color: #000000;
    text-transform: uppercase;

}

.testimonials-sec .main-img {
    position: relative;
    min-width: 100%;
    max-width: 100%;
}

.testimonials-sec .main-img::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -25%;
    background-image: url(../images/testimo-01.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 418px;
    height: 418px;
    z-index: 0;
}

.testimonials-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    max-height: 890px;
    min-height: 890px;
    object-fit: cover;
    z-index: 1;
    position: relative;
    border-radius: 355px 0 356px 356px;
}

.testimonials-sec .swiper-container {
    min-width: 100%;
    max-width: 100%;
    overflow: hidden;
    max-height: 890px;
    min-height: 890px;
    position: relative;
}

.testimonials-sec .swiper-container .swiper-wrapper {
    position: absolute;
    top: -25%;
}

.testimonials-sec .swiper-container .swiper-wrapper .swiper-slide {
    transition: background 0.3s ease;
}

.testimonials-sec .coments-box {}

.testimonials-sec .coments-box .testimoinal-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 45px;
    transition: background 0.3s ease;
}

.testimonials-sec .coments-box .swiper-slide-active .testimoinal-card {
    background: linear-gradient(179.87deg, #383837 0.11%, #858483 117.14%);
}

.testimonials-sec .coments-box .swiper-slide-active .testimoinal-card .card-foot .right-desc p,
.testimonials-sec .coments-box .swiper-slide-active .testimoinal-card .card-foot .left-desc ul li,
.testimonials-sec .coments-box .swiper-slide-active .testimoinal-card .info p {
    color: #fff;
}

.testimonials-sec .coments-box .testimoinal-card .info {
    margin: 0 0 50px 0;
}

.testimonials-sec .coments-box .testimoinal-card .info p {
    font-size: 20px;
    line-height: 36px;
    color: #000000;
    font-weight: 500;
    font-style: italic;
    min-height: auto;
        max-height: 200px;
        overflow-y: scroll;
}

.testimonials-sec .coments-box .testimoinal-card .card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
}

.testimonials-sec .coments-box .testimoinal-card .card-foot .left-desc {}

.testimonials-sec .coments-box .testimoinal-card .card-foot .left-desc ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 5px;
    flex-wrap: nowrap;
    padding: 0 0 0 25px;
}

.testimonials-sec .coments-box .testimoinal-card .card-foot .left-desc ul li {
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    list-style: disc;
}

.testimonials-sec .coments-box .testimoinal-card .card-foot .right-desc {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
}

.testimonials-sec .coments-box .testimoinal-card .card-foot .right-desc ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 7px;
    flex-wrap: nowrap;
}

.testimonials-sec .coments-box .testimoinal-card .card-foot .right-desc ul li {}

.testimonials-sec .coments-box .testimoinal-card .card-foot .right-desc ul li i {
    color: #FFFB01;
    font-size: 20px;
}

.testimonials-sec .coments-box .testimoinal-card .card-foot .right-desc p {
    font-size: 14px;
    line-height: 14px;
    color: #000000;
    font-weight: 500;
}

/*********************** home-page css Close ***********************/
/*********************** inner-page css Start ***********************/

.inner-banner-wrap {
    background-image: url(images/inner-bg.png);
    padding: 300px 0px 200px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative;
}

.inner-banner-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.inner-banner-wrap .banner-content h2 {
    color: #fff;
    font-size: 100px;
    text-transform: uppercase;
}

/* About us */
.about-info-sec {
    overflow: hidden;
    position: relative;
    background-color: #F5F5F5;
}

.about-info-sec .content-info {
    padding: 75px 0px;
}

.about-info-sec .content-info ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    list-style: number;
}

.about-info-sec .content-info ul li {
    color: #333333;
    font-size: 20px;
    font-weight: 400;
    line-height: 38px;
    font-family: "Roboto", sans-serif;
}

.about-info-sec .content-info .btn-box {
    margin: 30px 0px 5px 0px;
}

.about-info-sec .content-info .btn-box .btn-wh {
    width: auto;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    padding: 0 20px;
}

.about-info-sec .main-img {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.about-info-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* servise */

.england-sec .england-content p a {
    color: #333333;
    border-bottom: 1px solid #333333;
}

.england-sec .england-content p a:hover {
    color: #DA0101;
    border-bottom: 1px solid #DA0101;
}

/* blog */

.inner-blog .main-img {}

.inner-blog .cart-box .main-img img {
    min-height: 550px;
    max-height: 550px;
}

.inner-blog .cart-box {}

.inner-blog .cart-box .cart-text {
    text-align: left;
    padding: 28px 26px;
}

.inner-blog .cart-box .cart-text h6 {
    font-size: 20px;
    line-height: 30px;
    color: #DA0101;

}

.inner-blog .cart-box .cart-text h3 {
      font-size: 35px;
    line-height: 45px;
    margin: 5px 0px;
    min-height: 100px;
    max-height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.inner-blog .cart-box .cart-text p {
     min-height: auto !important;
    max-height: fit-content !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 33px !important;
    margin: 10px 0 !important;
}

/* faqs */

.frequently-sec {
    padding: 100px 0px;
    overflow: hidden;
    position: relative;
    background-color: #F5F5F5;
}

.frequently-sec .head {
    text-align: center;
    margin: 0px 0px 50px 0px;
}

.frequently-sec .head h2 {
    font-size: 50px;
    text-transform: uppercase;
}

.frequently-sec .faq-box .accordion .accordion-item {
    margin: 0 0 40px;
    border-radius: 0px;
    background: transparent;
    border: none;
}

.frequently-sec .faq-box .accordion-item .accordion-header button.accordion-button {
    font-family: "Roboto", sans-serif;
    background: #fff;
    color: #000000;
    font-size: 21px;
    line-height: 25px;
    box-shadow: none;
    border-radius: 10px;
    padding: 23px 23px;
    display: flex;
    align-items: center;
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
}

.frequently-sec .faq-box .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: #DA0101;
    color: #fff;
}

.frequently-sec .faq-box .accordion-item .accordion-header .accordion-button::after {
    content: '\f107';
    font-family: 'Font Awesome 6 pro';
    background: transparent;
    color: #000000;
    font-size: 22px;
    border-radius: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.frequently-sec .faq-box .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: '\f106';
    font-family: 'Font Awesome 6 Pro';
    transform: rotate(0deg);
    color: #fff;
}

.frequently-sec .faq-box .accordion-item .accordion-collapse .accordion-body {
    font-family: "Roboto", sans-serif;
    background: transparent;
    color: #E8E8E8;
    font-size: 20px;
    line-height: 27px;
    margin: 0;
    padding: 15px 24px 0px;
    border-radius: 0px;
    border: none !important;
}

.frequently-sec .faq-box .accordion .accordion-item .accordion-body p {
    font-size: 18px;
    color: #828282;
    line-height: 30px;
}

.frequently-sec .faq-box .accordion .accordion-item .accordion-body p a {
    color: #828282;
    display: block;
    text-decoration: underline;
}

/* contact Us */
.info-box-sec {
    padding: 100px 0;
    background-color: #F5F5F5;
    position: relative;
    overflow: hidden;
}


.info-box-sec .head {
    text-align: center;
    margin: 0px 0px 50px 0px;
}

.info-box-sec .head h2 {
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 400;
}

.info-box-sec .info-card .main-img i {
    min-width: 156px;
    max-width: 156px;
    min-height: 150px;
    max-height: 150px;
    border-radius: 7px;
    border: 3px solid #FFFB01;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #DA0101;
    color: #fff;
    font-size: 56px;
    margin: 0 auto;
}

.info-box-sec .info-card .card-content {
    margin: 30px 0 0 0;
}

.info-box-sec .info-card .card-content h4 {
    color: #000000;
    font-size: 30px;
    text-align: center;
    margin: 0 0 10px 0;
    line-height: 30px;
}

.info-box-sec .info-card .card-content .btn-box {
    justify-content: center;
}

.info-box-sec .info-card .card-content .btn-box .btn-wh {
    color: #000000;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    line-height: 25px;
}

.info-box-sec .info-card .card-content .btn-box ul li:hover,
.info-box-sec .info-card .card-content .btn-box .btn-wh:hover {
    color: #DA0101;
}

.info-box-sec .info-card .card-content .btn-box ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    list-style: disc;

}

.info-box-sec .info-card .card-content .btn-box ul li {
    color: #000000;
    font-size: 25px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 25px;
    transition: all .3s ease-in-out;
}

.contact-info-sec {
    padding: 100px 0px;
    overflow: hidden;
    position: relative;
    background-color: #F5F5F5;
}

.contact-info-sec .head {
    text-align: center;
    margin: 0px 0px 50px 0px;
}

.contact-info-sec .head h2 {
    font-size: 55px;
    text-transform: uppercase;
    font-weight: 400;
}

.contact-info-sec .contact-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 60px 90px;
    border: 2px solid #E9ECEF;
}

.contact-info-sec .main-form .input-main {
    margin: 0 0 22px 0;
}

.contact-info-sec .main-form .form-group label,
.contact-info-sec .main-form .input-main label {
    text-align: left;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    margin: 0px 0px 15px;
}

.contact-info-sec .main-form .form-group textarea,
.contact-info-sec .main-form .input-main .form-group input {
    background-color: #F3F3F3;
    border: 1px solid #F3F3F3;
    color: #000;
}

.contact-info-sec .main-form .btn-box {
    margin: 25px 0px 0px 0px;
    justify-content: flex-end;
}

.contact-info-sec .main-form .btn-box .btn-wh {
    width: auto;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    padding: 0px 65px;
}

/* exact-loction */

.loction-sec {
    background-color: #F5F5F5;
    position: relative;
    overflow: hidden;
    padding: 100px 0px 0px;
}
.loction-sec .btn-canvas{
    margin: 0 0 20px 0 !important;
    display: none;
}
.loction-sec .btn-canvas .btn-wh{
    width: 100% !important;
}
.loction-sec .Towns {
    background-color: #fff;
    border-radius: 10px;
    padding: 18px 25px;
    overflow: hidden;
        height: 100%;
}
.loction-sec .Towns .loction-items{
        height: 100%;
}
.loction-sec .Towns h1 {
    font-size: 20px;
    line-height: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: #000;
    margin: 0px 0px 12px;
}

.loction-sec .Towns .input-main {
    margin: 0px 0px 14px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    padding: 0px 0px 14px;
}

.loction-sec .Towns .input-main .form-group {}

.loction-sec .Towns .input-main .form-group input.img-bx {
    padding: 0px 0px 0px 45px;
}

.loction-sec .Towns .input-main .form-group .card-imgs {
    color: #737373;
}

.loction-sec .Towns .input-main .form-group input {
    height: 34px;
    background: #F4F4F4;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
}

.loction-sec .sidebar-body{
    display: flex;
    align-items: stretch; /* Ensures both children stretch to the same height */
    justify-content: flex-start;
    gap: 30px;
    flex-direction: row;
    flex-wrap: nowrap;
}
.loction-sec .sidebar-body .side-main{
    min-width: 300px;
    max-width: 300px;
    padding-bottom: 0;
    transition: all .2s ease;
    flex: 1;
    height: 100vh;
}
.loction-sec .sidebar-body .content-box{
    width: 100%;
}
.loction-sec .Towns .loction-items ul {
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 0 3px 0 0;
     min-height: 100%;
    max-height: 100%;
    height: 100%;
}

.loction-sec .Towns .loction-items ul::-webkit-scrollbar {
    width: 5px;
}

.loction-sec .Towns .loction-items ul::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
}

.loction-sec .Towns .loction-items ul li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
    transition: all .5s ease-in-out;
}

.loction-sec .Towns .loction-items ul li.active {}

.loction-sec .Towns .loction-items ul li.active a {
    color: #ffff;
    background-color: #DA0101;
}
.loction-sec .Towns .loction-items ul li:hover{
    color: #ffff;
    background-color: #DA0101;
} 
.loction-sec .Towns .loction-items ul li:hover a{
    color: #fff;
}
.loction-sec .Towns .loction-items ul li a {
    font-size: 13px;
    color: #000;
    font-weight: 500;
    line-height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px 2px;
    transition: all .5s ease-in-out;
}

.loction-sec .Towns .btn-box {
    border-top: 1px solid #ccc;
}


.loction-sec .Towns .btn-box .btn-wh {
    color: #da0101;
}

.loction-sec .main-img {}

.loction-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 483px;
    max-height: 483px;
    object-fit: cover;
    border-radius: 20px;
    margin: 0px 0px 35px;
}

.loction-sec .Recovered {
    background-color: #fff;
    padding: 45px 35px;
    border-radius: 20px;
}

.loction-sec .Recovered h1 {
    font-size: 50px;
    line-height: 60px;
    color: #000;
    margin: 0px 0px 8px;
}

.loction-sec .Recovered h5 {
    font-size: 21px;
    line-height: 33px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin: 0px 0px 30px;
}

.loction-sec .Recovered p {
    color: #333333;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.loction-sec .btn-box {
    margin: 20px 0px 0px 0px;
}

.loction-sec .btn-box .btn-wh {
    width: auto;
    padding: 0px 20px;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
}

.loction-sec .hvr-bounce-to-left {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}

.loction-sec .Table {
    background-color: #fff;
    padding: 45px 35px;
    border-radius: 20px;
}

.loction-sec .Table h1 {
    font-size: 45px;
    color: #000;
    line-height: 55px;
    margin: 0px 0px 8px;
}

.loction-sec .Table ul {}

.loction-sec .Table ul li {
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
    list-style: decimal;
    margin: 0px 0px 22px;
}

.loction-sec .Table p {
    font-size: 20px;
    color: #000;
    line-height: 30px;
    font-weight: 400;
}

.loction-sec .main-iframe {}

.loction-sec .main-iframe iframe {
    min-width: 100%;
    max-width: 100%;
    min-height: 450px;
    max-height: 450px;
    border-radius: 20px;
}


.Understanding-sec {
    overflow: hidden;
    position: relative;
    padding: 100px 0px 0px;
}

.Understanding-sec .content-para {
    border-top: 1px solid #333333;
}

.Understanding-sec .content-para p {
    font-size: 20px;
    line-height: 30px;
    color: #333333;
    padding: 19px 0px 45px;
}

.Understanding-sec .contect-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 45px 53px;
}

.Understanding-sec .contect-box h2 {
    font-size: 50px;
    color: #000;
    line-height: 60px;
    margin: 0px 0px 20px;
}

.Understanding-sec .contect-box p {
    color: #333333;
    font-size: 20px;
    line-height: 30px;
}

.Understanding-sec .main-img {}

.Understanding-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 706px;
    max-height: 706px;
    object-fit: cover;
    border-radius: 20px;
}

.contect-sec {
    position: relative;
    overflow: hidden;
    padding: 100px 0px 0px;
}

.contect-sec .content-box {}

.contect-sec .content-box h2 {
    font-size: 50px;
    line-height: 60px;
    color: #000;
    margin: 0px 0px 10px;
}

.contect-sec .content-box p {
    font-size: 20px;
    margin: 0px 0px 10px;
    line-height: 30px;
    color: #333333;
}

.contect-sec .content-box h4 {
    font-size: 25px;
    line-height: 50px;
    margin: 0px 0px 10px;
    font-weight: 800;
    font-family: "Roboto", sans-serif;
}

/* install */

.offer-sec .main-img {
    margin: 50px 0px 0px 0px;
    transition: all .5s ease-in-out;
    border-radius: 20px;
    overflow: hidden;
}

.offer-sec .main-img:hover img {
    transform: scale(1.2);
}

.offer-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 304px;
    max-height: 304px;
    object-fit: cover;
    transition: all .5s ease-in-out;
}

.offer-sec .services-content h2 {
    font-size: 50px;
    color: #000;
    line-height: 60px;
    margin: 0px 0px 10px;
}

.offer-sec .services-content ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    list-style: disc;
    gap: 10px;
}

.offer-sec .services-content ul li {
    color: #333333;
    font-size: 20px;
    line-height: 30px;
}

.offer-sec .content-para {}

.offer-sec .content-para p {
    font-size: 20px;
    color: #333333;
    line-height: 30px;
}

section.offer-sec {
    overflow: hidden;
    position: relative;
    padding: 20px 0px;
}



/* Repair-sec */

.Repair-sec ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    list-style: disc;
    margin: 10px 0px 0px;
}

.Repair-sec ul li {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.repair-content-sec {
    overflow: hidden;
    position: relative;
    padding: 0px 0px 0px;
}

.repair-content-sec .content-box {}

.repair-content-sec .content-box ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: flex-start;
    gap: 10px;
    list-style: auto;
    margin: 0px 0px 31px;
}

.repair-content-sec .content-box ul li {}

.repair-content-sec .content-box ul li p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #333333;
}

.repair-content-sec .content-boxt .btn-box {
    margin: 20px 0px 0px 0px;
}

.repair-content-sec .content-box .btn-box .btn-wh {
    width: auto;
    padding: 0px 20px;
    height: 65px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
}

/* re-cover-sec */

.re-cover-img-sec {
    overflow: hidden;
    position: relative;
    padding: 0px 0px 100px;
}

.re-cover-img-sec .main-img {}

.re-cover-img-sec .main-img img {
    min-width: 100%;
    max-width: 100%;
    min-height: 450px;
    max-height: 450px;
    object-fit: cover;
}

/* used-sec */

.used-sec .england-content h4 {
    color: #000;
    font-size: 22px;
    line-height: 33px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    margin: 0px 0px 10px;
}

/*********************** inner-page css end ***********************/

