*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #000;
}

p{
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}

.navbar-dark .navbar-nav .nav-link{
    color: #000;
}

.nav-link:hover{
    color: #333;
}

.father-dropdown{
    /* position: absolute; */
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
}

.dropdown-menus{
    position: absolute;
    background-color: #f2f2f2;
    color: #000;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 2px 2px 6px #333;
    width: 0;
    height: 0;
    overflow: hidden;
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    opacity: 0;
    z-index: 9;
}

.father-dropdown:hover .dropdown-menus{
    opacity: 1;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
}

.father-dropdown ul{
    padding: 0;
    margin: 0;
}

.dropdown-menus li{
    list-style: none;
    color: #000;
    padding: 10px 20px;
    text-align: center;
    margin: 0;
    border-radius: 5px;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.dropdown-menus li:hover{
    background-color: wheat;
}

.swiper-wrapper img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.row-cards .card{
    background-image: url(../img/bg/bg.png);
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    gap: 2rem;
    padding: 30px;
}

.row-cards .card:hover{
    transition: .5s ease-in-out;
    background-image: url(../img/bg/hover.png);
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
}

.row-cards h2{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.row-cards h2::after{
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #333;
}

.btn-outline-dark{
    padding: 10px 35px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.row-justify p{
    text-align: justify;
}

.slider-service{
    display: flex;
    gap: 15px;
}

.circle-img{
    background-color: #f2f2f2;
    width: 64px;
    height: 64px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .5s ease-in;
    -webkit-transition: .5s ease-in;
    -moz-transition: .5s ease-in;
    -ms-transition: .5s ease-in;
    -o-transition: .5s ease-in;
}

.circle-img:hover{
    background-color: #000;
}

.circle-img img{
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
}

.text-service{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-service h3{
    position: relative;
}

.swiper-slide{
    display: flex;
    flex-direction: column;
}

.text-service h3::after{
    content: "";
    position: absolute;
    margin-top: 30px;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: #000;
}

.gallery-slide .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
  }

.gallery-slide .swiper-slide-active{
    border: 10px solid #000;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    backface-visibility: hidden;
}

.gallery-slide .swiper-slide-active::before{
    content: url(../img/icon/gallery-spae-one.png);
    position: absolute;
    bottom: 0;
    z-index: 9999;
    display: block;
}

.gallery-slide .swiper-slide-active::after{
    content: url(../img/icon/gallery-spae-two.png);
    position: absolute;
    top: 0;
}

.row-gallery a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* max-width: 350px; */
    width: 100%;
    height: 250px;
}

.row-gallery a::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background-color: rgba(238, 5, 72, 0.6);
    overflow: hidden;
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
}

.row-gallery a:hover:after{
    height: 100%;
}

.row-gallery a img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}