* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/landing\ Page.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

/*--nav bar---*/

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    transition: background 1s;
}

nav .logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}
nav .sub-heading{
    font-size: 16px;
    text-align: left;

}
nav .logotext{
    font-size: 26px;
    text-align: left;

}


nav .logo img {
    width: 60px;
    margin-right: 10px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

nav:hover {
    background: #fff;
}

nav:hover .logo {
    color: #333;
}

.nav-links:hover ul li a {
    color: #333;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #43A6C6;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

nav .fa {
    display: none;
}

/*---Landing Content---*/

.content {
    margin-top: 10%;
    margin-left: 9%;
    color: #fff;
}

.content h1 {
    max-width: 600px;
    font-size: 50px;
    line-height: 70px;
    font-weight: 600;
}

.content p {
    max-width: 500px;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    opacity: 0;
}

.links {
    margin-top: 30px;
    opacity: 0;
}

.links a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.btn-land {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 35px;
    font-size: 13px;
    border-radius: 30px;
    margin-right: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.btn-land:hover {
    border: 1px solid #43A6C6;
    background: #43A6C6;
    transition: 1s;
}

.slide-left {
    animation: slideleft 0.6s linear forwards;
}

@keyframes slideleft {
    0% {
        transform: translate(100px);
        opacity: 0;
    }

    100% {
        transform: translate(0px);
        opacity: 1;

    }
}

p.slide-left {
    animation-delay: 1s;
}

.links.slide-left {
    animation-delay: 2s;
}


/*---Phone View---*/
@media(max-width: 700px) {
    nav {
        width: auto;
        padding: 20px 8%;
    }

    nav .logo {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
    }

    nav:hover {
        background: transparent;
    }

    nav:hover .logo {
        color: #fff;
    }

    .nav-links:hover ul li a {
        color: #fff;
    }

    .content h1 {
        text-align: center;
        font-size: 25px;
        line-height: 40px;
    }

    .content p {
        text-align: center;
        font-size: 14px;
        line-height: 28px;
        padding: 20px;
        opacity: 0;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #43A6C6;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }

    .btn-land {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .solution h1 {
        max-width: 600px;
        font-size: 25px
    }

    .row {
        flex-direction: column;
    }

}

/*---Solutions----*/

.solution {
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 100px;
}

h1 {
    font-size: 36px;
    font-weight: 600;

}

p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between
}

.solution-col {
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.solution-col img {
    width: 100%;
    max-height: 180px;
    border-radius: 10px;
}

.solution-col p {
    padding: 0;
}

.solution-col h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: center;
}

@media(max-width: 700px) {
    .solution {
        padding: 50px;
    }
}

/*------Testimonial-----*/

.testimonials {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.testimonials h1 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
}

.testimonials p {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
}

.slide-content {
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
}

.card {
    border-radius: 25px;
    background-color: #FFF;
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #43A6C6;
    border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #43A6C6;
}

.overlay::after {
    border-radius: 0 25px 0 0;
    background-color: #FFF;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #43A6C6;
}


.name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}

.swiper-navBtn {
    color: #6E93f7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover {
    color: #4070F4;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 35px;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination-bullet {
    background-color: #6E93f7;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #4070F4;
}

@media screen and (max-width: 700px) {
    .testimonials h1{
        font-size: 25px;
    }
    .slide-content {
        margin: 0 10px;
    }

    .swiper-navBtn {
        display: none;
    }
}



/*---Call To Action---*/

.cta {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/network\ eth.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;

}

.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

.btn-cta {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 35px;
    font-size: 13px;
    border-radius: 30px;
    margin-right: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.btn-cta:hover {
    border: 1px solid #43A6C6;
    background: #43A6C6;
    transition: 1s;
}

@media(max-width: 700px) {
    .cta h1 {
        font-size: 24px;
    }

}

/*---FOOTER---*/



.footer__description {
    font-size: 18px;
    margin-top: 20px;
    margin-left: 45px;
}

.Footer {
    background: #36454f;
    padding: 30px 0;
}

.container-footer {
    max-width: 1170px;
    margin: auto
}

ul {
    list-style: none;
}

.row-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
    text-align: left;
}

.Footer h3 {
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    text-transform: capitalize;
    font-weight: 500;
    margin: 10px 0;
    margin-bottom: 30px;
    position: relative;
}

.Footer p {
    color: #fff;
    font-size: 14px;
}

Footer .logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;

}

Footer .logo img {
    width: 35px;
    margin: 10px;

}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;

}

.footer-col ul li {
    color: #ffffff;
    font-size: 14px;
}

.footer-col ul li a {
    font-size: 12px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #43A6C6;
    padding-left: 8px;

}


.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255.0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

.rights h3 {
    margin-right: 50px;
    text-align: center;
    padding: 0;
}

.footer-col .social-links a:hover {
    color: #36454f;
    background-color: #ffffff;
}

@media(max-width: 700px) {
    .Footer {
        padding: 50px
    }

    .footer-col {
        width: 100%;
        padding: 20px 0;
        text-align: center
    }

    .footer-col h3 {
        text-align: center;
    }

    .rights h3 {
        width: 100%;
        text-align: center;
    }

    .Footer p {
        margin-left: 0px
    }

    Footer .logo img {
        margin-left: 5px
    }
}

/*---About Us---*/

.sub-header {
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/background\ 1.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}

.sub-header h1 {
    margin: 100px;
}

.about-us {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 10px;
}

.about-col {
    flex-basis: 48%;
    padding: 30px 2px;

}

.about-col img {
    width: 100%;
}

.about-col h1 {
    padding-top: 0;
}

.about-col p {
    padding: 15px 0 25px;
}

.about-us2 {
    width: 80%;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 50px;
}

.about-col2 {
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col2 h1 {
    text-align: center;
    font-size: 26px;
}

.about-col2 p {
    text-align: center;
}

.about-us3 {
    width: 80%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 50px;
}

.about-us3 h1 {
    text-align: center;
}

.about-us3 p {
    text-align: center;
}
@media(max-width: 700px){
    .sub-header h1{
        font-size: 26px;
    }
    .about-col h1{
        font-size: 26px;
    }
    .about-us3 h1 {
        font-size: 26px;
    }
    .about-col{
        text-align: center;
    }
}

/*----Services----*/

.services-us {
    width: 80%;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

.services-col {
    flex-basis: 48%;
    padding: 30px 2px;
    background-color: #145DA0;
    border-radius: 50px;

}

.services-col h1 {
    color: #43A6C6;
    font-size: 30px;
    text-align: center;

}

.services-col p {
    color: #fff;
}

.services-col ul li {
    color: #fff;
    padding: 4px;
    font-size: 14px;
    text-align: center;
}

/*---Contect Us---*/

.containers {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
    width: 100%;
    max-width: 820px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.contact-form {
    background-color: #36454f;
    position: relative;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #43A6C6);
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #36454f;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #36454f;
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #36454f;
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title {
    color: #319ddb;
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.icon {
    width: 28px;
    margin-right: 0.7rem;
}

.social-media {
    padding: 2rem 0 0 0;
}

.social-media p {
    color: #333;
}

.social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #319ddb, #66cccc);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.05);
}

.contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #319ddb;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #da1e8c, #f5c90e);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }

    .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .contact-info:before {
        display: none;
    }

    .square,
    .big-circle {
        display: none;
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .text,
    .information,
    .social-media p {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.15rem;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .icon {
        width: 23px;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    .btn {
        padding: 0.45rem 1.2rem;
    }
}

/*---Legal---*/

.Legal {
    width: 90%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.legalpolicy {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}