/**header*/
* {
    font-family: 'ThatYellowFont', sans-serif !important;
    font-weight: 400;

}

body {
    background: #000!important;
}

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0; /* Add some padding instead of height */
}

.content {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}



.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    position: relative;
    width: 54px;
    height: 54px;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
}

.spinner div {
    width: 6%;
    height: 16%;
    position: absolute;
    left: 49%;
    top: 43%;
    opacity: 0;
    border-radius: 50px;
    background: #3B4351;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    animation: fade 1s linear infinite;
}

@keyframes fade {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.25;
    }
}

.spinner div.bar1 {
    transform: rotate(0deg) translate(0, -130%);
    animation-delay: 0s;
}

.spinner div.bar2 {
    transform: rotate(30deg) translate(0, -130%);
    animation-delay: -0.9167s;
}

.spinner div.bar3 {
    transform: rotate(60deg) translate(0, -130%);
    animation-delay: -0.833s;
}

.spinner div.bar4 {
    transform: rotate(90deg) translate(0, -130%);
    animation-delay: -0.7497s;
}

.spinner div.bar5 {
    transform: rotate(120deg) translate(0, -130%);
    animation-delay: -0.667s;
}

.spinner div.bar6 {
    transform: rotate(150deg) translate(0, -130%);
    animation-delay: -0.5837s;
}

.spinner div.bar7 {
    transform: rotate(180deg) translate(0, -130%);
    animation-delay: -0.5s;
}

.spinner div.bar8 {
    transform: rotate(210deg) translate(0, -130%);
    animation-delay: -0.4167s;
}

.spinner div.bar9 {
    transform: rotate(240deg) translate(0, -130%);
    animation-delay: -0.333s;
}

.spinner div.bar10 {
    transform: rotate(270deg) translate(0, -130%);
    animation-delay: -0.2497s;
}

.spinner div.bar11 {
    transform: rotate(300deg) translate(0, -130%);
    animation-delay: -0.167s;
}

.spinner div.bar12 {
    transform: rotate(330deg) translate(0, -130%);
    animation-delay: -0.0833s;
}


/** Nav Bar*/

.nav-link {
  color: #fff;
}


.nav-link:hover {
    color: #fff;
}

.btn-link {
    border: solid 1px #fff;
    color: #fff !important;
}

.btn-link:hover {
    border: solid 1px #fff;
    color: #000 !important;
    text-decoration: none !important;
    background-color: #fff !important;
}

.btn-phoenix-primary {
    background-color: #fff !important;
    color: #000 !important;
    border: solid 1px #fff;
}

.btn-phoenix-primary:hover {
    background-color: #a55303 !important;
    color: #ffffff !important;
    border: solid 1px #a55303 !important;
}

.btn-cta {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
}



.btn-orange:hover {
    background-color: #a55303 !important;
    color: #ffffff !important;
    border: solid 1px #a55303 !important;
}


/**Fonts*/

h1 {
    line-height: 1.4;
}

/**Sections*/
section {
    padding-left: 5%;
    padding-right: 5%;

}

.hero-section {
    background-color: #e0f8f2;
    padding-bottom: 0;
}

.primary-section {
    background-color: #e0f8f2;
    text-align: center;
}

.secondary-section {
    background-color: #ffffff;
    text-align: center;
}


/**how it works*/

.howitworks {
    display: flex;
    justify-content: center; /* Centers the content horizontally */
    align-items: center; /* Aligns items vertically in the center */
    gap: 2em; /* Space between the items */
    flex-wrap: wrap; /* Ensures the content wraps if it doesn't fit */
}

.how {
    display: flex; /* Enables flexbox on the box itself */
    align-items: center; /* Vertically centers the text */
    justify-content: center; /* Horizontally centers the text */
    font-size: 16px;
    font-weight: 600;
    padding: 1em;
    max-width: 25ch;
    height: 90px;
    text-align: center; /* Ensures multi-line text is centered */
}


.step1 {
    /* triangle dimension */
    --b: 2em; /* base */
    --h: 1em; /* height*/
    border-image: fill 0 / / var(--h) conic-gradient(var(--c, #e0f8f2) 0 0);
}

.step2 {
    /* triangle dimension */
    --b: 2em; /* base */
    --h: 1em; /* height*/
    border-image: fill 0 / / var(--h) conic-gradient(var(--c, #efcd77) 0 0);
}

.step3 {
    /* triangle dimension */
    --b: 2em; /* base */
    --h: 1em; /* height*/
    border-image: fill 0 / / var(--h) conic-gradient(var(--c, #fe8007) 0 0);
    color: #fff;
}

.right {
    clip-path: polygon(
            100% 100%,
            0 100%,
            0 0,
            100% 0,
            100% calc(50% - var(--b) / 2),
            calc(100% + var(--h)) 50%,
            100% calc(50% + var(--b) / 2)
    );
}


.right-last {
    clip-path: polygon(100% 100%, 0 100%, 0 0, 100% 0);
}


/**pricing**/
.card-header {
    background-color: #fe8005 !important;
    border-color: #fe8005 !important;
    padding-bottom: 10px;
    padding-top: 12px;
}

.btn-primary.sign-up-btn {
    background-color: #fe8005;
    border-color: #fe8005;
}

.btn-primary.sign-up-btn:hover {
    background-color: #e66e04; /* Darker orange for hover effect */
    border-color: #e66e04;
}


/*subscriptions*/


/**Tenders Added*/
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for 4 days */
    gap: 10px;
    margin-top: 20px;
}

.calendar-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
}

.day-label {
    font-size: 18px;
}

.tenders-count {
    font-size: 24px;
    margin-top: 10px;
}


/*contact page*/
.messages {
    list-style-type: none;
    padding: 0;
}

.messages li {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

.messages .success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.messages .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



