a {
    text-decoration: none;
}
li {
    list-style: none;
}
#imgLogoHeader{

}
/* NAVBAR STYLING STARTS */
.navbar {
    z-index: 9;
    /*position: fixed;*/
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
}
.nav-links a {
    color: #fff;
    -webkit-transition: color 1s; /* For Safari 3.0 to 6.0 */
    transition: color 1s; /* For modern browsers */
}
.nav-links a:hover {
    color: gray;
    text-decoration: underline;
}
.nav-links{
    margin-bottom: 0px !important;
}

/* LOGO */
.logo {
    font-size: 32px;
}
/* NAVBAR MENU */
.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}
.menu li:hover {
    border-radius: 5px;
    transition: 0.3s ease;
}
.menu li {
    padding: 5px 14px;
}
/* DROPDOWN MENU */
.services {
    position: relative; 
    cursor: pointer;
}
.dropdown {
    background-color: rgba(0, 0, 0, 1);
    padding: 2px 2px 2px 2px;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    /*top: 35px;*/
}
.dropdown li + li {
    /*margin-top: 10px;*/
}
.dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
}
.dropdown li:hover {
    background-color: transparent;
}
.services:hover .dropdown {
    display: block;
}

/*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type=checkbox]{
    display: none;
} 
/*HAMBURGER MENU*/
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
    cursor: pointer;
}
/* APPLYING MEDIA QUERIES */
@media (max-width: 600px) {
    .menu {
        top: 80px !important;
    }
    .navbar {
        height: 80px;
    }
    #imgLogoHeader{
        height: 30px !important;
    }
}
@media (max-width: 1230px) {
    #hiddeLiMed{
        display: none;
    }
} 
@media (max-width: 995px) {
    .menu { 
        display: none;
        position: absolute;
        background-color: rgba(0, 0, 0, 1);
        right: 0;
        top: 115px;
        left: 0;
        text-align: center;
        padding: 16px 0;
    }
    .menu li:hover {
        display: inline-block;
    }
    .menu li + li {
        /*margin-top: 12px;*/
    }
    input[type=checkbox]:checked ~ .menu{
        display: block;
    }
    .hamburger {
        display: block;
    }
    .dropdown {
        left: 50%;
        top: 30px;
        transform: translateX(35%);
    }
    .dropdown li:hover {
    }
    #hiddeLi{
        display: none;
    }
}
.h75{
    height: 75px;
}
.containerInfoModel{
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, #3a393a  60%, #efeff0 40%);
}
.fPicToolbar{
    width: 160px;
    height: 198px;
    border-radius: 10px !important;
    margin-top: 1px;
    object-fit: cover;
}

@media(max-width: 500px){
    .fPicToolbar{
        width: 120px;
        height: 148px;
    }
}
.h120{
    height: 120px;
}
.h80{
    height: 80px;
}
.paddingZero{
    padding: 0px !important;
}
.containerBtnInit{
    cursor: pointer;
    border-left: 1px solid  rgba(255, 255, 255, .2);;
    border-right: 1px solid  rgba(255, 255, 255, .2);;
    width: 100px;
    text-align: center;  
    -webkit-transition: color 1s; /* For Safari 3.0 to 6.0 */
    transition: color 1s; /* For modern browsers */
}
.containerBtnInit:hover{
    background: #604A7B;
}
.containerBtnEnd{
    cursor: pointer;
    border-right: 1px solid  rgba(255, 255, 255, .2);;
    width: 100px;
    text-align: center;  
    -webkit-transition: color 1s; /* For Safari 3.0 to 6.0 */
    transition: color 1s; /* For modern browsers */
}
.containerBtnEnd:hover{
    background: #604A7B;
}
.imageBtn{
    font-size: 40px;
    color: white;
}

.labelBtn{
    font-size: 18px;
    color: white;
    font-weight: bold;
}
@media (max-width: 995px) {
.labelBtn{
    font-size: 14px;
    color: white;
    font-weight: bold;
}
}    
/*SLIDER*/
#slider {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
}

#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}

#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 600px;
  height: 460px;
  background: transparent;
  text-align: center;
  /*line-height: 300px;*/
}

a.control_prev, a.control_next {
  position: absolute;
  top: 50%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background: #fe008f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
}

a.control_prev:hover, a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}

a.control_prev {
  border-radius: 0 2px 2px 0;
}

a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}

.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
}

