* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

.spinner-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #262626;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s;
    z-index: 300;
}

.display .spinner-container {
    opacity: 0;
    visibility: hidden;
}

.circles {
    width: 8rem;
    height: 8rem;
    position: relative;
    opacity: 0;
    visibility: hidden;
    animation: displayCircles 4s;
}

@keyframes displayCircles {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    25% {
        opacity: 1;
        visibility: visible;
    }
    90% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.circles div {
    animation: circles 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 4rem 4rem;
}

.circles div::after {
    content: "";
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: darkcyan;
    margin: -0.4rem 0 0 -0.4rem;
}

.circles div:nth-child(1) {
    animation-delay: -0.036s;
}

.circles div:nth-child(1)::after {
    top: 6.3rem;
    left: 6.3rem;
}

.circles div:nth-child(2) {
    animation-delay: -0.072s;
}

.circles div:nth-child(2)::after {
    top: 6.8rem;
    left: 5.6rem;
}

.circles div:nth-child(3) {
    animation-delay: -0.108s;
}

.circles div:nth-child(3)::after {
    top: 7.1rem;
    left: 4.8rem;
}

.circles div:nth-child(4) {
    animation-delay: -0.144s;
}

.circles div:nth-child(4)::after {
    top: 7.2rem;
    left: 4rem;
}

.circles div:nth-child(5) {
    animation-delay: -0.18s;
}

.circles div:nth-child(5)::after {
    top: 7.1rem;
    left: 3.2rem;
}

.circles div:nth-child(6) {
    animation-delay: -0.216s;
}

.circles div:nth-child(6)::after {
    top: 6.8rem;
    left: 2.4rem;
}

.circles div:nth-child(7) {
    animation-delay: -0.252s;
}

.circles div:nth-child(7)::after {
    top: 6.3rem;
    left: 1.7rem;
}

.circles div:nth-child(8) {
    animation-delay: -0.288s;
}

.circles div:nth-child(8)::after {
    top: 5.6rem;
    left: 1.2rem;
}

@keyframes circles {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    display: none;
}

.container_presentation {
    background-color: whitesmoke;
}

.display .container {
    display: block;
}

.hamburger-menu {
    width: 3rem;
    height: 3rem;
    position: fixed;
    top: 2.2rem;
    right: 2.2rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
    transition: right 0.7s;
}

.change .hamburger-menu {
    right: 33rem;
}

.line {
    width: 100%;
    height: 0.6rem;
    background-color: white;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
}

.change .line {
    background-color: rgba(0, 0, 0, 0.8);
}

.change .line-1 {
    transform: rotate(45deg) translate(0.3rem, 0.8rem);
}

.change .line-2 {
    opacity: 0;
    visibility: hidden;
}

.change .line-3 {
    transform: rotate(-45deg) translate(0.3rem, -0.8rem);
}

.hamburger-menu span {
    position: absolute;
    left: 5rem;
    width: 10rem;
    height: 4rem;
    background-color: darkcyan;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Baloo Da 2", serif;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.change .hamburger-menu:hover span {
    opacity: 1;
    visibility: visible;
}

.hamburger-menu span::before {
    content: "";
    position: absolute;
    border-left: 1rem solid transparent;
    border-right: 1rem solid darkcyan;
    border-bottom: 1rem solid transparent;
    border-top: 1rem solid transparent;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
}

.header {
    width: 100%;
    height: 100vh;
    position: relative;
    perspective: 100rem;
    overflow: hidden;
}

.header2 {
    width: 100%;
    height: 100vh;
    position: relative;
    perspective: 100rem;
    overflow: visible;
    background-color: #262626;
}

.header3 {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 100rem;
    overflow: hidden;
}

.sub-header p {
    padding-left: 8rem;
    padding-right: 8rem;
    /* padding-bottom: 8rem; */
    padding-bottom: 2rem;
    padding-top: 1rem;
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 3rem;
}

.sub-header2 p {
    padding-left: 8rem;
    padding-right: 8rem;
    padding-bottom: 8rem;
    padding-top: 1rem;
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 15rem;
    line-height: 2.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 3rem;
}

.paragraph6 {
    width: 100%;
    padding-bottom: 2rem;
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 2.0rem;
    line-height: 2.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: justify;
}

.paragraph2 {
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 2rem;
    padding-top: 8rem;
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 2.5rem;
    line-height: 2.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: center;
}

.paragraph3 {
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 0rem;
    padding-top: 8rem;
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 2.5rem;
    line-height: 2.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: left;
}

.paragraph1 {
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 2rem;
    padding-top: 8rem;
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 2.5rem;
    line-height: 2.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: center;
}

.paragraph {
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 2rem;
    padding-top: 2rem;
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 2.0rem;
    line-height: 2.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: justify;
}

.paragraph_pres {
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    line-height: 3rem;
    text-align: left;
}

.paragraph_pres_italics {
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5rem;
    font-weight: 300;
    line-height: 2.0rem;
    text-align: left;
}

.paragraph_sub_italics {
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 2rem;
    font-style: italic;
    line-height: 2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 3rem;
    text-align: left;
}

.paragraph_large1 {
    padding-left: 10%;
    padding-right: 10%;
    /* padding-top: 8rem; */
    padding-top: 2rem;
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: center;
}

.paragraph_large1s {
    /* no top */
    padding-left: 10%;
    padding-right: 10%;
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: center;
}

.paragraph_large1r {
    /* no top */
    padding-left: 0%;
    padding-right: 0%;
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: center;
}

.paragraph_large1b {
    padding-left: 10%;
    padding-right: 10%;
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: center;
}

.paragraph_large1a {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 8rem;
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: center;
}

.paragraph_large {
    padding-left: 10%;
    padding-right: 10%;
    /* padding-top: 8rem; */
    padding-top: 2rem;
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: left;
}

.paragraph_large6 {
    font-family: "Baloo Da 2", serif;
    color: whitesmoke;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    margin-top: 8rem;
    margin-bottom: 2rem;
    line-height: 3rem;
    text-align: left;
}

.sub-header {
    background-color: #262626;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    animation: scale 1s;
}

.img-wrapper_s {
    width: 100%;
    /* height: 100%; */
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.img-wrapper_s img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    animation: scale 1s;
}

.img-wrapper2 {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.img-wrapper2 img {
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    animation: scale 1s;
}

.img-wrapper_presentation {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.img-wrapper_presentation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    animation: scale 1s;
}

@keyframes scale {
    0% {
        transform: scale(5.0);
    }
    100% {
        transform: scale(1.0);
    }
}

.banner {
    position: absolute;
    top: 30%;
    left: 15%;
}

.banner h1 {
    font-family: "Baloo Da 2", serif;
    font-size: 12rem;
    font-weight: 300;
    color: #fff;
    width: 50%;
    line-height: 9rem;
    letter-spacing: 0.2rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: moveBanner 1s 0.5s forwards;
}

.banner p {
    font-family: "Josefin Slab", serif;
    font-size: 5rem;
    color: #fff;
    width: 70%;
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: moveBanner 1s 0.7s forwards;
}

.banner button:hover {
    background-color: goldenrod;
}

.banner button {
    width: 25rem;
    height: 7rem;
    background-color: darkcyan;
    border: none;
    font-family: "Muli", serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0;
    animation: moveBanner 1s 0.9s forwards;
}

@keyframes moveBanner {
    0% {
        transform: translateY(40rem) rotateY(-20deg);
    }
    100% {
        transform: translateY(0) rotateY(0);
        opacity: 1;
    }
}

.sidebar {
    width: 40rem;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -40rem;
    background-color: #fff;
    transition: right 0.5s;
    z-index: 100;
}

.change .sidebar {
    right: 0;
}

.menu {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-item {
    text-align: center;
}

.menu-link {
    font-family: "Baloo Da 2", serif;
    font-size: 4rem;
    color: #555;
    position: relative;
}

.menu-link::before {
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    color: darkcyan;
    font-weight: 420;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease-in-out;
}

.menu-link:hover::before {
    width: 100%;
}

.social-media {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.social-media i {
    font-size: 2.2rem;
    margin: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: darkcyan;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-media i:hover {
    background-color: #ffd000ec;
}

.about-us {
    width: 100%;
    background-color: #262626;
    /* padding-bottom: 15rem; */
    padding-bottom: 3rem;
}

.about-us2 {
    width: 100%;
    background-color: rgb(46, 45, 45);
    /* padding-bottom: 15rem; */
    padding-bottom: 3rem;
}

.section-header2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 0 10rem 0;
    background-color: #262626;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 7rem 0 10rem 0; */
    padding: 2rem 0 2rem 0;
    background-color: black;
}

.section-heading {
    font-family: "Muli", serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgb(2, 177, 177);
    /* margin-bottom: 6rem; */
    margin-bottom: 2rem;
    text-align: center;
}

.section-heading a {
    color: cyan;
}

.section-heading a:hover {
    color: goldenrod;
}

.section-header_presentation {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: black; */
    background-color: green;
    padding-top: 1rem;
}

.section-heading_presentation {
    font-family: "Muli", serif;
    font-size: 2rem;
    font-weight: 500;
    color: whitesmoke;
    text-align: center;
}

.underline {
    width: 12rem;
    height: 0.3rem;
    background-color: #ffd000ec;
}

.underline2 {
    width: 12rem;
    height: 0.3rem;
    background-color: #ffd000ec;
}

.services {
    background-color: #262626;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(6, 6rem);
    grid-row-gap: 4rem;
}

.service {
    width: 100%;
    margin-bottom: 2rem;
    color: white;
}

.service:nth-child(1) {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
}

.service:nth-child(2) {
    grid-column: 3 / 6;
    grid-row: 3 / 5;
}

.service:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 5 / -1;
}

.service:nth-child(4) {
    grid-column: 11 / 14;
    grid-row: 1 / 3;
}

.service:nth-child(5) {
    grid-column: 12 / 15;
    grid-row: 3 / 5;
}

.service:nth-child(6) {
    grid-column: 11 / 14;
    grid-row: 5 / -1;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header i {
    font-size: 4rem;
    color: #4b4b4b;
    margin-right: 2rem;
}

.service-header h3 {
    font-family: "Baloo Da 2", serif;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.service-text {
    font-family: "Josefin Slab", serif;
    color: #eee;
    font-size: 1.6rem;
    text-align: justify;
}

.service-header a {
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 2.6rem;
    line-height: 2.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.service-header a:hover {
    color: rgb(0, 200, 200);
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.service-text2 p {
    font-family: "Josefin Slab", serif;
    color: #eee;
    font-size: 1.6rem;
    text-align: justify;
}

.service-text2 p:hover {
    color: rgb(0, 200, 200);
}

p {
    font-family: "Baloo Da 2", serif;
    color: #eee;
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.about-us-img-wrapper {
    grid-column: 7 / 11;
    grid-row: 2 / 6;
    width: 100%;
}

.about-us-img-wrapper img {
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.team {
    /* team width = 100% */
    background-color: black;
    /* background-color: darkgray; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 0 5rem 20rem 5rem; */
    padding: 0 5rem 3rem 5rem;
}

.cards-wrapper {
    display: flex;
    justify-content: space-evenly;
    /* margin-top: 8rem; */
    margin-top: 2rem;
    width: 100%;
}

.cards-wrapper2 {
    /* for products // oredi best we can do */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: black;
    margin-left: 10px;
    width: 100%;
}

.cards-wrapper_news {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: black;
    margin-left: 10px;
    width: 100%;
}

.card {
    /* cannot change // within image */
    width: 45rem;
    height: 45rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    position: relative;
    padding: 2rem;
    /* image card border */
}

.card_news {
    /* cannot change // within image // size fixed */
    width: 37rem;
    height: 45rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    position: relative;
    padding: 2rem;
    /* image card border */
}

.card_news_1 {
    /* cannot change // within image // size fixed */
    width: 37rem;
    height: 45rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    position: relative;
    padding: 2rem;
    /* image card border */
}

.card-img-wrapper {
    /* cannot change // within image */
    width: 100%;
    height: 100%;
    background-color: #262626;
    border-radius: 0.5rem;
}

.card-img-wrapper_news {
    /* cannot change // within image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    background-color: #262626;
    border-radius: 0.5rem;
}

.card-img-wrapper_news_1 {
    /* cannot change // within image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    background-color: #262626;
    border-radius: 0.5rem;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    border-radius: 0.5rem;
    transition: opacity 0.3s;
}

.card-img-wrapper_news img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 1.0;
    border-radius: 0.5rem;
    transition: opacity 0.3s;
}

.card-img-wrapper_news_1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 1.0;
    border-radius: 0.5rem;
    transition: opacity 0.3s;
}

.card:hover .card-img-wrapper img {
    opacity: 0.5;
}

.card_news:hover .card-img-wrapper_news img {
    opacity: 0.0;
}

.card_news_1:hover .card-img-wrapper_news_1 img {
    opacity: 0.0;
}

.card-info {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.card_news-info {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.card:hover .card-info {
    bottom: 2rem;
    opacity: 1;
    visibility: visible;
}

.card_news:hover .card_news-info {
    bottom: 2rem;
    opacity: 1;
    visibility: visible;
}

.card-info h2 {
    font-family: "Baloo Da 2", serif;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 300;
    color: #eee;
}

.card_news-info h2 {
    font-family: "Baloo Da 2", serif;
    font-size: 3.5rem;
    line-height: 3.5rem;
    font-weight: 300;
    color: #eee;
}

.card-info h3 {
    font-family: "Muli", serif;
    font-size: 2rem;
    font-weight: 500;
    color: #a52a2a;
    margin-bottom: 1rem;
}

.card_news-info h3 {
    font-family: "Muli", serif;
    font-size: 2rem;
    font-weight: 500;
    color: #a52a2a;
    margin-bottom: 1rem;
}

.card-info p {
    font-family: "Baloo da 2", serif;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 300;
    color: #eee;
    width: 80%;
    margin-bottom: 2rem;
}

.card_news-info p {
    font-family: "Baloo da 2", serif;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 300;
    color: #eee;
    width: 80%;
    margin-bottom: 2rem;
}

.card-info button {
    width: 10rem;
    height: 3rem;
    background-color: darkcyan;
    border: none;
    font-family: "Baloo Da 2", serif;
    font-size: 1.4rem;
    line-height: 1.5rem;
    color: #eee;
    border-radius: 0.3rem;
    box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.4);
}

.card_news-info button {
    width: 10rem;
    height: 3rem;
    background-color: darkcyan;
    border: none;
    font-family: "Baloo Da 2", serif;
    font-size: 1.4rem;
    line-height: 1.5rem;
    color: #eee;
    border-radius: 0.3rem;
    box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.4);
}

.card-info button:hover {
    background-color: goldenrod;
}

.card_news-info button:hover {
    background-color: goldenrod;
}

.contact {
    width: 100%;
    height: 100vh;
    background-color: #272727;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-wrapper {
    width: 60%;
    height: 75rem;
    display: flex;
    box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.5);
}

.contact-left {
    width: 35%;
    background: linear-gradient(rgba(15, 15, 15, 0.6), rgba(22, 22, 22, 0.9)), url(images/contact-bg.jpg) center no-repeat;
    background-size: cover;
}

.contact-right {
    width: 65%;
    background-color: #eee;
    padding: 3rem 10rem 10rem 10rem;
}

.contact-heading {
    font-family: "Baloo Da 2", serif;
    font-size: 6rem;
    font-weight: 300;
    color: #272727;
    margin-bottom: 5rem;
    text-align: center;
}

.contact-right form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    position: relative;
}

.field {
    width: 45rem;
    background-color: transparent;
    border: none;
    border-bottom: 0.2rem dashed #636363;
    margin: 3rem 0;
    padding: 1rem 1rem 1rem 0;
    font-family: "Muli", serif;
    font-size: 1.6rem;
    color: #4b4b4b;
}

.input-group input {
    height: 4rem;
}

.input-group textarea {
    max-height: 7rem;
    max-width: 45rem;
}

.field:focus {
    border-bottom-style: solid;
}

.input-group label {
    position: absolute;
    left: 0;
    font-family: "Baloo Da 2", serif;
    font-size: 1.8rem;
    color: #4B4B4B;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 0.3s;
}

.input-label {
    bottom: 3rem;
}

.message {
    bottom: 6rem;
}

.field:focus~label {
    transform: translateY(-3rem);
    font-size: 1.2rem;
}

.submit-btn {
    width: 45rem;
    height: 5rem;
    background-color: darkcyan;
    color: #fff;
    border: none;
    margin-top: 2rem;
    font-family: "Muli", serif;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
}

.footer {
    width: 100%;
    height: 8rem;
    background-color: darkcyan;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    /* width: 80%; */
    width: 90%;
    /* margin-right: 6rem; */
    display: flex;
    justify-content: space-between;
    /* padding-top: 2rem; */
    padding-top: 1rem;
}

.copyright {
    font-family: "Baloo Da 2", serif;
    font-size: 1.2rem;
    color: whitesmoke;
    margin-left: 2rem;
}

.social-list a {
    font-family: "Baloo Da 2", serif;
    margin: 0 1rem;
    font-size: 1.6rem;
    color: whitesmoke;
    font-weight: 300;
}

.social-list a:hover {
    font-size: 1.6rem;
    color: black;
    font-weight: 500;
}

.social-list a.active {
    color: blue;
}

.social-list i {
    font-size: 1.6rem;
    color: whitesmoke;
}

.scroll-btn {
    position: fixed;
    right: 2.2rem;
    bottom: 2.2rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: rgb(9, 51, 51);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.scroll-btn:hover {
    background-color: #006b6b;
}

.left-btn {
    position: fixed;
    right: 8rem;
    bottom: 2.2rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: goldenrod;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.left-btn:hover {
    background-color: #986600;
}

.products-btn {
    position: relative;
    right: 5rem;
    bottom: 5rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: blue;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.products-btn:hover {
    background-color: #986600;
}

.home-btn {
    position: fixed;
    right: 2.2rem;
    bottom: 8rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: goldenrod;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.home-btn:hover {
    background-color: #986600;
}

.scroll-btn2 {
    position: fixed;
    right: 2.2rem;
    bottom: 8rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: darkcyan;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.scroll-btn2:hover {
    background-color: #006b6b;
}

.right-btn {
    position: fixed;
    right: 2.2rem;
    bottom: 2.2rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: goldenrod;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.right-btn:hover {
    background-color: #986600;
}

@media (max-width: 1500px) {
    .about-us-img-wrapper {
        grid-row: 3 / -1;
    }
    .card {
        width: 34rem;
    }
    .contact-wrapper {
        width: 80%;
        height: 65rem;
    }
    .footer-content {
        /* width: 80%; */
        width: 100%;
        padding-left: 3rem;
        padding-right: 7rem;
    }
    .footer {
        height: 8rem;
    }
}

@media (max-width: 1400px) {
    .banner h1 {
        font-size: 6rem;
        line-height: 7rem;
    }
    .banner p {
        font-size: 3rem;
    }
    .banner button {
        width: 20rem;
        height: 5rem;
        font-size: 1.6rem;
    }
    .menu-link {
        font-size: 3rem;
    }
    .service:nth-child(1) {
        grid-column: 3 / 7;
    }
    .service:nth-child(2) {
        grid-column: 2 / 6;
    }
    .service:nth-child(3) {
        grid-column: 3 / 7;
    }
    .service:nth-child(4) {
        grid-column: 11 / 15;
    }
    .service:nth-child(5) {
        grid-column: 12 / 16;
    }
    .service:nth-child(6) {
        grid-column: 11 / 15;
    }
    .footer {
        height: 8rem;
    }
}

@media (max-width: 1300px) {
    .team {
        /* padding-bottom: 5rem; */
        padding-bottom: 2rem;
    }
    .cards-wrapper {
        flex-direction: column;
        align-items: center;
        /* margin-top: 4rem; */
        margin-top: 2rem;
    }
    .card {
        /* margin-bottom: 8rem; */
        margin-bottom: 2rem;
    }
    .contact-wrapper {
        width: 90%;
        height: 55rem;
    }
    .contact-heading {
        margin-bottom: 2rem;
    }
    .field {
        margin: 2rem 0;
    }
    .footer {
        /* background-color: red; */
        height: 8rem;
    }
    .text {
        font-size: 2rem;
    }
}

@media (max-width: 1000px) {
    .banner h1 {
        font-size: 5rem;
        line-height: 6rem;
    }
    .banner p {
        font-size: 2.5rem;
    }
    .banner button {
        width: 18rem;
        height: 4rem;
        font-size: 1.5rem;
    }
    .services {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .service {
        width: 40rem;
        margin-bottom: 6rem;
    }
    .about-us-img-wrapper {
        width: 40rem;
    }
    .about-us-img-wrapper img {
        width: 100%;
    }
    .contact-left {
        width: 0;
    }
    .contact-right {
        width: 100%;
    }
    .field {
        width: 55rem;
    }
    .input-group textarea {
        max-width: 55rem;
    }
    .submit-btn {
        width: 55rem;
    }
    .copyright {
        order: 1;
        /* margin-top: 3rem; */
        margin-top: 1rem;
    }
    .header_2 {
        height: 38vh;
    }
    .footer {
        /* up to here */
        background-color: darkcyan;
        height: 10rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 3rem;
        padding-right: 6rem;
    }
}

@media (max-width: 700px) {
    .banner h1 {
        font-size: 4rem;
        line-height: 5rem;
    }
    .banner p {
        font-size: 2rem;
    }
    .field {
        width: 35rem;
    }
    .input-group textarea {
        max-width: 35rem;
    }
    .submit-btn {
        width: 35rem;
    }
    .footer {
        /* [perfect] */
        background-color: darkcyan;
        height: 12rem;
    }
}

@media (max-width: 600px) {
    /* .topnav {
        display: none;
    } */
    html {
        font-size: 45%;
    }
    .topnav a {
        font-size: 10rem;
        padding: 7px 8px;
    }
    .footer {
        /* [perfect] */
        background-color: darkcyan;
        height: 14rem;
    }
}

@media (max-width: 500px) {
    html {
        font-size: 45%;
    }
    .sidebar {
        width: 80%;
        right: -100%;
    }
    .change .hamburger-menu {
        right: 38rem;
    }
    .service {
        width: 30rem;
    }
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.horiz {
    display: inline;
    padding: 8rem;
    flex-direction: row;
    /* or inline-flex */
}

.horiz p {
    max-width: 50rem;
}

.verti {
    grid-column: auto;
    /* or inline-flex */
}

.limited {
    width: 100%;
}

.padded {
    padding-top: 8rem;
    padding-right: 108px;
}

.margin-top {
    padding-top: 8rem;
}

.margin-4 {
    padding-top: 4rem;
}

.margin-2 {
    padding-top: 2rem;
}

.margin-2_presentation {
    background-color: black;
    padding-top: 2rem;
}

.margin-1 {
    padding-top: 1rem;
}

.padded8 {
    padding-left: 8rem;
    padding-right: 8rem;
}

.padded2 {
    padding-top: 2rem;
    width: 100%;
}

.padded3 {
    width: 50%;
}

.padded4 {
    padding-bottom: 8rem;
}

.padded5 {
    padding: 3rem;
}

.padded6 {
    padding: 3rem;
}

.center {
    width: 100%;
    padding-right: 10%;
    padding-left: 10%;
    /* padding-bottom: 8rem; */
    padding-bottom: 3rem;
    justify-content: center;
}

.center2 {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    /* padding-bottom: 8rem; */
    padding-bottom: 3rem;
    justify-items: right;
}

div.news_background {
    align-content: center;
    width: 37rem;
    height: 45rem;
    background-size: 100%;
    opacity: 1.0;
}

div.news_background:hover {
    opacity: 0.9;
}

div.news_box {
    width: 100%;
    background-size: 100% 100%;
    align-content: center;
    opacity: 0.9;
}

div.news_box:hover {
    opacity: 1.0;
}

div.news_box p {
    font-weight: normal;
    color: whitesmoke;
}

div.news_box img {
    width: 100%;
    object-fit: contain;
}

.reduced {
    height: 30%;
}

.header_2 {
    background-color: black;
    font-family: EXO;
    /* width: 100vh; */
    height: 100vh;
    /* height: 38vh; for smallest width */
    /* height: 75vh; */
    position: relative;
    perspective: 100rem;
    overflow: hidden;
}

.logo-line {
    padding-top: 2rem;
    /* padding-bottom: 2rem; */
    padding-bottom: 0rem;
    padding-left: 3rem;
    font-size: medium;
    background-color: black;
    color: whitesmoke;
    text-align: left;
}

.logo-line img {
    vertical-align: top;
    width: 20%;
}

.topnav {
    overflow: hidden;
    /* padding-left: 12rem; */
    /* padding-bottom: 3rem; */
    padding-bottom: 0.5rem;
    background-color: black;
    border-bottom: 5px solid #006b6b;
    margin-top: 0.5rem;
    /* margin-right: 6rem; */
    padding-right: 6rem;
}

.topnav a {
    font-family: 'gotham', sans-serif;
    float: left;
    color: whitesmoke;
    text-align: bottom;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1.8rem;
    margin-top: 0.75rem;
}

.topnav a:hover {
    color: darkcyan;
    font-weight: 700;
}

.topnav a.active {
    background-color: darkcyan;
    color: white;
    font-weight: 500;
}

.topnav img {
    vertical-align: middle;
    float: left;
    width: 15rem;
    margin-right: 2rem;
}

#example {
    position: relative;
}

#example-checkbox {
    display: none;
}

#example-checkbox:checked+#example:after {
    content: "Hide";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
}

#myBrochure {
    width: 100%;
    padding: 50px 0;
    text-align: center;
    background-color: black;
    display: none;
}

#myNews {
    width: 100%;
    padding: 50px 0;
    text-align: center;
    background-color: black;
    display: none;
}

.large-font {
    padding: 1rem;
    font-family: "Muli", serif;
    font-size: 5rem;
    font-weight: 300;
    color: goldenrod;
    background-color: black;
    text-align: left;
    border: none;
    outline: none;
}

.large-font:hover {
    color: #006b6b;
    background-color: black;
    cursor: pointer;
}

.toggle {
    display: inline-block;
    align-self: flex-end;
    height: 100px;
    width: 100px;
    background: url("images/chrevon-up-s.jpg");
}

.toggle.expanded {
    background: url("images/chrevon-right-s.jpg");
}

.topic-bar {
    background-color: #262626;
    align-self: flex-end;
}

.content {
    background-color: black;
}

.accordion_container {
    width: 90%;
    background-color: black;
}

.accordion_head {
    font-family: "Muli", serif;
    color: rgb(2, 177, 177);
    cursor: pointer;
    font-size: 5rem;
    margin: 0 0 1px 0;
    padding: 7px 11px;
    font-weight: 300;
}

.accordion_head:hover {
    color: goldenrod;
    font-weight: 300;
}

.accordion_body {
    background: black;
}

.accordion_body p {
    padding: 18px 5px;
    margin: 0px;
}

.plusminus {
    float: right;
}

html {
    background-color: black;
    width: 100%;
}

.bs-example {
    margin: 20px;
}

.explore {
    width: 100%;
}

.underlineNews {
    width: 12rem;
    height: 0.3rem;
    background-color: #ffd000ec;
}

.large-fontNews {
    width: 100%;
    padding: 1rem;
    font-family: "Muli", serif;
    font-size: 3rem;
    font-weight: 300;
    color: darkcyan;
    background-color: #262626;
    text-align: left;
    border: none;
    outline: none;
    border-radius: 0.5rem;
}

.large-fontNews:hover {
    color: gold;
    background-color: gray;
    cursor: pointer;
}

.white {
    text-align: center;
}

.pres {
    background-color: black;
    align-items: left;
    width: 100%;
}

.padded_down2 {
    padding-bottom: 2rem;
}

.padded_down2 img {
    width: 400px;
}

.padded_down_presentation {
    padding-bottom: 0%;
    /* do nothing */
}

.padded_down_presentation img {
    width: 400px;
}

.padded_down_presentation_r {
    padding-bottom: 0%;
    /* do nothing */
}

.padded_down_presentation_r img {
    width: 100%;
}

.skinny-envelope {
    align-content: center;
}

.skinny-column {
    padding-left: 5%;
    padding-right: 5%;
}

.explore_skinny {
    width: 100%;
}

#block-revo {
    display: none;
}

#block-specs {
    display: none;
}

#block-spfs {
    display: none;
}

#block-modpay {
    display: none;
}

#block-surve {
    display: none;
}

#block-search {
    display: none;
}

#block-log {
    display: none;
}

#block-sub {
    display: none;
}

#block-def {
    display: none;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}


/* Slideshow container */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}


/* Caption text */

.text {
    /* font-family: Verdana, sans-serif; */
    font-family: 'gotham', sans-serif;
    color: white;
    font-size: 5rem;
    padding: 8px 12px;
    position: absolute;
    top: 25rem;
    left: 2rem;
    width: 100%;
    font-weight: bolder;
    /* text-align: center; */
}

.text-black {
    /* font-family: Verdana, sans-serif; */
    font-family: 'gotham', sans-serif;
    color: black;
    font-size: 5rem;
    padding: 8px 12px;
    position: absolute;
    top: 25rem;
    left: 2rem;
    width: 100%;
    /* text-align: center; */
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 31rem;
    right: 2rem;
}


/* The dots/bullets/indicators */

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}


/* Fading animation */

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}