@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body{
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
}
.f-large{
    font-size: 42px !important;
    line-height: 54px;
}
a.navbar-brand{
    background-image: url(../images/Summit-bytes-1-white.svg);
    width: 170px;
    text-indent: -999999px;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 45px;
}
.bg-light a.navbar-brand{
    background-image: url(../images/Summit-bytes-1.svg);    
}
nav .navbar-nav .nav-link{
    font-weight: 500;
    color: #ffffff;
}
.fixed-top {
    animation: fadeInDown 0.5s;
}
nav.bg-light .navbar-nav .nav-link{
    color: #1E6DEA;
}
.bg-light-secondary{
    background: #E9F0FD;
}
.primary{
    color: #ffffff;
    background-color: #1E6DEA;
    border: 1px solid #1E6DEA;
}
.primary-reverse{
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
}
.primary-reverse:hover{
    color: #f8f8f8;
    background: transparent;
    border: 1px solid #f8f8f8;
}
div.main-banner {
    position: relative;
    padding-top: 14rem;
    padding-bottom: 3rem;
    background-image: url(../images/circle-main-banner.png), linear-gradient(#1E6DEA, #7045ED);
    background-repeat: no-repeat;
    background-position: center bottom;
    overflow: hidden;
}
.gradient-bg{
    background-image: linear-gradient(#1E6DEA, #7045ED);
    background-repeat: no-repeat;
    background-position: center bottom;
}
div.main-banner span.b1 {
    position: absolute;
    left: 25%;
    display: inline-block;
    top: 61%;
}
div.main-banner span.b2 {
    position: absolute;
    left: 35%;
    top: 20%;
    display: inline-block;
}
div.main-banner span.b3 {
    position: absolute;
    top: 20%;
    left: 60%;
    display: inline-block;
}
div.main-banner span.b4 {
    position: absolute;
    left: 31%;
    display: inline-block;
}
div.main-banner span.b5 {
    position: absolute;
    left: 65%;
    display: inline-block;
    top: 79%;
}

/* Banner animations */

div.main-banner span{
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}
div.main-banner a {
    display: inline-block;
    margin: 0 5px;
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
div.main-banner span img  {
  animation: pulse 1.5s infinite ease-in-out alternate;
}
@keyframes pulse {
  from { transform: scale(0.5); }
  to { transform: scale(0.8); }
}

h1.banner-heading{
    font-size: 36x;
    font-weight: 600;
    letter-spacing: 1px;
}
.banner-sub-heading{
    font-size: 24px;
    color: #ffffff;
}
.hp-title, .inner-title{
    font-size: 32px;
    font-weight: bold;
    line-height: 48px;
}

.hp-title span, .inner-title{
    color: #1E6DEA;
    border-bottom: 2px solid #1e6dea;
}

.hp-about .hp-subtitle{
    font-style: italic;
}

.hp-about img{
    width: 100%;
}

.clients-image {
    position: relative;
    width: 100%;
    z-index: 1;
}
.clients-image:before {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height: 60%;
    left: auto;
    right: -10px;
    top: -10px;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(#1E6DEA, #7045ED);;
}
.clients-image:after {
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height: 60%;
    left: -10px;
    right: auto;
    top: auto;
    bottom: -10px;
    z-index: -1;
    background: linear-gradient(#1E6DEA, #7045ED);;
}
.clients-image img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.clients-counter {
    max-width: 390px;
    justify-content: space-between;
    text-align: center;
}

.counter {
    color: #1E6DEA;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px
}

.counter:after {
    content: '+';
    margin-left: 5px;
}

.servicer-items {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    row-gap: 20px;
}
.servicer-items> a {
    text-decoration: none;
    border-color: linear-gradient(#1E6DEA, #7045ED);
}

footer{
    background-image: linear-gradient(#1E6DEA, #7045ED);
}

footer ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li a{
    color: #ffffff;
    text-decoration: none;
}

nav.bg-light .navbar-nav .nav-link{
    color: #1E6DEA;
}

.home-secondary > div, .summit-inner > div{
    padding: 70px 0;
}

.home-secondary .hp-title{
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
}

.home-secondary div.hp-title{
    margin-bottom: 35px;
}
.home-secondary > div.main-banner {
    padding-top: 15rem;
    padding-bottom: 3.5rem;
}

.home-secondary .hp-content{
    margin-bottom: 50px;
}

.home-secondary .clients-counter {
    max-width: 500px;
}

.home-secondary .counter {
    font-size: 42px;
}

.home-secondary .servicer-items, .summit-inner .core-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}
.home-secondary .servicer-items .card, .summit-inner .core-items .card{
    padding: 25px 10px 80px;
    text-align: center;
    transition: transform .9s;
    text-decoration: none;
}
.home-secondary .servicer-items .card:hover, .summit-inner .core-items .card:hover{
    transform: scale(1.02);
    color: #ffffff;
    background-image: linear-gradient(#1E6DEA, #7045ED);
}

.home-secondary .hp-services .card h4{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.home-secondary .hp-services .card:hover i {
    color: #ffffff;
}

.home-secondary .counter-item:nth-child(2) {
    border-left: 1px solid #b3b3b3;
    border-right: 1px solid #b3b3b3;
    padding: 0 20px;
}

.home-secondary .counter-item span {
    margin-top: 20px;
    display: inline-block;
    font-size: 18px;
}

.home-secondary footer, .summit-inner footer{
    padding: 70px 0 30px;
}

footer p{
    font-size: 14px;
}
footer a{
    font-size: 14px;
    opacity: 0.8;
}
footer a:hover{
    opacity: 1;
}

footer address{
    font-size: 14px;
}

.home-secondary footer hr, .summit-inner footer hr{
    margin: 30px 0;
}

.mini-banner{
    background-image: url(../images/about-banner.jpg);
    min-height: 280px;
    background-position: center;
    background-size: cover;
}

.choose-us .img-wrapper{
    padding-top: 50px;
    padding-left: 50px;
    position: relative;
}

.choose-us .img-wrapper:before {
    content: '';
    position: absolute;
    width: 245px;
    height: 206px;
    background: #f8f9fa;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
}
.choose-us p{
    padding-right: 50px;
}
.services img{
    width: 100%;
}

.services span{
    text-decoration: none;
}

.portfolio img{
    width: 100%;
}




@media only screen and (min-width: 1440px){
    .home-secondary > div.main-banner{
        padding-top: 20rem;
        padding-bottom: 7rem;
    }
}

/* .summit-inner .main-banner{
    background-image: url("../images/about-banner.png");
} */

@media only screen and (min-width: 992px){
    .dsk-hide{
        display: none !important;
    }
}


@media only screen and (max-width: 991px){
    nav#mainNav {
        background: #2b66ea;
    }
    .mbl-hide{
        display: none !important;
    }
}

@media only screen and (max-width: 767px){
   
    .home-secondary > div.main-banner{
        padding-top: 100px;
    }
    .home-secondary > div, .summit-inner > div{
        padding: 50px 0;
    }
    .home-secondary div.hp-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 30px;
    }
    .clients-image {
        max-width: 240px;
        margin: 0 auto;
    }
    .clients-counter {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .counter-item {
        padding: 30px 0;
    }
    .home-secondary .counter-item:nth-child(2) {
        border: none;
        padding: 0;
    }
    .main-banner span{
        display: none !important;
    }
    .portfolio img {
        width: 100%;
        max-width: 260px;
        display: block;
        margin: 20px auto;
    }

    
}


.full-counter .counter{
    color: #ffffff;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bold;
}

.full-counter .counter span{
    font-size: 24px;
}

.container.footer-join-us {
    background: #00000069;
    margin-bottom: 50px;
    border-radius: 10px;
    color: #ffffff;
}

button.navbar-toggler i.fas.fa-bars.ms-1 {
    color: #ffffff;
}
button.navbar-toggler {
    border-color: #ffffff;
}

.bg-light button.navbar-toggler i.fas.fa-bars.ms-1 {
    color: #395feb;
}
.bg-light button.navbar-toggler {
    border-color: #395feb;
}

.hp-services i{
    color: #0d6efd;
}



/* Homepage fixes */

nav#mainNav {
    padding: 15px 0 10px !important;
}
.navbar-nav .mbl-hide .nav-link.btn {
    padding: 3px 10px;
    margin-left: 10px;
}
nav#mainNav.bg-light {
    padding: 5px 0 !important;
    border-bottom: 1px solid #206bea;
}
.bg-light a.navbar-brand {
    width: 130px;
    height: 35px;
}

.navbar-expand-lg .navbar-nav{
    column-gap: 30px;
}
.navbar-expand-lg .navbar-nav li.nav-item a.nav-link {
    padding: 3px 0 !important;
}

.hp-title.f-large {
    line-height: 52px;
}

.our-clients{
    display: flex;
    flex-direction: row;
    justify-items: space-between;
    align-items: center;
    column-gap: 50px;
}

.our-clients img{
    max-height: 100px;
    max-width: 150px;
    cursor: pointer;
    filter: grayscale(1);
}

.our-clients img:hover{
    filter: none;
}

/* Footer CSS */
ul.social-media{
    padding-left: 0;
}
ul.social-media a {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff75;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

address a, address a:hover{
    color: #ffffff;
    opacity: 1;
    text-decoration: none;
}

@media only screen and (min-width: 992px){
    li.nav-item a.nav-link:after {
        content: '';
        width: 0;
        height: 2px;
        background: #ffffff;
        display: block;
        transition: 0.5s;
    }
    li.nav-item:hover a.nav-link:after {
        width: 100%;
        background: #ffffff;
        transition: 0.5s;
    }
    .bg-light li.nav-item a.nav-link:after{
        background: #1E6DEA;
    }
    }