

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*@font-face {*/
/*    font-family: "Poppins bold";*/
/*    src: local("Poppins bold"), url(../fonts/Poppins-Bold.ttf) format("ttf"), url(Poppins-bold) format("ttf"), url(../fonts/Poppins-Bold.ttf) format("truetype");*/
/*}*/
/*@font-face {*/
/*    font-family: "Poppins regular";*/
/*    src: local("Poppins regular"), url(../fonts/Poppins-Regular.ttf) format("ttf"), url(Poppins-regular.ttf) format("ttf"), url(../fonts/Poppins-Regular.ttf) format("truetype");*/
/*}*/
/*@font-face {*/
/*    font-family: "Poppins extrabold";*/
/*    src: local("Poppins extrabold"), url(../fonts/Poppins-ExtraBold.ttf) format("ttf"), url(Poppins-extraBold.ttf) format("ttf"), url(../fonts/Poppins-ExtraBold.ttf) format("truetype");*/
/*}*/
/*@font-face {*/
/*    font-family: "Poppins medium";*/
/*    src: local("Poppins medium"), url(../fonts/Poppins-Medium.ttf) format("ttf"), url(Poppins-medium.ttf) format("ttf"), url(../fonts/Poppins-Medium.ttf) format("truetype");*/
/*}*/
/*@font-face {*/
/*  font-family: 'Poppins';*/
/*  font-style: normal;*/
/*  font-weight: 400;*/
/*  src: local('Poppins Regular'), local('Pacifico-Regular'), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format('woff2');*/
/*  font-display: swap;*/
/*}*/
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');



/* ------------------------------------------------------------------- */
body {
    background-color: #F2F2F2;
}

:root {
    --blue: #2849A7;
    --font-size: 30px;
    --span-color: var(--blue);
}


img {
    max-width: 100%;
}

a {
    text-decoration: none !important;
    transition: ease-in-out;
    transition: 400ms;
    -webkit-transform: ease-in-out;
    -ms-transform: ease-in-out;
    -o-transform: ease-in-out;
    transform: ease-in-out;
  

}

h1,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    text-transform: capitalize;
   font-family: 'Poppins', sans-serif;
    font-weight:700;
}

h2 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: var(--font-size);
  font-family: 'Poppins', sans-serif;
    font-weight:700;
}
h3{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
     font-weight:600;
}

p {
    margin: 0px;
    padding: 0px;
    color: #4F4F4F;
    line-height: 30px;
    text-align: justify;

}

.span-color {
    color: var(--span-color);
}

.mtb {
    margin: 60px 0px;
}

.mb {
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

ul li a {
    text-decoration: none !important;
    color: #000;
}
.bar {
    height: 5px;
    width: 90px;
    background: #cdf1d8;
    position: relative;
    border-radius: 30px;
}
.bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #44ce6f;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}

@-webkit-keyframes MOVE-BG {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
              -ms-transform: translateX(0);
              -o-transform: translateX(0);
              transform: translateX(0);
            
    }
    to {
      -webkit-transform: translateX(88px);
              transform: translateX(88px);
          
    }
  }
  
  @keyframes MOVE-BG {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(88px);
              transform: translateX(88px);
    }
  }



/* -----------------------------------------navbar----------------------------------------------------- */
.top-header {
    background: var(--blue);
    padding: 10px 0px;
  
}

.top_right p {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.top_left span {
    margin: 0px 15px;
}

.top_left span a {
    color: #fff;
    font-weight: 600;
}

.navbar_main {
    background-color: #fff;
    position: sticky;
    top: 0%;
    z-index: 999;
}

.list_items .nav-item .nav-link {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    padding: 10px;
}

.number_text {
    background-color: #fff;
    color: var(--green);
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
}

.list_items .nav-item .nav-link.number_text {
    color: var(--green);
}

.number_text span {
    padding: 0px 7px;
}

.number_text span i {
    font-size: 20px;
    color: var(--green);
}

.list_items .nav-item .nav-link:hover {
    background-color: var(--green);
    color: #fff;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
    }

    /* .navbar .nav-item:hover .nav-link {
        color: #fff;
    } */

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    background-color: var(--green);

    transition: ease-in-out;
}

.list_items .nav-item .nav-link:hover {
    background-color: var(--blue);
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: var(--blue);
    transition: ease-in-out;
}

/* banner */
.banner_main img{
    width: 100%;
}
.banner_main{
    position: relative;
      background-size: cover;
    background-repeat: no-repeat;
    min-height: 450px;
    background-position: center right;
}
.banner_text p{
    font-weight: 600;
    margin: 10px 0px;
}
.banner_text span{
    font-weight: 900;
    margin: 10px 0px;
    font-size: 60px;
    color: var(--blue);
    
}
.get_the_content h1{
    font-size: 34px;
}


/* why_you_need_the_help */
.why_u_need_bg{
    background: #fff;
    padding: 20px;
    border-top: 5px solid #2849a7;
    border-bottom: 5px solid #2849a7;
}


.section_third{
    background-image: linear-gradient(rgb(40 73 167 / 96%), rgb(40 73 167 / 84%)), url(../images/bg_background.png);
    background-size: cover;
    padding: 60px 0px;
}
.second_third_card{
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background-image: url(../images/bg_img_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px 0px;
    height:420px;
}

.second_third_card h3{
    font-weight: 600;
    margin: 10px 0px;
    color: #2849a7;
}

/* footer */
.footer_main {
    padding: 30px 0px;
padding: 30px 0px;
    background-image: linear-gradient(rgb(0 0 0 / 96%), rgb(0 0 0 / 84%)), url(../images/footer_bg_main.png);
    background-size: cover;
    background-size: cover;
}
.footer_img_content h4 {
    margin-bottom: 30px;
    color:#fff;
    font-weight: 600;
}
.user_links li a {
    color: #fff;
}
.user_links li a:hover {
    color: var(--blue);
}
.user_links{
    margin-left: -30px;
}
.user_links li:hover {
    color: var(--blue);
    margin-left: 10px;
    transition: ease-in-out;
    transition: 400ms;
}
.user_links li {
    color: #fff;
    word-break: break-all;
    cursor: pointer;
    transition: 400ms;
    text-transform: capitalize;
}
.footer_end {
    background-color: #000;
}
.footer_end p {
    padding: 10px 0px;
    color: #fff;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}
.facebook-bg {
    background: #3B5998;
}
.instagram-bg {
    background-image: linear-gradient( 76deg,#ffffff,#ff0c0c,#352fe6);
}
.twitter-bg {
    background: #55ACEE;
}
.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    color: #ffff;
}
.fac-phone-volume {
    animation: phone-icon-animate 1s ease-in-out infinite;
}
@keyframes phone-icon-animate{
    0%,100%{
        transform:rotate(0) scale(1) skew(1deg);
    }
    10%{
        transform:rotate(-25deg) scale(1) skew(1deg);
    }
    20%,40%{
        transform:rotate(25deg) scale(1) skew(1deg);
    }
    30%{
        transform:rotate(-25deg) scale(1) skew(1deg);
    }
    50%{
        transform:rotate(0) scale(1) skew(1deg);
    }
}
.image_main_top{
    overflow: hidden;
}
.image_main_top img{
    width: 100%;
}
.image_main_top img:hover {
    transform: scale(1.1);
}
.image_main_top img {
    transition: 0.3s;
}


/* 2/05/2022  */
.Banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
 
}
.slide-content h1 {
    text-align: center;
}

.content-md {
    padding-top: 20px;
    padding-bottom: 10px;
}
.extra-padding {
    margin-top: 25px;
    margin-bottom: 30px;
}
.extra-space {
    margin-top: 40px;
}
.acc {
    background-color: #2849a7;
    color: #000;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: 0;
    font-size: 15px;
    transition: .4s;
    margin-bottom: 20px;
}
.acc h4 {
    color: #fff;
    font-size: 17px;
}
.panel {
    padding: 0 18px;
    display: none;
    background-color: #fff;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 0;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.panel>.table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.panel .table {
    margin-bottom: 0;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
a:hover {
    color: #72c02c;
    text-decoration: underline;
}
.points {
    list-style: disc;
    color: #4F4F4F;
    padding-left: 18px;
}
.points li {
    margin-bottom: 10px;
}

.points li:hover{
    color: #0d6efd;
}.panel.active {
    display: block !important;
}

/* 3/05/2022 */

.hp-support {
    background-color: #f6f6f6;
}

.hp-support-padding {padding-top: 50px;
    padding-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
}
.hp-support-popular {
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s ease-in-out;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    transition: box-shadow .3s;
    height: 100%;
}

.hp-support-popular h4 {
    text-align: center;
    padding: 35px 10px;
    font-weight: 600;
    font-size: 25px;
}

.col-container {
    display: table;
    width: 100%;
  
}
.box-point {
    
        list-style: none;
    
}
.box-point li::before {
    content: "\2022"; 
    color: #0d6efd;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em; 
    font-size: 20px;
  }
  .box-point li{
      margin-bottom: 10px;
      padding: 0px 10px 0px 0px;
  }
  .box-point li:hover {
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.navbar-dark .navbar-nav .nav-link:focus{
    background-color: var(--blue);
    color: #fff;
}
marquee{
    color: #2849a7;
}
.extra-margin{
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 5px;
    background: linear-gradient(180deg, rgb(40 73 167) 0%, rgb(252 156 27) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #80000000;
    -webkit-text-stroke: 2px #fff;
}
.btn-about{
    background-color: #2849a7;
    color: #fff;
    font-weight: 700;
    margin-right: 20px;
}
.btn-about:hover{
    color: #fff;
}

.btn-review{
    color: #2849a7;
    font-weight: 700;
    border: 2px solid #2849a7;
}
.btn-review:hover{
    color: #2849a7;
}


/* contact page */
.contact-info {
    margin-bottom: 30px;
    background-color: #2849a7;
    padding: 52px 35px 22px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}
.contact-info::before {
    content: '';
    position: absolute;
    opacity: .1;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/contact_bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.contact-info span {
    color: #ffc221;
    display: block;
    margin-bottom: 5px;
}
.contact-info h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
}
.contact-info ul {
    list-style: none;
   margin: 20px 0px;
   padding: 0;
}
.contact-info ul li {
    display: block;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}
.contact-info ul li .content i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #fff;
    font-size: 20px;
    color: #0071dc;
    border-radius: 50px;
    border: 1px solid #e2e2e2;
    margin-bottom: 10px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}
.contact-info ul li .content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    display: block;
}
.contact-info ul li .content a {
    color: #fff;
    display: block;
    font-weight: 400;
    font-size: 15px;
    word-break: break-all;
}
.contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}
.contact-form .form-group label {
    color: #2849a7;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}
.contact-form .form-group .form-control {
    color: #252525;
    border: 1px solid #2849a7;
    background-color: #fff;
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 0;
    font-weight: 500;
}
.contact-form{
    background-color: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 5px 20px rgb(32 32 32 / 11%);
    border-radius: 15px;
}
.btn-submit{
    background-color: #2849a7;
    color: #fff;
    font-weight: 700;
    margin-right: 20px;
    padding: 10px 20px;
    border: none;
}
.cta-rquest {
    background: linear-gradient(251.22deg, #2678cf 0%, #0b498b 99.53%);
    padding: 70px 0;
    position: relative;
    z-index: 2;
}
.cta-rquest::after {
    position: absolute;
    content: "";
    background-image: url(../images/bg-decoration.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.2;
    z-index: -1;
}
.cta-rquest .part-text h2 {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    line-height: 56px;
    letter-spacing: 0.02em;
    margin: 0;
    word-break:break-all;
}
.cta-rquest .btn-cta a {
    background: linear-gradient(223.14deg, #F44A33 -17.3%, #E8AE3D 101.56%);
    color: #fff;
    display: inline-block;
    line-height: 48px;
    -webkit-box-shadow: 0px 9px 37px rgb(0 0 0 / 20%);
    box-shadow: 0px 9px 37px rgb(0 0 0 / 20%);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 24px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    outline: none;
    border: none;
    animation: zoom-in-zoom-out 2s ease-out infinite;
    transition: 0.5s all ease-in-out;
}
.footer_top_section {
    background: #2849a7;
    padding: 30px 40px;
    border-radius: 5px;
    top: 7px;
    z-index: 9;
    position: relative;
}
.footer_top_section:before {
    content: '';
    position: absolute;
    background: url(../images/24x7-footer.svg) no-repeat;
    background-size: cover;
    width: 215px;
    height: 47px;
    top: -14px;
    right: 16%;
}
.instant_online_button_side {
    float: right;
}
.footer_top_left h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    
    margin: 0px;
}

.hire_expert_btn {
    text-decoration: none !important;
    background-color: #ffffff;
    color: #191f28;
    padding: 10px 24px;
    border-radius: 27px;
    font-weight: 500;
    font-size: 17px;
    margin: 0px 5px;
    border: 3px solid #191f28;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.navbar-toggler{
    background-color: #2849a7;
}
.breadcrumb-item a{
    font-weight: 700;
    color: #2849a7;
}