@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700&display=swap');

/********
font-family: 'Saira', sans-serif;
font-family: 'Arimo', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Alata', sans-serif;
font-family: 'PT Sans', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Dosis', sans-serif;
********/



body {
    font-family: 'Arimo', sans-serif;
}
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #024682;
    z-index: 1001;
    display: flex;
    align-items: center;
    padding: 0 25px;
}
.menu-btn, .search-btn {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
.logo {
    margin: 0 auto;
    padding-left: 220px;
}
.logo img{
    width: 200px;
}

.marquee-container {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.marquee-text {
  display: inline-block;
  color: #ff3c2f; /* logo/brand color */
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  animation: marquee 20s linear infinite; /* slower speed */
  padding-top: 10px;
}

/* Pause on hover */
.marquee-container:hover .marquee-text {
  animation-play-state: paused;
}

/* Smooth scrolling keyframes */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* move half width for seamless loop */
  }
}

/* ===== SIDE MENU ===== */
.side-menu {
    position: fixed;
    top: 0;
    left: -360px;
    width: 360px;
    height: 100%;
    background: #024682;
    z-index: 2000;
    padding: 40px 30px;
    transition: all .4s ease;
}
.side-menu.open {
    left: 0;
}

/* Close icon */
.side-menu .close {
    color: #fff;
    font-size: 26px;
    opacity: 1;
}

/* Menu items */
.side-menu ul {
    list-style: none;
    padding: 40px 0 0;
}
.side-menu ul li {
    padding: 12px 0;
    font-size: 16px;
}
.side-menu ul li a {
    color: #fff;
    text-decoration: none;
   /*** display: flex; ****/
    
}
.side-menu ul li a span {
    color: #e52d1a;
}

/* ===== OVERLAY ===== */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 1500;
    display: none;
}
.dvla-nav .custom-search {
  position: relative;
  width: 100%;
}

.dvla-nav .custom-search input {
  height: 50px;
  padding: 6px 70px 6px 20px;
  font-size: 16px;
  border: 1px solid #fbbc05;
  background-color: #fbbc05;
}

.dvla-nav .search-btn {
    position: absolute;
    top: 3px;
    right: 3px;
    height: 44px;
    width: 80px;
    border: none;
    background: #ff3c2f;
    color: #fff;
    font-size: 16px;
}

.dvla-nav .search-btn:hover {
  background: #cc1f1f;
}


.dropdown.custom-dropdown .btn {
    min-width: 200px;
    position: relative;
    background: #ff3c2f;
    border: 1px solid #ff3c2f;
    height: 50px;
    border-radius: 50px;
    font-size: 16px;
    width: 240px;
    transition-duration: 0.3s;
}
.dropdown.custom-dropdown .btn:hover {
    background: #024682;
    border: 1px solid #024682;
}
.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open>.dropdown-toggle.btn-danger.focus, .open>.dropdown-toggle.btn-danger:focus, .open>.dropdown-toggle.btn-danger:hover {
    color: #fff;
    background-color:#024682;
    border-color: #024682;
}
.dropdown .dropdown-menu {
    text-align: center !important;
    min-width: 240px;
}
.dropdown .dropdown-menu>li>a {
    display: block;
    padding: 8px 20px;
}
.dropdown .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #e62626;
}



.top-header {
    padding: 2px 0;
    background: #fff;
    margin-top: 90px;
}

.header-left{
    font-size: 22px;
    font-weight: 600;
    color:#024682;
    line-height: 61px;
}
.header-left span{
    color:#ff3c2f;
}

.header-right {
    text-align: right;
    margin-top: 3px;
    margin-bottom: -5px;
}
.header-right a {
    color: #ff3c2f;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    line-height: 0px;
    transition-duration: 0.3s;
}
.header-right a:hover {
    color: #024682;
}

.header-right p{
    margin-bottom: 2px;
    margin-top: -5px;
}
.header-right i{
    font-size: 42px;
    margin-right: 10px;
    vertical-align: top;
    color: #024682;
}

.header-right .numbers{
    display:inline-block;
    line-height: 24px;
}

/* Mobile responsive */
@media (max-width:767px){
    .header-left,
    .header-right{
        text-align:center;
    }
    .header-right{
        margin-top:8px;
    }
}


.front-bnr img{
    width: 100%;
}
.banr-text {
    margin-top: -550px;
}
.banr-text h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 600;
    line-height: 66px;
}
.banr-text h1 span{
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
}
.buttton .btnn{
    width: 170px;
    height: 55px;
    background: transparent;
    color: #fff;
    border: 2px solid#fff;
    font-size: 20px;
    border-radius: 4px;
    margin-top: 20px;
    transition-duration: 0.3s;
}
.buttton .btnn:hover{
    background: #fff;
    color: #e52d1a;
    border: 2px solid#fff;
}

.mnu-frm {
    background: #024682;
    padding: 40px 30px;
    margin-top: 168px;
}
.mnu-frm .input-group {
  width: 100%;
}

.mnu-frm .form-group {
    margin-bottom: 10px;
}
.mnu-frm .form-control {
    height: 55px;
    font-size: 16px;
    border-radius: 4px;
    box-shadow: inset 0 0px 0px rgb(0 0 0 / 0%);
    border: 1px solid#0668b2;
}
.mnu-frm .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child>.btn-group:not(:first-child)>.btn, .input-group-btn:first-child>.btn:not(:first-child), .input-group-btn:last-child>.btn, .input-group-btn:last-child>.btn-group>.btn, .input-group-btn:last-child>.dropdown-toggle {
    border-radius: 4px;
}
.spc{
    padding: 3px;
}
.mnu-frm p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.qout-btn button{
    background: #ff3c2f;
    border: 1px solid#ff3c2f;
    color: #fff;
    width: 100%;
    height: 55px;
    font-size: 22px;
    transition-duration: 0.3s;
    border-radius: 4px
}
.qout-btn button:hover{
    background: #cc1f1f;
    border: 1px solid#cc1f1f;
}



.mak-port {
    background: #f1f1f1;
    padding: 50px 0px;
}
.who-cont.ofr.mk h2{
    color: #000;
}
.mak-port h1 {
    text-align: center;
    font-weight: 600;
    font-size: 40px;
    color: #000;
    margin-bottom: 40px;
}
.mak-port a {
    text-decoration: none;
}
.mod-content {
    background: #fff;
    padding: 50px 20px;
    box-shadow: 1px 1px 15px #ccc;
    margin-bottom: 30px;
    transition-duration: 0.3s;
    border-radius: 4px;
}
.mdlimg {
    text-align: center;
}
.mdlimg img {
    width: 88%;
}
.mdlimg h2 {
    font-size: 24px;
    color: #024682;
    transition-duration: 0.3s;
    font-weight: 600;
}
.mod-content:hover h2 {
    color: #ff3c2f;
}
.mdlimg p {
    font-size: 16px;
    color: #111;
}
.mdlimg button {
    background: #ff3c2f;
    border: 1px solid #ff3c2f;
    color: #fff;
    padding: 10px 25px;
    margin-top: 14px;
    transition-duration: 0.3s;
    border-radius: 4px;
}
.mod-content:hover button {
    background: #00408b;
    border: 1px solid#00408b;
}









.who-cont.ofr.mk img {
    width: 120px;
    margin: 10px auto;
}







.section{
    margin-top: 100px;
}
.img-1 img{
    width: 100%;
}
.who-cont{
    padding: 30px 100px 20px 30px;
}
.who-cont h2 {
    font-weight: 600;
    font-size: 42px;
    color: #000;
    line-height: 50px;
}
.who-cont h2 span{
    font-size: 18px;
    color:#ff3c2f;
}
.who-cont p{
    font-size: 17px;
    line-height: 30px;
    color: #222;
    margin-top: 25px;
}
.buttton.sec1 .btnn{
    color: #ff3c2f;
    border: 2px solid#ff3c2f;
}
.buttton.sec1 .btnn:hover{
    color: #fff;
    background: #ff3c2f;
}
.who-cont.dwn{
    padding: 20px;
}
.lins {
    margin-top: 20px;
}
.lins p{
    background: #f1f1f1;
    padding: 10px 10px 10px 20px;
    font-size: 15px;
    margin-top: 0px;
}
.lins p .fa{
    color: #ff3c2f;
    font-size: 20px;
}
.img-1.dwn img {
    width: 100%;
}


.offer{
    background: #024682;
    padding:80px 20px;
    margin-top: -159px;
    
}
.ptrn-2{
    text-align: right;
    margin-top: 100px;
}
.ptrn-2 img{
    width: 300px;
}
.ptrn-1 img{
    margin-top: -155px;
    width: 300px;
}
.who-cont.ofr{
    padding: 20px;
    text-align: center;
}
.who-cont.ofr h2{
    color: #fff;
}
.services{
  padding:40px 0;
}

.service-box{
  height:320px;
  position:relative;
  overflow:hidden;
}

.text-box{
  background:linear-gradient(#2b2b2b,#1a1a1a);
  padding:40px 30px;
  color:#fff;
}

.text-box h3{
  font-weight:700;
  margin-bottom:20px;
}

.text-box ul{
  list-style:none;
  padding:0;
}

.text-box ul li{
  padding:6px 0;
  font-size:16px;
  position:relative;
}

.text-box ul li:before{
  content:"/";
  margin-right:8px;
  color:#ff3c2f;
}

.big-no {
    position: absolute;
    top: -44px;
    right: -3px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
}

.arrow-btn{
  position:absolute;
  bottom:0;
  right:0;
  width:45px;
  height:45px;
  background:#ff3c2f;
  color:#fff;
  text-align:center;
  line-height:45px;
  font-size:22px;
  text-decoration:none;
}

.img-box img {
    width: 109%;
    height: 100%;
    object-fit: cover;
    margin-left: -15px;
    max-width: 109%;
}





.feature-section {
  background: #ff3c2f;
  color: #fff;
  padding: 20px 0px 50px;
  margin-top: -20px;
}

.who-cont.expolre h2{
    color: #fff;
}
.who-cont.expolre h2 span{
    color: #fff;
}

.free-quote-btn {
    background: #fff;
    color: #ff3c2f;
    padding: 16px 35px;
    font-weight: 700;
    margin-top: 150px;
    border-radius: 4px;
    font-size: 16px;
}

.free-quote-btn:hover {
  background: #024682;
  color: #fff;
}

.divider {
  border-color: rgba(255,255,255,0.3);
  margin: 50px 0;
}


.features .fa {
    font-size: 40px;
    background: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #ff3c2f;
    border-radius: 4px;
}
.features h4 {
    font-weight: 600;
    margin: 20px 0 15px;
    font-size: 22px;
}
.features p {
  font-size: 15px;
  line-height: 1.7;
}

.icon {
  font-size: 45px;
  margin-bottom: 10px;
}


.revie {
    margin-top: 0px;
    background: #f1f1f1;
    padding: 60px 0px 30px;
}
.revie .spn {
    width: 84px;
    margin-left: -5px;
    margin-bottom: 10px;
    float: right;
    margin-top: -33px;
}
.revie .text p {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 25px;
    margin-top: 7px;
}
.revie .name p span{
    font-size: 15px;
    font-weight: 700;
    color: #ff3c2f;
}

.bton a button {
    background: transparent;
    color: #ff3c2f;
    border: 2px solid#ff3c2f;
    font-size: 18px;
    border-radius: 4px;
    margin-top: 8px;
    transition-duration: 0.3s;
    padding: 14px 20px;
    font-weight: 600;
}
.bton a button:hover {
    background: #ff3c2f;
    color: #fff;
    border: 2px solid#ff3c2f;
}


.revie .testimonials-wrap {
            padding: 40px 10;
        }
.revie .heading-section {
    margin-top: -20px;
}
.heading-section h2 span {
    font-size: 17px;
    font-weight: 600;
    color: #ff3c2f;
}
.revie .heading-section h2 {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    text-align: left;
    line-height: 47px;
    margin-top: 30px;
}
.revie .testimonial-box {
            display: block;
            position: relative;
            padding: 20px;
            background: #fff;
            border: 1px solid rgba(0,0,0,.03);
            box-shadow: 0 0 20px rgba(0, 0, 0, .08);
                height: 220px;
        }
.revie .carousel-testimonial .item {
            padding: 30px 10px;
        }

.revie .carousel-testimonial .owl-nav {
            text-align: center;
            color: #024682;
        }
.revie .carousel-testimonial .owl-nav button.owl-next, 
        .carousel-testimonial .owl-nav button.owl-prev {
            padding: 0 12px !important;
        }
.revie .carousel-testimonial .owl-nav button {
            outline: none;
            padding: 0;
        }
.revie .carousel-testimonial .owl-nav button.owl-next span, 
        .carousel-testimonial .owl-nav button.owl-prev span {
            display: block;
            font-size: 40px;
            width: 25px;
            height: 25px;
            vertical-align: 0px;
            line-height: 16px;
        }
.revie .carousel-testimonial .owl-nav button.owl-next.disabled, 
        .carousel-testimonial .owl-nav button.owl-prev.disabled {
            opacity: 0.5;
        }

@media screen and (min-width: 1px) and (max-width: 991px){
.revie .testimonial-box {
    height: auto;
}
.revie .rev-side{
    text-align: center;
}
}


.top-view img {
    width: 98%;
    margin-top: 30px;
}

.top-view {
    padding: 80px 20px;
    background: #fff;
}
.text h2 {
    font-size: 50px;
    font-weight: 700;
    color: #000;
}
.text p {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 30px;
    margin-top: 20px;
}
.text p .fa {
    font-size: 23px;
    margin-right: 5px;
    color: #ff3c2f;
}

.boxx {
        animation-duration: 3s;
        animation-iteration-count: infinite;
        text-align: center;
        transform-origin: bottom;
    }
.wel-img {
    animation-name: bounce-2;
    animation-timing-function: ease;
}
    @keyframes bounce-2 {
        0%   { transform: translateY(0); }
        50%  { transform: translateY(-20px); }
        100% { transform: translateY(0); }
    }

.text.toop {
    text-align: center;
}
.text.toop h2 {
    font-weight: 800;
    font-size: 70px;
    color: #024682;
    margin-bottom: -20px;
    margin-top: 50px;
}



.asked {
    background: #f1f1f1;
    padding: 80px 20px 40px;
}
.asked .text {
    text-align: center;
}
.askbtm{
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid#024682;
}
.asked .text p {
    color: #111;
    margin-bottom: 30px;
}
.ask-text {
    color: #111;
}
.ask-text h3 {
    color: #024682;
    font-size: 22px;
    font-weight: 600;
}
.ask-text p {
    font-size: 15.4px;
    margin-bottom: 50px;
}
.who-cont.ofr.ask h2{
    color: #024682;
}



.banr-text.next {
    margin-top: 0px;
    color: #fff;
    background: #024682;
    height: 54px;
}
.banr-text p.on {
    font-size: 50px;
    font-weight: 600;
    margin-top: -8px;
}
.banr-text .to {
    text-align: right;
    font-size: 20px;
    margin-top: 12px;
}
.banr-text .to a{
    color: #fff;
    text-decoration: none;
}



.no-padding { padding: 0; }

.full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skills-section {
    background: #111;
    color: #fff;
    margin-top: 50px;
    margin-bottom: -100px;
}

.skills-content {
  padding: 80px 60px;
}

.small-title {
    color: #ff3c2f;
    letter-spacing: 2px;
    font-size: 16px;
}

.skills-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 15px 0;
}

.skill {
  margin-top: 30px;
}

.progress {
  height: 4px;
  background: #333;
  margin-top: 8px;
}

.progress-bar {
  width: 0;
  background: #ff3c2f;
}

.contact-section{
  background:#f9f9f9;
  padding:60px 0;
}

.contact-section .info-box{
  background:#fff;
  padding:25px;
  margin-bottom:20px;
  border-radius:6px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  position:relative;
  padding-left:90px;
  height: 140px;
}
.contact-section .info-box p a{
    color: #000;
    text-decoration: none;
    font-size: 16px;
        
    
}
.contact-section .info-box p a:hover{
    color: #ff3c2f;
}

.contact-section .icon-circle{
  width:55px;
  height:55px;
  border:2px dashed #ff3c2f;
  border-radius:50%;
  position:absolute;
  left:20px;
  top:30px;
  text-align:center;
  line-height:55px;
  color:#ff3c2f;
  font-size:22px;
}

.contact-section .info-box h4{
  margin-top:0;
  font-weight:600;
}

.contact-section .form-box{
  background:#fff;
  padding:45px;
  border-radius:6px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.contact-section .form-control {
    height: 50px;
    margin-bottom: 20px;
    border-radius: 0px;
    border: 1px solid #024682;
    background: #f9f9f9
}

.contact-section .msg-box{
  height:150px !important;
  resize:none;
}

.contact-section .send-btn {
    background: #e41f26;
    color: #fff;
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 16px;
    transition-duration: 0.3s;
}

.contact-section .send-btn:hover{
  background:#024682;
  color:#fff;
}
.g-maps img{
    width: 100%;
}



.services-top{
    margin-top: -20px;
}
.service-card {
    background: #fff;
    padding: 25px 25px 25px 90px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 8%);
    position: relative;
    margin: 20px 10px;
    width: 520px;
}
.service-card h4 {
    font-size: 20px;
    font-weight: 600;
}
.service-card p{
    font-size: 16px;
}
.icon-box {
    width: 70px;
    height: 70px;
    background: #ff3c2f;
    color: #fff;
    text-align: center;
    line-height: 70px;
    position: absolute;
    left: -27px;
    top: 36px;
    font-size: 32px;
}





.why-wrap {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  margin-top: 100px;
}


/* Red Box */
.why-content {
    background: #ef4634;
    padding: 90px 90px 60px 110px;
    color: #fff;
    margin-top: 60px;
    margin-left: -20px;
}
/* small heading */
.why-tag {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
}

/* main heading */
.why-content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
}


.why-content p {
  font-size: 16px;
  line-height: 1.9;
  max-width: 480px;
}

/* list */
.why-list {
  list-style: none;
  padding: 0;
  margin-top: 35px;
}

.why-list li {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.why-list i {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  line-height: 48px;
  text-align: center;
  font-size: 20px;
  margin-right: 18px;
}

.why-list span {
  font-size: 18px;
  font-weight: 600;
}

.why-img img {
    width: 130%;
    margin-left: -80px;
    position: relative;
    z-index: -1111;
}


.fqs{
    margin-top: 100px;
    padding: 0px 30px;
    margin-bottom: 100px;
}
.fq-img img{
    width: 100%;
}

.faqs-sec{
    padding: 0px 30px;
}
.faqs-sec .content {
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  padding: 0px;
}

.faqs-sec .centerplease {
  margin: 0 auto;
  width: 100vw;
  font-size: 150%;
  text-align: center;
  margin-top: 3em;
  padding: 5px;
}

.faqs-sec .question {
    position: relative;
    background: transparent;
    margin: 0;
    padding: 17px 10px 17px 35px;
    display: block;
    width: 100%;
    cursor: pointer;
    color: #000;
    margin-top: 10px;
    font-size: 17px;
    letter-spacing: 0.5px;
}
.faqs-sec .question span{
    color: #ff3c2f;
}
.plus .fa{
    font-weight: 600;
}

.ans-bx{
    border-bottom: 1px solid#999;
}
.lftques{
    margin-left: 0px;
}
.faqs-sec .answers {
  background: #fff;
  padding: 0px 15px;
  margin: 0px;
  height: 0;
  overflow: hidden;
  z-index: 15;
  position: relative;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.faqs-sec .questions:checked ~ .answers {
    height: auto;
    opacity: 1;
    padding: 10px 10px 10px 0px;
    font-size: 16px;
    line-height: 30px;
    border-radius: 0px;
}


.faqs-sec .plus {
  position: absolute;
  color: #333;
  margin: 10px 10px 10px 0px;
  z-index: 15;
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
}

.faqs-sec .questions:checked ~ .plus {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faqs-sec .questions {
  display: none;
}

.faqs-sec .bene-cont.faq h3 {
    text-align: left;
    color: #185e94;
    font-weight: 600;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.who-cont.fq {
    margin-top: 20px;
}
.who-cont.fq h2{
    color: #111;
}



.mnu-frm.next{
    margin-top: 0px;
}
.banr-text.next.nxt{
    background: #f1f1f1;
    color: #024682;
}
.banr-text.next.nxt .to a {
    color: #024682;
    transition-duration: 0.3s;
}
.banr-text.next.nxt .to a:hover {
    color: #ff3c2f;
}

.who-cont.ofr.mk.ser{
    margin-top: 50px;
}

.models-btn{
    padding: 20px;
}
.pngbtn {
    width: 100%;
}

.engine-btn {
    display: block;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    background: #ff3c2f;
    border-top: 1px solid#cc1f1f;
    border-left: 1px solid#cc1f1f;
    border-right: 1px solid#cc1f1f;
    border-bottom: 5px solid#cc1f1f;
    padding: 20px 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
    font-size: 14px;
}
.engine-btn span{
    text-decoration: underline;
    font-size: 14px;
    
}
.engine-btn:hover span{
    color: #ff3c2f;
}
.models-btn a{
    text-decoration: none;
}
.models-btn a:hover {
    background: #024682;
    border-top: 1px solid#003665;
    border-left: 1px solid#003665;
    border-right: 1px solid#003665;
    border-bottom: 5px solid#003665;
    color: #fff;
}
.pngbtn .engine-btn{
    
}
.models-btn button span{
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    transition-duration: 0.5s;
}
.models-btn button:hover span{
    color: #ff3c2f;
}

.mdls {
    margin-bottom: 20px;
}

.feature-section.sec{
    margin-top: 50px;
    background: #024682;
}
.sec-cont {
    background: #f1f1f1;
    margin-top: 40px;
    margin-bottom: -50px;
    padding: 50px 20px;
}
.sec-cont h2{
    font-size: 30px;
    font-weight: 600;
    color: #000;
}
.sec-cont p {
    font-size: 16px;
    color: #000;
    margin-top: 15px;
    line-height: 29px;
}
.sec-cont ul{
    list-style: none;
    margin-left: -40px;
}
.sec-cont ul li {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    line-height: 33px;
}
.sec-cont ul li span {
    color: #ff3c2f;
    list-style: none;
    font-size: 18px;
    font-weight: 600;
}

.who-cont.ofr.mk.fm{
}
.who-cont.ofr.mk.fm span{
    color: #ff3c2f;
    font-size: 42px;
}

.form-box.lst .input-group {
    width: 100%;
}
.form-box.lst .btn.send-btn {
    width: 100%;
    font-size: 24px;
    height: 50px;
    padding: initial;
}



.bottom-buttons{
    position: fixed;
    bottom: 30px;
    left: 25px;
    z-index: 9999;
    background: black;
    height: 60px;
    width: 60px;
    color: white;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: center;
}
.bottom-button .tooltip{
    position: absolute !important;
    top: -20px !important;
    left: calc(100% + 5px) !important;
    z-index: 3 !important;
    background: #00E676 !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3) !important;
    padding: 6px 12px !important;
    border-radius: 30px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    opacity: 0 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    transition: 0s !important;
    color: #fff;
}
.bottom-button:hover .tooltip{
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: all 0.4s ease !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.whatsapp {
    bottom: 8px;
    font-size: 40px;
    background: #00E676;
}



.privacy-content {
    background: #fff;
    padding: 10px 30px 30px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
    margin:20px 0px;
}

.privacy-content h3 {
    margin-top: 40px;
    font-weight: 700;
    color: #024682;
}


.privacy-content p {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}



.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.thankyou-box {
    background: #fff;
    padding: 20px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 8%);
    max-width: 750px;
    width: 100%;
    margin-top: -120px;
}

.success-icon {
    font-size: 80px;
    color: #ff3c2f;
    margin-bottom: 20px;
}
.thankyou-box .fa{
    font-size: 100px;
}

.thankyou-box h1 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #024682;
    margin-top: -8px;
}

.thankyou-box p {
    color: #666;
    font-size: 17px;
    margin-bottom: 30px;
}

.btn-custom {
    padding: 10px 25px;
    font-weight: 600;
    margin: 5px;
}

.btn-home {
    background: #024682;
    color: #fff;
    border: none;
    transition-duration: 0.3s;
    font-size: 17px;
}

.btn-home:hover {
    background: #ff3c2f;
    color: #fff;
}

.btn-contact {
    background: #ff3c2f;
    color: #fff;
    border: none;
    font-size: 17px;
    transition-duration: 0.3s;
}

.btn-contact:hover {
    background: #024682;
    color: #fff;
}



.gallery-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.gallery-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 8px;
}

.gallery-img img {
    width: 100%;
    transition: all 0.4s ease;
}

.gallery-img:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}



.site-footer {
  background: #141414;
  color: #fff;
  padding: 70px 0 20px;
  font-size: 14px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-text {
    line-height: 30px;
    margin-bottom: 25px;
    font-size: 16px;
    margin-top: 16px;
}

.working-hours {
  list-style: none;
  padding: 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #444;
    padding: 12px 0;
    font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li a {
    margin-bottom: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
}

.footer-links i {
  color: #ff3c2f;
  margin-right: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
}
.contact-item a{
    color: #fff;
    text-decoration: none;
}

.contact-item i {
  background: #3a3a3a;
  padding: 10px;
  border-radius: 4px;
  margin-right: 10px;
  transition-duration: 0.3s;
}
.contact-item:hover i {
  background:#ff3c2f;
}

.footer-line {
  border-color: #333;
  margin: 20px 0;
}
.ftr-scl {
    margin-top: 24px;
}
.ftr-scl .fa{
    background: #3a3a3a;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    transition-duration: 0.3s;
}
.ftr-scl .fa:hover{
    background: #ff3c2f;
}

.footer-bottom{
    text-align: center;
    font-size: 18px;
}



/* Scroll To Top Button */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 45px;
    height: 45px;
    background: #ff3c2f;
    color: #fff;
    text-align: center;
    line-height: 42px;
    font-size: 26px;
    border-radius: 50%;
    display: none;
    z-index: 9999;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-top:hover {
    background: #c9302c;
    color: #fff;
}











@media screen and (min-width: 768px) and (max-width: 991px) {
.front-bnr{
  margin-top: -3px;
}

}


@media screen and (min-width: 1px) and (max-width: 991px) {

.top-bar {
  height: 60px;
  padding: 0 10px;
}
.logo img {
  width: 140px;
}
.logo {
  margin: 0 auto;
  padding-left: 20px;
}
.top-header {
  margin-top: 0px;
}
.header-left {
  font-size: 0px;
  line-height: 57px;
}
.dvla-nav .search-btn {
  height: 44px;
  width: 30px;
  font-size: 15px;
}
.dvla-nav .custom-search input {
  height: 42px;
  padding: 6px;
  font-size: 14px;
}
.dvla-nav .search-btn {
  height: 36px;
}
.front-bnr img {
  margin-top: 2px;
}
.banr-text {
  margin-top: -167px;
}
.banr-text h1 span {
  font-size: 16px;
  letter-spacing: 0px;
}
.banr-text h1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
}
.buttton .btnn {
  display: none;
}
.mnu-frm {
  padding: 20px 20px;
  margin-top: 31px;
}
.mnu-frm .form-group {
  margin-bottom: 0px;
}
.mnu-frm .form-control {
  height: 45px;
  font-size: 15px;
}
.qout-btn button {
  height: 45px;
}
.mak-port {
  padding: 0px 0px;
}
.who-cont h2 {
  font-size: 22px;
  line-height: 24px;
}
.who-cont h2 span {
  font-size: 16px;
}
.mdlimg h2 {
  font-size: 20px;
}
.section {
  margin-top: 40px;
}
.who-cont {
  padding: 20px 20px 20px 20px;
}
.who-cont p {
  font-size: 16px;
  line-height: 26px;
  margin-top: 15px;
}
.lins p{
    font-size: 14px;
}
.section {
  margin-top: 0px;
}
.who-cont.dwn {
  padding: 10px 10px 20px;
}
.img-1.dwn img {
  width: 100%;
}
.ptrn-2 {
  text-align: center;
  margin-top: 30px;
}
.feature-section {
  padding: 20px 0px 20px;
  margin-top: -20px;
}
.free-quote-btn {
  padding: 12px 35px;
  font-weight: 600;
  margin-top: 0px;
  font-size: 16px;
}
.divider {
  border-color: rgba(255,255,255,0.3);
  margin: 20px 0;
}
.features{
  text-align: center;
}
.revie {
  margin-top: 0px;
  padding: 20px 0px 20px;
}
.revie .heading-section h2 {
  font-size: 22px;
  line-height: 27px;
  margin-top: 30px;
}
.bton a button {
  font-size: 16px;
  margin-top: 8px;
  padding: 10px 20px;
}
.text h2 {
  font-size: 26px;
}
.top-view {
  padding: 20px 20px;
}
.top-view img {
  margin-top: 20px;
}
.text.toop h2 {
  font-size: 40px;
  margin-top: 20px;
}
.asked {
  padding: 20px;
}
.who-cont.ofr {
  padding: 0px;
}
.ask-text h3 {
  font-size: 20px;
  font-weight: 600;
}
.ask-text p {
  margin-bottom: 20px;
}


/************** Start About ****************/
.banr-text p.on {
  font-size: 24px;
  margin-top: 6px;
}
.banr-text .to {
  font-size: 16px;
  margin-top: 15px;
}
.skills-content {
  padding: 20px;
}
.skills-content h2 {
  font-size: 22px;
  margin: 8px 0;
}
.offer {
  padding: 20px 20px;
  margin-top: -109px;
}

/*********** Start Services *************/
.service-card {
  padding: 5px 25px 5px 60px;
  position: relative;
  margin: 20px 10px;
  width: 100%;
}

.why-content {
  padding: 20px;
  margin-top: 0px;
  margin-left: 0px;
}
.why-wrap {
  margin-top: 30px;
}
.why-content h2 {
  font-size: 24px;
}
.fqs {
  margin-top: 30px;
  padding: 0px;
  margin-bottom: 50px;
}




.contact-section .form-box {
  padding: 20px;
}
.models-btn button {
  padding: 10px 14px;
}
.sec-cont h2 {
  font-size: 22px;
}
.who-cont.ofr.mk.fm span {
  font-size: 22px;
}
.form-box.lst .btn.send-btn {
  font-size: 20px;
}

}








@media screen and (min-width: 991px) and (max-width: 1199px) {
.front-bnr{
  margin-top: -3px;
}
.img-1.dwn img {
  width: 100%;
}

.big-no {
  right: 0px;
}
.banr-text {
  margin-top: -450px;
}
.banr-text h1 {
  font-size: 36px;
  line-height: 42px;
}
.who-cont h2 {
  font-size: 36px;
  line-height: 40px;
}
.who-cont {
  padding: 20px;
  margin-top: -50px;
}
.revie .testimonial-box {
  height: 260px;
}
.text h2 {
  font-size: 36px;
}
.service-card {
  width: 440px;
}
.why-content {
  padding: 20px;
  margin-top: 0px;
  margin-left: -20px;
}
.why-content h2 {
  font-size: 36px;
}
.who-cont.fq {
  margin-top: -40px;
}

.who-cont.ofr.mk h2 {
  font-size: 36px;
}
.who-cont.ofr.mk.fm span {
  color: #ff3c2f;
  font-size: 36px;
}









}



















