
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Lato:wght@400;700&family=Montserrat:wght@400;700&family=Merriweather:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
    /* font-family:Arial, Helvetica, sans-serif; */
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}


body {
    font-family: 'Roboto', sans-serif; /* Set default font for body */
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif; /* Use a different font for headings */
}

p {
    font-family: 'Lato', sans-serif; /* Use a different font for paragraphs */
}

h2 {
    font-size: 200%;
}

h3 {
    font-size: 120%;
}
h5 {
    color: #3283c5;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #0F293E;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header .logo {
    font-size: 150%;
    letter-spacing: 7.5px;
    text-transform: uppercase;
}

header nav ul {
    list-style: none;
    margin-top: 10px;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: #f4f4f4;
    /* padding: 50px 0; */
    text-align: center;
    position: relative;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    /* overflow: hidden; */
}



.hero .hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}


.hero-container {
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-overlay {
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    /* background-color: rgba(0, 0, 0, .9); */
    background-color: rgba(255, 255, 255, .6);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: auto;
    top:0px;
    left: 0;
    z-index: -1;

}

.hero-container h2, p, a {
    z-index: 3 !important;
    /* margin-top: -100px; */
}

.hero h2 {
    font-size: 500%;
    margin-bottom: 20px;
    margin-top: -150px;
    color: #0F293E !important;
    /* color: #3283c5; */
    /* z-index: 2; */
}

.hero p {
    font-size: 200%;
    margin-bottom: 20px;
    color: #0F293E;
    /* z-index: 2; */
}

.cta {
    /* background: #333;
     */
     background-color: #3283c5;
    color: #fff;
    font-size: 200%;
    margin-top: 30px;
    padding: 7.5px 15px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
}
.cta:hover {
    background-color: #0F293E;
    color: #fff;
    cursor: pointer;
}

.price-cta:hover {
    background-color: #3283c5 !important;
}

.about {
    background-color: #256395;
    text-align: center;
    color: #fff;
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about p{
    margin-top: 30px;
    width: 40%;
    line-height: 45px;
    text-align: left;
}

.features {
    padding: 50px 0;
    padding-bottom: 150px;
    padding-top: 150px;
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item {
    width: 30%;
    margin-bottom: 60px;
    text-align: center;
}

.feature-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.feature-item h3 {
    margin-bottom: 10px;
    /* font-size: 20px; */
    color: #333;
}

.testimonials {
    background: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

.testimonials p {
    margin-bottom: 20px;
    font-style: italic;
}

.pricing {
    padding: 50px 0;
    text-align: center;
    background-color: #256395;
    color: #fff;
    padding-bottom: 150px;
    padding-top: 150px;
}

.pricing h2 {
    margin-bottom: 20px;
}

.pricing p {
    font-size: 120%;
    /* margin-bottom: 20px; */
    margin-bottom: 100px;
}

.pricing p strong {
    font-size: 120%;

}

.pricing a {
    background: #0F293E !important;
    font-size: 170% !important;
    
}

.contact {
    padding: 50px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact form {
    width: 50%;
    margin: 0 auto;
}

.contact form label {
    display: block;
    margin-bottom: 5px;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

footer {
    background: #0F293E;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

.main-photo-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {

    .main-photo-mobile {
        display: none;
    }
    
    .main-photo-desktop {
        display: block;
    }

    .about{
        width: 100%;
    }
    .about p, h2 {
        width: 95%;
        margin: 10px;
    }

    .container{
        width: 90%;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact form {
        width: 80%;
    }
}

@media (max-width: 480px) {

    .main-photo-mobile {
        display: block;
    }
    
    .main-photo-desktop {
        display: none;
    }


    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    header .logo {
        font-size: 20px;
    }

    .contact form {
        width: 100%;
    }
}
