@font-face {
    font-family: 'Cairo';
    src: url('../fonts/Cairo-Bold.ttf');
}

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

body {
    font-family: 'Cairo';
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

.topbar {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        text-align: center;
    }
}

.topbar-social-media a {
    color: #fff;
}

.topbar-info span {
    padding-left: 20px;
}

@media (max-width: 425px) {
    .topbar-info span {
        padding: 10px 0 0;
        display: block;
    }
}

.navbar .navbar-brand {
    text-transform: uppercase;
}

.navbar .navbar-toggler {
    border: none;
    font-size: 30px;
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}

.navbar .navbar-nav .nav-item {
    padding-right: 25px;
}

.navbar form button {
    border-radius: 20px;
    width: 100%;
}

.landing {
    background-color: #4ca368;
    min-height: calc(100vh - 56px - 44px);
}

.landing h1 {
    color: #fff;
    line-height: 1.6;
}

.landing p {
    margin: 15px 0;
    text-transform: capitalize;
    line-height: 1.6;
    color: #f9f9f9;
}

.landing form {
    display: flex;
    max-width: 600px;
    margin: auto;
    margin-bottom: 15px;
}

.landing form input {
    border: 1px solid #37804e;
    border-radius: 5px 0 0 5px;
}

.landing form button {
    background-color: #37804e;
    color: #fff;
    width: 150px;
    border-radius: 0 5px 5px 0;
}

.landing span {
    text-transform: capitalize;
    line-height: 1.6;
    color: #f9f9f9;
}

section {
    padding: 50px 0;
}

section:nth-child(odd) {
    background-color: #ececec;
}

section>h2 {
    padding: 0 15px 0;
    margin-bottom: 50px;
    text-align: center;
}

.sign-up .sign {
    background-color: #fff;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
}

.sign-up .sign .sign-icon i {
    display: block;
    color: grey;
    margin: auto;
}

.sign-up .sign .sign-icon i:first-child {
    margin-bottom: 20px;
}

.sign-up .sign .sign-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

@media (max-width: 768px) {
    .sign-up .sign .sign-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

.sign-up .sign .sign-info i {
    font-size: 50px;
    color: #5db442;
}

.sign-up .sign .sign-info div h3 {
    color: #5db442;
}

@media (max-width: 768px) {
    .sign-up .sign .sign-info div h3 {
        margin: 10px 0;
    }
}

.sign-up .sign .sign-info div p {
    margin-bottom: 5px;
}

.sign-up .sign-up-features {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 10px;
    align-items: flex-start;
}

.sign-up .sign-up-features .sign-up-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sign-up .sign-up-features .sign-up-feature i {
    background-color: #5db442;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: auto;
    line-height: 50px;
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.sign-up .sign-up-features .sign-up-feature span {
    font-size: 16px;
}

.services .service-text {
    background-color: #ccc;
    max-width: 360px;
    margin: 0 auto 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 175px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .services .service-text {
        flex-direction: column;
    }
}

.services .service-text::before {
    content: '';
    background-color: #5db442;
    width: 47%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .services .service-text::before {
        width: 100%;
        height: 50%;
    }
}

.services .service-text span {
    font-size: 17px;
    display: block;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.services .service-text span:first-child,
.services .service-text span:nth-child(2) {
    color: #fff;
}

.services .service-text span:nth-child(2) {
    background-color: #37804e;
    width: 50px;
    height: 100%;
    border-radius: 50%;
}

.services .service {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
}

.services .service::before {
    content: '';
    background-color: #4ca368;
    width: 50%;
    height: 1px;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.services .service div {
    background-color: #fff;
    width: 100px;
    height: 100px;
    margin: 10px auto;
    border-radius: 50%;
    border: 1px solid #4ca368;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.services .service div span:first-child {
    font-size: 30px;
}

.services .service div span:last-child {
    font-size: 14px;
    color: #888;
}

.services .service hr {
    background-color: #ccc;
    width: 90%;
    height: 1px;
    position: absolute;
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.services .service ul li {
    padding: 10px 0;
}

.services .service ul li i {
    padding-right: 5px;
}

.services .service ul li i.fa-check {
    color: #37804e;
}

.services .service ul li i.fa-xmark {
    color: red;
}

.services .service a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #4ca368;
    color: #4ca368;
}

.services .service a:hover {
    background-color: #4ca368;
    color: #fff;
}

.data-integration h2 {
    line-height: 2;
}

.data-integration .data {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 25px;
}

.data-integration .data:hover {
    background-color: #5db442;
}

.data-integration .data i {
    font-size: 50px;
    color: #5db442;
}

.data-integration .data:hover i {
    color: #fff;
}

.data-integration .data hr {
    background-color: #ccc;
    width: 50%;
    display: block;
    margin: 10px auto 20px;
}

.data-integration .data h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.data-integration .data p {
    color: #888;
    line-height: 2;
}

.data-integration .data:hover p {
    color: #fff;
}

.footer {
    background-color: #efefef;
    padding: 10px 0;
}

.footer-section {
    padding: 10px;
}

@media (max-width: 575px) {
    .footer-section {
        text-align: center;
    }
}

.footer-section h2 {
    margin-bottom: 10px;
}

.footer-section h2,
.footer-section h1 {
    font-size: 25px;
    color: #333;
}

.footer-section p {
    color: grey;
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.footer-section form {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section form input {
    border-radius: 0;
    border: none;
}

.footer-section form button {
    background-color: #5db442;
    width: 50px;
    color: #fff;
}

.footer-section form input,
.footer-section form button {
    font-size: 17px;
    padding: 10px;
}

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

.footer-section ul li:not(:last-child) {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: grey;
}

@media (max-width: 575px) {
    .footer-sections {
        flex-direction: column;
    }
}