 @font-face {
     font-family: 'Poppins';
     src: url('../fonts/Poppins-Regular.eot');
     src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Poppins';
     src: url('../fonts/Poppins-SemiBold.eot');
     src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype');
     font-weight: 600;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Poppins';
     src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff');
     font-weight: 500;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Poppins';
     src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff');
     font-weight: 700;
     font-style: normal;
     font-display: swap;
 }

 body {
     font-family: 'Poppins';
     font-weight: 400;
     background: #fff;
 }

 .heading1 {
     color: #011928;
     margin-bottom: 30px;
     font-size: 40px;
     font-weight: 700;

 }

 .heading1 span {
     font-weight: 400;
 }

 .heading1:before {
     content: "";
     border-left: 2px solid #0066cc;
     padding-left: 10px;

 }

 .heading1.white {
     color: #fff
 }

 nav.navbar-primary.navbar-light {
     background: rgba(0,0,0,.7) !important;
 }
 header {
    background-color: #2E67AA;
}

 header .navbar-nav .nav-link:hover,
 header .navbar-nav .nav-link.active {
     border-color: transparent;
 }

 .navbar-brand span {
     display: block;
     font-size: 7px;
     letter-spacing: 0px;
 }

 header .navbar-nav .nav-item.user-menu .nav-link,
 header .navbar-nav .nav-item.user-menu .nav-link:hover,
 header .navbar-nav .nav-item.user-menu .nav-link:focus {
     color: #fff
 }

 .navbar-primary .navbar-nav .nav-link {
     color: #fff;
     font-size: 18px;
     padding: .5rem 1.5rem;
 }
 .navbar-brand img {
          width: 185px
 }
 .navbar-primary .navbar-nav .active .nav-link,
 .navbar-primary .navbar-nav li:hover .nav-link,
 .navbar-primary .navbar-nav li:focus .nav-link,.navbar-primary .navbar-nav .nav-link:hover,.navbar-primary .navbar-nav .nav-link:focus {
     color: #0066cc
 }

 .navbar-primary .navbar-nav li:last-child .nav-link {
     padding-right: 0;
 }

 .cbox-shadow {
     box-shadow: 0 0px 5px rgba(0, 0, 0, .3);
     padding: 10px 15px;
     border-radius: 4px;
     margin-bottom: 15px;
 }

 /*========================hero-banner====================*/
 .hero-banner {
     min-height: 720px;
     background-image: url(../images/home-banner.png);
     display: flex;
     align-items: center;
     background-size: cover;
     background-position: bottom center;
     background-repeat: no-repeat;
     position: relative;
 }

 .hero-banner .see-more-detail {
     position: absolute;
     bottom: 4%;
     left: 0;
     right: 0;
     text-align: center;
     font-size: 18px;
     color: #ffffff;
     font-weight: 400;
     cursor: pointer;
     height: 110px;
     transition: 0.5s;
     -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
     width: 150px;
     margin: 0 auto;
     z-index: 9;
 }

 .hero-banner .see-more-detail a {
     color: #ffffff;
     text-decoration: none;
     display: block;
     height: 100%;
     position: absolute;
     margin: 0 auto;
     display: inline-block;
     left: 0;
     right: 0;
 }

 .hero-banner .see-more-detail:before {
     content: "";
     position: absolute;
     width: 22px;
     height: 37px;
     background: #ffffff;
     right: 0;
     transition: 0.5s;
     -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
     left: 0;
     margin: 0 auto;
     top: 50px;
     border-radius: 10px;
 }

 .hero-banner .see-more-detail:hover {
     bottom: 2%;
 }

 .hero-banner .see-more-detail a .link-arrow {
     position: absolute;
     left: 0;
     right: 0;
     margin: 0 auto;
     top: 55px;
     opacity: 0.7;
     height: 8px;
     width: 4px;
     background-color: #000;
     transition: 0.5s;
     -webkit-transition: 0.5s;
     -moz-transition: 0.5s;
 }

 .hero-banner .see-more-detail:hover a .link-arrow {
     top: 70px
 }

 .hero-banner .see-more-detail:before {
     -webkit-animation: ripple 0.7s linear infinite;

 }

 @keyframes ripple {
     0% {
         box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 0.25em rgba(255, 255, 255, 0.3), 0 0 0 0.5em rgba(255, 255, 255, 0.3), 0 0 0 1em rgba(255, 255, 255, 0.3)
     }

     100% {
         box-shadow: 0 0 0 0.25em rgba(255, 255, 255, 0.3), 0 0 0 0.5em rgba(255, 255, 255, 0.3), 0 0 0 1em rgba(255, 255, 255, 0.3), 0 0 0 1.5em rgba(255, 255, 255, 0)
     }
 }


 .see-more-detail:hover {
     bottom: 2%;
 }

 .see-more-detail a .link-arrow img {
     width: 12px;
 }

 .banner-content {
     padding-right: 20px;
     color: #fff;
     max-width: 90%;
 }

 .primary-heading {
     color: #fff;
     font-size: 60px;
     font-weight: 700;
 }

 .primary-heading span {
     font-size: 45px;
 }

 .banner-content p {
     font-size: 18px;
 }

 .cta-form {
     position: relative;
     max-width: 70%;
     margin: 20px auto 0;
 }
 .hero-banner  .cta-form{
    margin: 10px 0;
    max-width: 90%;
 }

 .cta-form input {
     border-radius: 30px !important;
     height: 46px
 }

 .cta-form .btn-main {
     background: #0873b8;
     color: #fff;
     border-radius: 30px !important;
     position: absolute;
     right: 4px;
     top: 3px;
     padding: 6px 34px;
     z-index: 99;
     bottom: 3px;
     transition: all .3s ease;
 }

 .cta-form .btn-main:hover,
 .cta-form .btn-main:focus {
     background: #2E67AA
 }

 /*======================Featured========================*/
 .featured {
     padding: 210px 0 70px;
     background-image: url(../images/bg-href.png);
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
     margin-top: -140px;
     position: relative;
 }

 .featured-icons {
     background-image: url(../images/offering-bg.jpg);
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
     padding: 100px 0;
 }

 .featured-card {
     margin: 30px 0;
     text-align: right;
     position: relative;
     color: #fff;
 }

 .featured-card h4 {
     color: #0181d5;
 }

 .featured-card span {
     background: #fff;
     height: 50px;
     width: 50px;
     display: inline-block;
     border-radius: 50%;
     border: 2px solid #0181d5;
     line-height: 45px;
     position: absolute;
     z-index: 1;
     top: 0px;
     right: -105px;
     text-align: center;
 }

 .featured-card img {
     width: 24px
 }

 /*===================stats-section=====================*/
 .stats {
     background-image: url('../images/stats-bg.jpg');
     padding: 80px 0;
     background-size: cover;
     background-position: center;
     color: #fff;
     background-repeat: no-repeat;
 }

 .stats-nums {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 30px
 }

 .stats-num img {
     max-width: 70px;
     margin-bottom: 15px;
 }

 .stats-nums h3,
 .stats-nums p {
     margin-bottom: 0;
 }

 .stats-num {
     border: 2px solid #53b4e8;
     margin: 0 10px;
     text-align: center;
     height: 210px;
     width: 210px;
     border-radius: 50%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 /*===================benefit-section=====================*/
 .benefit-section {
     padding: 50px 0;
 }

 .benefit-card {
     display: flex;
     display: -ms-flex;
     flex-direction: row;
 }

 .benefit-img {
     flex: 0 0 50%;
     -ms-flex: 0 0 50%;
     max-width: 50%;
     display: flex;
     display: -ms-flex;
 }

 .benefit-content {
     background: #0082d5;
     color: #fff;
     padding: 20px;
     position: relative;
     min-height: 220px;
     flex: 0 0 50%;
     -ms-flex: 0 0 50%;
     max-width: 50%;
     border-radius: 0px 20px 20px 0px;
 }
.benefit-img img{
    border-radius: 20px 0 0 20px;
}
 .benefit-owl {
     margin-top: 50px
 }

 .benefit-section .owl-carousel .owl-nav.disabled {
     display: block
 }

 .benefit-section .owl-carousel .owl-nav .owl-prev {
     position: absolute;
     left: -25px;
     top: 50%;
     transform: translateY(-50%);
     line-height: 1.5;
     background: none;
     outline: 0
 }

 .benefit-section .owl-carousel .owl-nav .owl-prev:before,
 .benefit-section .owl-carousel .owl-nav .owl-next:before {
     width: 15px;
     height: 15px;
     border-top: 2px solid #000;
     border-left: 2px solid #000;
     content: "";
     display: block
 }

 .benefit-section .owl-carousel .owl-nav .owl-prev:before {
     transform: rotate(-45deg);
 }

 .benefit-section .owl-carousel .owl-nav .owl-next:before {
     transform: rotate(135deg);
 }

 .benefit-section .owl-carousel .owl-nav span {
     font-size: 0
 }

 .benefit-section .owl-carousel .owl-nav .owl-next {
     position: absolute;
     right: -25px;
     transform: translateY(-50%);
     line-height: 1.5;
     background: none;
     top: 50%;
     outline: 0
 }

 .benefit-section .owl-carousel .owl-nav .disabled {
     opacity: .2;
 }

 /*---------hrefCTA===================*/
 .href-cta {
     padding: 70px 0;
     background: url(../images/cta-bg.jpg);
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
     text-align: center;
 }

 .href-cta h2 {
     margin-bottom: 30px;
     font-size: 40px;
     font-weight: 700;
 }

 .href-cta h2 span {
     font-weight: 400;
 }

 /*=============================footer=============================*/
 
 footer {
     padding: 0;
	 background-color: #2E67AA;
 }
   .footerhr{
	  background: rgba(0,0,0,.7) ;
	  padding: 5px 0;
      border-top: 0;
  }
   .copyright {
     color: #fff;
}
.f-cont p:first-child {
    line-height: 1;
}
 .terms-policy li a{
     color: #fff;
     text-decoration: none;
     padding: 0 10px;
     border-right: 1px solid #fff;
	 }
 .hl-right-wrapper footer .footerhr {
     padding: 10px 0;
 }
 footer .footer-section {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 footer .footer-section ul {
     padding: 0;
     margin: 0;
 }

 .social-link,
 .terms-policy {
     display: flex;
     align-items: center;
 }

 
.terms-policy li a:hover, .terms-policy li a:focus, .terms-policy li a.active{
     color:#0096d3
}
 .terms-policy li:first-child a {
     padding-left: 0;
 }

 .terms-policy li:last-child a {
     border-right: 0;
 }

 .social-link li,
 .terms-policy li {
     margin: 0 2px;
     list-style: none
 }

 .social-link li a {
     color: #ffffff;
     width: 30px;
     height: 30px;
     background-color: #2E67AA;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     transition: .3s ease;
 }

 .social-link li a:hover {
     background: #1e4d85
 }

 /*===============ContactPage=============*/
 .main-banner {
     padding: 170px 0;
     background-size: cover !important;
     background-position: center center !important;
     color: #fff;
     margin-top: 74px;
 }

 .Contactinfo {
     padding: 50px 0
 }

 .Contactinfo .featured-card {
     padding: 0 10px;
     color: #333;
     text-align: left;
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
 }

 .f-cont p {
     margin-bottom: 0;
 }

 .Contactinfo .featured-card .f-icon {
     flex: 0 0 50px;
     max-width: 50px;
     background: #0096d3;
     height: 50px;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-right: 10px;
	 border-radius: 5px;
 }
 .f-cont {
    flex: 0 0 80%;
    max-width: calc(100% - 70px);
}

 .featured-card img {
     transition: .3s ease;
 }

 .featured-card:hover img {
     transform: scale(1.1);
     -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
 }

 .b-content {
     color: #fff;
     text-align: center
 }

 .breadcrumbs a {
     color: #fff
 }

 .contact-form-section {
     background: #e1e1e1;
     padding: 70px 0;
 }

 .contact-page-sec {
     background: #fff;
     margin-top: -150px;
	 border-radius:15px;
 }

 .form-wrapper {
     background: #fff;
     padding: 30px 40px;
     border-radius: 10px;
 }

 .contact-page-sec .col-md-4 {
     border-left: 1px solid #ddd;
 }

 .contact-form {
     margin-top: 30px
 }

 .contact-form::placeholder,
 .contact-form::-moz-placeholder {
     color: #666
 }

 .contact-form .form-control {
     border: 1px solid #ccc;
     background: #fff;
 }

 /*==============blogs-page=============*/
 .blogs-wrapper {
     padding: 50px 0;
     background: url(../images/blog-bg.jpg);
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
 }

 .blogs-inner {
     margin-bottom: 30px
 }

 .blog-contentH {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between
 }

 .blog_header {
     flex: 0 0 78%;
     -ms-flex: 0 0 78%;
     max-width: 78%;
 }

 .blogdate {
     flex: 0 0 18%;
     -ms-flex: 0 0 18%;
     max-width: 18%;
 }
.blog-content > p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 .blogdate p {
     margin-bottom: 0;
     color: #fff;
     padding: 8px 0;
     text-align: center;
	 font-size:14px
 }

 .date-num {
     background: #0873b8;
	 border-radius: 5px 5px 0 0;
 }

 .date-month {
     background: #303030;
	 border-radius: 0 0 5px 5px;
 }

 .blog-hover {
     position: relative;
	 border-radius: 10px;
     overflow: hidden;
 }
 .blog-hover img{
	 border-radius: 10px;
 }
 .blog-image:after {
     background: rgba(8, 115, 184, .65);
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 0;
     z-index: 2;
     content: "";
     transition: .3s ease;
 }
.blog-hover a.btn.btn-white {
    display: block;
    padding: 0;
}
 .blog-hover .btn span {
     display: none;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     z-index: 99;
     background: #fff;
	 padding:8px 20px;
	 
	 
 }

 .blog-hover:hover .btn span  {
     display: block;
 }

 .blog-hover:hover .blog-image:after {
     height: 100%;
     width: 100%;
 }

 .blog_header h4 {
     font-size: 18px;
     font-weight: 600
 }

 .blog-image img {
     width: 100%
 }

 .blog_header p {
     color: #606060
 }

 .blog-content a {
     margin-top: 0px
 }

 .text-btn {
     padding-left: 0;
     color: #0873b8;
     font-weight: 600
 }

 .searchbar input.form-control {
     background: #fff;
     border: 1px solid #ccc;
     border-radius: 4px;
 }

 .text-btn span {
     margin-left: 10px
 }

 button.btn.btnsearch {
     position: absolute;
     right: 0px;
     z-index: 9
 }

 form.searchbar {
     position: relative;
 }

 .blog-category {
     margin: 20px 0;
 }

 .blog-sidebar h3 {
     border-bottom: 1px solid #ddd;
     padding-bottom: 8px;
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 20px
 }

 .blog-sidebar ul {
     padding: 0;
     margin: 0;
 }

 .blog-sidebar ul li {
     list-style: none
 }

 .blog-category ul li {
     display: flex;
     justify-content: space-between;
     padding: 8px 0;
     border-bottom: 1px solid #ddd
 }

 .blog-category ul li a {
     color: #333;
     text-decoration: none
 }

 .blog-category ul li:hover a,.blog-category ul li a.active,.blog-category ul li a:focus,.auth-pub {
     color: #0873b8
 }

 .latest-posts ul li {
     padding-bottom: 15px;
     margin-bottom: 15px;
     border-bottom: 1px solid #ddd
 }

 .latest-posts ul li a {
     display: flex;
     justify-content: space-between;
     color: #333;
     text-decoration: none
 }

 .lblog-img {
     flex: 0 0 35%;
     -ms-flex: 0 0 35%;
     max-width: 35%;
 }

 .lblog-img img {
     width: 100%;
	 border-radius: 5px;
 }
.lblog-cont p.date,.lblog-cont p.auth-time {
    color: #606060;
}
 .lblog-cont {
     flex: 0 0 60%;
     -ms-flex: 0 0 60%;
     max-width: 60%;
 }

 .lblog-cont h4 {
     font-size: 16px;
     font-weight: 600;
     margin: 0;
 }

 .lblog-cont p {
     font-size: 14px;
     margin: 0;
 }

 .m-content ul {
     padding: 0;
     margin: 0;
     display: flex;
     justify-content: center
 }

 .m-content li {
     list-style: none;
     margin: 0 8px
 }

 .blogHeading {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     align-items: center
 }

 .blogHeading span {
     background: #0873b8;
     display: inline-block;
     padding: 20px 15px;
     margin-right: 10px;
     color: #fff;
     font-size: 14px
 }

 .blog-detail-content {
     margin: 30px 0
 }

 .blog-detail-content ul {
     padding-left: 0px
 }

 .blog-detail-content ul li {
     list-style-type: none;
     position: relative;
     padding-left: 15px;
     margin: 4px 0
 }

 .blog-detail-content ul li:before {
     display: inline-block;
     font: normal normal normal 8px/1 FontAwesome;
     content: "\f111";
     padding-right: 10px;
     color: #0873b8;
     position: absolute;
     left: 0;
     top: 7px
 }

 .blogsdetail-bg {
     padding: 50px 0;
     background: url(../images/blog-detailbg.jpg);
     background-size: cover;
     background-position: center center;
     background-repeat: no-repeat;
 }

 .blogsdetail-bg img {
     width: 100%
 }

 /*==============Pricing-page=============*/
 .hl-plan-price {
     padding: 50px 0;
     background: #e2e2e2;
 }

 .hl-plan-price .container {
     box-shadow: 0 0 21px rgba(0, 0, 0, .15);
     border-radius: 20px;
     border: 0;
     overflow: hidden;
     margin-top: 30px
 }

 .hl-plan-price .plan-features,
 .hl-plan-price .plans .plan-item.\'active\' {
     border-right: 4px double #ccc;
     text-align: center
 }

 .hl-plan-price .plan-features ul li span {
     border-bottom: 0;
 }

 .hl-plan-price .plans .plan-item .item-feature ul li,
 .hl-plan-price .plan-features ul li {
     color: #333;
     padding: 30px;
     background: #fff;
     height: auto;
     font-size: 16px;
 }

 .hl-plan-price .plan-features ul li:nth-of-type(odd),
 .hl-plan-price .plans .plan-item .item-feature ul li:nth-of-type(odd) {
     background: #e2e2e2;
     color: #333;
 }

 .hl-plan-price .plans .plan-item .item-feature ul li .fa {
     font-size: 25px
 }

 .hl-plan-price .plans .plan-item .item-header,
 .hl-plan-price .plan-features .heading {
     background: #0873b8;
     color: #fff;
     border-top: 0;
 }

 .hl-plan-price .plans .plan-item .item-header {
     color: #fff;
     height: 145px;
 }

 .hl-plan-price .plans .plan-item .item-header .price span,
 .hl-plan-price .plans .plan-item .item-header .price {
     font-size: 35px;
 }

 .hl-plan-price .plans .plan-item .item-header .price,
 .hl-plan-price .plans .plan-item .item-header .period {
     display: inline-block
 }

 .upgrade {
     text-align: right;
     margin: 50px 0
 }

 .btn-upgrade {
     background: #0873b8;
     color: #fff;
     padding: 8px 30px;
     border-radius: 8px;
 }

 .btn-upgrade:hover,
 .btn-upgrade:focus {
     background: #07629d;
     color: #fff
 }

 .hl-xml-sitemap {
     background: #e2e2e2;
     padding: 60px 0;
     margin-bottom: 0;
 }
.login-popup .cta-box, .registration-popup .cta-box {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    flex-direction: column;
}
 .hl-xml-sitemap .nav-tabs li:nth-child(2) {
     margin-left: -10px
 }

 .hl-xml-sitemap .main-tabbing .nav-tabs .nav-item {
     margin-right: 0;
 }

 .hl-xml-sitemap .nav-tabs .nav-link {
     background: #cccdcd;
     padding: 10px 30px;
     border-radius: 8px;
     color: #333
 }
.new-site__websiteurl-section.main-tabbing {
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 21px rgb(0 0 0 / 15%);
    border-radius: 30px;
    margin-top: -150px;
}
 .hl-xml-sitemap .nav-tabs .nav-link.active {
     background: #0873b8;
     color: #fff
 }

 .xml-form-outer .nav-tabs {
     margin-bottom: 50px;
 }

 .hl-xml-sitemap .main-tabbing .tab-content {
     padding: 0px;
	 border:0;
 }

 .xml-form .langRow .form-control {
     margin-right: 6px
 }


 .hl-xml-sitemap .main-tabbing .tab-content .form-control {
     color: #212529;
     background: #fff;
     border: 1px solid #ccc;
 }
.cbtn.btn-transparent{
	margin-top:30px
}
 .form-control {
     background: #fff;
	 border: 1px solid #ddd;
 }

 .hl-xml-sitemap .main-tabbing .tab-content .form-control::-webkit-input-placeholder,
 .hl-xml-sitemap .main-tabbing .tab-content .form-control:-ms-input-placeholder,
 .hl-xml-sitemap .main-tabbing .tab-content .form-control::placeholder {
     color: #ccc
 }

 .hl-xml-sitemap .main-tabbing .cbtn.btn-blue {
     background: #0873b8;
     color: #fff;
     padding: 8px 30px;
     border-radius: 8px;
     border: 0;
 }


 .hl-right-wrapper footer {
     padding: 0;
	 background-color: #2E67AA;
 }
  .hl-right-wrapper .footerhr{
	  background: rgba(0,0,0,.7) ;
	  padding: 5px 0;
      border-top: 0;
  }
  .hl-right-wrapper .copyright, .hl-right-wrapper .terms-policy li a {
    color: #fff;
}

 .hl-right-wrapper footer .footerhr {
     padding: 10px 0;
 }
.loader-img{
	width: 22px;
    position: absolute;
    right: 5px;
	display:none;
}

 @media (min-width:1440px) {
     .featured {
        margin-top: -150px;
        padding-top: 250px;
        background-size: 100% 100%;
     }
 }

 @media (min-width:991px) {

     .hl-plan-price .plans .plan-item .item-feature ul li,
     .hl-plan-price .plan-features ul li {
         height: 86px;
     }

     
 }

 @media(min-width:992px) and (max-width:1100px) {
     .benefit-content {
         min-height: 280px;
     }
 }

 @media(min-width:768px) and (max-width:991px) {
     .banner-content h2 {
         font-size: 34px;
     }

     .hero-banner {
         min-height: 480px;
     }

     .primary-heading span {
         font-size: 30px
     }

     .featured-icons {
         background-size: 100% 100%;
     }

     .primary-heading {
         font-size: 45px;
     }

     .heading1 {
         font-size: 35px
     }

     .navbar-primary .navbar-nav .nav-link {
         font-size: 16px;
         padding: 0.5rem;
     }

     .footer-section li a,
     .copyright {
         font-size: 14px
     }

     .terms-policy li a {
         padding: 0 5px
     }

     footer .container {
         padding: 0
     }

     .latest-posts ul li a {
         flex-wrap: wrap;
     }

     .lblog-img,
     .lblog-cont {
         flex: 0 0 100%;
         -ms-flex: 0 0 100%;
         max-width: 100%;
         margin: 10px 0
     }
 }

 @media(max-width:991px) {
     header .navbar .navbar-collapse.show {
         display: flex !important;

     }
     .form-wrapper {
        padding: 30px;
    }
    .Contactinfo .featured-card{
        padding: 30px 10px;
    }
     header .navbar .navbar-toggler-icon {

         background: none;
     }
     

     header .navbar.navbar-light .navbar-toggler {
         border: 1px solid #fff;
		 padding:7px 10px;
     }

     header .navbar .navbar-toggler-icon:after {
         font: normal normal normal 24px/1.2 FontAwesome;
         content: "\f0c9";
         color: #fff;
     }

     header .navbar .navbar-collapse {
         top: 77px;
         display: none !important;
         align-items: flex-start;
         justify-content: flex-start !important;
     }

     header .navbar-primary .navbar-nav .nav-link {
         color: #fff
     }

     .navbar-primary .navbar-nav .active .nav-link,
     .navbar-primary .navbar-nav li:hover .nav-link,
     .navbar-primary .navbar-nav li:focus .nav-link {
          color: #03a9f4;
         text-decoration: underline;
     }

     header .navbar-expand-sm .navbar-toggler {
         display: block !important
     }

     .featured-card span {
         right: -65px;
     }
 }

 /*============Mobile responsive============*/

 @media(max-width:767px) {
     .featured-card span {
         right: 0;
     }
     .Contactinfo{
        padding-top: 0;
     }
     .Contactinfo .featured-card{
        padding:0 30px 30px;
     }
	 .owl-carousel .owl-item img{
		border-radius: 20px 20px 0 0;
	 }
	 .benefit-content{
		 border-radius: 0 0 20px 20px;
	 }
	 
     .form-wrapper{
        padding-bottom: 0;
     }
     .featured-card {
         padding-right: 60px;
     }
    
     html {
         overflow-x: hidden;
     }

     .featured-icons {
         background-position: left;
     }

     .banner-content {
         max-width: 100%;
     }

     .langRow .col-10.col-md-11.d-flex {
         flex-wrap: wrap;
     }

     footer {
         padding: 0;
     }

     .blog-content {
         margin-top: 20px
     }

     .href-cta .cta-form {
         max-width: 90%
     }
	 .cta-form .form-control{
		 padding-right:120px
	 }
	 .col-12.col-md-12.new-site__websiteurl-section.hidden {
		padding: 0;
     }
	 [data-aos=fade-left] {
    transform: translate3d(0px,0,0);
}
	 .hl-xml-sitemap .nav-tabs .nav-link{
		 padding:10px 12px 10px 18px
	 }

     .stats-num {
         padding: 0 10px;
     }

     .heading1 {
         font-size: 30px
     }

     .copyright {
         margin: 15px 0;
         text-align: center;
     }

     footer .footer-section {
         flex-wrap: wrap;
         justify-content: center;
     }

     nav.navbar-primary.navbar-light .container {
         padding: 0 15px;
     }

     .primary-heading span {
         font-size: 40px
     }

     .featured-icons .heading1 {
         padding-right: 60px;
     }

     .benefit-section .owl-carousel .owl-nav .owl-next,
     .benefit-section .owl-carousel .owl-nav .owl-prev {
         display: none;
     }

     .benefit-card {
         flex-direction: column;
     }

     .stats-num:last-child {
         border-right: 0;
     }

     .stats-num {
         border-radius: 0;
         border: 0;
         border-right: 1px solid #0066cc;
         padding: 10px 0;
         height: auto;
     }

     .stats-num img {
         max-width: 50px;
     }

     .benefit-img,
     .benefit-content {
         flex: 0 0 100%;
         -ms-flex: 0 0 100%;
         max-width: 100%;
     }
     [data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos]{
        opacity: 1;
     }
     [data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1200"] [data-aos]{
        opacity: 1;
     }
     [data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1200"] [data-aos]{
        opacity: 1;
     }
     [data-aos=fade-up] {
        transform: translate3d(0,0,0);
    }
    [data-aos=fade-right] {
        transform: translate3d(0,0,0);
    }
     .primary-heading{
     font-size:45px
     }
 }

 .see-more-detail:before {
     -webkit-animation: ripple 0.7s linear infinite;
     animation: ripple 0.7s linear infinite
 }
