@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}


body {
    font-family: 'Poppin', sans-serif;
}


h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-family: 'roboto', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8rem;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
}

/* utility classes */
.small-bold-text {
    font-size: 1rem;
    font-weight: 700;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 200px;
}

.flex {
    display: flex;
    align-items: center;
}

.hover-links {
    color: #3a3a3a;
}

.hover-links:hover {
    color: deepskyblue;
}

.primary-button {
    background-color: dodgerblue;
    border-radius: 6px;
    font-weight: 600;
    color: white;
    padding: 12px 24px;
    box-shadow: 0 0 2px aqua;
    transition: 0.2s ease-out;
}

.primary-button:hover {
    background-color: mediumblue;
    color: rgb(255, 255, 255);
}

.secondary-button {
    border: 0.5px solid #3a3a3a;
    color: #3a3a3a;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 600;
    transition: 0.2s ease-out;
}

.secondary-button:hover {
    border-color: rgb(0, 0, 227);
    color: dodgerblue;
}

/* top banner */
.top-banner {
    background-image: url('photo_1.png');
    background-color: rgb(15, 147, 187);
    background-size: 300px;
}
 
.banner-text {
    color: rgb(255, 255, 255);
    padding: 15px 30px;
    text-align: center;
}

/* nav bar */
.main-nav {
    justify-content: space-between;
    margin-top: 20px;
}
 
.company-logo img {
    width: 100px;
}

.nav-links {
    flex-basis: 730px;
}

.nav-links ul {
    justify-content: end;
    gap: 40px;
}

.header {
    padding: 50px;
}

.header-section {
    justify-content: center;
    gap: 50px;
}

.header-left {
    max-width: 40vw;
}

.header-left h1 {
    margin-bottom: 33px;
}

.Get-Started-bts {
    margin-top: 33px;
}

/* companies section */
.companies-section {
    text-align: center;
    margin-block: 30px;
}

.logos {
    justify-content: space-between;
    margin-top: 50px;
    padding-left: 78px;
    padding-right: 78px;
}

.logo {
    height: 70px;
}

/* features section */
.features-section {
    padding: 80px 20px 20px 0 ;
}

.features-header {
    text-align: center;      
}

.features-header h2 {
    margin-bottom: 21px;
}

.features-area {
    text-align: center;
    flex-wrap: wrap;
}

.features-card {
    flex-direction: column;
    gap: 20px;
}

.features-card p {
    color: #3a3a3a;
    font-weight: 400;
}

.features-card img {
    width: 50px;
    height: 50px;
}

.b-f-text {
    margin-left: 40px;
}

.b-f-text h3 {
    padding-block: 25px;
}

.b-f-text p {
    color: #3a3a3a;
    font-weight: 400;
}

.b-f-img {
    margin-left: 80px;
}

.See-more-examples {
    color: #3a3a3a;
    border: 0.5px solid #212121;
    border-radius: 7px;
    padding: 18px 30px;
    font-weight: 600;
}

.See-more-examples:hover {
    border-color: deepskyblue;
    color: deepskyblue;
}

.example-cen {
    text-align: center;
    margin-top: 50px;
}

.example-cen h2 {
    padding: 30px ;
}