@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600&display=swap');

body {
    background-color: #333
}

*{
    font-family: 'Manrope', sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
}

.menu-top {
    height: 70px;
    width: auto;
    position: absolute;
    top: 15px;
}

.menu-top ul {
    list-style: none;
    display: flex;
    flex-direction: row;
}

.menu-top ul li {
    height: 60px;
    width: auto;
    font-size: 23px;
    margin: 0px 7%;
    display: flex;
    align-items: center;
}

.menu-top ul li:first-child {
    margin-left: 120px;
}

.menu-top ul li a {
    text-decoration: none;
    color: #b1afaf;
}

.menu-top ul li a:hover {
    color: #00cfcf;
    padding: 10px 0;
    font-weight: 900;
    border-bottom: 3px solid #00cfcf;
}

.menu-top ul .active a {
    color: #00cfcf;
    padding: 10px 0;
    font-weight: 900;
    border-bottom: 3px solid #00cfcf;
}

.menu-top ul:hover .active a {
    padding: none;
    border: none;
    color: #b1afaf;
}

.menu-top ul .active a:hover {
    color: #00cfcf;
    padding: 10px 0;
    font-weight: 900;
    border-bottom: 3px solid #00cfcf;
}

.normal-text {
    padding-top: 7%;
    width:800px; 
    margin:0 auto;
    color: #ebe8e8;
}

.normal-text h1 {
    text-align: center;
    font-size: 45px;
}

.left-box {
    background-color: white;
    padding: 10px;
    float: left;
    width: 25%;
    box-shadow: 3px 3px 3px 2px rgba(0, 207, 207, 0.404);
    margin-right: 23px;
    border-radius: 25px;
}

.center-box {
    background-color: white;
    padding: 10px;
    float: left;
    width: 25%;
    box-shadow: 3px 3px 3px 2px rgba(0, 207, 207, 0.404);
    margin-right: 23px;
    border-radius: 25px;
}

.right-box {
    background-color: white;
    padding: 10px;
    float: left;
    width: 25%;
    box-shadow: 3px 3px 3px 2px rgba(0, 207, 207, 0.404);
    margin-right: 23px;
    border-radius: 25px;
    
}

.box {
    padding: 8px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    left:12%;
}

img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

#gimbal-second:hover {
    content: url('/img/gimbal.png');
}

#steadycam-second:hover {
    content: url('/img/Fly-Steadycam.png');
}

#easyrig-second:hover {
    content: url('/img/easyrig.png');
}

.zoom {
  padding: 50px;
  transition: transform .3s;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.8); /* zoom 180% */
}