@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", sans-serif;
    scroll-behavior: smooth;
}

:root {
    --teamColor: #304996;
    --backgroundColor: #F7F7F7;
    --headingColor: #0E1F51;
}

p {
    line-height: 30px !important;
    text-align: justify;
}

/* Navbar section */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 6px 100px;
    z-index: 1000;
    background-color: #fff;
}

.contact-btn {
    margin-top: 16px;
}

.contact-btn button {
    background-color: var(--teamColor);
    padding: 6px 20px !important;
    height: 40px;
    color: #fff;
    border: 1px solid var(--teamColor);
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn button:hover {
    color: var(--teamColor);
    background-color: #fff;
    border: 1px solid var(--teamColor);
    transform: 0.3s;
}

header.sticky {
    padding: 10px 80px 1px 80px;
    background: #fff;
    box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
}

header .logo {
    position: relative;
    color: var(--textColor);
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.6s;
}

.logo img {
    height: 55px;
}

.nav__list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__item {
    position: relative;
    list-style: none;
    margin-top: 15px;
}

.nav__item a {
    position: relative;
    margin: 0 20px;
    text-decoration: none;
    color: var(--textColor);
    font-weight: 500;
    transition: 0.6s;
}

.nav__link {
    padding: 10px;
    color: #eeee;
    font-weight: 600;
}

.nav__link:hover {
    color: var(--teamColor);
}

.header__close,
.header__toggle {
    display: none;
}

header.sticky .logo,
header.sticky ul li a {
    color: var(--textColor);
}

.nav__list a {
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.nav__list a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: var(--teamColor);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.nav__list a:hover:after {
    width: 100%;
    left: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border-radius: 8px;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 20px 0px 5px 10px;
}

.dropdown-content a {
    color: #000000 !important;
    font-weight: 500;
    margin: 10px 0px 0px 0px;
}

.dropdown-content a:hover {
    color: #000000 !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* banner section css */

.banner-section {
    height: 105vh;
    display: flex;
    align-items: end;
    position: relative;
}

.banner-bg-round {
    position: absolute;
    top: 200px;
    z-index: -10;
}

.banner-data {
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-section h1 {
    color: var(--teamColor);
    font-weight: 700;
}

.brands {
    padding: 30px 0px;
    background-color: #F2F3F6;
}

.brand-head h6 {
    text-transform: uppercase;
}

.brand-head .line {
    height: 2px;
    width: 15%;
    background-color: #bbbbbb;
}

.brands-logo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo-1,
.brand-logo-2,
.brand-logo-3,
.brand-logo-5,
.brand-logo-7 {
    height: 70px;
    width: auto;
}

.brand-logo-4 {
    height: 25px;
    width: auto;
}

.brand-logo-6 {
    height: 55px;
    width: auto;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* top  button css */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #304996;
    color: rgb(255, 255, 255);
    cursor: pointer;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    font-size: 30px;
}

/* latest-project-section css */

.latest-project-section {
    margin-top: 100px;
}

.latest-project-section h2 {
    font-weight: 700;
    color: #0E1F51;
    text-align: center;
}

.latest-project-section .card {
    border-radius: 8px;
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    width: 23rem;
}

.latest-project-section .card img {
    border-radius: 8px;
}

.latest-project-section .card h5 {
    text-align: left;
}

.latest-project-section .card p {
    color: #000;
    text-align: left !important;
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 50px 10px;
}

.swiper-scrollbar {
    display: none !important;
}

/* uiux-section css */

.uiux-section {
    margin-top: 100px;
    background-color: var(--backgroundColor);
    padding: 100px 0px;
}

.uiux-section .row {
    height: 100%;
    display: flex;
    align-items: center;
}

.uiux-section h2 {
    font-weight: 600;
    color: #0E1F51;
}

/* service-section css */

.service-section {
    margin-top: 100px;
}

.service-section h2 {
    font-weight: 600;
    color: var(--teamColor);
}

.service-section p {
    color: #0E1F51;
}

.service-section .card {
    border: 1px solid var(--backgroundColor);
    background-color: var(--backgroundColor);
    transition: 0.3s;
}

.service-section .card:hover {
    border: 1px solid var(--teamColor);
    background-color: #fff;
    transform: 0.3s;
}

.service-section .card h5 {
    font-weight: 700;
    color: #0E1F51;
}

.service-section .card a {
    text-decoration: none;
}

.under-line {
    display: flex;
}

.line-1 {
    height: 4px;
    background-color: var(--teamColor);
    width: 60px;
    border-radius: 50px;
}

.line-2 {
    height: 4px;
    background-color: var(--teamColor);
    width: 30px;
    border-radius: 50px;
}

/* technologies-section css */

.technologies-section {
    margin-top: 100px;
}

.technologies-section h2 {
    font-weight: 700;
}

.technologies-section h2 span {
    color: var(--teamColor);
}

.technologies-section p {
    color: #323433;
}

.technologies-section .container {
    width: 65%;
}

.technologies-section .card {
    border: 1px solid var(--backgroundColor);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    width: 20rem;
    transition: 0.3s;
    padding: 10px 0px;
}

.technologies-section .card:hover {
    border: 1px solid var(--teamColor);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    transform: 0.3s;
}

.technologies-section .card .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.technologies-section .card .card-body img {
    height: 80px;
    width: auto;
}

/* why-choose-section css */

.why-choose-section {
    margin-top: 100px;
    background-color: var(--backgroundColor);
    padding: 100px 0px;
}

.why-choose-section h5 {
    font-weight: 700;
    color: var(--teamColor);
}

.why-choose-section h2 {
    font-weight: 700;
    color: #0E1F51;
}

.why-choose-section p {
    color: #000;
    font-weight: 500;
}

.why-choose-section .card {
    border: 0px;
}

.view-btn button {
    padding: 10px 20px;
    background-color: var(--teamColor);
    color: #fff;
    border-radius: 5px;
    border: 1px solid var(--teamColor);
    transition: 0.3s;
}

.view-btn button:hover {
    background-color: #fff;
    color: var(--teamColor);
    border: 1px solid var(--teamColor);
    transform: 0.3s;
}

.missionandvission {
    background-color: #30499610;
    height: auto;
    width: auto;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* testimonial-section css */

.testimonial-section {
    margin-top: 100px;
}

.testimonial-section h5 {
    color: var(--teamColor);
    text-align: center;
    font-weight: 700;
}

.testimonial-section h2 {
    font-weight: 700;
    color: #323433;
    text-align: center;
}

.testimonial h6 {
    color: var(--teamColor);
    font-weight: 600;
}

.img-card img {
    height: 80px !important;
    width: auto !important;
}

.owl-carousel .owl-item .card {
    padding: 30px;
    position: relative;
    background-color: var(--backgroundColor);
    border: 0px;
}

.owl-carousel .owl-stage-outer {
    overflow-y: auto !important;
    padding-bottom: 20px;
}

.owl-carousel .owl-item .card {
    opacity: 0.8;
    transform: scale3d(0.8, 0.8, 0.8);
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item.active.center .card {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.owl-theme .owl-dots .owl-dot span {
    height: 15px;
    width: 15px;
    border-radius: 50px;
    border: 1px solid #304996;
    background-color: transparent;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    height: 15px;
    width: 15px;
    border-radius: 50px;
    background: var(--teamColor) !important;
}

/* business-growth-section css */

.business-growth-section {
    margin-top: 100px;
    background-color: var(--backgroundColor);
    padding: 100px 0px;
}

.business-growth-section h2 {
    font-weight: 700;
    color: #323433;
}

.business-growth-section .container .row {
    display: flex;
    height: 100%;
    align-items: center;
}

/* faq-section css */

.faq-section {
    margin-top: 100px;
}

.faq-section h2 {
    font-weight: 700;
    color: var(--teamColor);
    text-align: center;
}

.faq-section .accordion-title br {
    display: none;
}

.faq-section p {
    color: #323433;
    text-align: center;
}

.faq-section .container {
    background-color: #F7F7FB;
    border-radius: 20px;
    padding: 70px 190px;
    font-family: sans-serif;
}

.accordion .accordion-item {
    height: 100%;
    border: 0px;
    border-radius: 10px;
    padding: 10px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 10px 60px;
}


.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--headingColor);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--headingColor);
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--headingColor);
    border: 1px solid var(--headingColor);
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: var(--headingColor);
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 12em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    margin: 8px;
    color: #6F6C90;
    text-align: left;
    line-height: 30px;
}

/* footer-section css */

.footer-section {
    margin-top: 100px;
    background-color: var(--backgroundColor);
    padding: 30px 0px 10px 0px;
}

.footer-section .container {
    margin-top: 30px;
}

.footer-logo img {
    height: 60px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-weight: 500;
    color: #6F6C90;
}

.social-media-icons {
    display: flex;
}

.social-media-icons i {
    font-size: 18px;
    color: var(--teamColor);
}

.footer-section .container h5 {
    margin-top: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--headingColor);
}

.footer-section a {
    text-decoration: none;
    color: #6F6C90;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 13px 0px 0px 0px;
}

.footer-nav-container {
    margin-top: 80px !important;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-nav a {
    color: #1E60DF !important;
    text-decoration: underline;
}

.footer-nav p {
    color: #6F6C90;
    font-weight: 500;
}

/* media query starting */

@media all and (min-width:1400px) {

    /* banner section css */

    .banner-section h1 {
        color: var(--teamColor);
        font-weight: 700;
        font-size: 55px;
    }

    .brands {
        padding: 60px 0px;
        background-color: #F2F3F6;
    }
}

@media all and (max-width:900px) {

    /* navbar css */
    body {
        overflow-x: hidden;
    }

    body.overflow-hidden {
        overflow: hidden;
    }

    header {
        height: 48px;
        justify-content: space-between;
        padding: 0 28px;
    }

    .logo a {
        font-size: 0.9rem;
    }

    .header__toggle {
        display: inline;
        color: #000000ee;
        font-size: 24px;
    }

    .header__close {
        position: absolute;
        right: 24px;
        display: block;
        font-size: 24px;
        border-radius: 50%;
        z-index: 1000;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--headingColor);
        color: #eeee;
        width: 40%;
        height: 100vh;
        padding: 24px 0;
        z-index: 1000;
        transition: 0.5s;
        border-radius: 0 0 0 50%;
        z-index: 1000;
    }

    header.sticky {
        padding: 10px 60px 10px 60px;
        background: #fff;
        box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
    }

    header .logo {
        position: relative;
        color: var(--textColor);
        text-decoration: none;
        text-transform: uppercase;
        transition: 0.6s;
    }

    .logo img {
        height: 40px;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
    }

    .show {
        right: 0;

    }

    .nav__item {
        margin: 2rem 0;
    }

    .contact-btn {
        display: none;
    }

    /* banner section css */

    .banner-section {
        height: 80vh;
        display: flex;
        align-items: end;
        position: relative;
    }

    .banner-bg-round {
        position: absolute;
        top: 100px;
        z-index: -10;
    }

    .brand-logo-1,
    .brand-logo-2,
    .brand-logo-3,
    .brand-logo-5,
    .brand-logo-7 {
        height: 45px;
        width: auto;
    }

    .brand-logo-4 {
        height: 15px;
        width: auto;
    }

    .brand-logo-6 {
        height: 45px;
        width: auto;
    }

    /* latest-project-section css */

    .latest-project-section .card {
        border-radius: 8px;
        border: 0px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        position: relative;
        width: 20rem;
    }

    .swiper {
        width: 100%;
        height: 100%;
        padding: 20px 10px;
    }

    /* uiux-section css */

    .uiux-section .row img {
        margin-bottom: 30px;
    }

    /* business-growth-section css */

    .business-growth-section img {
        margin-bottom: 30px;
    }

    /* .technologies-section */

    .technologies-section .card {
        border: 1px solid var(--backgroundColor);
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        height: 100%;
        width: 100%;
        transition: 0.3s;
        padding: 10px 0px;
    }

    /* faq-section css */

    .faq-section .container {
        background-color: #F7F7FB;
        border-radius: 20px;
        padding: 70px 10px;
        font-family: sans-serif;
    }

    /* footer section */

    .footer-nav {
        display: flex;
        justify-content: center;
    }
}

@media all and (max-width:700px) {

    /* navbar css */

    body {
        overflow-x: hidden;
    }

    body.overflow-hidden {
        overflow: hidden;
    }

    .logo img {
        height: 40px;
    }

    header {
        height: auto;
        justify-content: space-between;
        padding: 8px 20px 8px 20px;
    }

    .logo a {
        font-size: 0.9rem;
    }

    .header__toggle {
        display: inline;
        color: #000000ee;
        font-size: 26px;
    }

    .header__close {
        position: absolute;
        right: 24px;
        display: block;
        font-size: 24px;
        border-radius: 50%;
        z-index: 1000;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--headingColor);
        color: #eeee;
        width: 100%;
        height: 100vh;
        padding: 24px 0;
        z-index: 1000;
        transition: 0.5s;
        border-radius: 0 0 0 0%;
        z-index: 1000;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        margin-left: 22%;
    }

    .show {
        right: 0;
    }

    .nav__item {
        margin: 1.5rem 0;
    }

    header.sticky {
        padding: 8px 25px 8px 25px;
        background: #fff;
        box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
    }

    br {
        display: none !important;
    }

    /* banner section css */

    .banner-section {
        height: 135vh;
        display: flex;
        align-items: center;
        position: relative;
    }

    .banner-bg-round {
        position: absolute;
        top: 100px;
        z-index: -10;
    }

    .brand-head .line {
        height: 2px;
        width: 35%;
        background-color: #bbbbbb;
    }

    .brands-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .brand-logo-1,
    .brand-logo-2,
    .brand-logo-3,
    .brand-logo-5,
    .brand-logo-7 {
        height: 35px;
        width: auto;
        margin: 0px 10px;
    }

    .brand-logo-4 {
        height: 15px;
        width: auto;
        margin: 0px 10px;
    }

    .brand-logo-6 {
        height: 35px;
        width: auto;
        margin: 0px 10px;
    }

    .slider .slide {
        height: 100px;
        width: 140px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* latest-project-section css */

    .latest-project-section {
        margin-top: 70px;
    }

    .latest-project-section .card {
        border-radius: 8px;
        border: 0px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        position: relative;
        width: 20rem;
    }

    .swiper {
        width: 100%;
        height: 100%;
        padding: 10px 10px;
    }

    /* uiux-section css */

    .uiux-section {
        margin-top: 70px;
        background-color: var(--backgroundColor);
        padding: 50px 0px;
    }

    /* service-section css */

    .service-section {
        margin-top: 70px;
    }

    /* technologies-section css */

    .technologies-section {
        margin-top: 70px;
    }

    .technologies-section .container {
        width: 100%;
    }

    /* why-choose-section css */

    .why-choose-section {
        margin-top: 70px;
        background-color: var(--backgroundColor);
        padding: 50px 0px;
    }

    /* testimonial-section css */

    .testimonial-section {
        margin-top: 70px;
    }

    .owl-carousel .owl-item .card {
        padding: 15px;
        position: relative;
        background-color: var(--backgroundColor);
        border: 0px;
    }

    /* business-growth-section css */

    .business-growth-section {
        margin-top: 70px;
        background-color: var(--backgroundColor);
        padding: 50px 0px;
    }

    /* faq-section css */

    .faq-section {
        margin-top: 70px;
    }

    .faq-section .accordion-title br {
        display: block !important;
    }

    .faq-section .container {
        background-color: #F7F7FB;
        border-radius: 20px;
        padding: 50px 10px;
        font-family: sans-serif;
    }

    .accordion .accordion-content p {
        margin: 0em 0;
        color: #6F6C90;
        text-align: left;
        margin-bottom: 0px;
    }

    .accordion .accordion-item {
        height: 100%;
        border: 0px;
        border-radius: 10px;
        padding: 10px 10px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        margin: 10px 3px;
    }

    /* footer-section css */

    .footer-section {
        margin-top: 70px;
        background-color: var(--backgroundColor);
        padding: 30px 0px 10px 0px;
    }

    .footer-section .container {
        margin-top: 0px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-section .container h5 {
        margin-top: 0px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--headingColor);
    }

    .footer-section ul li {
        margin: 13px 0px 0px 0px;
    }

    .footer-nav-container {
        margin-top: 40px !important;
    }
}