* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px;
}

body {
    font-family: 'Montserrat', sans-serif;
}

nav {
    height: 80px;
    position: static;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-shadow: 0px 5px 20px #35353530;
    box-shadow: 0px 5px 20px #35353530;
    padding: 0 50px;
}

nav img {
    width: 120px;
}

nav .link-container a {
    font-weight: bold;
    font-size: 16px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.link-container a {
    text-decoration: none;
    color: #000
}

nav .link-container a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 0%;
    left: 50%;
    right: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #f15522;
    display: block;
    height: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

nav .link-container a:hover::after {
    width: 50%;
}

nav .link-container a:hover {
    color: #f15522;
}

nav .burger-menu {
    display: none;
}

.btn {
    background-color: #f15522;
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-container {
    margin: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 90vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

iframe {
    width: 90vw;
    height: 100%;
}

.link-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60%;
}

.link-content-container .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    margin: 1px 0;
    font-weight: bold;
    background-color: #efefef;
    padding: 20px 25px;
    color: #353535;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 100%;
}

.link-content-container .link:hover {
    color: #f15522;
}

.link-content-container .link:hover img {
    margin-right: 10px;
    -webkit-transition: .3s;
    transition: .3s;
}

.link-content-container .link img {
    -webkit-transition: .3s;
    transition: .3s;
}

@media (max-width: 675px) {
    .content-container {
        height: 90vh;
    }
    .link-content-container {
        width: 100%;
    }
    .link-container {
        display: none;
    }
    .burger-menu {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .line {
        width: 22px;
        height: 2px;
        background-color: #f15522;
        margin: 2px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .active .one {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 0;
    }
    .active .two {
        opacity: 0;
    }
    .active .three {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        position: absolute;
        top: 0;
    }
    .active.link-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: absolute;
        top: 80px;
        background-color: #f15522;
        left: 0px;
        right: 0px;
        bottom: 0px;
        padding: 30px 0;
    }
    .active.link-container a {
        color: #fff;
    }
    .active.link-container a:hover {
        color: #000;
    }
    .no-scroll {
        overflow: hidden;
    }
}


/*# sourceMappingURL=style.css.map */