* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}
body {
    height: 100vh;
}
/* Global  */
.title {
    width: 680px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    font-size: 150px;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
}
/* Global  */

.navbar {
    background-color: rgba(255, 255, 255, 0.361);
    min-height: 100px;
    font-weight: bold;
    padding: 40px;
}
@media (min-width: 992px) {
    .navbar-nav {
        margin: auto;
    }
}
@media (max-width: 992px) {
    .navbar-nav .nav-item {
        margin-left: 0px !important;
    }
    .navbar-nav {
        margin-top: 40px;
    }
}
.navbar .navbar-brand img {
    width: 100px;
    height: 80px;
    position: absolute;
    top: 0;
}
.navbar .navbar-brand .hkpro {
    width: 250px ;
}
.navbar-nav .nav-item {
    font-size: 40px;
    margin-left: 150px;
}
.navbar .dropdown-menu {
    width: 299px;
    text-align: center;
    padding: 16px 14px;
    font-size: 25px;
}
.landing {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50% , -50%);
}
.section-padding {
    padding: 100px 0;
}
.carousel-item {
    height: 100vh;
    min-height: 300px;
}
.carousel-caption {
    bottom: 350px !important; 
    z-index: 2;
}
.carousel-caption h5 {
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}
.carousel-caption p {
    width: 60%;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
}
.carousel-inner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* ====== responsive css ======  */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carousel-caption {
        bottom: 350px;
    }
    .carousel-caption p {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .navbar {
        text-align: center !important;
    }
    .carousel-caption {
        bottom: 350px !important;
    }
    .carousel-caption h5 {
        font-size: 27px !important;
    }
    .carousel-caption a {
        padding: 10px 15px !important;
    }
    .carousel-caption p {
        width: 100% !important;
        line-height: 1.6 !important;
        font-size: 12px !important;
    }
}
/* ====== responsive css ======  */

/* Start Boards  */
.holder {
    background-image: url(imgs/background.jfif);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 0.8;
}
.boards {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(350px , 1fr));
    gap: 20px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .title {
        font-size: 50px;
    }
}
.boards .board {
    width: 100%;
    height: 400px;
    cursor: pointer;
}
.boards .board img {
    width: 100%;
    height: 300px;
}
.boards .board h3 {
    margin-top: 20px;
    font-weight: bold;
}
.boards .board a {
    text-decoration: none;
    color: black;
}
.boards .board p {
    color: grey;
    font-size: 20px;
}
.boards .board p span {
    font-weight: bold;
    color: black;
    font-size: 20px;
    margin-right: 10px;
}
.search {
    width: 450px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search input[type="text"] {
    width: 300px;
    height: 50px;
    border: none;
    font-size: 25px;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
}
.search i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 25px;
    background-color: #ddd;
    cursor: pointer;
}

/* Product One  */
.product {
    width: 100%;
    min-height: 100vh;
    display: flex;
    margin-top: 126px;
}
@media (max-width: 992px) {
    .product {
        flex-direction: column;
    }
}
.product img {
    min-height: 100%;
    width: 70%;
}
@media (max-width: 992px) {
    .product img {
        width: 100%;
    }
}
.product .information {
    font-family: Arial, Helvetica, sans-serif;
    padding: 40px;
    width: 50%;
    padding-left: 60px;
}
@media (max-width: 992px) {
    .product .information {
        width: 100%;
    }
}
.product .information .head-1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
.product .information .title-p {
    margin-bottom: 40px;
    font-size: 20px;
}
.product .information .head-1 .light,
.product .information .name,
.product .information .text {
    color: #3333339c;
}
.product .information .group {
    font-weight: bold;
    margin-top: 10px;
    margin: 40px 0;
}

.product .information .text {
    font-size: 20px;
    line-height: 1.8;
    margin: 40px 0;
}
/* End Boards  */