body {
    margin: 0;
    font-family: "Poppins", sans-serif !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #ffffff !important;
  }
  html {
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6{
font-family: "Poppins", sans-serif !important;
}
:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}
@keyframes changeBackgroundColor {
  0% {
    background-color: #001F3F;
  }
  50% {
    background-color: #3674ff;
  }
  100% {
    background-color: #001F3F;
  }
}

.contact-bg {
    background: #fff;
    margin: 0 5%;
    border-radius: 10px;
    margin-bottom: -5%;
    padding: 10px 20px 10px 20px;
    position: relative;
    box-shadow: #00000008 0px 0px 14px;
}
footer {
    background:#000;
    padding: 60px 0 0px 0;
}
.footer-bot {
    padding: 15px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid;
}
.footer-bot p {
    border: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}
footer img {
    width: 130px;
    padding-top: 10px;
}
footer p {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    border-left: 1px solid #ffffff52;
    padding-left: 46px;
}

.links {
}
.links ul {
    list-style: none;
    padding-left: 0;
}
.links ul li {
    padding-bottom: 15px;
}
.links h3 {
    color: #fff;
    font-size: 22px;
    padding-bottom: 15px;
}
.links ul li {
    padding-bottom: 15px;
}
.links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
.call-to-action {
  width: 100%;
  height: 100%;  
  display: flex;
  align-items: center;
  text-align: center;
  animation: changeBackgroundColor 7s infinite;
      padding: 30px 40px;
          border-radius: 8px;
}

.call-to-action h3{
    color: #fff;
    text-align: left;
    font-weight: 600;
    font-size: 32px;
}
.call-to-action h6{
     color: #fff;
    text-align: left;
    font-weight: 600;
    font-size: 14px;   
        margin-bottom: 0;
}
.product-grid{
    text-align: center;
    overflow: hidden;
}
.product-grid .product-image{
    overflow: hidden;
    position: relative;
}
.product-grid .product-image a.image{ display: block; }
.product-grid .pic-1{
    opacity: 1;
    backface-visibility: hidden;
    transition: all 0.5s ease 0s;
}
.product-grid:hover .pic-1{ opacity: 0; }
.product-grid .pic-2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    backface-visibility: hidden;
    transition: all 0.5s ease-out 0s;
}
.product-grid:hover .pic-2{ 
    opacity: 1;
    transform: scale(1.09);
}
.product-grid .product-image img{
    width: 100%;
    height: auto;
}
.product-grid .product-discount-label,
.product-grid .product-new-label{
    color: #242424;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 10px;
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.product-grid .product-links{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}
.product-grid .product-links li{
    opacity: 0;
    transform: translateX(100%); 
    margin: 0;
    transition: all 0.3s ease-in-out;
}
.product-grid:hover .product-links li{ 
    opacity: 1;
    transform: translateX(0%); 
}
.product-grid .product-links li a{
    color: #222;
    background-color: #fff;
    font-size: 16px;
    line-height: 45px;
    height: 45px;
    width: 50px;
    display: block;
    position: relative;
    transition: all 0.3s ease 0s;
}
.product-grid .product-links li a:hover{
    color: #999;
}
.product-grid .product-links li a:before,
.product-grid .product-links li a:after{
    content: attr(data-tip);
    color: #fff;
    background: #000;
    font-size: 12px;
    line-height: 20px;
    padding: 2px 10px;
    white-space: nowrap;
    display: none;
    transform: translateY(-50%);
    position: absolute;
    right: 60px;
    top: 50%;
}
.product-grid .product-links li a:after{
    content: '';
    height: 15px;
    width: 15px;
    padding: 0;
    border-radius: 0;
    transform: translateY(-50%) rotate(45deg);
    right: 58px;
    z-index: -1;
}
.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after{
    display: block;
}
.product-grid .product-content{
    padding: 25px 0;
    position: relative;
    text-align: justify;
}
.product-grid .title{
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin: 0 0 6px;
}
.product-grid .title a{
    color: #333333;
    transition: all 0.3s ease 0s;
}
.product-grid .title a:hover{ color: #2f2e2ea6; }
.product-grid .rating{
    color: #fcae01;
    font-size: 12px;
    padding: 0;
    margin: 0 0 8px;
    list-style: none;
    transition: all 0.3s ease 0s;
}
.product-grid .rating li{ 
    display: inline-block;
    margin: 0 -1px;
}
.product-grid .rating li.far{ color: #999; }
.product-grid .price{
    color: #00b169;
    font-size: 18px;
    font-weight: 700;
    margin: 0px 0 22px;
    display: block;
}
.product-grid .price span{
    color: #bbb;
    font-weight: 400;
    text-decoration: line-through;
}
.product-grid .add-cart{
    background: #ffbe16;
    border: none;
    color: #000;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 50px;font-size: 14px;
}
.product-grid .product-content h5{
     font-size: 13px;
    color: #6e6e6e;   
}


.categories-boxwidth .col-md-3{
     -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;   
}
.indus-box {
    position: relative;
    width: 90%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(to bottom, #342a21 0%, #1c150e 100%);
    border-radius: 5px;
    margin-bottom: 30px;
}

.indus-box:hover:before {
    opacity: 1;
    left: 200%;
}

.indus-box:hover img {
    opacity: 0.2;
}

.indus-box img {
    width: 100%;
    height: auto;
    transition: all 0.6s ease;
}

.indus-box:before {
    content: '';
    background: #fff;
    width: 200px;
    opacity: 0.6;
    transform: skew(-20deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    box-shadow: 0 0 100px #fff;
    transition: all 0.6s ease;
}

.indus-box .text {
    position: absolute;
    bottom: 1px;
    width: 100%;
    text-align: left;
    padding: 20px 20px;
    background: #00000066;
        text-shadow: 2px 2px 2px #00000063;
}

.indus-box h3 {
     font-weight: 400;
    color: #fff;
    font-size: 20px;
}

.indus-box a {
    font-weight: 500;
    color: #ab8965;
}

.indus-box a:hover {
    color: #fff;
}

.indus-box .content-text {
    transform: translateY(100%);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.indus-box:hover .text {
    opacity: 0;
}

.indus-box:hover .content-text {
    transform: translateY(-190px);
    opacity: 1;
    color: #fff;
    text-align: left;
    padding: 20px 20px;
}

.indus-box span {
    background: #ab8965;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
    color: #000;
    margin-left: 12px;
}

.indus-button {
    display: flex;
    align-items: center;
}


.services-third{
    padding: 20px 0;
}

.line-sec{
position: relative;
}
.line-sec:before {
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    height: 600px;
    left: 0;
    top: 0;
    background-image: url(../img/pattern-bg.png);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.step-img{
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}
.step-img .circlestep:hover {
}
.line-step{
    border-bottom: #666666 solid 3px;
    height: 2px;
    width: 70%;
    margin: -19% auto auto;
    border-style: dashed;
    border-left: none;
    border-right: none;
    border-top: none;
}
.step-img .circlestep {
    position: relative;
        background: linear-gradient(to right, #4079ea, #40abea, #40abea, #4079ea);
    background-size: 400%;
    border-radius: 50%;
    width: 190px;
    height: 190px;
    line-height: 60px;
    text-align: center;
    box-sizing: border-box;
    text-transform: capitalize;
    color: #fff;
    font-size: 16px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-img .circlestep:hover:before {
   
}
.step-img .text{
        padding-top: 30px;
}
.step-img .circlestep:before {
    content: "";
        background: linear-gradient(to right, #4079ea, #40abea, #40abea, #4079ea);
    background-size: 400%;
    position: absolute;
    inset: -5px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0;
    transition: .5s;
    border-radius: 50%;
}
.step-img .circlestep:hover:before {
    
}
.step-img .box{
    background: #fff;
    margin: 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;color: #407fea;
    font-size: 50px;
}

.step-img img {
    width: 100px;
    position: relative;
}
button:focus {
    outline: 0px dotted !important;
    outline: 0px auto -webkit-focus-ring-color !important;
        box-shadow: none !important;
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}
/*Animation end*/ 


.main-button{
    background: #ab8965;
    border: none;
    font-size: 14px;
    color: #fff;
    padding: 12px 40px;
    border-radius: 0px;
}
.sec-button{
background: #ffffff;
    border: none;
    color: #000;
    font-weight: 500;
    padding: 18px 50px;
    border-radius: 50px; 
}
.head-main input{
width: 100%;
    transition: all 0.3s;
    border: none;
    padding: 12px 10px 12px 76px;
    font-size: 13px;
    border-radius: 2px;
}
.head-main select{
    width: 100%;
    transition: all 0.3s;
    border: none;
    padding: 14px 10px 13px 76px;
    font-size: 13px;
    border-radius: 2px;
    color: #7d7d7d;
}
.head-main textarea{
    width: 100%;
    transition: all 0.3s;
    border: none;
    padding: 12px 10px 15px 44px;
    font-size: 14px;
    border-radius: 2px;
}
.head-main .col-md-4 {
    margin-top: -20px;
}
.head-main .col-md-3 {
    margin-top: -20px;
}
.head-main .input-icon{
color: #fff;
    background-color: #018294;
    font-size: 17px;
    text-align: center;
    line-height: 45px;
    height: 44px;
    width: 55px;
    vertical-align: top;
    display: inline-block;
    position: relative;
    top: 44px;
    left: 0px;
    border-radius: 2px;    border: 1px solid #fff;
}
.head-main .textarea-icon{
color: #018294;
    font-size: 17px;
    width: 55px;
    position: relative;
    top: 36px;
    left: 16px;
    border-radius: 2px;
}
.select-text p {
    color: #e8e8e8;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 0;
    margin-bottom: 10px;
    margin-top: 17px;
}
.select-text ul li {
display: inline-block;
    width: 19%;
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 12px;
}
.select-text ul{
    padding-left: 8px;    margin-bottom: -10px;
}
.select-text .form-check-input {
    width: auto;
    height: auto;
    padding: 0 15px;    margin-top: 8px;
}
.select-text .form-check-label {
    top: -4px;
    left: 22px;
    color: #c7c7c7;
    font-size: 12px;
}
.head-main .form{
    background: #0000006b;
       padding: 10px 25px 40px 25px;
    margin-top: 15px;    border-radius: 6px;
}

.serviceBox{
    padding: 50px 35px;
    background: #fff;
    border: 1px solid #eee;
    border-bottom-color: #428ef8;
    text-align: center;
    position: relative;
    transition: all 0.5s ease 0s;
}
.serviceBox:hover{ border: 1px solid #0598a6; }
.serviceBox:before,
.serviceBox:after{
    content: "";
    width: 70%;
    height: 5px;
    background: linear-gradient(to right, #51bceb 0, #036fae 100%);
    opacity: 0;
    position: absolute;
    top: -3px;
    left: 35%;
    transform: translateX(-50%);
    transition: all 0.5s ease 0s;
}
.serviceBox:hover:before,
.serviceBox:hover:after{
    opacity: 1;
    left: 50%;
}
.serviceBox:after{
    top: auto;
    bottom: -3px;
}
.serviceBox .service-icon{
    width: 65px;
    height: 65px;
    line-height: 62px;
    border-radius: 50%;
    background: #ff1e38;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 20px 20px rgb(255 30 56 / 20%);
}
.serviceBox .title{
    font-size: 20px;
    font-weight: bold;
    color: #252525;
    margin: 0 0 10px 0;
    transition: all 0.5s ease 0s;
}
.serviceBox:hover .title{ opacity: 0; }
.serviceBox .description{
    font-size: 14px;
    color: #7a7a7a;
    line-height: 25px;
    margin: 0;
    transition: all 0.5s ease 0s;
}
.serviceBox:hover .description{
    margin-top: -20px;
    padding-bottom: 20px;
}

.section-heading h4{
    color: #020080;
    font-size: 16px;
    font-weight: 600;
}
.section-heading p{
    padding-top: 15px;
    line-height: 30px;
    margin: 0;
    transition: all 0.5s ease 0s;
    padding-bottom: 18px;
}
.sec-second{
    background: #f6faff;    padding: 80px 0;
}
.bg-electric-violet-3 {
    background-color: #6001d3 !important;
        box-shadow: 4px 4px 50px rgb(80 52 252 / 45%) !important;
}
.bg-java-2 {
    background-color: #1de2cf !important;
    box-shadow: 0 20px 20px #d1fffb !important;
}
.bg-orange {
    background-color: #ff5200 !important;
        box-shadow: 0 20px 20px #ffe8cd !important;
}
.contact-bg .inner-box h3 a{
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #212529;
}

.contact-bg{
    background: #fff;
    margin: 0 5%;
    border-radius: 10px;
    margin-bottom: -5%;
    padding: 10px 20px 10px 20px;
    position: relative;box-shadow: #00000008 0px 0px 14px;
}
.contact-bg .inner-box {
    position: relative;
    padding: 40px 15px 20px 120px;
}
.contact-bg .inner-box .icon-box {
position: absolute;
    left: 30px;
    top: 32px;
    width: 60px;
    height: 60px;
    line-height: 59px;
    background: linear-gradient(to top, #faac3a 0, #fa993a 100%);
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    transition: all 500ms ease;
    color: #ffffff;
}
.contact-bg .inner-box h3 {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0px;
}
.contact-bg .inner-box p {
    font-size: 14px;
    line-height: 26px;
    color: #808080;
    margin-bottom: 0;
}
.head-main .carousel-caption{
    bottom: 0%;
    top: 28%;
    left: 10%;
    width: 85%;
}


.readmore{
    background: linear-gradient(to right, #e49d35 0, #e48335 100%);
    color: #fff;
    font-size: 14px;
    padding: 15px 30px;
    border-radius: 2px;  transition: all 0.5s ease 0s; 
}
.readmore:hover{
    background: linear-gradient(to right, #e48335 0, #e49d35 100%);
    color: #fff;
    text-decoration: none;transition: all 0.5s ease 0s; 

}
.serviceBox .service-icon img{
  width: 38px;  
}
.post-slide{
    padding: 15px 15px 25px 15px;
    background: #fff;
    box-shadow:0 2px 3px rgba(0, 0, 0, 0.07);
        margin-bottom: 30px;
}
.post-slide .post-img{
    position: relative;
    margin-bottom: 20px;
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
}
.post-slide .post-icon{
    width: 60px;
    height: 60px;
    display: block;
    position: absolute;
    bottom: 25px;
    left: 25px;
    text-align: center;
    background: #333;
    opacity: 0;
    border-radius: 3px;
    transition: all 300ms ease-in-out 0s;
}
.post-slide:hover .post-icon{
    opacity: 1;
}
.post-slide .post-icon i{
    font-size: 20px;
    color: #fff;
    line-height: 60px;
}
.post-slide .post-bar{
    margin: 0;
    padding: 0;
    list-style: none;
    text-transform: uppercase;
}
.post-slide .post-bar li{
    display: inline-block;
    font-size: 15px;
    color: #1d92c8;
    margin-right: 5px;font-weight: 600;
}
.post-slide .post-bar li:after{
    content: "/";
    margin-left: 5px;
}
.post-slide .post-bar li:last-child:after{
    content: "";
}
.post-slide .post-bar li a{
    color: #8e44ad;
    transition: all 0.3s ease 0s;
}
.post-slide .post-bar li a:hover{
    color: #333;
    text-decoration: none;
}
.post-slide .post-bar li a:after{
    content: ",";
    margin: 0 5px;
}
.post-slide .post-bar li a:last-child:after{
    content: "";
}
.post-slide .post-title{
    margin: 5px 0 15px 0;
    text-transform: capitalize;
}
.post-slide .post-title{
    font-size: 20px;
    font-weight: 600;
    color: #3c3c3c;
    transition: all 300ms linear 0ms;
}
.post-slide .post-title a:hover{
    color: #8e44ad;
    text-decoration: none;
}
.post-slide .post-description{
font-size: 14px;
    color: #262626;
    line-height: 25px;
    margin: 0;
    transition: all 0.5s ease 0s;
    padding-bottom: 18px;
}
.post-slide .read-more{
     display: inline-block;
    margin-top: 0;
    text-decoration: none;
    color: #ff981a;
}
.post-slide .read-more:hover{
    text-decoration: none;
}
.post-slide .read-more i{
    font-size: 19px;
    color: #333;
    margin-right: 5px;
    transition: all 0.40s linear 0s;
}
.post-slide .read-more span{
    font-size: 12px;
    color: #fff;
    padding: 12px 24px;
    text-transform: uppercase;
    transition: all 0.40s linear 0s;
}
.post-slide .read-more:after{
    content: "";
    display: block;
    width: 40%;
    position: relative;
    bottom: -20px;
    opacity: 0;
    transition: all 0.40s linear 0s;
}
.post-slide:hover .read-more span,
.post-slide:hover .read-more:after{
    opacity: 1;
}
.post-slide .read-more:hover span,
.post-slide .read-more:hover i,
.post-slide .read-more:hover:after{
    color: #ffffff;
    border-bottom-color: #ffffff;
}
.servicesall{
    background-size: cover;
    padding: 45px 25px 50px 25px;    color: #fff;text-align: center;
    position: relative;min-height: 442px;
}
.servicesall span{
    width: 68px;
    background: #faa635;
    height: 3px;
    left: 41%;
    position: absolute;
}
.serviceerm{
background: url(../img/services-business.jpg);
background-size: cover;
}
.services-business{
 background: url(../img/services-crm.jpg);
background-size: cover;   
}
.managed-services{
 background: url(../img/managed-services.jpg);
background-size: cover;   
}
.services-kubernetes{
 background: url(../img/services-kubernetes.jpg);
background-size: cover;   
}
.servicesall h3{
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 22px;
}
.servicesall p{
 font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;   
}
.servicesall p:nth-child(3) {
      padding-top: 25px;
}
.servicesall .read{
color: #fff;
    text-decoration: none;
    font-size: 14px;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 5px;
    background: #00000024;
    font-weight: 500;
}
.slider-bottom .col-md-3{
     padding: 2px;   
}
.job-open{
      background: #fff;
    box-shadow: 0 2px 3px rgb(0 0 0 / 7%);
    padding: 25px 30px;      border-radius: 20px;    margin-bottom: 30px;
}
.job-open h2{
    font-size: 24px;
    font-weight: 700;    
}
.job-open h5{
    color: #1682bd;
    font-size: 16px;
    font-weight: 600;
}
.job-open .main-logo{
    background: #f6f6f6;
    text-align: center;
    padding: 30px 10px;
    border-radius: 10px;
    margin-top: 12px;
}
.job-open .apply{
margin-top: 40px;
}
.job-open .main-logo img{

}
.job-open .text{
border-right: 1px solid #e6e6e6;
}
.job-open p{
 margin-bottom: 0;color: #5e5d5d;
   
}
.job-open a{
    
}
.job-open h6{
     margin-top: 26px;
    color: #40acde;   
}
.about-bg{
        background: url(../img/aboutapp-bg.jpg);
        background-size: cover;
}

.about-text{
        padding: 16% 5% 8% 5%;
}
.main-img{

    margin-top: 13%;

}
.main-img img{
    width: 530px !important;    margin: auto;
}
.target{

}
.target .col-md-4{
}
.serviceBox4{
        background: #fff;
    border: 1px solid #e8e8e8;
    padding: 20px 25px;
}
.serviceBox4 .service-icon4 a{
    display: inline-block;
    width: 100%;
    overflow-y: hidden;
    position: relative;
}
.serviceBox4 .service-icon4 a > span{
width: 75px;
    height: 75px;
    background: #eeeeee;
    border-radius: 5px;
    display: block;
    text-align: center;
    transform: rotate(60deg);
    position: relative;
    left: 0;
    top: 0;
    transition: all 300ms ease-in-out 0s;
    border-radius: 50%;
}
.serviceBox4:hover .service-icon4 a > span{
    background: #51bcea;
}
.serviceBox4 .service-icon4 a > span i{
    font-size: 30px;
    color:#a7a7a7;
    transform: rotate(-60deg);
    line-height: 72px;
}
.serviceBox4 .service-content4 h3{
     font-size: 16px;
    margin-bottom: 0px;
    padding-top: 12px;
}
.serviceBox4 .service-content4 p{
    color:#212121;
    line-height: 25px;
}
.serviceBox4:hover .service-icon4 a > span i{
color: #fff;
}
.links ul li h4{
 color: #fff;
    font-size: 16px;
    font-weight: 700;   
}
.links ul li h6{
 color: #fff;
    font-size: 14px;
    font-weight: 400;   
}
.footer-office .img img{
width: 70px;
    filter: none;
    border-radius: 10px;
    padding: 0;
}

.footer-office .text{
    padding-left: 20px;
    padding-top: 6px;
}
.footer-office{
     display: inline-flex;      padding-bottom: 0px; align-items: baseline;
}
.contact-bg h2{
color: #fff;
    font-weight: 600;
}
.contact-bg p{
  color: #fff;
    font-weight: 400;  
        margin: 0;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}
.banner-inner{
       
    padding:15% 0% 9% 0%;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner-inner h1{
   color: #fff;
    font-size: 54px;
    font-weight: 700;
    text-shadow: #0000005e 2px 2px 2px;
}
.banner-inner p{
    color: #fff;    text-shadow: #00000038 2px 2px 2px;
}
.branding-2019 h3{
     color: #1682bd;
    font-size: 24px;
    font-weight: 600;   
}
.branding-2019 .orange {
    color: #212529 !important;font-weight: 500;
}
.branding-2019{

}
.crm-bg {
    background: url(../img/crm-bg.jpg);
    background-size: cover;
}
.contact-bg{
        background: #ab8965;
    margin: 0 5%;
    border-radius: 10px;
    margin-bottom: -5%;
    padding:30px 20px 30px 20px;
    position: relative;box-shadow: #00000008 0px 0px 14px;
}
.contact-bg .form{
    display: flex;
    align-items: center;
}
.contact-bg .form input{
    width: 40%;
    padding: 15px 20px;
    border-radius: 3px;
    border: none;
    margin: 0 5px;
}
.contact-bg .form button{
    width: 18%;
    background: #202020;
    border: none;
    color: #ffffff;
    font-weight: 500;
    padding: 15px 15px;
    border-radius: 3px;

}
.contact-bg .inner-box {
    position: relative;
    padding: 40px 15px 20px 110px;
}
.contact-bg .inner-box .icon-box {
position: absolute;
    left: 30px;
    top: 32px;
    width: 60px;
    height: 60px;
    line-height: 59px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    transition: all 500ms ease;
    color: #ffffff;
}
.contact-bg .inner-box h3 {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0px;
}
.contact-bg .inner-box p {
    font-size: 14px;
    line-height: 26px;
    color: #808080;
    margin-bottom: 0;
}
.contact-section {
    padding: 6% 0;
}
.content-box {
    padding-top: 12%;
}
.content_block_5 .content-box .sec-title {
    margin-bottom: 23px;
}
.sec-title {

}
.sec-title p {
color: #1682bd;
    font-size: 16px;
    font-weight: 600;
}
.sec-title h2 {
    position: relative;
    display: block;
    font-size: 44px;

}
.content_block_5 .content-box .text {
    position: relative;
    margin-bottom: 31px;
}
.content_block_5 .content-box .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.content_block_5 .content-box .social-links li:first-child a {
    background: #466ca9;
}
.content_block_5 .content-box .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}
.content_block_5 .content-box .social-links li:nth-child(2) a {
    background: #dd4b39;
}
.content_block_5 .content-box .social-links li:last-child a {
    background: #55acee;
}
.contact-section .form-inner {
    position: relative;
    display: block;
    background: #f5f6f6;
    padding: 50px 50px;
    border-radius: 10px;
}
.contact-section .form-inner .form-group {
    position: relative;
    margin-bottom: 30px;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.contact-section .form-inner .form-group input[type='text'], .contact-section .form-inner .form-group input[type='email'], .contact-section .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border: 1px solid #fff;
    font-size: 15px;
    font-weight: 500;
    color: #848484;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 500ms ease;
}
.contact-section .form-inner .form-group textarea {
    resize: none;
    height: 130px;
}
.theme-btn {
}
.theme-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 17px;
    line-height: 25px;
    font-weight: 500;
    color: #fff !important;
    text-align: center;
    padding: 17.5px 41.5px;
    border-radius: 4px;
    z-index: 1;
    box-shadow: 0px 15px 25px 0px rgb(75 152 194 / 33%);
    transition: all 500ms ease;
    border: none;
}
.head-main .carousel-item{
   
}

.partner-img img{
filter: grayscale(1);
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;  
    width: 170px !important;  
}
.partner-img img:hover {
    filter: none;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.secgap{
 padding: 70px 0;   
}

.serviceBox5{
    padding: 40px 18px 40px;
    border: 1px solid #e8e8e8;
    text-align: left;
    position: relative;
    transition: all 0.3s ease 0s;
    margin-bottom: 20px;
        min-height: 420px;
}
.serviceBox5:hover{ border-color: #727cb6 ; }
.serviceBox5:before{
    content: "";
    border-top: 20px solid #f7f7f7;
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    top: 7px;
    right: 7px;
    transition: all 0.3s ease 0s;
}
.serviceBox5:hover:before{ border-top-color: #727cb6 ; }
.serviceBox5 .service-icon{
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 30px;
    color: #064774;
    margin-bottom: 35px;
    z-index: 1;
    position: relative;
    transition:all 0.3s ease 0s;
}
.serviceBox5:hover .service-icon{     
    color: #fff;
    background: #020080; }
.serviceBox5 .service-icon{
border-radius: 50%;
    border: 1px solid #e8e8e8;
}
.serviceBox5:hover .service-icon:before{
    border-color: #727cb6 ;
    background: #727cb6 ;
}
.serviceBox5 .title{
  font-size: 20px;
    font-weight: 600;
    color: #064774;
    text-transform: capitalize;
    margin: 0 0 0px 0;
    line-height: 30px;
}
.serviceBox5 .description{
margin-top: 15px;
    font-size: 16px;
    color: #313131;
    line-height: 30px;
    font-weight: 500;
}
.serviceBox5 .view-more{
margin-top: 18px;
    font-size: 16px;
    color: #fa843a;
    line-height: 30px;
    font-weight: 600;
}
.target .container{
     max-width: 1320px;   
}
.quality{
    background: url(../img/quality.jpg);
        background-size: cover;
}
.contact-section p{
font-size: 18px;
    color: #313131;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
    transition: all 0.5s ease 0s;
    padding-bottom: 18px;
}
.data-analytics{
     background: url(../img/data-ana.jpg);
        background-size: cover;  
}
.integration-banner{
     background: url(../img/integration-banner.jpg);
        background-size: cover;
}

html {
  scroll-behavior: smooth;
}



.cookie-container {
    display: flex;
    align-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background: #b7e7e2;
    color: var(--white-text);
    position: relative;
    bottom:0;
    font-size: 1rem;
    gap: 2rem;
    visibility: visible;
    
}

.cookie-container.hide {
   

}

.cookie-container a {
    color: var(--white-color);
}

.cookie-container a:hover {
    color: var(--hover-text);
}

.cookie-container .cookie-text {
     width: 55%;
    font-size: 15px;
    line-height: 24px;
    color: #096674;
    margin-right: 0px;
        margin-bottom: 0;padding-left: 15px;
}

.cookie-container .agree {
    width: 45%;
    text-align: right;
    display: flex;
    justify-content: center;
}

.agree button {
    background: var(--button-background);
    color: var(--button-text);
    border: none;
    padding: 0.4rem 1.2rem;
    cursor: pointer;
    border-radius: 20px;
    font-size: 1rem;
}

.agree button:hover {
    background: var(--button-background-hover);
        color: var(--white-text);
}
.inline-alert input{
    border-radius: 2px 0 0 2px;
    color: #0c505a;
    background: #fff;
    width: 220px;
    border: none;
    height: 36px;
    padding: 7px;
    font-size: 14px;
}
.agree .signup{
    background: #096674;
    color: #fff;
    min-width: 85px;
    border: none;
    padding: 11px 16px;
    cursor: pointer;
    margin: 0;
        font-size: 14px;
    line-height: 14px;
    border-radius: 0 2px 2px 0;
    height: 36px;
}
.services-sec{
background: #ffffff2b; 
    padding-top: 80px;
    padding-bottom: 80px;   
}
.video-box{
    background: #fff;
        margin-bottom: 35px;
}
.video-box .img img{
    width: 100%;
}
.video-box .text{
    padding: 20px 25px;
}
.video-box .text h3 a{
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #000;
}
.video-box .text h3 a:hover{
 color: #07889d;
 text-decoration: none;   
}

.video-box .text h5 a{
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
        margin-bottom: 25px;
    display: block;
}
.video-box .text h5 a:hover{
 color: #07889d;
 text-decoration: none;   
}

.video-box .text h6{
    font-size: 12px;
    font-weight: 700;
    color: #202429;
    text-transform: uppercase;
    margin-bottom: 13px;
    padding: 0;
    display: inline-block;
    border-bottom: 3px solid #c2eaf2;
    padding-bottom: 2px;
}
.video-box .see-more{
       color: #047f95;
    font-weight: 600;
    padding-bottom: 15px;
    display: block; 
}



.sweepstakes-box{
    background: #fff;
        margin-bottom: 35px;
}
.sweepstakes-box .img img{
    width: 100%;
}
.sweepstakes-box .text{
    padding: 20px 70px;
}
.sweepstakes-box .text h3 a{
    font-size: 36px;
    font-weight: 300;
    line-height: 44px;
    color: #000;
}
.sweepstakes-box .text h3 a:hover{
 color: #07889d;
 text-decoration: none;   
}

.sweepstakes-box .text h5 a{
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
        margin-bottom: 25px;
    display: block;
}
.sweepstakes-box .text h5 a:hover{
 color: #07889d;
 text-decoration: none;   
}
.but-main{
    background: #096674;
    color: #fff;
    min-width: 97px;
    border: none;
    padding: 11px 16px;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    border-radius: 2px;

}
.video-box .text h5 {
  font-size: 12px;
    color: #1197ad;
    padding-top: 12px;  
}

.video-box-main{
        background: #cee8ec;
            padding: 35px 0 8px 0;    margin-bottom: 35px;
}
.video-box-main .m-textcard{
    position: absolute;
    left: 50%;
    transform: translate(-50%,22%);
    z-index: 1;
    overflow: hidden;
    border-radius: 50%;
    width: 45%;
    height: 68%;
    top: -19px;
    border: none;
    background: hsla(0,0%,100%,.3);
}
.video-box-main .circle-bot{
    position: relative;
    display: block;
    height: 0;
    padding-bottom:65%;
}

.video-box-main .m-TextCard__a-Icon--ImageDecoration {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    z-index: 0;
    top: -9%;
    width: 65%;
    height: 100%;
    fill: hsla(0,0%,100%,.3);
}
.video-box-main .text {
    padding: 20px 15px;
}
.video-box-main .text h6 {
    font-size: 12px;
    font-weight: 700;
    color: #202429;
    text-transform: uppercase;
    margin-bottom: 13px;
    padding: 0;
    display: inline-block;
    border-bottom: 3px solid #c2eaf2;
    padding-bottom: 2px;
}
.video-box-main .text h3 a {
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    color: #000;
}
.video-box-main .text h5 {
    font-size: 12px;
    color: #1197ad;
    padding-top: 12px;
}


.blog-box{
    background: #fff;
        margin-bottom: 35px;
}
.blog-box .img img{
    width: 100%;
}
.blog-box .text{
    padding: 20px 70px;
}
.blog-box .text h3 a{
font-size: 26px;
    font-weight: 300;
    line-height: 32px;
    color: #000;
    padding-bottom: 15px;
    display: block
}
.blog-box .text h3 a:hover{
 color: #07889d;
 text-decoration: none;   
}

.blog-box .text h5 a{
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
        margin-bottom: 25px;
    display: block;
}
.blog-box .text h5 a:hover{
 color: #07889d;
 text-decoration: none;   
}
.blog-box .text h6 {
    font-size: 12px;
    font-weight: 700;
    color: #202429;
    text-transform: uppercase;
    margin-bottom: 13px;
    padding: 0;
    display: inline-block;
    border-bottom: 3px solid #c2eaf2;
    padding-bottom: 2px;
}

.img-video{
position: relative;
}
.img-video img{
    width: 100%;
}
.img-video .play{
position: absolute;
    bottom: 0;
    left: 40%;
    top: 48%;
    background: #000000a6;
    height: 65px;
    color: #fff;
    font-weight: 500;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 22px;
}
.vidio-side{

}
.main-vid{
    padding-bottom: 20px;
}
.main-vid img{
     width: 100%;   
}

.main-vid h3 a{
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
    margin-bottom: 25px;
    display: block;
        padding-top: 12px;
}
.main-vid h3 a:hover{
 color: #07889d;
 text-decoration: none;   
}

.footer-bg ul {
    list-style: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bg ul li {
    margin-bottom: 7px;
    padding: 0 7px;    display: inline-block;
}
.footer-bg ul li a{
    padding: 4px;
    color: #575c5f;
}
.bottom-foot{
    font-size: 12px;
    display: flex;
    justify-content: center;
    padding-bottom: 25px;
    border-top: 1px solid #cbcbcb;
    padding-top: 18px; 
}










.header-main .topbar{
    background: #000;
        padding: 10px 0;
}
.navbar-expand-lg .navbar-collapse{
    justify-content: end;
}

.header-main .bottombar{
    background: #ffffff;
    padding: 5px 0;
}
.navbar-nav a {
    color: #000;
    text-decoration: none !important;
    font-family: "Poppins", sans-serif ;
    font-size: 15px;
    font-weight: 500;   padding-top: 12px;
    
}
.navbar ul li{
    padding: 0 10px;
}
.navbar-brand.logo{
    padding: 0;
    margin-top: -45px;    
}
.logo img{
    width: 110px;
    border-radius: 50%;
}

.media-icons {
    display: flex;
    justify-content: end;
}
.media-icons a {
    height: 30px;
    width: 30px;
    margin: 0 8px 0 8px;
    border-radius: 50%;
    text-align: center;
    color: #000;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #FF9717;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-infoall{
display: flex;
justify-content: end;  
    gap: 40px;
}
.contact-info{
display: flex; 
align-items: center;
    gap: 8px;
}
.contact-info .icon{
height: 30px;
    width: 30px;
    margin: 0 8px 0 8px;
    border-radius: 50%;
    text-align: center;
    color: #000;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #FF9717;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info .text a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
}
.dropbtn {
    color: #1e1e1e !important;
    text-decoration: none !important;
    font-family: "Poppins", sans-serif ;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
  border: none;    padding-top: 12px !important;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9;
      top: 34px;
}

.dropdown-content a {
color: #000 !important;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-size: 15px;
}
.dropdown-content a:hover {
color: #ff9717 !important;
}

.dropdown:hover .dropdown-content {display: block;}

.headerbutton {
background-color: #FF9717;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 300 !important;
        border: none;
            text-decoration: none;
}
.head-main{

}
.main-bannervideo{
    position: relative;
    padding: 1% 2% 8% 2%;
        margin-top: -25px;
}
.main-bannervideo:before{
top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/side_bgm.svg);
    background-size: 107%;
    background-repeat: no-repeat;
    position: absolute;
    background-position: 88% 170%;
    content: "";
    z-index: 0;
}
.main-bannervideo .images{
    mask-image: url('data:image/svg+xml;utf8,%0A%09<svg width="796" height="602" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none">%0A<path d="M48.1276 16.1165C35.0145 25.7537 24.0164 39.2421 16.1032 55.3919C8.18996 71.5418 3.60488 89.8569 2.7523 108.722C-3.87419 246.373 0.819205 384.768 23.9205 512.588C29.2257 541.27 43.1902 566.346 62.9464 582.667C82.7027 598.988 106.751 605.314 130.153 600.348C305.176 564.13 503.353 558.961 688.703 591.131C701.563 593.415 714.667 592.33 727.168 587.948C739.669 583.567 751.29 575.985 761.281 565.693C771.272 555.4 779.41 542.626 785.171 528.194C790.932 513.762 794.187 497.994 794.726 481.906C794.726 480.827 794.726 479.673 794.813 478.55C795.98 445.328 796.052 424.438 795.98 402.392C795.711 320.071 790.779 237.876 781.221 156.411C777.757 126.778 765.121 99.9804 745.991 81.6937C726.861 63.407 702.738 55.0677 678.732 58.4424C452.213 91.131 290.547 103.369 135.43 11.1521C121.665 3.04358 106.503 -0.744685 91.2786 0.120976C76.0543 0.986698 61.2354 6.47986 48.1276 16.1165Z"/>%0A</svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,%0A%09<svg width="796" height="602" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none">%0A<path d="M48.1276 16.1165C35.0145 25.7537 24.0164 39.2421 16.1032 55.3919C8.18996 71.5418 3.60488 89.8569 2.7523 108.722C-3.87419 246.373 0.819205 384.768 23.9205 512.588C29.2257 541.27 43.1902 566.346 62.9464 582.667C82.7027 598.988 106.751 605.314 130.153 600.348C305.176 564.13 503.353 558.961 688.703 591.131C701.563 593.415 714.667 592.33 727.168 587.948C739.669 583.567 751.29 575.985 761.281 565.693C771.272 555.4 779.41 542.626 785.171 528.194C790.932 513.762 794.187 497.994 794.726 481.906C794.726 480.827 794.726 479.673 794.813 478.55C795.98 445.328 796.052 424.438 795.98 402.392C795.711 320.071 790.779 237.876 781.221 156.411C777.757 126.778 765.121 99.9804 745.991 81.6937C726.861 63.407 702.738 55.0677 678.732 58.4424C452.213 91.131 290.547 103.369 135.43 11.1521C121.665 3.04358 106.503 -0.744685 91.2786 0.120976C76.0543 0.986698 61.2354 6.47986 48.1276 16.1165Z"/>%0A</svg>');
    mask-size: 90% 96%;
    -webkit-mask-size: 90% 96%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
        margin-top: 50px;
            margin-left: 34px;
}
.main-bannervideo .images img {
    width: 520px;
}
.slider-text h1{
    margin: 0 0 20px 0;
        font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
}
.slider-text span{
font-family: "Love Ya Like A Sister", cursive;
  font-weight: 400;
  color: #F08500;
  font-size: 54px;
}
.slider-text p{
    font-size: 15px;
    margin-bottom: 30px;
}
.form-sec img{
 width: 100%;   
}
.justify-center{
  justify-content: center;  
}
.donation_form{
margin-top: -212px;
    position: relative;
    z-index: 9;
}
.donation_form .tab-content{
background: #fff;
    padding: 30px;
        border-radius: 15px;
}
.donation_form .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
background-color: #FF9718;
color: #fff;
}
.donation_form .nav-pills .nav-link{
border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: #000;    
    background: #fff;
}
.donation_form .inline_amount{
    display: flex;
    gap: 15px;
}
.donation_form .inputfiels .amout{
background: #F0F0F0;
    border: none;
    font-size: 14px;
    padding: 15px 28px;
    border-radius: 50px;
}
.donation_form .inputfiels .amout.active{
background: #FF9718;
color: #fff;
}
.donation_form label{
margin-bottom: 10px;
}
.donation_form .inputfiels select{
background: #F0F0F0;
    border: none;
    font-size: 14px;
    padding: 15px 22px;
    border-radius: 50px;
        width: 100%;
            -webkit-appearance: none;
    -moz-appearance: none;
}
.donation_form .nextbuttton{
    background: #FF9718;
    color: #fff;
    border: none;
    font-size: 15px;
    padding: 8px 18px 8px 30px;
    border-radius: 50px;
    margin-top: 32px;
}
.donation_form .nextbuttton img{
    width: 35px;
    margin-left: 20px;
}
.form-sec .seprator_form{
  margin-top: -80px;
    position: relative;
    z-index: 9;
}
.bg-orangemain{
 background: #FE9400;   
}
.section-heading {
text-align: center;
}
.section-heading h2{
    font-weight: 600;
    font-size: 42px;
    padding-bottom: 20px;
}
.section-heading::before{
content: "";
font-size: 100px;
}
.whatwedo{
        background: #FE9400;
            padding: 5% 0;
}
.servicesbox{
text-align: center;
    margin: 0 10px;
    background: #fff;
    padding: 30px 15px 20px 15px;
        border-radius: 5px;
            height: 21vw;
}

.servicesbox .topicon{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff6e9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
        position: relative;
        z-index: 9;
         transition: all .3s;
    -webkit-transition: all .3s;
    display: block;
    position: relative;
        transform: translateY(0);
}

.servicesbox .topicon img {
   
    width: 150px !important;
    
    
    margin: 0 auto 2rem;
}
.servicesbox .bottomtext_box{
    
    margin-top: 0px;
    border-radius: 10px;
    transform: translateY(8%);
    transition: all .3s;
    -webkit-transition: all .3s;
}
.servicesbox .bottomtext_box h3{
  font-weight: 500;
    font-size: 18px;  
    position: relative;
    padding-bottom: 1rem;
    margin: 1.5rem 0 1rem;
    transform: translateY(0);
        transition: all .3s;
    -webkit-transition: all .3s;
}

.servicesbox h3::before {
    transition: all .3s;
    -webkit-transition: all .3s;
    position: absolute;
    left: 0;
    right: 0;
    width: 10%;
    height: 2px;
    bottom: 0;
    margin: auto;
    content: '';
}
.servicesbox .bottomtext_box p{
    font-size: 14px;  
    margin-bottom:20px;
    opacity: 0; 
    transition: all .3s;
    -webkit-transition: all .3s;
    transform: translateY(0);
}
.servicesbox:hover .bottomtext_box p{
   opacity: 1; 
}
.servicesbox button{
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 300 !important;
    border: none;   
    transition: all .3s;
    -webkit-transition: all .3s;
    opacity: 0; 
    font-size: 14px;
    transform: translateY(0);
}
.servicesbox:hover button{
   opacity: 1; 
}
.servicesbox:hover>.bottomtext_box {
    transform: translateY(-9rem);
}
.servicesbox:hover>.topicon {
    opacity: 0;
    transform: translateY(-6rem);
}
.servicesbox .topicon {
    transition: all .3s;
    -webkit-transition: all .3s;
    opacity: 1;
}
.owl-nav{

}
.owl-nav .owl-prev{
 
}
.bg-whitemain img{
    width: 100%;
}

.circleeffect .main {
  margin: 0px auto;
  width: 480px;
  height: 480px;
  position: relative;
}
.circleeffect .big-circle {
  height: 100%;
  width: 100%;
  position: relative;
  border: 1px solid #EDB922;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
}
.circleeffect .icon-block {
    width: 80px;
    height: 80px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    border: 1px solid #EDB922;
    background: #fff;
}
.circleeffect .icon-block img {
  margin: 0px auto;
      width: 42px;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;
}
.circleeffect .icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.circleeffect .icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.circleeffect .icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}
.circleeffect .icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* circle content */
.circleeffect .circle {
  animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 55%;
  height: 55%;
  border: 1px solid #EDB922;
  border-radius: 50%;
}
.circleeffect .circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}
/* center logo */
.circleeffect .center-logo {
    position: absolute;
    top: 70%;
    left: 58%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.circleeffect .center-logo img {
  max-width: 550px;
}

/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }
  to {
    -webkit-transform: rotate(-405deg);
  }
}
.circleeffect{
        padding: 7% 0;
}
.circleside-text{
        padding-top: 15%;
}
.impact-sec{
 padding: 0;
    position: relative;
}
.impactall{
display: flex;
    background: #ffffff;
    flex-wrap: wrap;
    padding: 20px 5px;
    border-radius: 15px;
    box-shadow: #0000000a 2px 2px 30px;
}
.impact-single{
text-align: center;
    width: 16.66666667%;
}

.impact-single .icon img{
    width: 70px;
}

.impact-single .text h2{
color: #FE9400;
padding-top: 14px;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 0;
}
.impact-single .text h5{
font-size: 15px;
    font-weight: 400;
}
.seprator_impact{
     margin-top: -5%;   
}
.impact-second{
 margin-top: -12%;   
}

.star-raiting{
    color: #fff;
}
.activities-sec{
    padding: 5% 0 8% 0;
}
.links{

}

.links input {
    background: transparent;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    padding: 14px 12px 14px 25px;
    font-size: 13px;
    color: #fff;
    width: 100%;
    margin-bottom: 10px;
}
.foot-logo{
    margin-bottom: 30px;
}
.justify-start {
    justify-content: start;
}
.header-main{
     box-shadow: #00000014 2px 2px 30px;   
}
.main-bannervideo video {
    height: 480px;
    width: 100%;
    object-fit: cover;
    position: relative;
}
.innerpage_banner{
    background: url(../img/innerpage_banner.jpg);
    background-size: cover;
    padding: 100px 0;  
    position: relative;
}
.punjab_flood_bgm{
    background: url(../img/punjabflood.jpg) !important;
    background-size: cover !important;
}
.awards_bgm{
    background: url(../img/awards_bg.jpg) !important;
    background-size: cover !important;
}
.innerpage_banner .bgm{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000075;
}
.innerpage_banner h1{
color: #fff;
position: relative;
z-index: 9;
    font-size: 42px;
}
.form-inner {
    position: relative;
    display: block;
    background: #f5f6f6;
    padding: 50px 50px;
    border-radius: 10px;
}
.form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
        font-size: 15px;
}
.form-inner .form-group input[type='text'], .form-inner .form-group input[type='email'], .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 55px;
    background: #ffffff;
    border: 1px solid #fff;
    font-size: 15px;
    font-weight: 500;
    color: #848484;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 500ms ease;
}
.form-inner .form-group textarea {
    resize: none;
    height: 100px;
}
.form-inner .submitbut{
    background-color: #FF9717;
    color: #fff !important;
    padding: 20px 55px !important;
    border-radius: 50px;
    font-weight: 300 !important;
    border: none;
}
.section-first{
        padding: 90px 0;
}
.bgm-volunteer{
background: url(../img/bgm-volunteer.jpg);    
background-size: cover;
    padding: 90px 0;
}
.punjab_flood_bgm{
    
}
.volen-box{
     background: #ffffff;
    margin-top: 10%;
    padding: 50px;
    border-radius: 10px;   
}
.servicesbox.pinkbox{
    border-bottom: .4rem solid #e5276a;    
}
.servicesbox.pinkbox h3::before {
   background-color: #e5276a; 
}
.servicesbox.pinkbox button{
background-color: #e5276a; 
}
.servicesbox.pinkbox button:hover {
    box-shadow: 0 0 0 .3rem #ffc4d8;
}
.servicesbox.bluebox{
    border-bottom: .4rem solid #20b7b9;    
}
.servicesbox.bluebox h3::before {
   background-color: #20b7b9; 
}
.servicesbox.bluebox button{
background-color: #20b7b9;  
}
.servicesbox.bluebox button:hover {
    box-shadow: 0 0 0 .3rem #20b7b961;
}
.servicesbox.purplebox{
    border-bottom: .4rem solid #a943a5;    
}
.servicesbox.purplebox h3::before {
   background-color: #a943a5; 
}
.servicesbox.purplebox button{
background-color: #a943a5; 
}
.servicesbox.purplebox button:hover {
    box-shadow: 0 0 0 .3rem #a943a547;
}
.servicesbox.orangebox{
    border-bottom: .4rem solid #f6910e;    
}
.servicesbox.orangebox h3::before {
   background-color: #f6910e; 
}
.servicesbox.orangebox button{
background-color: #f6910e;
box-shadow: 0 0 1px 1px #f6910e;   
}
.servicesbox.orangebox button:hover {
    box-shadow: 0 0 0 .3rem #f6910e5c;
}
.rain-container{
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  z-index: 9; 
}

.contentrain{
  position: relative; 
  z-index: 1;
}


.raindrop{
  position: absolute;
  width: 3px;
  height: 30px;
  background: rgb(81 169 242);
  border-radius: 50% 50% 0 0;
  transform: rotate(0deg);
  animation: fall linear infinite;
  opacity: 0.7;
}

@keyframes fall {
  0% {
    transform: translateY(-100vh);
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Splash */
.splash {
  position: absolute;
  width: 5px;
  height: 2px;
  border-radius: 50%;
  background: rgb(16 129 193);
  animation: splash-animation 0.3s ease-out;
  opacity: 0;
}

@keyframes splash-animation {
  0% {
    transform: scale(0.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.textboxwhite{
     background: #ffffff;
    padding: 40px 40px 20px 40px;  
}
.textboxwhite h3{
    margin-bottom: 25px;    
}
.textboxwhite p{
     font-size: 15px;
    margin-bottom: 30px;   
}
.textboximg{
    
}
.textboximg img{
width:100%;    
}
.award_box{
    position: relative;
    padding: 0 50px 30px 90px;
    font-style: italic;
    font-size: 20px; 
    line-height: 32px;
}
.award_box::before{
    content: "“";
    font-size: 100px;
    line-height: 80px;
    font-weight: 700;
    position: absolute;
    top: 0px;
    left: 0px;
        color: #ff9717;
}
.gray_section{
    background: #f2f2f2;
    padding: 60px 0;    
}
.award_video video{
       width: 100%;
    height: 300px;
        border-radius: 15px;
    object-fit: cover; 
}
.inputfiels select option:hover{
    
}
select option:hover {
  box-shadow: 0 0 10px 100px red inset !important;
  color:white;
}
select option:checked{
  box-shadow: 0 0 10px 100px red inset !important;
  }
  .sticky_Volunteer{
     transform: rotate(-90deg);
    position: fixed;
    right: -55px;
    top: 50%;
    background: #000;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;   
    z-index: 9;
  }
  .rel-wrapper {
    position: relative;
}
.hero-video-patch {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    z-index: 1;
}
.hero-video-wrapper video {
display: block;
    width: 100%;
    margin-left: 0;
}
.pl-0{
    padding-left:0;
}
p {
    font-size: 15px;
}
.mlss_fleetbg{
    background: url(../img/mlss_fleetbg.jpg) !important;
    background-size: cover !important;
}
.mlss_sikh{
    background: url(../img/sikh_banner.jpg) !important;
    background-size: cover !important;
}
.checklist {
    margin-top: 0px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}
.checklist li {
background-image: url(../img/tick.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    padding-left: 60px;
    margin: 9px 0;
    padding-bottom: 15px;
    padding-top: 3px;
    background-size: 34px;
        font-size: 15px;
}

.testi-box1{
padding: 110px 28px 30px 28px;
    background: #fff;
    box-shadow: #0000001a 0px 5px 22px;
    border-radius: 5px;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    margin: 30px 15px 5px 15px;
    border: none;
    position: relative;
}
.testi-box1 img{
    width: 72px !important; 
    margin-left: 90px; 
        float: left; 
            margin-right: 18px; 
}
.testi-box1 h5{
font-weight: 700;
    padding-top: 26px;
}
.testi-box1 h1{
    font-size: 200px;
    color: #cbcbcb;
    padding-right: 28px;
    position: absolute;
    opacity: 0.5;
    top: 18px;
    left: 20px;
}
.testi-box1 p{
font-weight: 500;
}
.testi-box1 h4{
    font-weight: 600;
    padding-top: 26px;
    font-size: 18px;
    color: #002e72;
    margin-bottom: 10px;
}
.testi-box1 h6{
    font-weight: 400;
    font-size: 12px;
    color: #ff9717;
}
.testi-box {
    padding: 45px 28px 30px 28px;
    background: #fd9400;
    border-radius:15px;
    transition: 0.4s ease;
        margin: 0 20px;
    margin-bottom: 30px;
    border: none;
        color: #fff;
}
.testi-box h1 {
    font-weight: 900;
    font-family: none;
    font-size: 112px;
    color: #cbcbcb;
    float: left;
    padding-right: 28px;
}
.testi-box h5 {
    font-weight: 500;
    padding-top: 26px;
}
.testi-box p {
    font-weight: 300;
}
.testi-box img {
    width: 72px !important;
    float: left;
    margin-right: 18px;
    border-radius: 50%;
}
.testi-box h4 {
    font-weight: 600;
    padding-top: 15px;
    font-size: 18px;
    color: #583300;
    margin-bottom: 0;
}
.testi-box h6 {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
}
.star-raiting{
    color: #fff;
}
.price_table{
    background: #f6f6f6;
    padding: 20px 20px;
    border-radius: 10px;
    min-height: 520px;
}
.price_table h3{
    margin-bottom: 25px;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 600;
}
.price_table .icon{
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.price_table .icon img{
    width: 65px;
}
.donation{
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
}
.donation h3{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;    
}
.accordion-button:not(.collapsed){
    background: #FF9717;
    color: #fff;
        box-shadow: none;
        border: none !important;
}
.accordion-body {
    font-size: 15px;
        border: 1px solid #d6d6d6;
}
.accordion-button{
    font-size: 15px;
}
.accordion-button:not(.collapsed)::after {
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-size: 60%;
    background-position: center;
}
.accordion-collapse.show{
       /* border: 2px solid #ff9717;*/
}
.accordion-item {
    margin-bottom: 20px;
    border: none;
}
.accordion-button {
    border: 1px solid #d6d6d6;
}
.social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.social-links{
    padding-left: 0;
}
.social-links li:first-child a {
    background: #466ca9;
}
.social-links li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}
.social-links li:nth-child(2) a {
    background: #dd4b39;
}
.social-links li:last-child a {
    background: #b32dab;
}
.single-info-box .inner-box {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 35px 20px 35px 120px;
    border-radius: 10px;
    box-shadow: 0px 30px 40px 0px rgb(6 26 58 / 10%);min-height: 165px;
}
.single-info-box .inner-box .icon-box {
    position: absolute;
    left: 25px;
    top: 35px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #f0f2f2;
    text-align: center;
    border-radius: 50%;
        font-size: 26px;
    transition: all 500ms ease;
    color: #ff9717;
}

.single-info-box .inner-box h3 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 9px;
}
.single-info-box .inner-box p {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 0;
}
.single-info-box .inner-box a {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    margin-bottom: 0;
}
.single-info-box .inner-box:hover .icon-box {
    color: #ffffff;
}
.single-info-box .inner-box:hover .icon-box {
    background: #ff9717;
}
.mlss_ukprojects{
    background: url(../img/ukprojects_banner.jpg) !important;
    background-size: cover !important;
}
.btn2 {
position: relative;
    padding: 14px 30px;
    color: #333;
    text-decoration: none;
    display: inline-block;
    text-transform: capitalize;
    letter-spacing: 0.1em;
    font-size: 14px;
    border: 2px solid transparent;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.btn2 span{
        font-weight: 600;
    font-size: 26px;
}

.btn2:hover {
    border: 2px solid #F08500
}

.btn2::before {
    content: '';
    position: absolute;
    inset: 0 0px;
    border-left: 2px solid #F08500;
    border-right: 2px solid #F08500;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}

.btn2::after {
    content: '';
    position: absolute;
    inset: 0px 0;
    border-top: 2px solid #F08500;
    border-bottom: 2px solid #F08500;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}
.btn2:hover::before {
    inset: 0px 8px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.btn2:hover::after {
    inset: 8px 0px;
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
}