* {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

nav {
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    position: fixed;
    width: 100%;
    transition: 0.3s;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
}

.logo {
    z-index: 10;
}

.logo a {
    color: white;
    font-size: 30px;
    font-weight: 600;
    padding: 0 30px;
}

.nav_links {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 70%;
    transform: translateX(100%);
    transition: transform 0.4s ease-in;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav_links>li {
    list-style-type: none;
    opacity: 0;
}

.nav_links>li>a {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 14px;
    color: white;
}

.burger {
    display: block;
    cursor: pointer;
    padding: 0 30px;
    z-index: 10;
}

.burger div {
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all 0.3s ease;
}

.nav_active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.banner {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, black), url(images/pexels-wilson-vitorino-2177473-.jpg) no-repeat;
    background-size: cover;
    background-position: right;
    padding: 0 1.5rem;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hero_text {
    font-size: 45px;
    color: white;
    font-weight: bold;
    line-height: 1.4;
    text-shadow: 1px 1px 2px black;
}

.heroDesc {
    color: white;
    font-size: 18px;
    line-height: 1.8;
}

.hero_btn {
    color: white;
    background-color: #d90429;
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    width: 15rem;
    transition: 0.3s ease-in;
}

.hero_btn>i {
    font-size: 22px;
    margin-right: 5px;
}

.hero_btn:hover {
    box-shadow: 0 4px 2px white;
}

.bulb {
    display: none;
    justify-content: flex-end;
    padding: 0 20px;
}

.bulb>img {
    width: 20rem;
}

.about {
    padding-top: 60px;
    background-color: white;
}

.square {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 144, 255, 0.8), rgba(30, 144, 255, 0.4)), url(images/pexels-rodolfo-quirós-2330137.jpg) no-repeat;
    background-size: cover;
    background-position: right;
}

.square>span {
    position: absolute;
}

.square span {
    width: 80px;
    height: 80px;
    border-radius: 40% 50%;
    animation: animate 35s linear infinite;
    background: rgba(255, 20, 147, 0.1);
    z-index: 1;
}

@keyframes animate {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.content {
    font-family: 'Roboto Condensed', sans-serif !important;
    margin: auto;
    z-index: 3;
    color: white;
    line-height: 1.7;
    letter-spacing: 0.6px;
    width: 80%;
    font-size: 17px;
    padding: 50px 0;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title>h2 {
    position: relative;
    right: 1%;
}

.title>h2:before {
    content: "💡";
}

.card_sect {
    padding: 60px 20px;
    text-align: center;
}

.card_sect>.title {
    margin-bottom: 4px;
}

.cards {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card {
    max-width: 340px;
    height: auto;
    margin: 8px 10px;
    transition: .5s ease;
    /*    color: white;*/
    z-index: 5;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: whitesmoke;
}

.card:hover {
    color: dodgerblue;
    transition: .5s ease;
}

.card_pic>img {
    width: 100%;
    height: 200px;
}

.card_desc {
    padding: 20px;
    text-align: left;
}

.card_desc>p {
    font-size: 14px;
}

.card_desc>h3 {
    margin-bottom: 15px;
}

.card_desc>ul {
    font-size: 13px;
    margin-left: 20px;
    margin-top: 5px;
}

.hand_btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 20px;
    background-color: #404eed;
    border-radius: 50%;
    padding: 0 5px;
}

.contact_sect {
    height: 237px;
    background-image: linear-gradient(to left, #00509D, #1E90FF);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    color: white;
    text-align: center;
}

.contact_sect>div {
    margin-bottom: 1rem;
}

button {
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
}

button:hover {
    cursor: pointer;
}

.contact_button {
    border-radius: 10px;
    padding: 10px 20px;
    background-color: orange;
    color: whitesmoke;
    width: 40%;
    transition: .4s ease;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.contact_button:hover {
    background-color: whitesmoke;
    color: orange;
}

.contact_button::after {
    content: '';
    width: 0;
    height: 2px;
    background: orange;
    transition: width .4s;
}

.contact_button:hover::after {
    width: 50%;
    transition: width .4s;
}

.card_alt {
    max-width: 320px;
    margin: 8px 10px;
    padding: 30px;
    box-sizing: border-box;
    transition: .2s ease;
    border-radius: 2%;
    color: white;
    z-index: 5;
    position: relative;
    top: 0;
    text-shadow: 2px 2px black;
}

.card_alt:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6);
    top: -10px;
}

.card_back_1 {
    background: linear-gradient(to bottom, rgba(229, 255, 0, 0.5), rgba(255, 0, 0, 0.5)), url(images/vishnu-prasad-Ct-7svw082I-unsplash.jpg) no-repeat;
    background-size: cover;
}

.card_back_2 {
    background: linear-gradient(to bottom, rgba(0, 255, 21, 0.7), rgba(0, 112, 65, 0.7)), url(images/zlataky-cz-Y6bHSF1VCxY-unsplash.jpg) no-repeat;
    background-position: center;
}

.card_back_3 {
    background: linear-gradient(to bottom, rgba(0, 0, 255, 0.5), rgba(0, 195, 255, 0.5)), url(images/nathan-dumlao-mZZ0ls7X9tc-unsplash.jpg) no-repeat;
    background-size: cover;
}

.card_alt>i {
    font-size: 50px;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    color: black;
    text-shadow: none;
}

.card_alt>h3 {
    font-size: 25px;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
    margin-bottom: 15px;
}

.card_alt>p {
    text-align: justify;
}

.cardBtn {
    color: white;
    background: #404eed;
}

.tech_partners {
    padding: 0 60px;
    margin: 60px 0;
    text-align: center;
    background-color: white;
}

.tech_partners>.title {
    margin-bottom: 4px;
}

.techLogo_Row {
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.techLogo {
    width: 50%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.techLogo>img {
    max-width: 100px;
    max-height: 100px;
}

.techLogo2>img {
    max-width: 80px;
    max-height: 80px;
}

.techLogo3>img {
    max-width: 70px;
    max-height: 70px;
}

.techLogo:nth-of-type(4) {
    display: block;
}

footer {
    background: #343434;
    text-align: center;
    padding: 30px 30px;
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
}

.foot>div {
    display: flex;
    flex-direction: column;
}

.foot>div>h3 {
    color: rgb(252, 179, 44);
    margin-bottom: 8px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: rgba(255, 255, 255, 1);
}

.foot_1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.foot {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    margin: 40px auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    width: 80%;
}

.modal-content>img {
    width: 100%;
    height: 100%;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 10px 20px 0 0;
    transition: 0.2s;
}

.close:hover,
.close:focus {
    color: orange;
    text-decoration: none;
    cursor: pointer;
}

.dload_banner {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/pexels-oleg-magni-2058128.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 1rem;
}

.dload_banner>div {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 25px 0 25px;
    border-radius: 10px;
}

.dload_banner>div>img {
    width: 160px;
}

.dload_banner>div>p {
    text-shadow: 2px 2px black;
}

.dload_banner>div>p:nth-of-type(1) {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
}

.banner_alt {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner_alt>span {
    color: white;
    font-size: 40px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.5);
    padding: 0 15px;
}

.services_banner {
    background: url(images/pexels-pixabay-356056.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.services {
    padding: 3rem 2.2rem;
    background: white;
}

.srv_container {
    padding: 3rem 1rem;
    border: 1px solid dodgerblue;
    margin-bottom: 2rem;
}

.srv_container:nth-last-of-type(1) {
    margin-bottom: 0;
}

.srv_container>img {
    width: 100%;
}

.subtitle:before {
    content: "💡 ";
}

.subtitle {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    left: -2%;
}

.srv_container>p {
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}

.mymsb_banner {
    background: url(images/pexels-marta-branco-1194713.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: 0 25%;
}

.mymsb_header {
    text-align: center;
    background-image: linear-gradient(to left, #00509D, #1E90FF);
    color: white;
    padding: 30px 10px;
    margin-bottom: 2rem;
}

.mymsbpro {
    padding: 0 2.2rem;
    background: white;
}

.structure {
    padding-bottom: 2rem;
}

.structure_tbl_1 {
    width: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-collapse: collapse;
}

.structure_tbl_1 th {
    background-color: orange;
}

.structure_tbl_1 th,
td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.structure_tbl_1 tr:nth-last-of-type(1)>td {
    border-bottom: none;
}

.feat_cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 2rem;
}

.features {
    width: 100%;
}

.list_1 {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
}

.list_1 i {
    font-size: 25px;
    background-color: white;
    border-radius: 20px;
    margin-right: 10px;
    color: crimson;
}

.list_1>p {
    font-size: 14px;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 20px;
    width: 100%;
}

.list_2 {
    font-size: 14px;
    background-color: #f0f0f0;
    border-left: 10px solid dodgerblue;
    padding: 12px;
    margin-bottom: 10px;
}

.list_2:nth-last-of-type(1) {
    margin-bottom: 0;
}

.feat_alt {
    margin-top: 10px;
    margin-bottom: 10px;
}

.location_banner {
    background: url(images/conference-room-768441_1920.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.location_header {
    text-align: center;
    background-image: linear-gradient(to left, #00509D, #1E90FF);
    color: white;
    padding: 30px 10px;
}

.location {
    padding: 2rem 2.2rem;
}

#LocationMap {
    border: 0;
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
}

.contact_info>p {
    margin-bottom: 10px;
}

.contact_info>p:hover i {
    color: #404eed;
    transition: 0.2s;
}

.career_banner {
    background: url(images/pexels-pixabay-326576.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.career {
    padding: 2rem 2.2rem;
}

.career>p {
    margin-bottom: 10px;
}

.career>ul {
    margin-bottom: 10px;
    margin-left: 40px;
}

.email {
    background-color: orange;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-top: 20px;
}

.privacy_banner {
    background: url(images/pexels-scott-webb-430208.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.privacy {
    padding: 2rem 2.2rem;
    line-height: 1.8;
}

.privacy>p {
    margin-bottom: 20px;
    padding: 0 20px;
    font-weight: normal;
}

.privacy>h3 {
    margin-bottom: 15px;
    background-color: #f0f0f0;
    padding: 10px 15px;
}

.privacy>ul {
    margin-bottom: 20px;
    padding: 0 30px;
}

.random {
    position: absolute;
    bottom: -3900px;
    left: -300px;
    height: 500px;
    width: 500px;
    background-color: rgba(30, 144, 255, 0.3);
    border-radius: 50%;
    z-index: -10;
}

@media only screen and (max-width: 385px) {
    .hero_text {
        font-size: 32px;
    }
    .heroDesc {
        font-size: 15px;
    }
    .hero_btn {
        font-size: 14px;
        width: 60%;
    }
}