* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#hero-div {
    background-color: #1F2937;
    color: white;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#header {
    height: 12%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-logo {
    display: flex;
    align-items: center;
    width: 15%;
}

.mslogo {
    width: 30px;
}

.logo-txt {
    margin-left: 5px;
    font-size: 24px;
    color: #F9FAF8;
    font-weight: bold;
    letter-spacing: -1px;
}

ul {
    width: 35%;
    display: flex;
    justify-content: space-between;
}

li {
    list-style-type: none;
    font-size: 18px;
    color: #e5e7eb;
}

#hero-main-div {
    width: 80%;
    height: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#hero-sub-div {
    width: 40%;
}

#hero-img {
    width: 45%;
}

.hero-main-txt {
    font-size: 48px;
    font-weight: bold;
    color: #F9FAF8;
    margin-left: -2px;
}

.hero-sec-txt {
    font-size: 18px;
    color: #e5e7eb;
    margin: 0px 0 10px 0px;
}

#button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    font-weight: bold;
    width: 150px;
    background-color: #3882f6;
    border-radius: 5px;
}

video {
    width: 100%;
}

#info-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 70vh;
}

.info-header {
    font-size: 36px;
    font-weight: bolder;
    color:#1F2937;
}

.features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
}

.feature {
    width: 20%;
}

.fhead {
    margin: 10px 0 3px 0;
}

.fdesc {
    font-size: 12px;
}

#quote-div {
    background-color: #e5e7eb;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#quote-txt {
    font-size: 36px;
    font-weight: lighter;
    font-style: italic;
    color: #1F2937;
    width: 50%;
}

.bold-right {
    margin-left: auto;
    font-weight: 500;
    display: flex;
    justify-content: end;
}

#cta-div {
    height: 40vh;
    display:flex;
    align-items: center;
    justify-content: center;
}

#cta-sh {
    background-color: #3882f6;
    width: 60%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 10px;
}

#cta-txt {
    width: 40%;
    color: #F9FAF8;
}

#cta-button {
    border: 2px solid white;
    border-radius: 5px;
    color:#F9FAF8;
    padding: 7px 17px;
    font-weight: bold;
}

#footer {
    background-color: #1F2937;
    height: 15vh;
}