/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Muli:400,500,700&display=swap');
@import url('../icons/iconmind.css');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

body {
    font-family: 'Muli', sans-serif;
}

/* Colors */
.bg-success-gradiant {
    background: #2cdd9b;
    background: -webkit-linear-gradient(legacy-direction(to right), #2cdd9b 0%, #1dc8cc 100%);
    background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
    background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
    background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
    background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
}

.bg-primary-gradiant {
    background: #4285f4;
    background: -webkit-linear-gradient(legacy-direction(to right), #4285f4 0%, #1dc8cc 100%);
    background: -webkit-gradient(linear, left top, right top, from(#4285f4), to(#1dc8cc));
    background: -webkit-linear-gradient(left, #4285f4 0%, #1dc8cc 100%);
    background: -o-linear-gradient(left, #4285f4 0%, #1dc8cc 100%);
    background: linear-gradient(to right, #4285f4 0%, #1dc8cc 100%);
}
.bg-secondary-dark{
    background:#293d81;
}
.bg-primary{
    background:#4285f4;
}
.border-top-4{
    border-top:4px solid #4285f4;
}
.border-bottom-4{
    border-bottom:4px solid #4285f4;
}
/* Spacing  */
.section-small {
    margin-top: 40px;
}

/* Login */
.login-choice {
    text-align: center;
    width: 100%;
}

.login-choice span {
    color: #5b6987;
    display: -ms-grid;
    display: grid;
    font-size: 16px;
    width: 100%;
    line-height: 26px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -ms-grid-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
    grid-gap: 19px;
}

.login-choice span:after,
.login-choice span:before {
    content: "";
    border-top: 1px solid #e5e8ed;
}

.signup-buttons .btn-signup {
    background: #f2f8ff;
    border: 1px solid rgba(0, 105, 255, .2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;

}

.signup-buttons .btn-signup svg {
    width: 24px;
    height: 24px;
}

/* Form */
input:not([type]),
input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
    height: 48px;
    max-width: 100%;
    padding: 0 16px;
    border: 1px solid #f1f1f1;
    background: #fff;
    color: rgba(3, 27, 78, .7);
    -webkit-transition: all cubic-bezier(0.645, 0.045, 0.355, 1) .25s;
    transition: all cubic-bezier(0.645, 0.045, 0.355, 1) .25s;
    border-radius: 5px;
    width: 100%;
    position: relative;
}

input:focus:not([type]),
input:focus[type=color],
input:focus[type=date],
input:focus[type=datetime-local],
input:focus[type=datetime],
input:focus[type=email],
input:focus[type=month],
input:focus[type=number],
input:focus[type=password],
input:focus[type=search],
input:focus[type=tel],
input:focus[type=text],
input:focus[type=time],
input:focus[type=url],
input:focus[type=week],
select:focus,
textarea:focus {
    border-color: #4285f4;
    outline: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 2px rgba(17, 169, 94, .5);
    box-shadow: 0 0 2px rgba(17, 169, 94, .5);
    color: rgba(3, 27, 78, .7);
    z-index: 1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: #181726;
}

h1,
h2,
h3 {
    font-weight: 500;
}

p,
a {
    font-weight: 400;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
}

a {
    color: #4285f4;
}

p,
a {
    font-size: 16px;
}

.section-title {
    margin: 20px 0 5px 15px;
}

.section-title span {
    color: #4285f4;
}

.section-title sup {
    font-size: 50%;
    top: -.75em;
}

.section-subtitle {
    line-height: 24px;
}

.text-primary-gradiant {
    background: #4285f4;
    background: -webkit-linear-gradient(legacy-direction(to right), #4285f4 0%, #1dc8cc 100%);
    background: -webkit-gradient(linear, left top, right top, from(#4285f4), to(#1dc8cc));
    background: -webkit-linear-gradient(left, #4285f4 0%, #1dc8cc 100%);
    background: -o-linear-gradient(left, #4285f4 0%, #1dc8cc 100%);
    background: linear-gradient(to right, #4285f4 0%, #1dc8cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

/* Background Pattern */
.typo-pattern {
    background-color: #e9edff;
    background-image: url("../image/typography.svg");
}
.plus-pattern {
    background-color: #e9edff;
    background-image: url("../image/plus.svg");
}

/* Help Card */
.help {
    position: relative
}

.help .help-container {
    position: relative;
    height: 145px;
    margin-top: 10px;
    border-radius: .25rem;
    background-color: #fff;
}
.help .help-container {
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 6px hsla(0, 0%, 0%, 0.2);
}

.help .help-container:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -80px;
    height: 2px;
    width: 80px;
    background: #4285f4;
    transition: all 0.3s;

}

.help-container:hover:before {
    left: 0px;
}

.help .help-container:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: -80px;
    height: 2px;
    width: 80px;
    background: #4285f4;
    transition: all 0.3s;
}

.help-container:hover:after {
    right: 0px;
}


.help .help-item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    border: 0;
    font-size: 0;
    padding: 0;
    overflow: hidden;
    transition: all .3s ease
}

.help .help-item:before {
    content: '';
    position: absolute;
    top: 35px;
    bottom: 0;
    left: 28%;
    width: 1px;
    height: 50%;
    background: #ebebeb;
    transition: all .3s ease
}

.help .help-item:before.right {
    right: 28%
}

.help .help-item .img {
    position: relative;
    width: 28%;
    height: 100%
}

.help .help-item .ico {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 55px;
    transform: translate(-50%, -50%)
}

.help .help-item .inform {
    width: 72%;
    padding: 0 10px
}

.help .help-item .inform .title {
    font-size: 16px;
    font-weight: 700;
    color: #494949;
}

.help .help-item .inform .description {
    font-size: 12px;
    color: #494949;
    margin-top: 5px;
    line-height: 16px;
}

.help .help-item .img,
.help .help-item .inform {
    display: inline-block;
    vertical-align: middle
}

/* Facts (Counter) */

.counter-main h3 {
    font-size: 26px;
    font-weight: bold;
}

.counter-main {
    padding: 25px;
    text-align: center;
}

.counter {
    background-color: #ffffff;
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.counter-icon {
    margin: 0 auto;
    float: none;
    display: table;
}

.counter-icon img {
    width: 55px;
    height: 55px;
}

/* Feature Box */
.wrap-feature-box {
    margin: 15px 0px;
}

.wrap-feature-box .feature-box {
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 6px hsla(0, 0%, 0%, 0.2);
}

.wrap-feature-box .feature-box:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -80px;
    height: 2px;
    width: 80px;
    background: #4285f4;
    transition: all 0.3s;

}

.feature-box:hover:before {
    left: 0px;
}

.wrap-feature-box .feature-box:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: -80px;
    height: 2px;
    width: 80px;
    background: #4285f4;
    transition: all 0.3s;
}

.feature-box:hover:after {
    right: 0px;
}

.wrap-feature-box .card-body {
    padding: 10px;
}

.wrap-feature-box .card-body .icon-space {
    padding: 0px 30px 20px 0px;
    font-size: 45px;
    margin: 0px;
}

.wrap-feature-box .card-body p {
    margin-bottom: 0px;
    font-size: 14px;
}


/* Brand and Technology Slide */
.brands .slide img,
.technology .slide img {
    margin: 0 auto;
}

/* Testimonial */
.testimonial .testi .card-body {
    padding: 35px;
}

.testimonial .testi .thumb {
    position: relative;
    padding: 10px 20px 10px;
    padding-left: 90px;
    margin-left: -35px;
    display: inline-block;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 700;
}

.testimonial .testi .thumb .thumb-img {
    width: 60px;
    position: absolute;
    left: 20px;
    top: -10px;
}

.testimonial .testi h5 {
    font-size: 16px;
    font-weight: 400;
}

.testimonial .testi .devider {
    height: 1px;
    background: rgba(120, 130, 140, 0.13);
    margin: 20px 0;
    display: inline-block;
    width: 100px;


}

.testimonial .testi .company {
    font-size: 16px;
    font-weight: 700;
}

.testimonial .testi .rating {
    font-size: 0.75rem;
}

.circle {
    border-radius: 100%;
}

/* Slick Slider */
.slick-slide {
    margin-left: 27px;
}
.slick-list {
    margin-left: -27px;
}
/* Map */
.location-servers-map {
    position: relative;
}
@keyframes pulse {
    0% {

        -webkit-box-shadow: 0 0 0 0 rgba(64, 92, 255,0.4);
    }
    70% {
        -webkit-box-shadow: 0 0 0 20px rgba(64, 92, 255,0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(64, 92, 255,0);
    }
}
.location-server-item {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 255, 255,0.4);
    animation: pulse 2s infinite;
}
.location-server-item:hover {
    border-width: 3px;
}
/* Footer */
.footer-title{
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
     
}
.newsletter-form .newsletter-form-text{
    font-size: 14px;
    font-weight: 400;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
}
.footer-menu ul li a{
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    color:rgba(0,0,0,0.8);
    text-decoration: none;
}
.footer-menu ul li a:hover{
    color:#293d81;
    font-weight: 500;
}
.footer-menu ul{
    padding-inline-start:0px;
}

.footer-about .footer-title, .footer-about .footer-menu ul li a{
color:white;
}
.footer-about .footer-menu ul li a:hover{
    color:rgba(255,255,255,0.7);
}
.footer-about .about-us-text{
    color:#fff;
    font-size:14px;
    line-height: 23px;
}
.ticker-heading{
    /* width: 30%; */
    overflow: hidden;
    padding:10px;
    float: left;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
}
.ticker-heading:hover{

}
.newsticker{
    padding: 0px 10px;
}
.newsticker li{
    padding: 6px;
}
/* Social Icons */
.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons > li {
    display: inline-block;
}

.social-icons > li > a {
    background: rgba(66, 133, 244,0.3);
    display: block;
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    height: 32px;
    width: 32px;
    color: #ffffff;
}

.social-icons > li > a:hover,
.social-icons > li > a:focus {
    background: #4285f4;
    color: #ffffff;
}
.social-icons-circle > li > a {
    border-radius: 100%;
}
.copy{
    font-size: 12px;
    opacity: 0.9;
}
/* Footer Ends */
/* Responsive */
@media only screen and (max-width: 420px){
    .slick-slide {
        margin-left: 0px;
    }
    
    /* the parent */
    .slick-list {
        margin-left: 0px;
    }
}