@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:wght@400;700&display=swap');
body {
    font-family: 'Balsamiq Sans', cursive;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    font-weight: 700;
    background-color: rgb(50, 105, 206);
    z-index: 1;
    position: sticky;
    top: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 38px;
}

.left-side {
    display: flex;
}

.nav-wrapper>.left-side>div {
    margin-right: 20px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.nav-link-wrapper {
    height: 22px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 1px solid black;
}

.nav-link-wrapper a:hover {
    color: black;
}

#container-2 {
    background-color: rgb(65, 119, 218);
    width: 100vw - 10px;
    height: 100vh;
}

video:focus {
    border: none;
    outline: none;
}

video {
    border: none;
    outline: none;
}

.section {
    border-radius: 10px;
    width: 100vw - 10px;
    height: 664px;
    background-color: firebrick;
}

.cto {
    background-image: url("https://hasnain.polara.ca/images/Landscape-Color.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1601px;
    height: 664px;
    text-align: center;
}

button {
    border: none;
    outline: none;
}

button:focus {
    border: none;
    outline: none;
}

input {
    border: none;
    outline: none;
    font-family: 'Balsamiq Sans', cursive;
}

input:focus {
    border: none;
    outline: none;
}

#containerp {
    width: 100vw - 10px;
    height: 664px;
    background-color: rgb(190, 98, 98)
}

a {
    text-decoration: none;
}