@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
}

:root {

    /* Background Color */
    --bg-white:#fff;

    /* Text Colors */
    --primary-color: #00A094;
    --primary-button: linear-gradient(162.05deg, #00B6A9 7.83%, #047575 88.14%);
    --secondary-color: #60cd12;
    --light-color: #e2f6de;
    --dark-color: #03262c;
    --primary-text: #0a0a0a;
    --text-white: #ffff;
    --text-gray: #dee2e6;
    --anchor-color: #007aff;

    /* Font Family */
    --primary-font: 'Open Sans', sans-serif;
}

body,
html {
    background: whitesmoke;
    color: var(--primary-text);
    font-size: 10px;
    font-weight: 400;
    font-family: var(--primary-font);
    scroll-behavior: smooth;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 5.6rem;
    text-align: center;
    text-transform: capitalize;
    color: var(--primary-color);
}

h2 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 5.6rem;
    text-align: center;
    color: var(--text-white);
}

h3 {
    color: var(--text-white);
    font-size: 3.1rem;
    line-height: 1.2;
    font-weight: 700;
}

h4 {
    font-size: 2.5rem;
    font-weight: 750;
    line-height: 44px;
    font-family: sans-serif;
    color: var(--primary-text);
}

h5 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 25px;
    text-align: justify;
    color: var(--primary-text);
}

h6{
    font-size: 2.0rem;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
    color: var(--pr);

}

p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: var(--primary-text);
    font-family: var(--primary-font);
}



embed,
iframe,
img,
object {
    max-width: 100%;
}

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

a,
a:active,
a:focus,
a:hover,
button {
    text-decoration: none;
    outline: 0;
}

li a {
    color: var(--text-white);
}

a:hover,
button:hover {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background:var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-button);
}

.main-btn-primary-primary{
    position: relative;
    color: var(--bg-white);
    background: var(--primary-button);
    z-index: 1;
    overflow: hidden;
    border: 0.2rem solid var(--bg-white);
    border-radius: 3.5rem;
    text-transform: uppercase;
    padding: 1rem 3.5rem;
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    letter-spacing: 0.2rem;
}
.main-btn-primary-primary:hover{
    background: var(--bg-white);
    color: var(--primary-color);
    border: 0.2rem solid var(--primary-color);
}

section{
    padding: 2rem 0;
}

.section-title{
    font-size: 4rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 2rem;
}

.section-subtitle{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-text);
    max-width: 40%;
    margin: auto;
    margin-bottom: 1.5rem;
}

/* Nav bar*/
.checkbox {
    opacity: 0;
    position: absolute;
}

.label {
    background-color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    height: 24px;
    width: 50px;
    transform: scale(1.5);
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.label .ball {
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    height: 20px;
    width: 20px;
    transform: translateX(26px);
    transition: transform 0.2s linear;
}
.justify-content-center {
    justify-content: center!important;
}
.justify-space-between {
    justify-content: space-between!important;
}
.checkbox:checked + .label .ball {
    transform: translateX(0px);
}
.card.bg-secondary{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #f4f5f7!important;
    background-clip: border-box;
    border: 0;
    border-radius: 0.25rem;
}
.card .card-body {
    padding: 3rem;
    flex: 1 1 auto;
}
.card .card-header {
    border-radius: calc(0.25rem - 0.0625rem) calc(0.25rem - 0.0625rem) 0 0;
    padding: 1.25rem 1.5rem;
    padding-bottom: 3rem !important;
    background-color: transparent !important;
    margin-bottom: 0;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, .05);
}
.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}
.form-group {
    margin-bottom: 20px;
}
.input-group-alternative {
    box-shadow: 0 1px 3px rgba(50,50,93,.15), 0 1px 0 rgba(0,0,0,.02);
    border: 0;
    transition: box-shadow .15s ease;
}
.input-group {
    box-shadow: none;
    border-radius: 0.25rem;
    transition: all .15s ease;
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group .input-group-prepend {
    margin-right: 0;
}
.input-group-prepend {
    margin-right: -1px;
}
.input-group-append, .input-group-prepend {
    display: flex;
}
.input-group .input-group-prepend .input-group-text {
    border-right: none;
}

.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group>.input-group-append:last-child>.input-group-text:not(:last-child), .input-group>.input-group-append:not(:last-child)>.btn, .input-group>.input-group-append:not(:last-child)>.input-group-text, .input-group>.input-group-prepend>.btn, .input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group-alternative .form-control, .input-group-alternative .input-group-text {
    border: 0;
    box-shadow: none;
}
.input-group-text {
    transition: all .15s ease;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #adb5bd;
    text-align: center;
    white-space: nowrap;
    background-color: #fff;
    border: 1px solid #cad1d7;
    border-radius: 0.25rem;
}
.input-group .form-control:not(:first-child) {
    border-left: 0;
    padding-left: 0;
}
.input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group-alternative .form-control, .input-group-alternative .input-group-text {
    border: 0;
    box-shadow: none;
}
.input-group .form-control {
    box-shadow: none;
}
.input-group>.custom-file, .input-group>.custom-select, .input-group>.form-control, .input-group>.form-control-plaintext {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.form-control {
    font-size: .875rem;
    transition: all .15s ease;
}
.link-green{
    font-size: 14px;
    font-weight: 600;
    text-decoration: none!important;
    color: #00a094;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 1.25rem + 2px);
    padding: 0.625rem 0.75rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #8898aa;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cad1d7;
    border-radius: 0.25rem;
    box-shadow: none;
    transition: all .2s cubic-bezier(.68,-.55,.265,1.55);
}
.custom-control {
    padding-left: 1.9rem!important;
}
.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 3rem;
}
input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-checkbox .custom-control-input~.custom-control-label {
    cursor: pointer;
    font-size: 14px;
}
.custom-control-label {
    margin-bottom: 0;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}
.custom-control-alternative .custom-control-label::before {
    border: 0;
    box-shadow: 0 1px 3px rgba(50,50,93,.15), 0 1px 0 rgba(0,0,0,.02);
}
.custom-checkbox .custom-control-label::before {
    border-radius: 0.2rem;
}
.custom-checkbox .custom-control-label::before {
    border-radius: .25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #00a094;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    top: 2px;
    left: -1.95rem;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3E%3Cpath fill=\'%23fff\' d=\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\'/%3E%3C/svg%3E');
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    background-color: #00a094;
    box-shadow: none;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3E%3Cpath fill=\'%23fff\' d=\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\'/%3E%3C/svg%3E')
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 160, 148, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0, 160, 148, 0.5);
}
.custom-control-label::before, .custom-control-label::after {
    top: 0;
}
.custom-control-label:after, .custom-control-label:before {
    left: -1.75rem;
}
.custom-control-label::before {
    border: 1px solid #cad1d7;
    transition: all .3s ease;
}
.custom-control-label::before, .custom-file-label, .custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.custom-control-label::before {
    position: absolute;
    top: 0.125rem;
    left: -3rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #cad1d7 solid 1px;
    box-shadow: none;
}
.custom-control-label::before, .custom-control-label::after {
    top: 3px;
}
.custom-control-label:after, .custom-control-label:before {
    left: -1.95rem;
}
.custom-control-label::after {
    position: absolute;
    top: 0.125rem;
    left: -3rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    content: "";
    background: no-repeat 50%/50% 50%;
}
.text-center {
    text-align: center!important;
}
.card.bg-secondary .card-title{
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #00a094;
}
.header {
    position: absolute;
    width: 100%;
    top: 2rem;
    left: 0;
    z-index: 2;
}

.header .navbar {
    background: url('../images/header-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size:contain;
    position: sticky;
    padding: 2rem 5rem;

}

.header .navbar-brand{
    width: 10rem;
    margin-top: auto;
    align-content: center;
    vertical-align: middle;
}

.header .navbar-nav .nav-link{
    color: var(--primary-text);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0.5rem 2rem;
    margin: 0 0.2rem;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.header .navbar-toggler{
    font-size: 2rem;
    height: 2.7rem;
    outline: none;
    box-shadow: none;
}

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

.header-scrolled {
    position: fixed;
    top: -0.4rem;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1320px;
    margin: auto;
    z-index: 999;
    /* box-shadow: .5084rem 1.1419rem 2.5rem 0 rgb(0 0 0 / 8%); */
    transition: 0.3s ease-in-out;
}

/* Get the app */
.btn-primary {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
}
.btn-primary:disabled{
    background-color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25);
    color: var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: scale(1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

.btn-primary:hover::after {
    width: 200%;
    height: 200%;
}

.btn-primary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

.btn-primary:hover span {
    color: #fff;
}



/*Misc*/
.full-width {
    display: flex;
    width: 100%;
    height: 900px;
    object-fit: contain;
    overflow: -moz-hidden-unscrollable;
}

.left {
    padding-left: 5rem !important; /* Or other value */
}

.right {
    padding-right: 5rem !important; /* Or other value */
}

.salespitch {
    height: auto;
    background-color: #F6F7F9;
}

/* About Us */
.about-us {
    background-image: url(../images/home/about-us.png);
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.about-us .container{
    width: auto;
    height: auto;
}

.about-us hr {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    border: 0;
    border-top: 2.5px solid var(--primary-color);
}

.about-us .highlight{
    color: var(--primary-color);
    font-weight: bolder;
}

/* How Zaad Works */
.how-works{
    background-color: var(--primary-color);
    /* height:80.7rem; */
    padding-bottom: 60px;
}

.how-works .h5 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 20px;
    text-align: left;
    color: var(--primary-text);
}

.how-works .card-wrapper {
    margin-bottom: auto;
}

.how-works .card-text{
    font-size: 180%;
    color: white;
}

.how-works  .card-image .card .card-img-wrapper {
    height: 100%;
}

.how-works .card-image .card .card-body {
    display: none;
}

.how-works .card-image-title-description .card .card-img-wrapper {
    max-height: 160px;
}

.how-works .card-image-title-description .card {
    position: relative;
    min-height: 300px;
}

.how-works .card-image-title-description .card .card-body {
    height: auto;
    position: relative;
    top: 0;
    margin-bottom: -70px;
}

.how-works  .card-image-title-description .card:hover .card-body {
    top: -70px;
}

.how-works  .card-image-title-description .card .card-body .card-title {
    margin-bottom: .75rem;
}

.how-works .card {
    display: inline-block;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    height: 25%;
    max-height: 250px;
    width: 100%;
    margin-bottom: 5px;
}

.how-works .card:hover {
    box-shadow: 8px 12px 31px -10px #ab98ab;
}

.how-works .card-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 70%;
    overflow: hidden;
}

.how-works .card-img-wrapper img {
    transition: 1.5s ease;
}

.how-works .card:hover .card-img-wrapper img {
    transform: scale(1.15);
}

.how-works .card-body .card-title {
    font-family: var(--primary-font);
    font-size:300%;
    text-align: left;
    line-height: 54px;
    margin-top: 5%;
    text-transform: uppercase;
    margin-bottom: calc(50% + 60px);
    transition: 1.5s ease;
    color:white;
}

.how-works .card:hover .card-body .card-title {
    margin-bottom: .75rem;
}

.how-works .card-body {
    position: absolute;
    bottom: 0;
    left: 70%;
    right: 0;
    height: 100%;
    background-color: black;
    transition: 1.5s ease;
}

.how-works .card-content {
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    transition: 1.5s ease;
}

.how-works .card:hover .card-body {
    height: 100%;
    left: 50%;
}

.how-works .card:hover .card-content {
    bottom: 0;
}

body {
    margin: 0;
    background-image: linear-gradient(to right, #ECE9E6 , #FFFFFF);
}

/* How Zaad Works Left */
.how-works-left .card-wrapper {
    margin-bottom: auto;
}

.how-works-left .card-text{
    font-size: 180%;
    color: white;
}

.how-works-left .card-image .card .card-img-wrapper {
    height: 100%;
}

.how-works-left .card-image .card .card-body {
    display: none;
}

.how-works-left .card-image-title-description .card .card-img-wrapper {
    max-height: 160px;
}

.how-works-left .card-image-title-description .card {
    position: relative;
    min-height: 300px;
}

.how-works-left .card-image-title-description .card .card-body {
    height: auto;
    position: relative;
    top: 0;
    margin-bottom: -70px;
}

.how-works-left .card-image-title-description .card:hover .card-body {
    top: -70px;
}

.how-works-left .card-image-title-description .card .card-body .card-title {
    margin-bottom: .75rem;
}

.how-works-left .card {
    display: inline-block;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    height: 25%;
    max-height: 250px;
    width: 100%;
    margin-bottom: 5px;
}

.how-works-left .card:hover {
    box-shadow: 8px 12px 31px -10px #ab98ab;
}

.how-works-left .card-img-wrapper {
    display: flex;
    align-items: cen;
    justify-content: center;
    height: 100%;
    width: 70%;
    margin-left: 30%;
    overflow: hidden;
}

.how-works-left .card-img-wrapper img {
    transition: 1.5s ease;
}
.how-works-left .card:hover .card-img-wrapper img {
    transform: scale(1.15);
}
.how-works-left .card-body .card-title {
    font-family: var(--primary-font);
    font-size:300%;
    text-align: left;
    line-height: 54px;
    margin-top: 5%;
    text-transform: uppercase;
    margin-bottom: calc(50% + 60px);
    transition: 1.5s ease;
    color:white;
}

.how-works-left .card:hover .card-body .card-title {
    margin-bottom: .75rem;
}

.how-works-left .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 70%;
    height: 100%;
    background-color: black;
    transition: 1.5s ease;
}

.how-works-left .card-content {
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    transition: 1.5s ease;
}

.how-works-left .card:hover .card-body {
    height: 100%;
    right: 60%;
    left: 0;
}

.how-works-left .card:hover .card-content {
    bottom: 0;
}

.how-works-left body {
    margin: 0;
    background-image: linear-gradient(to right, #ECE9E6 , #FFFFFF);
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    vertical-align: middle;
}



/* Become a Partner */

.partner-hero .bg-image {
    background: url('../images/partner/partner-hero.jpeg') no-repeat center center fixed;
    background-size: cover;
    height: 400px;
    position: relative;
}

.partner-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.btn-partner {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
}

.btn-partner:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25);
    color: var(--primary-color);
}

.btn-partner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}

.btn-partner:hover::before {
    transform: scale(1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.btn-partner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

.btn-partner:hover::after {
    width: 200%;
    height: 200%;
}

.btn-partner span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

.btn-partner:hover span {
    color: #fff;
}

.partner-form-shortcut .bg-image {
    background-color: var(--primary-color);
    height: fit-content;
    position:relative;
}

.partner-how{
    padding-bottom: 5%;
}
.partner-how .card-title{
    color: var(--primary-color);
    font-weight: 800;
    text-align: center;
    font-size: 2.5rem;
}

.partner-how .card-text{
    font-size: 2rem;
    text-align: justify;
}

.partner-how .card-body{
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
}
.partner-how .card{
    margin-top: 2rem;
    outline: none;
}

/* Let's Connect Shortcut */

.btn-shortcut {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
}

.btn-shortcut:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25);
    color: var(--primary-color);
}

.btn-shortcut::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}

.btn-shortcut:hover::before {
    transform: scale(1);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.btn-shortcut::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -2;
    transition: width 0.3s ease-out, height 0.3s ease-out;
}
.btn-shortcut:hover::after {
    width: 200%;
    height: 200%;
}

.btn-shortcut span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

.btn-shortcut:hover span {
    color: #fff;
}

/* Partner Benefits */
.partner-benefits{
    background: var(--primary-color);
    padding-top: 4rem;
    padding-bottom: 5%;
    text-align: center;
}

.partner-benefits .card{
    border-radius: 8px;
}

.partner-benefits .card .card-img.top{
    border-radius: 8px;
}

/* Food Providers */
.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
}

.hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
}

.hover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

.hover-content {
    position: relative;
    z-index: 99;
}
.hover-3::after {
    content: '';
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    border: 1px solid #fff;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 90;
    transition: all 0.3s;
    transform: scale(1.1);
    opacity: 0;
    display: block;
    opacity: 0;
}

.hover-3-content {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 99;
}

.hover-3-description {
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.3s;
}

.hover-3 img {
    width: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hover-3 .hover-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.hover-3:hover img {
    width: 100%;
}

.hover-3:hover::after {
    opacity: 1;
    transform: none;
}



.hover-3:hover .hover-3-description {
    opacity: 1;
    transform: none;
    color: white;
    font-style: italic;
    padding-top: 10px;
}

.hover-3:hover .hover-overlay {
    background: rgba(0, 0, 0, 0.8);
}

/* Partner Form */
.partner-form{
    background-color: var(--primary-color);
}

.form-style-8{
    font-family: 'Open Sans Condensed', arial, sans;
    width: 500px;
    padding-top: 10px;
    background: #d4fff8;
    margin: 50px auto;
    border-radius: 25px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
    -webkit-box-shadow:  0px 0px 15px rgba(0, 0, 0, 0.22);
}

.form-style-8 h2{
    background: #4D4D4D;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed', sans-serif;
    color: #797979;
    font-size: 18px;
    font-weight: 100;
    padding: 20px;
    margin: -30px -30px 30px -30px;
}

.form-style-8 h3{
    font-family: 'Open Sans Condensed', sans-serif;
    color: #797979;
    font-size: 18px;
    font-weight: 100;
    padding-top: 10px;
    text-align: left;
}

.form-style-8 input[type="text"],
.form-style-8 input[type="date"],
.form-style-8 input[type="datetime"],
.form-style-8 input[type="email"],
.form-style-8 input[type="number"],
.form-style-8 input[type="search"],
.form-style-8 input[type="time"],
.form-style-8 input[type="url"],
.form-style-8 input[type="password"],
.form-style-8 textarea,
.form-style-8 select
{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    display: block;
    width: 100%;
    padding: 7px;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    margin-bottom: 10px;
    font: 16px Arial, Helvetica, sans-serif;
    height: 45px;
}
.form-style-8 textarea{
    resize:none;
    overflow: hidden;
}
.form-style-8 button{
    -moz-box-shadow: inset 0px 1px 0px 0px #45D6D6;
    -webkit-box-shadow: inset 0px 1px 0px 0px #45D6D6;
    box-shadow: inset 0px 1px 0px 0px #45D6D6;
    background-color: #2CBBBB;
    border: 1px solid #27A0A0;
    display: inline-block;
    cursor: pointer;
    color: #FFFFFF;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 14px;
    padding: 8px 18px;
    text-decoration: none;
    text-transform: uppercase;
}
.form-style-8 button:hover{
    background:linear-gradient(to bottom, #34CACA 5%, #30C9C9 100%);
    background-color:#34CACA;
}
.form-msg{
    font-size: 12px;
    color: #01a094;
}
.form-msg.error-msg{
    color: #ff5f5f;
}

/* Contact Us */
.contact-hero .bg-image {
    background: url('../images/contact-us/contact-us-hero.jpg') no-repeat center center;
    height: 600px;
    width: 100%;
    background-size: cover;
    position:relative;
}

/* Download */
.download-hero .bg-image {
    background: url('../images/download/download.png') no-repeat center center;
    height: 600px;
    width: 100%;
    background-size: cover;
    position:relative;
}

/* Login */
.login-hero .bg-image {
    background: url('../images/login/login.png') no-repeat center center;
    height: 100rem;
    width: 100%;
    background-size: cover;
    position:relative;
}

/* Privacy */
.privacy-hero .bg-image {
    background: url('../images/privacy/privacy-bg.jpeg') no-repeat center center;
    height: 100rem;
    width: 100%;
    background-size: cover;
    position:relative;
}

/********************************/
/*       Fade Bs-carousel       */
/********************************/
.fade-carousel {
    position: relative;
    height: 100vh;
}
.fade-carousel .carousel-inner .item {
    height: 100vh;
}
.fade-carousel .carousel-indicators > li {
    margin: 0 2px;
    background-color: #f39c12;
    border-color: #f39c12;
    opacity: .7;
}
.fade-carousel .carousel-indicators > li.active {
    width: 10px;
    height: 10px;
    opacity: 1;
}
.img-cover {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}


/********************************/
/*         Hero Headers         */
/********************************/
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 0 rgba(0,0,0,.75);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    -ms-transform: translate3d(-50%,-50%,0);
    -o-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
}
.hero h1 {
    font-size: 6em;
    font-weight:bold;
    margin: 0;
    padding: 0;
}

.fade-carousel .carousel-inner .item .hero {
    opacity: 0;
    -webkit-transition: 2s all ease-in-out .1s;
    -moz-transition: 2s all ease-in-out .1s;
    -ms-transition: 2s all ease-in-out .1s;
    -o-transition: 2s all ease-in-out .1s;
    transition: 2s all ease-in-out .1s;
}
.fade-carousel .carousel-inner .item.active .hero {
    opacity: 1;
    -webkit-transition: 2s all ease-in-out .1s;
    -moz-transition: 2s all ease-in-out .1s;
    -ms-transition: 2s all ease-in-out .1s;
    -o-transition: 2s all ease-in-out .1s;
    transition: 2s all ease-in-out .1s;
}

/********************************/
/*          Custom Buttons      */
/********************************/
.btn-primary-primary-primary-primary-primary-lg {padding: 10px 40px;}
.btn-primary-primary-primary-primary-primary-hero,
.btn-primary-primary-primary-primary-primary-hero:hover,
.btn-primary-primary-primary-primary-primary-hero:focus {
    color: #f5f5f5;
    background-color: #1abc9c;
    border-color: #1abc9c;
    outline: none;
    margin: 20px auto;
}

/********************************/
/*       Slides backgrounds     */
/********************************/
.fade-carousel .slides .slide-1,
.fade-carousel .slides .slide-2,
.fade-carousel .slides .slide-3 {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.fade-carousel .slides .slide-1 {
    background-image: url(../images/home/cover-1.png);
}
.fade-carousel .slides .slide-2 {
    background-image: url(../images/home/cover-2.png);
}
.fade-carousel .slides .slide-3 {
    background-image: url(../images/home/cover-3.png);
    background-color: #0a0a0a;
}
.app-links{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
}
.app-links a{
    margin-right: 25px;
}
.app-links img{
    height: 100px;
}
.posts-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px; /* Adjust the gap size as needed */
}
.post {
    background: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 5px;
}
/*.posts-wrapper {*/
/*    column-count: 4;*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    flex-wrap: nowrap;*/
/*    column-gap: 15px;*/
/*}*/
/*.post {*/
/*    display: block;*/
/*    background: white;*/
/*    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
/*    border-radius: 5px;*/
/*    flex-basis: 25%;*/
/*}*/
.post-img {
    width: 100%;
    height: 250px;
}
.post-img img {
    border-radius: 5px 5px 0px 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-info {
    padding: 10px;
    color: black;
}
.post-title {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
}
.post-wrapper {
    padding: 0 100px;
}
.main-post-title {
    font-size: 28px;
    margin-bottom: 15px;
}
.main-post-date {
    font-size: 15px;
}
.post-image {
    margin-bottom: 15px;
}
@media (max-width: 991px) {
    .main-post-title {
        font-size: 25px;
    }
    .post-wrapper {
        padding: 0;
    }
    .post-wrapper img {
        width: 100% !important;
        height: auto !important;
    }
    .posts-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    h1{
        font-size: 4.1rem;
    }
    h2{
        font-size: 3.3rem;
    }
    h3{
        font-size: 2.5rem;
    }
    h4{
        font-size: 2rem;
    }
    .card .card-body{
        padding: 2rem;
    }
    .form-style-8{
        width: 100%;
        padding: 20px;
    }
    .download-hero .bg-image {
        height: unset;
        padding-top: 140px;
        padding-bottom: 50px;
    }
    .app-links img {
        height: 60px;
        margin-bottom: 20px;
    }
    .how-works .card-body .card-title,
    .how-works-left .card-body .card-title{
        font-size: 200%;
    }
    .how-works-left .card-text,
    .how-works .card-text{
        font-size: 150%;
    }
}
@media (max-width: 768px){
    .how-works .card-body .card-title,
    .how-works-left .card-body .card-title{
        font-size: 150%;
        line-height: 30px;
    }
    .how-works-left .card-text,
    .how-works .card-text{
        font-size: 100%;
    }
    .download-btn {
        font-size: 1rem;
    }
}
@media (max-width: 576px){
    .main-post-title {
        font-size: 20px;
    }
    .posts-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 3rem;
    }
    h3 {
        font-size: 2rem;
    }
    h4{
        font-size: 1.8rem;
    }
    .how-works .card-body .card-title,
    .how-works-left .card-body .card-title{
        font-size: 100%;
        line-height: 20px;
    }
    .how-works-left .card-text,
    .how-works .card-text{
        font-size: 100%;
    }
    .how-works .card-body img{
        width: 30px;
    }
    .how-works .card:hover .card-body{
        left: 25%;
    }
    .how-works-left .card:hover .card-body{
        left: 0;
        right: 25%;
    }
    .footer-logo{
        margin: auto;
    }
    .align-sm-center{
        text-align: center;
        text-align-last: center;
    }
}
