body {
    /* -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */

    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Poppins', sans-serif !important;
    background-color: #050304;

    overflow-x: hidden;
}

header {
    width: 100vw;
    z-index: 999;
}

a {
    text-decoration: none;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    max-width: 70%;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;

    align-items: center;
    color: white;
}

.navlinks li {
    margin-right: 20px;
}

ul {
    display: flex;
    list-style: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 50px;
    margin: 10px;
}

.hero {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.hero img {
    width: 100vw;
    z-index: 1;
}

.hero-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 10%;

    font-size: 2.3rem;
    text-transform: uppercase;

    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content a {
    position: relative;
    left: 25%;

    background-color: white;
    color: #45108a;
    font-size: 1.1rem;

    width: 170px;
    margin-top: 20px;
    padding: 10px;

    text-transform: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.hero-content a:hover {
    background-color: #45108a;
    border: 1px solid white;
    color: white;
}

.services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background: #f0f0f0;
}

.services .title {
    width: 100%;
    text-align: center;

    text-transform: uppercase;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card img {
    width: 100%;
    height: 200px;
    border-radius: 8px 8px 0 0;
}

.card h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.card p {
    font-size: 1rem;
    color: #666;
}

.card-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border: 1px solid #45108a;

    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;

    background-color: #45108a;
    border: 1px solid white;
    color: white;
}

.card-button:hover {
    border: 1px solid #45108a;
    background-color: white;
    color: #45108a;
}

/* FOOTER */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px 40px;
    background-color: #333;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.footer-links a {
    margin: 5px 0;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;

    text-decoration: underline;
}

.footer-links a:hover {
    color: #45108a;
}

.footer-copyright {
    width: 65%;
    text-align: left;
}

.office-info {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.usa-office,
.nigeria-office {
    width: 48%;
}

.footer-copyright h2,
.footer-copyright p {
    text-align: start;
    margin: 5px 0;
}


/* ABOUT US */
.content-aboutus {
    display: flex;
    flex-direction: column;

    margin: 0 10%;

    justify-content: center;
    align-items: center;

    color: white;
}

/* CONTACT US */
.contact-container {
    display: flex;
    flex-direction: column;

    margin: 0 10%;

    justify-content: center;
    align-items: center;

    color: white;
}

.form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.form-section button {
    margin: 20px 0;
}

.form-section h2 {
    margin-bottom: 20px;
    color: #3498db;
}

input,
textarea {
    width: 90%;
    padding: 15px;
    margin: 10px auto;
    font-size: 1.1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #007BFF;
}

textarea {
    resize: none;
    height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    align-items: flex-start;

    text-align: start;
}

.checkbox-group a {
    color: blue;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    margin: 5px 0;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
    width: 8%;
}

.checkbox-group label span {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 25px);
}

.tablink {
    position: relative;

    background-color: white;
    color: #45108a;
    font-size: 1.1rem;

    width: 170px;
    margin-top: 20px;
    padding: 10px;

    text-transform: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* Privacy Policy */
.terms-content {
    display: flex;
    flex-direction: column;

    margin: 0 10%;
    margin-bottom: 20px;

    color: white;
}

.terms-content ul {
    flex-direction: column;
    list-style-type: circle;
}

/* PROMOTIONAL SMS */
.site-header {
    color: white;
    width: 100%;
    text-align: center;

    text-transform: uppercase;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 0 10%;

    color: white;
}

.strategies {
    direction: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: start;

    width: 100%;

    margin-bottom: 30px;
}

.strategies a {
    background-color: white;
    color: #45108a;
    font-size: 1.1rem;

    width: 170px;
    margin-top: 20px;
    padding: 10px;

    text-transform: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.strategies a:hover {
    background-color: #45108a;
    border: 1px solid white;
    color: white;
}

.strategies ul {
    display: block;
}

.strategies ul li {
    list-style: circle;
}

/* SMS */
.phase {
    display: flex;
    flex-direction: column;
}

.phase ul {
    display: block;
}

.phase ul li {
    list-style: circle;
}