:root{

    --primary-color: #FE631F;

    --secondary-color: #3a3a3a;

    --first-color: #F8DF23;

    --second-color: #E61D1E;

}

*{

    margin: 0;

    padding: 0;

}

body{

    font-family: 'Roboto', sans-serif;

    font-size: 18px;

    color: var(--secondary-color);

    -webkit-user-select: none;

    -moz-user-select: -moz-none;

    -ms-user-select: none;

    user-select: none;

}

.fs-0{

    font-size: 0;

}

h1, h2, h3, h4, h5, h6{

    font-family: 'Nunito', sans-serif;

    font-weight: 700;

}

h1{

    font-size: 45px;

    line-height: 55px;

}

h2{

    font-size: 38px;

    line-height: 51px;

}

h3{

    font-size: 34px;

}

h4{

    font-size: 28px;

    line-height: 37px;

}

h5{

    font-size: 26px;

}

h6{

    font-size: 24px;

}

.btn{

    height: 55px;

    font-size: 20px;

    font-weight: 500;

    width: max-content;

}

.btn:hover{

    opacity: .9;

}

.btn-primary{

    background: var(--primary-color);

    border-color: var(--primary-color);

    color: #fff;

}

.btn-primary:hover,

.btn-primary:focus,

.btn-primary:active{

    background: var(--primary-color);

    box-shadow: none !important;

    border-color: var(--primary-color);

    color: #fff;

}

.btn-secondary{

    background: var(--first-color);

    border-color: var(--first-color);

    color: var(--secondary-color);

}

.btn-secondary:hover,

.btn-secondary:focus,

.btn-secondary:active{

    background: var(--first-color);

    box-shadow: none !important;

    border-color: var(--first-color);

    color: var(--secondary-color);

}

.light-bg{

    background: #f7f7f7;

}

label{

    font-size: 16px;

    font-weight: 500;

}

.form-group{

    position: relative;

}

.error{

    position: absolute;

    top: 100%;

    font-size: 12px;

    color: var(--second-color);

}

input{

    height: 48px;

}

.form-control:focus{

    box-shadow: none;

    border-color: #000;

}

textarea{

    resize: none;

    height: 120px;

}

input::-webkit-outer-spin-button,

input::-webkit-inner-spin-button {

  -webkit-appearance: none;

  margin: 0;

}

input[type=number] {

  -moz-appearance: textfield;

}

section{

    padding: 60px 0;

}

.header-block h1{

    font-family: 'Blinker', sans-serif;

    font-weight: 600;

}

.header-block p{

    font-weight: 500;

}

.top-header{

    height: 40px;

    background: var(--primary-color);

}

.contact li{

    font-size: 16px;

    font-weight: 500;

}

.contact li i{

    font-size: 24px;

    position: relative;

    top: -1px;

}

.social-links li a img {

    height: 18px;

}

.social-links li a:hover{

    opacity: .9;

}

.navbar-toggler:focus{

    box-shadow: none;

}

.menu-toggler {

    width: 24px;

    height: 3px;

    background: var(--secondary-color);

    display: block;

    position: relative;

    transition: .3s ease;

}

.menu-toggler:after,

.menu-toggler:before{

    content: '';

    position: absolute;

    left: 0;

    width: 24px;

    height: 3px;

    background: var(--secondary-color);

    transition: .3s ease;

}

.menu-toggler:after{

    top: -7px;

}

.menu-toggler:before{

    top: 7px;

}

.navbar-toggler[aria-expanded="true"] .menu-toggler:after{

    opacity: 0;

}

.navbar-toggler[aria-expanded="true"] .menu-toggler{

    transform: rotate(45deg);

}

.navbar-toggler[aria-expanded="true"] .menu-toggler:before{

    transform: rotate(-90deg);

    top: 0;

}

.navbar .nav-item:not(:first-child){

    margin-left: 35px;

}

.navbar .nav-item .nav-link {

    color: var(--secondary-color);

    font-size: 15px;

    font-weight: 500;

    padding: 25px 0;

}

.navbar .nav-item.active > .nav-link:after{

    border-color: var(--second-color);

}

.has-menu > a:after,

.has-child-menu > a:after,

.has-megamenu > a:after {

    content: '';

    width: 10px;

    height: 10px;

    border: 2px solid var(--secondary-color);

    display: inline-block;

    transform: rotate(45deg);

    border-top: 0;

    border-left: 0;

    position: relative;

    top: -2px;

    margin-left: 5px;

    transition: .3s ease;

    padding-left: 7px;

}

.has-menu:hover > a:after,

.has-menu > a.show:after,

.has-megamenu:hover > a:after,

.has-megamenu > a.show:after{

    border-color: var(--second-color);

    transform: rotate(225deg);

    top: 2px;

}

.has-child-menu > a:after{

    transform: rotate(-45deg);

}

.has-child-menu:hover > a:after,

.has-child-menu > a.show:after {

    transform: rotate(135deg);

    border-color: var(--second-color);

}

.has-menu .submenu{

    display: none;

    background: #fff;

    padding: 0px;

    position: absolute;

    top: 100%;

    z-index: 9;

    max-width: 250px;

    box-shadow: 0 0 0 rgba(0, 0, 0, .2);

    min-width: 250px;

    border: 0;

    margin: 0;

    border-radius: 0;

}

.has-menu .submenu .nav-item{

    position: relative;

    margin-left: 0;

}

.has-menu .submenu .nav-item .nav-link,

.has-child-menu a{

    color: var(--secondary-color);

    text-decoration: none;

    font-weight: 500;

    padding: 8px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid #f7f7f7;

    font-size: 14px;

}

.navbar .nav-item .nav-link:hover,

.navbar .nav-item.active > .nav-link,

.navbar .nav-item > .nav-link.show,

.has-menu:hover > a.nav-link,

.has-megamenu:hover > a.nav-link,

.has-menu .submenu .nav-item .nav-link:hover,

.mega-menu ul li a:hover{

    color: var(--second-color);

}

.has-menu .submenu .nav-item:last-child .nav-link,

.has-menu > ul > li:last-child > a{

    border: 0;

}

.has-child-menu .child-menu li a{

    border-bottom: 1px solid #f7f7f7 !important;

}

.has-child-menu .child-menu{

    border-left: 1px solid #f7f7f7 !important;

}

.has-menu .submenu .child-menu{

    display: none;

    background: #fff;

    position: absolute;

    left: 100%;

    top: 0;

    width: 250px;

    padding: 0;

}

.has-menu .submenu li:hover > .child-menu,

.navbar .nav-item:hover .submenu,

.submenu.show{

    display: block;

}

.has-menu .submenu .child-menu{

    border: 0;

    border-radius: 0;

    height: 100% !important;

    margin-top: 0;

}

.has-megamenu .mega-menu > ul > li{

    position: inherit;

}

.mega-menu,

.submenu{

    left: -90px !important;

}

.mega-menu {

    border: 0;

    border-radius: 0;

    width: 250px;

    margin: 0 !important;

}

.has-child-menu:hover ul{

    display: flex !important;

    flex-wrap: wrap;

    align-content: flex-start;

    justify-content: space-between;

}

.has-megamenu:hover .mega-menu{

    display: block;

    left: 0;

}

.has-menu .submenu .has-child-menu.nav-item {

    position: initial;

}

.has-menu > ul{

    max-width: 250px;

    border-right: 1px solid #f7f7f7;

}

.has-child-menu > ul {

    left: 250px;

    top: 0;

    border: 0;

    right: 0;

    height: 100%;

    border-radius: 0;

    overflow: auto;

    width: 650px !important;

    flex-wrap: wrap;

    align-content: flex-start;

    justify-content: space-between;

}

.has-child-menu > ul li{

    max-width: calc(50% - 10px);

    width: 100%;

}

.hero-section{

    display: flex;

    overflow: hidden;

    height: calc(100vh - 230px);

    /*height: 508px;*/

    background: var(--primary-color);

}

.hero-section .carousel-indicators{

    margin-bottom: 30px;

}

.hero-section .carousel-indicators [data-bs-target]{

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: transparent;

    border: 2px solid #fff;

    opacity: 1;

}

.hero-section .carousel-inner .carousel-item:nth-of-type(2),

.hero-section .carousel-inner .carousel-item:nth-of-type(3){

    height: 100%;

}

/*.hero-section .carousel-inner .carousel-item:nth-of-type(2){

    background-image: linear-gradient(to right, #1864a6 0%, #010109 55%);

}*/

.hero-section .carousel-inner .carousel-item:nth-of-type(2) {
    background-image: linear-gradient(to right, #c91a37 0%, #fd6709 100%);
}

.hero-section .carousel-inner .carousel-item:nth-of-type(3){

    background-image: linear-gradient(to right, #fe6320, #d80100 30%, #b70000 47%, #ef0101 58%, #f00000 83%, #c80000 92%);

}

.hero-section .carousel-inner .carousel-item:nth-of-type(2) .slider-full-img,

.hero-section .carousel-inner .carousel-item:nth-of-type(3) .slider-full-img{

    display: flex;

    align-items: center;

    height: 100%;

}

.hero-section .carousel-indicators .active{

    background: #fff;

}

.hero-section .slider-left-block{

    max-width: 55%;

    width: 100%;

    padding: 0 15px;

}

.hero-section .slider-right-block{

    max-width: 45%;

    width: 100%;

    padding: 0 15px;

}

.hero-section .slider-right-block img{

    width: 100%;

    height: auto;

}

.inner-left-content ul li{

    font-size: 24px;

    line-height: 32px;

    position: relative;

    padding-left: 20px;

    margin-bottom: 5px;

    font-weight: 500;

}

.inner-left-content ul li:before,

.red-dots li:before{

    content: '';

    width: 10px;

    height: 10px;

    background: var(--primary-color);

    border: 3px solid #fff;

    display: block;

    border-radius: 50%;

    position: absolute;

    top: 7px;

    left: 0;

}

.inner-left-image{

    width: 150px;

}

.inner-left-image img{

    border-radius: 12px;

    width: 100%;

    height: auto;

}

.hero-section .carousel-control-next,

.hero-section .carousel-control-prev {

    height: max-content;

    top: 47%;

    width: max-content;

    opacity: 1;

}

.hero-section .carousel-control-next{

    right: 25px;

}

.hero-section .carousel-control-prev{

    left: 25px;

}

.hero-section .carousel-control-next-icon,

.hero-section .carousel-control-prev-icon,

#testimonialSlider .carousel-control-next-icon,

#testimonialSlider .carousel-control-prev-icon {

    background-image: none !important;

    width: 36px;

    height: 36px;

    background: #fff;

    opacity: 1;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: rotate(45deg);

}

.hero-section .carousel-control-next-icon:before,

.hero-section .carousel-control-prev-icon:before,

#testimonialSlider .carousel-control-next-icon:before,

#testimonialSlider .carousel-control-prev-icon:before{

    content: '';

    width: 10px;

    height: 10px;

    display: block;

    border: 2px solid #000;

    position: relative;

}

.hero-section .carousel-control-prev-icon:before{

    border-top: none;

    border-right: none;

    left: 1px;

    top: -1px;

}

.hero-section .carousel-control-next-icon:before{

    border-bottom: none;

    border-left: none;

    left: -1px;

    top: 1px;

}

.inner-left-image span{

    font-family: 'Nunito', sans-serif;



}

.inner-left-content h2{

    font-weight: 700;

}

.slider-btn{

    margin-left: 20px;

    height: 48px;

}

.red-dots li{

    position: relative;

    padding-left: 30px;

    margin-top: 15px;

    font-weight: 400;

    font-size: 18px;

    line-height: 32px;

}

ol{

    padding-left: 18px;

}

ol li{

    margin-top: 15px;

    font-weight: 400;

    font-size: 18px;

    line-height: 32px;

}

.red-dots li:first-child,

ol li:first-child{

    margin-top: 0;

}

.red-dots li:before{

    background: #f7f7f7;

    border-color: var(--second-color);

    top: 10px;

}

.about-sec .header-block h4{

    color: var(--second-color);

    font-family: 'Blinker', sans-serif;

}

#read_more{

    color: var(--second-color);

    font-weight: 700;

    text-decoration: underline;

    cursor: pointer;

}

.about-content{

    max-height: 190px;

    overflow: hidden;

    transition: .4s ease;

}

.about-content.show-more{

    max-height: 100%;

}

#testimonialSlider{

    max-width: 900px;

    width: 100%;

    margin: 0 auto;

    padding: 20px;

    border: 2px solid var(--primary-color);

    border-radius: 4px;

}

#testimonialSlider p{

    font-weight: 500;

}

#testimonialSlider .carousel-indicators{

    margin-bottom: -50px;

}

.testi-username{

    color: var(--primary-color);

    font-weight: 500;

}

.testi-username span{

    font-size: 14px;

    color: #5A6A71;

}

.testimonial-video{

    width: 100%;

    height: 240px;

    display: block;

}

#testimonialSlider .carousel-control-next, #testimonialSlider .carousel-control-prev {

    opacity: 1;

    height: min-content;

    top: 44%;

    width: max-content;

}

#testimonialSlider .carousel-indicators [data-bs-target]{

    background: #DBDBDB;

    opacity: 1;

    border-radius: 50%;

    width: 12px;

    height: 12px;

    border: 1px solid transparent;

}

#testimonialSlider .carousel-indicators .active{

    background: var(--primary-color);

}

#testimonialSlider .carousel-control-next-icon,

#testimonialSlider .carousel-control-prev-icon,

#testimonialSlider .carousel-control-next-icon:before,

#testimonialSlider .carousel-control-prev-icon:before{

    border: 2px solid var(--primary-color);

}

#testimonialSlider .carousel-control-prev-icon:before{

    border-top: none;

    border-right: none;

    left: 1px;

    top: -1px;

}

#testimonialSlider .carousel-control-next-icon:before{

    border-bottom: none;

    border-left: none;

    left: -1px;

    top: 1px;

}

#testimonialSlider .carousel-control-next {

    right: -70px;

}

#testimonialSlider .carousel-control-prev {

    left: -70px;

}

.faq-sec .accordion-item,

.faq-sec .accordion-button{

    border: 0;

    background: #FFF9F7;

    box-shadow: none;

}

.faq-sec .accordion-button{

    padding: 33px 60px 33px 30px;

    font-weight: 700;

}

.faq-sec .accordion-item:not(:first-child){

    margin-top: 20px;

}

.faq-sec .accordion-button:not(.collapsed){

    color: var(--secodary-color);

}

.faq-sec .accordion-button:after{

    background-image: none;

    transform: none;

    width: 24px;

    height: 3px;

    background-color: var(--secondary-color);

    position: absolute;

    right: 30px;

    border-radius: 4px;

}   

.faq-sec .accordion-button:before{

    width: 3px;

    height: 24px;

    background-color: var(--secondary-color);

    display: block;

    content: '';

    position: absolute;

    right: 40px;

    border-radius: 4px;

}

.faq-sec  .accordion-button:not(.collapsed):before{

    display: none;

}

.faq-sec .accordion-body{

    padding-top: 0;

    padding-bottom: 35px;

    font-weight: 500;

    padding-left: 30px;

    padding-right: 30px;

}

footer{

    background: var(--secondary-color);

    padding-top: 60px;

}

.copyright-text{

    padding: 30px;

    border-top: 1px solid rgba(219, 219, 219, .28);

    font-size: 16px;

}

.copyright-text a:hover{

    color: var(--second-color) !important;

}

.footer-links li:not(:first-child){

    margin-top: 10px;

}

.footer-links li a{

    font-size: 16px

}

footer h5{

    font-family: 'Blinker', sans-serif;

}

#read_more.less .less-data{

    display: block;

}

#read_more.less .more-data,

#read_more .less-data{

    display: none;

}

.hero-section-inner{

    background: linear-gradient(-45deg, #fe631f, #f8df23, #f71b1e, #e8cd00);

    background-size: 400% 400%;

    animation: gradient 15s ease infinite;

    min-height: 120px;

    padding: 20px 15px !important;

}

.footer-socail li a:hover{

    opacity: .8;

}

.modal input.form-control{

    height: 35px;

}

.modal textarea{

    height: 86px;

}

.modal .btn{

    height: 42px;

    font-size: 16px;

}

.about-sec .header-block h5{

    color: var(--second-color);

}

.about-img{

    max-width: 200px;

}

.testimonial-left{

    max-width: calc(300px - 20px);

    width: 100%;

}

.testimonial-right {

    max-width: 100%;

    width: 100%;

}

.testimonial-left + .testimonial-right{

    margin-left: 20px;

}

.modal-content .btn-close{

    position: absolute;

    right: -15px;

    background-color: #f7f7f7;

    border-radius: 50%;

    background-size: 12px 12px;

    background-position: center;

    padding: 7px;

    opacity: 1;

    top: -15px;

    z-index: 1;

}

.modal-content .btn-close:focus{

    box-shadow: none;

    border: 0;

}

.modal-footer{

    background: #f7f7f7;

}

.whats-app{

    position: fixed;

    bottom: 15px;

    right: 15px;

    z-index: 2;

}

.whats-app-btn {

    background-color: #00e676;

    display: inline-flex;

    align-items: center;

    padding: 10px;

    border-radius: 4px;

}

.whats-app-btn img{

    width: 24px;

    height: 24px;

}

h2 .logo-pios{

    height: 32px;

    width: auto;

}

p .logo-pios{

    height: 20px;

    width: auto;

}

.inner-content h1,

.inner-content h2,

.inner-content h3,

.inner-content h4,

.inner-content h5,

.inner-content h6{

    margin-bottom: 25px;

    margin-top: 25px;

}

.header-block h2{

    margin-top: 0;

}

.inner-content .header-block h2{

    margin-bottom: 0;

}

h2 .logo-pios{

    position: relative;

    top: -4px;  

}

hr{

    margin: 30px 0;

}

.inner-content img{

    height: auto;

}

.copyright-text small .copyright{

    display: none;

}

.sidebar{

    position: sticky;

    top: 90px;

    background: #FFF9F7;

    padding: 30px;

}

.modal-content form label{

    /*display: none;*/

}

.modal-content form .mb-4{

    margin-bottom: 0.5rem!important;

}

.slider-full-img picture{

    width: 100%;

}

.inner-content img + p{

    margin-top: 25px;

}

.service-sec .card{

    cursor: pointer;

}

.testimonial-right p a{

    color: var(--primary-color);

    text-decoration: none;

    margin-left: 10px;

}

.divider-border br{

    display: none;

}

.divider-border {

    border-bottom: 1px solid #ced4da;

    padding: 75px 0 0 0;

    margin: 0 0 90px;

}

.jumbotron h1,

.jumbotron h2{

    display: none;

}

.jumbotron p{

    margin-top: 40px;

}

.jumbotron .btn-lg{

    display: inline-flex;

    align-items: center;

    margin-bottom: 60px;

}

.linkedin-footer,

.twitter-footer{

    font-size:40px;

}

.linkedin-footer{

    top: -2px;

    position: relative;

}

.birthNumber-calc{

    max-width: 500px;

}

.birthNumber-calc input{

    max-width: calc(100% - 140px);

    margin-right: 20px;

    width: 100%;

}

.birthNumber-calc .btn{

    height: 48px;

    min-width: 120px;

}

.birthNumber-calc p{

    margin: 15px 0 0;

    height: auto;

    line-height: 1;

}

#birthResult br{

    display: none;

}

@keyframes gradient {

    0% {

        background-position: 0% 50%;

    }

    50% {

        background-position: 100% 50%;

    }

    100% {

        background-position: 0% 50%;

    }

}

.service-sec .card{

    height: 100%;

}

.inner-content ol li p{

    margin-bottom: 40px;

}

.inner-content ol li p:first-child{

    margin-bottom: 5px;

}

.hero-section .slider-right-block img{

    width: 90%;

    display: block;

    margin: 0 0 0 auto;

}

.col-md-8 p video {

    max-width: 60%;

    height: 300px;

    width: 100%;

}

.phone-cstm label.control-label:after {

    content: '(Optional):';

    font-weight: 400;

    font-size: 14px;

}

.font-weight-normal{

    font-weight: normal!important;

}

/*Media Css Start Here*/

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

        .hero-section{

            height: calc(100vh - 117px);

        }

    }

@media all and (max-width: 1300px){

    .navbar .nav-item .nav-link,

    .has-menu .submenu li a{

        font-size: 16px;

    }

}

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

    h1{

        font-size: 38px;

        line-height: 48px;

    }

    h2{

        font-size: 32px;

        line-height: 44px;

    }

    h3{

        font-size: 28px;

    }

    h4{

        font-size: 24px;

        line-height: 32px;

    }

    h5{

        font-size: 22px;

    }

    h6,

    .inner-left-image span{

        font-size: 20px !important;

    }

    .red-dots li{

        font-size: 18px;

    }

    header .navbar{

        height: 65px;

    }

    .navbar-brand img,

    .footer-logo{

        width: 175px;

        height: 45px;

    }

    .slider-right-block img{

        width: 100%;

        height: 100%;

    }

    .slider-right-block{

        min-width: 40%;

    }

    .navbar .nav-item{

        margin-left: 0 !important;

    }

    .navbar .nav-item .nav-link{

        padding: 10px 30px;

        display: flex;

        align-items: center;

        justify-content: space-between;

    }

    .has-menu .submenu li a {

        padding: 10px 30px;

        display: flex;

        justify-content: space-between;

        align-items: center;

    }

    .mega-menu, .submenu{

        left: 0 !important;

        padding-left: 30px;

    }

    .mega-menu,

    .child-menu{

        position: inherit !important;

        width: 100% !important;

    }

    .child-menu{

        padding-left: 30px;

    }

    .child-menu li{

        max-width: 100% !important;

        width: 100% !important;

    }

    .mega-menu > ul{

        max-width: 100%;

    }

    #testimonialSlider{

        max-width: 850px;

    }

    #testimonialSlider .carousel-control-next{

        right: -55px;

    }

    #testimonialSlider .carousel-control-prev {

        left: -55px;

    }

    .navbar-collapse{

        position: absolute;

        top: 100%;

        background: #fff;

        z-index: 99;

        left: 0;

        right: 0;

        box-shadow: 0px 12px 11px rgb(136 136 136 / 10%);

    }

    .has-menu .submenu,

    .has-menu .submenu .child-menu{

        position: inherit;

    }

    .has-menu .submenu .child-menu {

        left: 0;

    }

    .has-menu .submenu{

        max-width: 100%;

        margin-left: 20px;

    }

    .navbar .nav-item .submenu{

        display: none !important;

    }

    /*.navbar .nav-item .submenu.show,*/

    .navbar .nav-item .submenu.show1{

        display: block !important;

    }

    /*.has-child-menu > a:after{

        display: none;

    }*/

    .has-menu > a:after{

        transform: rotate(45deg) !important;

    }

    .has-menu > a.show1:after, .has-child-menu > a.show:after {

        border-color: var(--second-color);

        transform: rotate(225deg) !important;

        top: 2px;

    }

    .has-child-menu > a:after,

    .has-child-menu:hover > a:after,

    .has-child-menu > a.show:after{

        transform: rotate(45deg);   

    }

    .hero-section{

        height: 508px;

    }

    .has-menu .submenu li:hover > .child-menu, .navbar .nav-item:hover .submenu, .submenu.show{

        display: none;

    }

    .has-child-menu .child-menu{

        position: initial !important;

        width: 100% !important;

        margin: 0;

        padding-left: 30px !important;

        border-left: 0 !important;

    }

    .submenu,

    .child-menu{

        height: auto !important;

    }

    .has-child-menu:hover ul{

        display: none !important;

    }

    .has-child-menu .child-menu.show1{

        display: block !important;

    }

    .has-menu .submenu .nav-item:last-child .nav-link, .child-menu li:last-child .nav-link{

        border-bottom: 1px solid #f7f7f7 !important;

    }

}

@media all and (max-width: 991px){ 

    #testimonialSlider{

        max-width: 640px;

    }

    .hero-section {

        height: calc(100vh - 240px);

    }

    .hero-section .slider-left-block{

        max-width: 100%;

        width: 100%;

    }

    .hero-section .slider-right-block{

        max-width: 100%;

        width: 100%;

    }

    .hero-section .slider-right-block img {

        width: 400px;

        height: auto;

        margin: 0 auto 15px;

        display: block;

    }

}

@media all and (max-width: 767px){ 

    body{

        font-size: 16px;

    }

    h1{

        font-size: 28px;

        line-height: 34px;

    }

    h2{

        font-size: 26px;

        line-height: 32px;

    }

    h3{

        font-size: 22px;

    }

    h4{

        font-size: 20px;

        line-height: 26px;

    }

    h5{

        font-size: 18px;

    }

    h6,

    .inner-left-image span{

        font-size: 16px !important;

    }

    .hero-section-inner h1{

        font-size: 26px;

    }

    .red-dots li,

    .btn{

        font-size: 16px;

    }

    .navbar-collapse{

        min-height: calc(100vh - 65px);

        overflow: auto;

        height: 100%;

    }

    .inner-left-image img{

        width: 100%;

        height: auto;

    }

    .inner-left-content ul li {

        font-size: 14px;

        line-height: 20px;

    }

    #testimonialSlider .carousel-control-next, #testimonialSlider .carousel-control-prev,

    .hero-section .carousel-control-next, .hero-section .carousel-control-prev{

        display: none;

    }

    .hero-section {

        height: calc(100vh - 105px);

    }

    .slider-right-block{

        margin-bottom: 20px;

    }

    section{

        padding: 30px 0;

    }

    .slider-btn{

        margin-left: 0;

        margin-bottom: 20px;

    }

    .hero-section .carousel-indicators {

        margin-bottom: 15px;

    }

    #testimonialSlider{

        padding: 15px;

    }

    #testimonialSlider .carousel-indicators {

        margin-bottom: -40px;

    }

    .contact li{

        font-size: 0;

    }

    .faq-sec .accordion-button {

        padding: 20px 45px 20px 20px;

        font-weight: 500;

    }

    .faq-sec .accordion-body {

        padding-bottom: 20px;

    }

    .faq-sec .accordion-button:after {

        right: 20px;

        width: 20px;

    }

    .faq-sec .accordion-button:before{

        right: 29px;

        height: 20px;

    }

    .slider-right-block img {

        max-width: 70%;

        height: auto;

    }

    .inner-left-content ul li:before {

        width: 7px;

        height: 7px;

        border: 2px solid #fff;

        top: 5px;

    }

    .modal-dialog {

        margin: 20px;

    }

    .modal-body .col-md-5 img{

        max-width: 150px !important;

        margin: 0 auto;

        display: block;

    }

    .hero-section .carousel-item{

        height: 100%;

    }

    .slider-full-img{

        display: flex;

        height: 100%;

        align-items: center;

    }

    .carousel-item h1{

        font-size: 24px;

        line-height: 28px;

    }

    .slider-full-img picture{

        width: 100%;

        height: 100%;

    }

    .slider-full-img img{

        height: 100%;

        object-fit: cover;

        object-position: top;

    }

    .testimonial-row{

        flex-wrap: wrap;

    }

    .testimonial-left{

        max-width: 100%;

        width: 100%;

    }

    .nav-item .slider-btn,

    .nav-item .whats-app-btn{

        margin-left: 30px;

    }

    .sidebar{

        position: inherit;

    }

    .col-md-8 p video{

        max-width: 100%;

        height: 250px;

    }

    .hero-section-inner{

        min-height: 100px;

    }

    .testimonial-video {

        height: auto;

    }

}



.navbar {

    z-index: 99;

    transition: .3s ease;

}

.navbar.fixed {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    box-shadow: 0 1px 15px rgb(0 0 0 / 10%);

    background-color: #fff;

}

.get_url {

    display: none

}

.terms-use {
    margin-top: 15px;
    font-size: 14px;
}
.terms-use a {
    color: var(--primary-color);
    text-decoration: none;
}
.grecaptcha-badge {
    bottom: 70px !important;
}

footer .row.mb-5.pb-5 {
    margin-bottom: 0 !important;
}