@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Rubik&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar Menu */
.navbar-menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50% -50%);
    background-color: white;
    z-index: 3;
    display: none;
}

.navbar-close-btn-container {
    position: absolute;
    top: 10px;
    left: 10px;
}

.navbar-close-btn {
    height: 50px;
    width: 50px;
    border: 2px solid #004edf;
    border-radius: 100%;
    background-color: white;
    font-size: 20px;
    color: #004edf;
}

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    column-gap: 50px;
}

.navbar-menu-text-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    font-size: 30px;
}

.navbar-menu-language-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: scale(1.5);
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 115px;
    background-color: white;
    position: sticky;
    top: 0;
    transition: 0.5s ease;
    border-bottom: 1px solid #e6e6e6;
    z-index: 2;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    margin: auto;
}

.header-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}

.header-navlist-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    list-style: none;
}

.header-navlist-item {
    color: #004edf;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.header-navlist-item:hover {
    color: #4082fd;
}

.header-active {
    color: #4082fd;
}

.header-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}

.header-btn {
    background-color: white;
    border: none;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    color: #004edf;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-btn:hover {
    color: white;
    background-color: #004edf;
}

.header-btn-active {
    background-color: #004edf;
    color: white;
}

.header-navbar-button-container {
    display: none;
    justify-content: center;
    align-items: center;
}

.header-navbar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    height: 50px;
    width: 50px;
    font-size: 35px;
    border-radius: 100%;
    background-color: white;
    transition: 0.3s ease;
}

.header-navbar-button:hover {
    background-color: #004edf;
    color: white;
}

/* section-1 */

.section1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 635px;
    background-image: url(background1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align-last: center;
}

.section1-header {
    font-size: 75px;
    color: white;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
}

.section1-text {
    color: white;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
}

.section1-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin: 50px 0px 0px 0px;
}

.btn {
    background-color: #2973fd;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 300;
    transition: 0.3s ease;
    height: 53px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background-color: #003aa5;
}

.products-btn {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
    height: 53px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-btn:hover {
    border-color: #b4b4b4;
    color: #b4b4b4;
}

/* section2 */

.section2 {
    background-color: #003aa5;
    padding: 110px 0px;
}

.section2-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    width: 56%;
    margin: auto;
}

.section2-header {
    font-size: 50px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
}

.section2-text {
    font-size: 20px;
    font-weight: 300;
    margin: 25px 0px 60px 0px;
    text-align: center;
    text-align-last: center;
}

.section2-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    column-gap: 80px;
    text-align: left;
    margin-bottom: 40px;
    font-size: 18px;
}

.section2-card-header {
    font-size: 30px;
    margin-bottom: 10px;
}

.section2-card-text {
    font-weight: 300;
}

/* section3 */

.section3 {
    background-color: white;
    padding: 90px 0px 110px 0px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.section3-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    width: 66%;
    margin: auto;
}

.section3-card-header {
    font-size: 35px;
    margin: 0px 0px 10px 0px;
    color: #001d53;
}

.section3-card-text {
    font-size: 18px;
    font-weight: 300;
    margin: 30px 0px 44px 0px;
    color: #444444;
}

/* footer */

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebf1f3;
    height: 120px;
    width: 100%;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 66%;
    margin: auto;
}

.footer-text {
    font-weight: 300;
    text-align: center;
}

.footer-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.footer-icon {
    text-decoration: none;
    color: #003aa5;
    font-size: 28px;
    transition: 0.3s ease;
}

.footer-icon-twitter:hover {
    color: #07d4f8;
}

.footer-icon-facebook:hover {
    color: #3b5ea0;
}

.footer-icon-linkedin:hover {
    color: #3088b1;
}

@media only screen and (max-width: 1400px) {
    .header-content {width: 80%;}
    .section1 {height: 600px;}
    .section2-cards {flex-direction: column; gap: 50px;}
    .section2 {padding: 50px 0px 30px 0px;}
    .footer-content {width: 90%; flex-direction: column; gap: 10px;}
}

@media only screen and (max-width: 1050px) {
    .header-content {width: 80%;}
    .header-navlist-container {display: none;}
    .header-buttons {display: none;}
    .header-navbar-button-container {display: flex;}
    .section1 {height: 600px;}
    .section2-cards {flex-direction: column; gap: 50px;}
    .section2 {padding: 50px 0px 30px 0px;}
    .section3 {padding: 20px 0px 20px 0px;}
    .section3-card-image {height: 200px;}
    .footer-content {width: 90%; flex-direction: column; gap: 10px;}
    .header {position: relative;}
}

@media only screen and (max-width: 1919px) {
    .section3-cards {flex-direction: column; gap: 30px; width: 100%;}
    .section3-card {text-align: center; width: 100%;}
    .section3-btn {display: flex; align-items: center; justify-content: center;}
}