@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --red: #EF323A;
    --blue: #022A5E;
    --white: #ffffff;
    --black: #000000;
    --heading-font: "DM Sans", sans-serif;
    --body-font: 'Poppins', sans-serif;    
    --textgrey:#758495;
    --lightgrey:#F8F9FB;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Ubuntu", sans-serif;
    margin: 0;
    overflow-x: hidden;
}

body.no-scroll{
    overflow: hidden;
}

p{
    font-size: 16px;
    line-height: 25.4px;
}

a{
    text-decoration: none;
}

header .mobile-toggle{
    display: none;
}

.form-control{
    background: transparent;
    padding: 12px 20px 12px 40px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #1b1b1b;
    margin-bottom: 24px;
}

.form-control::placeholder{
    font-weight: 400;
    font-size: 16px;
    line-height: 25.4px;
    color: #1b1b1b;
}

.form-control:focus{
    background: transparent;
    padding: 12px 20px 12px 40px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #1b1b1b;
    margin-bottom: 24px;
     outline:none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

form .form-group{
    position: relative;
}

form .form-group i{
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 19px;
}

form button[type="submit"]{
    background: var(--red);
    font-size:18px;
    padding: 14px 24px;
    color: var(--white);
    border-radius: 50px;
    border: 1px solid var(--red);
    margin-top: 20px;
    margin-bottom: 30px;
}

form textarea.form-control{
    height: 50px;
}

.red-btn{
    background: var(--red);
    font-size:18px;
    padding: 14px 24px;
    color: var(--white);
    border-radius: 50px;
}

.red-btn i{
    margin-left: 12px;
    font-size: 20px;
}

header{
    width: 100%;
    position: fixed;
    height: 68px;
    background: var(--white);
    border: 1px solid var(--lightgrey);
    transition: all .5s ease;
    padding:10px 0px;
    box-shadow: 0 -6px 10px 5px rgba(0,0,0,0.21);
    z-index: 999;
}

header.hide {
	top: -70px;
}

header .red-btn:hover{
    background: var(--blue);
}

header .container{
    position: relative;
}

header .row{
    align-items: center;
}

header .logo-block{
    width: 198px;
}

header .main-links{
    justify-content: right;
    margin-right: 30px;
}

header .menu-block ul{
    display: flex;
    align-items: center;
    gap: 30px;
    list-style-type: none;
    margin-bottom: 0;
}


header .menu-block ul li a{
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
}

header .menu-block ul li a:hover{
    color:var(--red);
}

/* header megamenu */

.menu-block .has-dropdown > a::after{
    content: '';
    height: 20px;
    width: 100px;
    display: block;
    background:transparent;
    position: absolute;
}

.megamenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--white);
  border: 1px solid #dcdcdc;
  width: 100%;
  padding: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 100;
  transition: all .5s ease;
  margin-top: 10px;
}

.megamenu .col-md-3{
    background: var(--lightgrey);
    padding: 20px 20px;
}

.has-dropdown:hover .megamenu {
  display: block;
}

.megamenu .menutabs {
  display: block;
  margin-bottom: 15px;
  padding-left: 0;
}

.megamenu .menutabs li {
  padding: 10px 20px;
  cursor: pointer;
  background: #dcdcdc;
  border-radius: 4px;
  margin: 0px 0px 10px 0px;
  transition:  .5s ease-in-out;
}

.megamenu .menutabs li.active {
  background: var(--red);
  color: var(--white);
}

.megamenu .technologies-block h5{
    font-size: 18px;
    margin-top: 30px;
    padding-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid var(--textgrey);
}

.megamenu .technologies-block .tech-logos{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: auto;
}

.megamenu .technologies-block  .tech-logos img {
    width: 80%;
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.megamenu .tab-content{
    padding: 20px 5px;
}

.megamenu .tab-content .menutitle{
    margin-bottom: 20px;
}

.megamenu .tab-content .menuitems{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: auto;
}

.megamenu .tab-content .menuitems.singlecl{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: auto;
}

.megamenu .tab-content .menuitems .singlemenuitem a{
    font-size: 14px;
    border-bottom: 1px solid var(--white);
}

.megamenu .tab-content .menuitems .singlemenuitem a:hover{
    color: var(--black);
    border-bottom: 1px solid var(--red);
}

.megamenu .tab-content .menuitems .singlemenuitem p{
    font-size: 10px;
    line-height: 16px;
    margin-bottom: 0;
}

.megamenu .tab-content .speak-block{
    margin-top: 30px;
}

.megamenu .tab-content .speak-block p{
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 0;
}

.megamenu .tab-content .speak-block .btn-block{
    margin-top: 20px;
}

.megamenu .tab-content .speak-block .btn-block a{
    font-size: 14px;
    color: var(--white);
}



.megamenu .tab-content .col-md-4{
    min-height: 405px;
    border-left: 1px solid var(--textgrey);
}

.megamenu .tab-content .tab-pane {
  display: none;
}

.megamenu .tab-content .tab-pane.active {
  display: block;
}

.megamenu .tab-content .col-md-2{
    width: 20%;
}

/* header megamenu */




 header .menutoggle {
    display: none;
 }


.banner-section{
    background-image:url('images/banner-bg.jpg');
    background-size: cover;
    background-position: bottom;
    padding: 80px 0px;
}

.banner-section h1{
    font-weight: 700;
    font-size: 84px;
    line-height: 94.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--blue);
}

.banner-section h1 span{
    color: var(--red);
}

.banner-section h1::after {
    content: '';
    width: 130px;
    height: 1px;
    background: var(--red);
    display: block;
    margin: 10px auto 30px auto;
}

.banner-section .subheading{
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
    color: #022a5e;
}

.banner-section p{
    font-weight: 400;
    font-size: 20px;
    line-height: 26.8px;
    letter-spacing: 0%;
    text-align: center;
}

.banner-section .btn-block{
    text-align: center;
}

.banner-section .btn-block a{
    display: inline-block;
    width: max-content;
}

.banner-section .btn-block a:hover{
    background: var(--blue);
}

.banner-section .carousel{
    padding: 60px 0px;
}

.banner-section{
    padding: 160px 0px 60px 0px;
}

.banner-section .banner-context h1{
    font-weight: 700;
    font-size: 58px;
    line-height: 68.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--blue);
}

.banner-section .banner-context .subheading{
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: #022a5e;
}

.banner-section .banner-context p{
    font-weight: 400;
    font-size: 20px;
    line-height: 26.8px;
    letter-spacing: 0%;
    text-align: center;
}

.banner-section .banner-context .btn-block{
    text-align: center;
    margin-top: 60px;
}

.banner-section .banner-context .btn-block a{
    display: inline-block;
    width: max-content;
}

.banner-section .banner-context .btn-block a:hover{
    background: var(--blue);
}

.banner-section .banner-bottom{
    margin-top: 80px;
}

.banner-section .banner-bottom .stats-block{
    text-align: center;
    padding: 30px 20px;
    position: relative;
    border-right: 2px solid var(--red);
}

.banner-section .banner-bottom .col-md-3:nth-child(4) .stats-block{
    border-right: 0px solid var(--red);
}

.banner-section .banner-bottom .stats-block .num{
    font-weight: 700;
    font-size: 38px;
    line-height: 48.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--blue);
}

.banner-section .banner-bottom .stats-block .desc{
    font-weight: 500;
    font-size: 20px;
    line-height: 28.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--black);
}

/* .banner-section .banner-bottom .stats-block::before {
    content: '';
    background-color: var(--red);
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
} */

.banner-section .banner-bottom .achieve-block{
    font-weight: 500;
    font-size: 24px;
    line-height: 32.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--black);
}


/* Default slick dots reset */
.slick-dots {
  position: absolute;
  bottom: 20px;
  display: flex !important;
  justify-content: center;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slick-dots li {
  margin: 0 6px;
}

.slick-dots button {
  font-size: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--blue);
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slick-dots .slick-active button {
  background-color: var(--white);
  border: 1px solid var(--blue);
}

.logo-section{
    background: var(--blue);
    padding: 20px 0px;
}

.logo-section .logo-slick .item{
    background:var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    margin: 10px;
}

.services-section{
    background: var(--lightgrey);
    padding:80px 0px 80px 0px;
}

.services-section h2{
  font-weight: 700;
  font-size: 58px;
  line-height: 100%;
  color: var(--blue);
  margin-bottom: 30px;
  text-align: center;
}

.services-section h2 span{
    color: var(--red);
}

.services-section p{
    font-weight: 500;
    font-size: 22px;
    line-height: 28.8px;
    text-align: center;
    color: var(--textgrey);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card{
    background: var(--blue);
    border-radius: 14px;
    padding: 30px 24px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-card .card-context{
    position: relative;
    z-index: 9;
}

.service-card .imagehover{
    background: linear-gradient(#000000ab, #000000ab) , url('images/Emerging-Technologies.jpg');
    position: absolute;
    background-size: cover;
    top: 0;
    height: 100%;
    width: 100%;
    right: -100%;
    z-index: 1;
    transition: all .6s ease;
}

.service-card.active .imagehover{
    right: 0%;
}

.service-card .icon {
    padding: 10px;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.service-card .icon.yellow1{
    background: #FFD1A4;
}

.service-card .icon.pink1{
    background: #FFCAD4;
}

.service-card .icon.yellow2{
    background: #FFE5B4;
}

.service-card .icon.pink2{
    background: #F7C6C7;
}

.service-card h4{
    font-weight: 500;
    font-size: 30px;
    color: var(--white);
    text-align: left;
    margin-bottom: 25px;
}

.service-card p{
    font-size: 16px;
    line-height: 25.4px;
    color: var(--white);
    text-align: left;
    font-weight: 400;
    margin-bottom: 25px;
}

.service-card a{
    font-weight: 400;
    font-size: 18px;
    padding: 8px 16px;
    border: 1px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    display: block;
    width: max-content;
}

.service-card a:hover{
    background: var(--white);
    color: var(--black);
}

.about-section{
    background-image:url('images/about-bg.png');
    background-size: cover;
    background-position: center;
}

.about-section .context-block{
    padding: 80px 0px 80px 80px;
}

.about-section  h2{
  font-weight: 700;
  font-size: 58px;
  line-height: 100%;
  color: var(--blue);
  margin-bottom: 30px;
}

.about-section  h2 span{
    color: var(--red);
}

.about-section  p{
    color: var(--black);
}

.about-section .btn-block{
    margin-top: 50px;
}

.about-section .red-btn:hover{
    background: var(--blue);
}

.process-section{
    background: var(--lightgrey);
    padding: 80px 0px;
}

.process-section h2{
  font-weight: 700;
  font-size: 58px;
  line-height: 100%;
  text-align: center;
  color: var(--blue);
  margin-bottom: 30px;
}

.process-section h2 span{
    color: var(--red);
}

.process-section p{
    font-weight: 500;
    font-size: 22px;
    line-height: 28.8px;
    text-align: center;
    color: var(--textgrey);
}

.process-section .row:nth-child(2){
    position: relative;
}

.process-section .step-indicate{
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    line-height: 25.4px;
    width: max-content;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}

.process-section .step-dashed{
    top: 20px;
    border: 2px dashed var(--black);
    position: absolute;
    width: 75%;
    z-index: 0;
}

.process-card{
    background: var(--blue);
    padding: 24px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.process-card .card-context{
    position: relative;
    z-index: 9;
}

.process-card .imagehover{
    position: absolute;
    left: -100%;
    top: 0%;
    height: 100%;
    width: 100%;
    transition: all .6s ease;
}

.process-card .imagehover::after{
    content: '';
    background: #000000b4;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: 8;
    position: absolute;
}

.process-card .imagehover img{
    object-fit: cover;
    height: 100%;
}

.process-card.active .imagehover{
    left:0;
}

.process-card h4{
    font-weight: 500;
    font-size: 30px;
    color: var(--white);
    margin-bottom: 24px;
}

.process-card p{
    font-weight: 400;
    font-size: 16px;
    line-height: 25.4px;
    text-align: left;
    color: var(--white);
    margin-bottom: 0;
}

.technologies-section{
    background: url('images/tech-bg.png');
    background-size: cover;
    padding: 60px 0px;
}

.technologies-section h2{
    font-weight: 700;
    font-size: 58px;
    line-height: 100%;
    text-align: left;
    color: var(--blue);
    margin-bottom: 30px;
}

.technologies-section ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.technologies-section ul.tabs li{
	width: max-content;
    cursor: pointer;
    padding: 14px 40px;
    background: transparent;
    border: 1px solid var(--red);
    color: var(--black);
    border-radius: 50px;
    margin-bottom: 20px;
}

.technologies-section ul.tabs li.current{
	background: var(--red);
	color: var(--white);
    padding: 14px 40px;
}

.technologies-section .tab-content{
	display: none;
	background: transparent;
	padding: 15px;
}

.technologies-section .tab-content.current{
	display: inherit;
}

.technologies-section .for-mobile{
    display: none;
}

.testimonial-section .row{
    align-items: center;
}

.testimonial-section .context-block {
    padding: 20px 20px
}

.testimonial-section .context-block h4{
    font-weight: 700;
    font-size: 42px;
    color: var(--blue);
    margin-bottom: 42px;
}

.testimonial-section .context-block p{
    font-weight: 400;
    font-size: 16px;
    line-height: 25.4px;
    color: #0f0f0f;
    margin-bottom: 24px;
}

.testimonial-section .context-block .testimonail-detail h5{
    font-weight: 700;
    font-size: 32px;
    color: var(--red);
}

.testimonial-section .context-block .testimonail-detail p{
    font-weight: 500;
    font-size: 22px;
    line-height: 28.8px;
    color: #758495;
}

.testimonial-section .context-block h4 span{
    color: var(--red);
}

.cta-section{
    background: var(--lightgrey);
    padding: 80px 0px;
}

.cta-section h2{
  font-weight: 700;
  font-size: 58px;
  line-height: 100%;
  text-align: center;
  color: var(--blue);
  margin-bottom: 30px;
}

.cta-section p{
    font-weight: 500;
    font-size: 22px;
    line-height: 28.8px;
    text-align: center;
    color: var(--textgrey);
}

.cta-section .btn-block{
    text-align: center;
    margin-top: 30px;
}

.cta-section a.red-btn{
    padding: 18px 24px;
    display: inline-block;
    box-shadow: 3px 4px 3px -5px #00000040;
}

.cta-section a.red-btn:hover{
    background: var(--blue);
}

.reach-section{
    background: var(--blue);
    padding: 80px 0px;
}

.reach-section  h2{
  font-weight: 700;
  font-size: 58px;
  line-height: 100%;
  color: var(--white);
  margin-bottom: 50px;
  text-align: center;
}

.reach-section h2 span{
    color: var(--red);
}

.reach-section .reach-details{
    background: var(--lightgrey);
    border-radius: 12px;
    padding: 24px;
}

.reach-section .reach-details h5{
    font-weight: 500;
    font-size: 30px;
    color: var(--black);
    margin-bottom: 24px;
}

.reach-section .reach-details p{
    color:#1b1b1b;
}

.reach-section .reach-details h5 span{
    color: var(--red);
}

.reach-section .reach-details .contact-details .single-detail{
    display: flex;
}

.reach-section .reach-details .contact-details .single-detail .icon{
    margin-right: 20px;
}

.reach-details form button[type="submit"]:hover{
    background: var(--blue);
    border: 1px solid var(--blue);
}

.offcanvas-mobilemenu{
    display: none;
}

.footer-top{
    background: var(--white);
    padding: 20px 0px;
    margin-bottom: 80px;
}

.footer-top .row{
    align-items: center;
}

.footer-top p{
    font-weight: 400;
    font-size: 16px;
    line-height: 25.4px;
    color: var(--textgrey);
    width: 80%;
    margin-bottom: 0;
}

.footer-top .red-btn{
    padding: 18px 24px;
}

.footer-top .red-btn:hover{
    background: var(--blue);
}

footer{
    background: var(--lightgrey);
}

footer .footer-widget h4{
    font-size: 30px;
    font-weight: 500;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 30px;
}

footer .footer-widget p{
    font-size: 16px;
    line-height: 25.4px;
    color: var(--textgrey);
    margin-bottom: 20px;
}

footer .footer-widget p.hq-text{
    font-size: 22px;
    font-weight: 500;
    line-height: 28.8px;
    color: var(--textgrey);
    margin-bottom: 24px;
}

footer .footer-widget a.hq-link{
    font-size: 22px;
    font-weight: 500;
    color: var(--textgrey);
    display: block;
    margin-bottom: 12px;
}

footer .footer-widget ul{
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
}

footer .footer-widget ul li{
    margin-bottom: 20px;
}

footer .footer-widget a{
    font-size: 16px;
    line-height: 25.4px;
    color: var(--textgrey);
    margin-bottom: 20px;
}

footer .footer-widget .partners-block{
    margin-top: 50px;
}

footer .footer-widget .partners-block img{
    margin-bottom: 20px;
}

footer .footer-widget .partners-block img:nth-child(1){
    margin-right: 24px;
}

footer .footer-widget .partners-block img:nth-child(3){
    margin-right: 28px;
}

footer .footer-bottom{
    background: var(--blue);
    padding: 20px 0px;
    margin-top: 80px;
}

footer .footer-bottom p{
    font-size: 22px;
    font-weight: 500;
    line-height: 28.8px;
    color: var(--white);
    margin-bottom: 0px;
}

footer .footer-bottom .social-media{
    margin: 0;
    padding: 0;
    display: flex;
    list-style-type: none;
    gap: 14px;
    justify-content: right;
}

footer .footer-bottom .social-media li a{
    font-size: 22px;
    color: var(--white);
}

#goToTop{
    position: fixed;
    background: var(--red);
    border: 0;
    color: var(--white);
    font-size: 28px;
    border-radius: 50%;
    height: 56px;
    width: 56px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    line-height: 28px;
    bottom: 30px;
    right: 30px;
    transition: all .5s ease;
    opacity: 0;
    z-index: 999;
}

#goToTop:hover{
    transform: scale(1.1);
}

#goToTop.show {
    opacity: 1;
}

@media (min-width: 1920px) {
    .container{
        max-width: 1620px;
    }
}

/* fixing responsive for hd screen 1366X768px */

@media (min-width: 1200px) and (max-width:1400px){

     header .mobile-toggle{
        display: none;
     }

    .banner-section{
    padding: 60px 0px;
    }

    header .logo-block {
        width: 168px;
    }

    header .menu-block ul li a {
        font-size: 16px;
    }

    header .red-btn{
        font-size: 16px;
        padding: 12px 22px;
    }

    .megamenu .menutabs li{
        font-size: 14px;
    }

    .megamenu .card .heading{
        font-size: 14px;
    }

    .megamenu .card a{
        font-size: 14px;
    }

    .megamenu .imgbox h3 {
        font-size: 32px;
    }

    .megamenu .imgbox p {
        font-size: 16px;
    }

    .banner-section h1{
        font-size: 64px;
        line-height: 74.6px;
    }

    .banner-section p {
        font-size: 18px;
        line-height: 24.8px;
    }

    .banner-section .btn-block a{
        font-size: 16px;
        padding: 12px 22px;
    }  


    .banner-section{
    padding: 100px 0px 60px 0px;
}

.banner-section .banner-context h1{
    font-weight: 700;
    font-size: 48px;
    line-height: 58.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--blue);
}

.banner-section .banner-context .subheading{
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #022a5e;
}

.banner-section .banner-context p{
    font-weight: 400;
    font-size: 16px;
    line-height: 22.8px;
    letter-spacing: 0%;
    text-align: center;
}

.banner-section .banner-context .btn-block{
    text-align: center;
    margin-top: 40px;
}

.banner-section .banner-context .btn-block a{
    display: inline-block;
    width: max-content;
}

.banner-section .banner-context .btn-block a:hover{
    background: var(--blue);
}

.banner-section .banner-bottom{
    margin-top: 60px;
}

.banner-section .banner-bottom .stats-block{
    text-align: center;
    padding: 20px 20px;
    position: relative;
}

.banner-section .banner-bottom .stats-block .num{
    font-weight: 700;
    font-size: 28px;
    line-height: 38.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--blue);
}

.banner-section .banner-bottom .stats-block .desc{
    font-weight: 500;
    font-size: 14px;
    line-height: 22.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--black);
}



.banner-section .banner-bottom .achieve-block{
    font-weight: 500;
    font-size: 20px;
    line-height: 28.6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--black);
}


    .services-section h2{
        font-size: 48px;
    }

    .services-section p{
        font-size: 18px;
        line-height: 24.8px;
    }

    .service-card .icon {
        padding: 12px;
        width: 55px;
        height: 55px;
        border-radius: 8px;
        margin-bottom: 15px;
    }   

    .service-card h4{
        font-size: 22px;
        margin-bottom: 20px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 23.4px;
    }

    .service-card a {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .about-section h2{
        font-size: 48px;
    }

    .about-section .btn-block{
        margin-top: 30px;
    }

    .about-section .red-btn{
        font-size: 16px;
        padding: 12px 22px;
    }

    .technologies-section{
        padding: 35px 0px;
    }

    .technologies-section h2{
        font-size: 48px;
    }

    .technologies-section ul.tabs li{
        font-size: 16px;
        padding: 10px 36px;
    }

    .technologies-section ul.tabs li.current{
        font-size: 16px;
        padding: 10px 36px;
    }

    .technologies-section .col-md-7:nth-child(1){
        width: 75%!important;
    }

    .process-section{
        padding: 60px 0px;
    }

    .process-section h2{
        font-size: 48px;
    }

    .process-section p{
        font-size: 18px;
        line-height: 24.8px;
    }

    .process-section .step-indicate{
        font-size: 16px;
        line-height: 23.4px;
    }

    .process-card h4{
        font-size: 24px;
        margin-bottom: 18px;
    }

    .process-section p {
        font-size: 14px;
        line-height: 20.8px;
    }

    .cta-section{
        padding: 60px 0px;
    }

    .cta-section h2{
        font-size: 48px;
    }

    .cta-section p {
        font-size: 18px;
        line-height: 24.8px;
    }

    .cta-section a.red-btn{
        padding: 16px 22px;
        font-size: 16px;
        display: inline;
    }

    .testimonial-section .context-block h4 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .testimonial-section .context-block p {
        font-size: 14px;
        line-height: 23.4px;
        margin-bottom: 18px;
        height: 187px;
        overflow-y: scroll;
    }

    .testimonial-section .context-block .testimonail-detail p {
        height: auto;
    }

    .testimonial-section .context-block .testimonail-detail h5{
        font-size: 22px;
    }

    .testimonial-section .context-block .testimonail-detail p{
        font-size: 16px;
        line-height: 22.8px;
    }

    .reach-section{
        padding: 60px 0px;
    }

    .reach-section h2{
        font-size: 48px;
    }

    .reach-section .reach-details h5{
        font-size: 24px;
    }

    form button[type="submit"] {
        font-size: 16px;
        padding: 12px 22px;
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .footer-top p{
        font-size: 14px;
        line-height: 23.4px;
    }

    .footer-top .red-btn {
        padding: 16px 22px;
        font-size: 16px;
    }

    footer .footer-widget h4{
        font-size: 25px;
        margin-bottom: 25px;
    }

    footer .footer-widget p{
        font-size: 14px;
        line-height: 23.4px;
    }

    footer .footer-widget a{
        font-size: 14px;
        line-height: 23.4px;
    }

    footer .footer-widget p.hq-text{
        font-size: 18px;
        line-height: 24.8px;
    }

    footer .footer-widget a.hq-link{
        font-size: 18px;
    }

    footer .footer-widget .partners-block img:nth-child(1){
        margin-right: 18px;
        width: 80px;
    }

    footer .footer-widget .partners-block img:nth-child(2){
        width: 140px;
    }

    footer .footer-widget .partners-block img:nth-child(3){
        margin-right: 22px;
        width: 80px;
    }

    footer .footer-widget .partners-block img:nth-child(4){

        width: 140px;
    }

    footer .footer-bottom  .row{
        align-items:center ;
    }

    footer .footer-bottom p{
        font-size: 18px;
        line-height: 24.8px;
    }

    footer .footer-bottom {
        padding: 15px 0px;
        margin-top: 60px;
    }

    #goToTop{
        font-size: 22px;
        height: 42px;
        width: 42px;
        line-height: 22px;
        right: 25px;
    }

    
}

/* tablet responsive */

@media (min-width:768px) and (max-width:1199px){

    .red-btn {
        font-size: 16px;
        padding: 12px 22px;
    }

    .banner-section .banner-context .btn-block a{
        display: inline;
    }

    .banner-section .banner-context .btn-block {
        margin-top: 40px;
    }

     header{
        height: 56px;
    }

    header .logo-block {
        width: 158px;
    }

    header .btn-block{
        position: absolute;
        top: 2px;
        right: 45px;
    }

    header .menutoggle {
        position: absolute;
        top: 2px;
        right: 15px;
        display: block;
    }

    header .menutoggle i{
        font-size: 24px;
    }

    

    header .menu-block{
        display: none;
    }
    

    .banner-section{
        padding: 120px 0px 50px 0px;
    }

        .banner-section h1 {
        font-size: 48px;
        line-height: 58.6px;
    }

    .banner-section p {
        font-size: 18px;
        line-height: 24.8px;
    }

    .banner-section .banner-context .subheading {
        font-size: 24px;
    }

    .banner-section .banner-context h1{
        font-size: 48px;
        line-height: 58.6px;
    }

    .banner-section .banner-context p {
        font-size: 18px;
        line-height: 24.8px;
    }

    .banner-section .banner-bottom .stats-block .num {
        font-weight: 700;
        font-size: 38px;
        line-height: 48.6px;
        text-align: center;
        text-transform: capitalize;
        color: var(--blue);
    }

    .banner-bottom .col-md-3{
        width: 50%;
    }

    .banner-section .banner-bottom .stats-block::before{
        display: none;
    }

    .services-section{
        padding: 50px 0px;
    }

    .services-section h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .services-section p{
        font-size: 18px;
        line-height: 24.8px;
    }

    .services-section .col-md-3{
        width: 50%;
    }

    .service-card .icon {
        width: 50px;
        height: 50px;
        border-radius:8px;
        margin-bottom: 15px;
    }

    .service-card h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 23.4px;
    }

    .service-card a {
        font-size: 16px;
        padding: 8px 16px;
    }

    .about-section {
        background: linear-gradient(#00000075, #00000075), url(images/about-bg.png);
        background-size: 210%;
        background-position: left;
    }

    .about-section h2{
        font-size: 38px;
        margin-bottom: 30px;
        color: var(--white);
    }

    .about-section p{
        color: var(--white);
    }

    .about-section .context-block {
        padding: 60px 0px 60px 0px;
    }

    .about-section .col-md-6:nth-child(1){
        width: 0%;
    }

    .about-section .col-md-6:nth-child(2){
        width: 100%;
    }

    .process-section{
        padding: 50px 0px;
    }

    .process-section .row:nth-child(2){
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .process-section .col-md-3{
        width: 48%;
    }

    .process-section h2{
        font-size: 38px;
        margin-bottom: 30px;
    }

    .process-section p{
        font-size: 18px;
        line-height: 24.8px;
    }

    .process-section .step-dashed {
        width: 150%;
    }

    .process-card h4{
        font-size: 24px;
    }

    .process-section p {
        font-size: 14px;
        line-height: 20.8px;
    }

    .testimonial-section .context-block h4 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .testimonial-section .context-block p{
        font-size: 14px;
        line-height: 23.4px;
    }

    .testimonial-section .context-block .testimonail-detail h5{
        font-size: 24px;
    }

    .testimonial-section .context-block .testimonail-detail p {
        font-size: 18px;
        line-height: 24.8px;
        margin-bottom: 0;
    }

    .cta-section {
        padding: 50px 0px;
    }

    .cta-section h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .cta-section p{
        font-size: 18px;
        line-height: 24.8px;
    }

    .cta-section a.red-btn {
        padding: 14px 20px;
    }

    .testimonial-section{
        padding: 50px 0px;
    }

    .testimonial-section .col-md-6{
        width: 100%;
    }

    .technologies-section{
        padding: 50px 0px;
    }

    .technologies-section h2{
        font-size: 38px;
        margin-bottom: 50px;
    }

    .technologies-section .col-md-7:nth-child(1) {
        width: 100% !important;
    }

    .technologies-section ul.tabs li.current {
        font-size: 14px;
        padding: 10px 26px;
    }
    
    .technologies-section ul.tabs li {
        font-size: 14px;
        padding: 10px 26px;
        margin-bottom: 15px;
    }

    .reach-section{
        padding: 50px 0px;
    }

    .reach-section h2 {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .reach-section .col-md-5{
        width: 100%;
        margin-bottom: 30px;
    }



    .offcanvas-mobilemenu {
        background: var(--lightgrey);
        height: 100vh;
        width: 100%;
        position: absolute;
        left: 0;
        margin-top: 12px;
        display: none;
    }

    .offcanvas-mobilemenu.active{
        display: block;
    }

    .menutoggle .ri-menu-3-line{
        display: block;
    }

    .menutoggle .ri-close-large-line{
        display: none;
    }

    .menutoggle.active .ri-close-large-line{
        display: block;
    }

    .menutoggle.active .ri-menu-3-line{
        display: none;
    }

    .offcanvas-mobilemenu .menu-accordion .normal-links a{
        text-transform: uppercase;
        padding: 16px 9px;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 0;
        display: block;
        color: var(--black);
    }

    .offcanvas-mobilemenu .accordion {
        width: 100%;
        max-width: 600px;
        margin: 2rem auto;
        border: 1px solid #ccc;
        border-radius: 8px;
    }

    .offcanvas-mobilemenu .accordion-item {
        border-bottom: 1px solid #ddd;
    }

    .offcanvas-mobilemenu .accordion-header {
        background-color: #f5f5f5;
        cursor: pointer;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1rem;
        transition: background 0.3s;
    }

    .offcanvas-mobilemenu .accordion-header:hover {
        background-color: #e0e0e0;
    }

    .offcanvas-mobilemenu .accordion-icon {
        font-weight: bold;
        font-size: 1.5rem;
    }

    .offcanvas-mobilemenu .accordion-content {
        display: none;
        padding: 1rem;
        background-color: #fff;
    }

    .offcanvas-mobilemenu .accordion-item.active .accordion-content {
        display: block;
    }

    .offcanvas-mobilemenu .accordion-item.active .accordion-icon::before {
        content: "–";
         border: 0;
    }

    .offcanvas-mobilemenu .accordion-icon::before {
        content: "+";
        border: 0;
    }

    .offcanvas-mobilemenu .menu-accordion .accordion-title{
        text-transform: uppercase;
        padding: 16px 9px;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 0;
    }

    .offcanvas-mobilemenu .accordion-container .accordion-title::after{
        content: "+";
        border: 0;
        font-size: 26px;
        top: 10px;
    }


    .offcanvas-mobilemenu .menu-accordion .accordion-title.open{
        border-bottom: 1px solid var(--textgrey);
    }


    .offcanvas-mobilemenu .accordion-container .accordion-title.open::after{
        content: "-";
    }

    .offcanvas-mobilemenu .accordion-content .menusingleitem{
        display: flex;
        align-items: center;
        padding: 10px 0px;
    }

    .offcanvas-mobilemenu .accordion-content .menusingleitem::after{
        content: '';
        border: solid black;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    }

    .offcanvas-mobilemenu .accordion-content .menusingleitem .icon{
        width: 12%;
    }

    .offcanvas-mobilemenu .accordion-content .menusingleitem .acctitle{
        width: 88%;
    }

    .offcanvas-submenu{
        height: 100vh;
        width: 100%;
        background: var(--white);
        position: fixed;
        right: 0;
        top: 0;
        z-index: 9;
        display: none;
    }

    .offcanvas-submenu.active{
        display: block;
    }

    .offcanvas-submenu.hide{
        display: none;
    }

    .offcanvas-submenu .menusingleitem a{
        color: var(--black);
        border-bottom: 1px solid var(--black);
    }

    .offcanvas-submenu-subhead{
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--lightgrey);
        padding: 10px 15px;
        position: absolute;
        width: 100%;
        left: 0;
    }

    .offcanvas-submenu .space50{
        margin-top: 50px;
    }

    .offcanvas-submenu .menusingleitem{
        align-items: flex-start!important;
        border-bottom: 1px solid var(--lightgrey);
    }

    .offcanvas-submenu .menusingleitem::after{
        display: none!important;
    }

    .offcanvas-submenu .menusingleitem .acctitle .desc{
        margin-bottom: 0;
        font-size: 12px;
        line-height: 21px;
    }

    .banner-section .banner-bottom .stats-block{
            border-right: 0px solid var(--red);
    }

    .footer-top .col-md-2{
        width: 30%;
    }

    .footer-top .col-md-8{
        width: 70%;
    }

    .footer-top .red-btn {
        padding: 14px 20px;
    }

    .footer-top p{
        width: 100%;
    }

    footer .col-md-3{
        width: 50%;
    }

    footer .footer-widget{
        margin-bottom: 30px;
    }

    footer .footer-widget h4{
        font-size: 24px;
        margin-bottom: 24px;
    }

    footer .footer-widget .partners-block img:nth-child(1){
        margin-right: 18px;
        width: 80px;
    }

    footer .footer-widget .partners-block img:nth-child(2){
        width: 140px;
    }

    footer .footer-widget .partners-block img:nth-child(3){
        margin-right: 22px;
        width: 80px;
    }

    footer .footer-widget .partners-block img:nth-child(4){
        width: 140px;
    }

    footer .footer-widget p.hq-text{
        font-size: 20px;
        line-height: 26.8px;
    }

    footer .footer-widget a.hq-link{
        font-size: 20px;
        line-height: 26.8px;
    }

    footer .footer-bottom {
        padding: 10px 0px;
        margin-top: 40px;
    }

    footer .footer-bottom .row{
        align-items:center;
    }
    
    footer .footer-bottom p{
        font-size: 16px;
        line-height: 22.8px;
    }

}

/* fixed small screen bug */

@media (min-width: 1401px) and (max-width: 1919px) {
    .technologies-section .col-md-7:nth-child(1) {
        width: 75% !important;
    }
}

/* fixed small screen bug */

@media(max-width:767px){

    header{
        height: 56px;
    }

    header .logo-block {
        width: 158px;
    }

    header .btn-block{
        position: absolute;
        top: 0px;
        right: 45px;
    }

    header .mobile-toggle{
        display: block;
        position: absolute;
        top: 0px;
        right: 15px;
    }

    header .mobile-toggle i{
        font-size: 22px;
    }

    header .mobile-toggle .ri-close-line{
        display: none;
    }

    header.active .mobile-toggle .ri-menu-3-line{
        display: none;
    }

    header.active .mobile-toggle .ri-close-line{
        display: block;
    }

    header .menu-block{
        background: var(--lightgrey);
        position: absolute;
        left: 0;
        top: 0;
        padding: 60px 0px;
        width: 100%;
        height: 100vh;
        display: none;
    }

    header.active .menu-block{
        display: block;
    }

    header .menu-block ul{
        display: block;
        padding: 0px 15px;
    }

    header .menu-block ul li {
        padding: 10px 0px;
        border-bottom: 1px solid var(--textgrey);
    }

     header .menu-block ul li:last-child{
        border-bottom: 0px solid var(--textgrey);
     }

    header .menu-block ul li a {
        font-size: 18px;
        font-weight: 500;
    }

    header .menutoggle{
        position: absolute;
        top: 0px;
        right: 15px;
        display: block;
    }

     header .menutoggle i{
        font-size: 24px;
    }

    .about-section{
        background-image: linear-gradient(#00000075, #00000075), url(images/about-bg.png);
        background-position: left;
    }

    .about-section .context-block {
        padding: 40px 0px 40px 0px;
    }

    .about-section h2{
        font-size: 38px;
        color: var(--white);
    }

    .about-section p{
        color: var(--white);
    }

    .logo-section .logo-slick .item{
        padding: 5px 10px;
    }

    .testimonial-section .context-block {
        padding: 20px 0px;
    }

    form .form-group i{
        font-size: 16px;
    }

    form button[type="submit"] {
        font-size: 15px;
        padding: 10px 20px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    textarea.form-control{
        min-height: max-content;
    }

    .form-control::placeholder{
        font-size: 14px;
        line-height: 23.4px;
    }

    p {
        font-size: 14px;
        line-height: 23.4px;
    }

    .red-btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    .cta-section{
        padding: 40px 0px;
    }

    .cta-section h2{
        font-size: 38px;
    }

    .cta-section p{
        font-size: 18px;
        line-height: 24.8px;
    }

    .cta-section a.red-btn {
        padding: 12px 22px;
        font-size: 15px;
    }

    .banner-section h1 {
        font-size: 48px;
        line-height: 58.6px;
        text-align: center;
        text-transform: capitalize;
        color: var(--blue);
    }

    .banner-section p{
        font-size: 18px;
        line-height: 24.8px;
    }

    .banner-section h1 {
        font-size: 48px;
        line-height: 58.6px;
    }

    .technologies-section h2{
        font-size: 38px;
    }

    .services-section {
        padding: 40px 0px 40px 0px;
    }

    .services-section h2{
        font-size: 38px;
    }

    .services-section p {
        font-size:18px;
        line-height: 24.8px;
    }

    .service-card .icon {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .service-card h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 23.4px;
    }

    .service-card a {
        font-size: 16px;
        padding: 8px 16px;
    }

    .process-section {
        padding: 40px 0px;
    }
  

    .process-section h2{
        font-size: 38px;
        margin-bottom: 30px;
    }

    .process-section p{
        font-size: 18px;
        line-height: 24.8px;
    }

     /* .process-section .row:nth-child(2){
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    } */

    .process-section .col-md-3{
        width: 94%;
    }

    .process-card{
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
    }

    .process-card h4{
        font-size: 24px;
    }

    .process-card p {
        font-size: 14px;
        line-height: 20.8px;
    }

    .process-section .step-dashed {
        border-left: 2px dashed #000;
        height: 1200px;
        margin-left: 50px;
        width: 0px;
        z-index: 0;
    }  


    .process-section .row:nth-child(2){
        justify-content: center;
    }

    .technologies-section .for-mobile{
        display: block;
    }

     .technologies-section .for-desktop{
        display: none;
     }

    .technologies-section ul.tabs li{
        padding: 10px 36px;
        border-radius: 50px;
        margin-bottom: 20px;
    }

    .technologies-section ul.tabs li.current{
        padding: 10px 36px;
    }

    .technologies-section .accordion-content{
        margin: 30px 0px;
    }

    .technologies-section .accordion-content {
        display: none;
    }

    .technologies-section .accordion-content.default {
        display: block;
    }

    .accordion-container .accordion-title {
        position: relative;
    }

    .accordion-container .accordion-title::after {
        content: "";
        position: absolute;
        top: 25px;
        right: 25px;
        width: 0;
        height: 0;
        border: 8px solid transparent;
        border-top-color: var(--black);
    }
    .accordion-container .accordion-title.open::after {
        content: "";
        position: absolute;
        top: 15px;
        border: 8px solid transparent;
        border-bottom-color: var(--white);
    } 
    
    .accordion-container .red-btn{
            width:100%;
            cursor: pointer;
            padding: 14px 40px;
            background: transparent;
            border: 1px solid var(--red);
            color: var(--black);
            border-radius: 50px;
            margin-bottom: 20px;
            font-size: 13px;
            padding: 14px 26px;
    }

    .accordion-container .red-btn.open{
        background: var(--red);
        color: var(--white);
    }


    .reach-section{
        padding: 40px 0px;
    }

    .reach-section h2{
        font-size: 38px;
        margin-bottom: 40px;
    }

    .reach-section .reach-details h5{
        font-size: 24px;
        margin-bottom: 18px;
    }

    .reach-section .reach-details{
        margin-bottom: 20px;
    }

    .testimonial-section{
        padding: 40px 0px;
    }

    .testimonial-section .context-block h4{
        font-size: 28px;
        margin-bottom: 28px;
    }

    .testimonial-section .context-block p {
        font-size: 14px;
        line-height: 23.4px;
        margin-bottom: 24px;
    }

    .testimonial-section .context-block .testimonail-detail h5 {
        font-size: 22px;
    }

    .testimonial-section .context-block .testimonail-detail p {
        font-size: 16px;
        line-height: 22.8px;
    }


    .offcanvas-mobilemenu {
        background: var(--lightgrey);
        height: 100vh;
        width: 100%;
        position: absolute;
        left: 0;
        margin-top: 8px;
        display: none;
    }

    .offcanvas-mobilemenu.active{
        display: block;
    }

    .menutoggle .ri-menu-3-line{
        display: block;
    }

    .menutoggle .ri-close-large-line{
        display: none;
    }

    .menutoggle.active .ri-close-large-line{
        display: block;
    }

    .menutoggle.active .ri-menu-3-line{
        display: none;
    }

    .offcanvas-mobilemenu .menu-accordion .normal-links a{
        text-transform: uppercase;
        padding: 16px 9px;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 0;
        display: block;
        color: var(--black);
    }

    .offcanvas-mobilemenu .accordion {
        width: 100%;
        max-width: 600px;
        margin: 2rem auto;
        border: 1px solid #ccc;
        border-radius: 8px;
    }

    .offcanvas-mobilemenu .accordion-item {
        border-bottom: 1px solid #ddd;
    }

    .offcanvas-mobilemenu .accordion-header {
        background-color: #f5f5f5;
        cursor: pointer;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1rem;
        transition: background 0.3s;
    }

    .offcanvas-mobilemenu .accordion-header:hover {
        background-color: #e0e0e0;
    }

    .offcanvas-mobilemenu .accordion-icon {
        font-weight: bold;
        font-size: 1.5rem;
    }

    .offcanvas-mobilemenu .accordion-content {
        display: none;
        padding: 1rem;
        background-color: #fff;
    }

    .offcanvas-mobilemenu .accordion-item.active .accordion-content {
        display: block;
    }

    .offcanvas-mobilemenu .accordion-item.active .accordion-icon::before {
        content: "–";
         border: 0;
    }

    .offcanvas-mobilemenu .accordion-icon::before {
        content: "+";
        border: 0;
    }

    .offcanvas-mobilemenu .menu-accordion .accordion-title{
        text-transform: uppercase;
        padding: 16px 9px;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 0;
    }

    .offcanvas-mobilemenu .accordion-container .accordion-title::after{
        content: "+";
        border: 0;
        font-size: 26px;
        top: 10px;
    }


    .offcanvas-mobilemenu .menu-accordion .accordion-title.open{
        border-bottom: 1px solid var(--textgrey);
    }


    .offcanvas-mobilemenu .accordion-container .accordion-title.open::after{
        content: "-";
    }

    .offcanvas-mobilemenu .accordion-content .menusingleitem{
        display: flex;
        align-items: center;
        padding: 10px 0px;
    }

    .offcanvas-mobilemenu .accordion-content .menusingleitem::after{
        content: '';
        border: solid black;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    }

    .offcanvas-mobilemenu .accordion-content .menusingleitem .icon{
        width: 12%;
    }

    .offcanvas-mobilemenu .accordion-content .menusingleitem .acctitle{
        width: 88%;
    }

    .offcanvas-submenu{
        height: 100vh;
        width: 100%;
        background: var(--white);
        position: fixed;
        right: 0;
        top: 0;
        z-index: 9;
        display: none;
    }

    .offcanvas-submenu.active{
        display: block;
    }

    .offcanvas-submenu.hide{
        display: none;
    }

    .offcanvas-submenu .menusingleitem a{
        color: var(--black);
        border-bottom: 1px solid var(--black);
    }


    .offcanvas-submenu-subhead{
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--lightgrey);
        padding: 10px 15px;
        position: absolute;
        width: 100%;
        left: 0;
    }

    .offcanvas-submenu .space50{
        margin-top: 50px;
    }

    .offcanvas-submenu .menusingleitem{
        align-items: flex-start!important;
        border-bottom: 1px solid var(--lightgrey);
    }

    .offcanvas-submenu .menusingleitem::after{
        display: none!important;
    }

    .offcanvas-submenu .menusingleitem .acctitle .desc{
        margin-bottom: 0;
        font-size: 12px;
        line-height: 21px;
    }

    header .red-btn span{
        display: none;
    }

    header .red-btn i{
        margin-left: 0;
    }
    
    .footer-widget{
        margin-bottom: 30px;
    }

    .footer-top{
        padding: 30px 0px;
    }

    .footer-top .logo-block{
        width: 168px;
        margin-bottom: 20px;
    }

    .footer-top p {
        font-size: 14px;
        line-height: 23.4px;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-top .red-btn {
        font-size: 15px;
        padding: 12px 22px;
    }

    footer .footer-widget h4{
        font-size: 20px;
        margin-bottom: 20px;
    }

    footer .footer-widget ul li{
        margin-bottom: 10px;
    }

    footer .footer-widget p {
        font-size: 14px;
        line-height: 23.4px;
        margin-bottom: 10px;
    }

    footer .footer-widget p.hq-text {
        font-size: 16px;
        line-height: 22.8px;
        margin-bottom: 16px;
    }

    footer .footer-widget a.hq-link{
        font-size: 16px;
        line-height: 22.8px;
        margin-bottom: 16px;
    }

    footer .footer-widget a{
        font-size: 14px;
        line-height: 23.4px;
    }

    footer .footer-widget .partners-block img:nth-child(1){
        margin-right: 12px;
        width: 80px;
    }

    footer .footer-widget .partners-block img:nth-child(2){
        width: 140px;
        margin-right: 12px;
    }

    footer .footer-widget .partners-block img:nth-child(3){
        margin-right: 12px;
        width: 80px;
    }

    footer .footer-widget .partners-block img:nth-child(4){
        width: 140px;
    }

    .footer-top {
        margin-bottom: 40px;
    }

    footer .footer-bottom {
        padding: 10px 0px;
        margin-top: 20px;
    }

    footer .footer-bottom p{
        font-size: 16px;
        line-height: 22.8px;
    }

    footer .footer-bottom .social-media{
        justify-content: left;
    }

    .banner-section .banner-bottom {
        margin-top: 60px;
    }

    .banner-section {
        padding: 100px 0px 60px 0px;
    }

    .banner-section .banner-context .subheading {
        font-size: 20px;
    }

    .banner-section .banner-context h1{
        font-size: 38px;
        line-height: 48.6px;
    }

    .banner-section .banner-context p{
        font-size: 16px;
        line-height: 22.8px;
    }

    .banner-section .banner-bottom .stats-block{
        padding-bottom: 0;
        border: 0;
    }

    #goToTop{
        font-size: 18px;
        height: 38px;
        width: 38px;
        line-height: 18px;
        right: 15px;
    }
}


