header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background-color: white;
}

header a {
    color: white;
    text-decoration: none;
}


.top_header {
    position: relative;
    width: 100%;
    display: block;
    height: 100px;
}
.logo_holder {
    position: relative;
    
    width: 70%;
    height: 100%;
}
.logo_holder img {
    position: absolute;
    transform: translateY(-50%);
    left:5%;
    top: 50%;
    height: 80%;
}

.social_media_holder {
    position: relative;
    right: 0;
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.social_media_holder ul {
    list-style: none;
    display: inline-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
}

.social_media_holder ul li img{
    width: 20px;
    margin: 5px;
    cursor: pointer;
}



.arrow-up {
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--default_light_blue); /* You can change the color here */
}


.nav-dropdown {
    position: absolute;
    width: 170px;
    left: 50%;
    top: 19px;
    transform: translateX(-50%);
    display: none;
}

.nav_dropdown_holder{
    position: relative;
    width: 100%;
    background-color: var(--default_light_blue);
    left: 50%;
    border-radius: 5px;
    top: 16px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%);
}


.nav-dropdown ul {
    list-style: none;
    padding: 15px 10px;
}

.nav-dropdown ul li{
    padding: 5px 0px;
    
}

.nav-dropdown ul li:hover {
    text-decoration: underline;

}





/*Mobile menu*/
.mobile-menu{height: 100vh; width: 100%; z-index: 995; position: fixed; background: white; opacity: .95; right: -100%; transition: .2s;}

.active{right: 0%;}

.main_mobile_ul{ position: relative; color: black;margin-left: 10%; margin-top: 100px; font-size: 26px; list-style-image: url("../Content/x1-light.svg"); ;}

.main_mobile_ul a{color: black; text-decoration: none;}

.main_mobile_ul li{padding: 20px 0; cursor: pointer;}

.mobile_nav_dropdown {
    padding-left: 20px;
    display: none;
}

.hamburguer-bt {
  display: block;
  position: absolute;
  z-index: 999;
  cursor: pointer;
  height: 50px;
  right: 3%;
  top: 30px;
  width: 50px;
  transition: all .2s ease-out;
}

.hamburguer-bt:focus{
  outline: none;
}

.hamburguer-bt .hamburguer-bt__stripe {
  width: 100%;
  height: 10px;
  background: black;
  margin: 4px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 5px;
}

.hamburguer-bt__stripe:focus{
  outline:none;
}

.hamburguer-bt.on .hamburguer-bt__stripe__top {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburguer-bt.on .hamburguer-bt__stripe__middle {
  opacity: 0;
}

.hamburguer-bt.on .hamburguer-bt__stripe__bottom {
  transform: rotate(-45deg) translate(10px, -10px);
}


/*Nav header*/
.nav_header {
    width: 100%;
    height: 80px;
    background-color: var(--default_dark_blue);
    top: 100px;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
}

.opts_header_holder {
    position: relative;
    display: inline-flex;
    padding-bottom: 5px;
    
}
.opts_header_holder::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px; /* Adjust the height of the line as needed */
    background-color: var(--default_light_blue); /* Adjust the color of the line as needed */
}

.nav_opt {
    position: relative;
    margin-left:10px;
    margin-right:10px;
}

.nav_opt:hover {
    cursor: pointer;

}

.nav_opt:hover::after {
    width: 100%;
}


.nav_opt::after{
    content: "";
    position: absolute;
    z-index: 9999;
    width: 0%;
    top: calc(100% + 1.5px);
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px; /* Adjust the height of the line as needed */
    background-color: var(--default_light_blue); /* Adjust the color of the line as needed */
    transition: all 0.1s ease-in-out;
    border-radius: 2px;
}


@media only screen and (min-width: 750px) {

    .logo_holder {
        position: absolute;
        width: 100%;
    }

    .logo_holder img {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .social_media_holder {
        position: absolute;
        height: 100%;
        width: 33.3%;
    }

    .social_media_holder {
        width: 33.3%;
        height: 100%;
    }

    /*Menu mobile*/
    .hamburguer-bt{display: none;}

    /*Nav header*/
    .nav_header {
        display: flex;
    }
}


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}