*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #00000000;
}

.vedio
{
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 0px;
	height: 0;
}

/*section video
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/

.vedio iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.vedio .navigation
{
    position: absolute;
    bottom: -76px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vedio .navigation li
{
    list-style: none;
    cursor: pointer;
    margin: 0 1px;
    border-radius: 4px;
    background: #fff;
    padding: 3px 3px 0;
    opacity: 0.4;
    transition: 0.5s;
}

.vedio .navigation li:hover
{
    opacity: 1;
}

.vedio .navigation li img:hover
{
    width: 100px;
    opacity: 1;
}

.vedio .navigation li img
{
    width: 80px;
    transition: 0.3s;
}

.tooltop span
{
    position: absolute;
    left: 50%;
    /*transform: translateX(-50%);*/
    visibility: visible;
    opacity: 0.8;
    display: inline-block;
    color: #4C7B9C;
}

.tooltop .tooltoptext
{
    font-size: 1rem;
    visibility: hidden;
    position: absolute;
    width: 70%;
    background-color: #ffffff00;
    color: #4C7B9C;
    text-align: center;
    padding: 5px 0;
    border-radius: 4px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.7s;
}

.tooltop:hover .tooltoptext{
    visibility: visible;
    opacity: 0.8;
}

.tooltop:click .tooltoptext{
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s;
}

.tooltop-right
{
  top: -5px;
  left: 125%;  
}

.tooltop-right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent  #11447d transparent transparent;
}

.tooltop-bottom {
  top: 105%;
  left: 50%;  
  margin-left: -35%;
}

.tooltop-bottom::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent  transparent transparent;
}

.tooltop-top {
  bottom: 125%;
  left: 50%;  
  margin-left: -60px;
}

.tooltop-top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #11447d transparent transparent transparent;
}

.tooltop-left {
  top: -5px;
  bottom:auto;
  right: 128%;  
}

.tooltop-left::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent  #11447d;
}

@media screen and (max-width: 525px) {

    .vedio .navigation
    {
        position: absolute;
        bottom: -65px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .vedio .navigation li img:hover
    {
        width: 73px;
        opacity: 1;
    }
    .vedio .navigation li img
    {
        width: 65px;
        transition: 0.5s;
    }
}

@media screen and (max-width: 430px) {

    .vedio .navigation
    {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .vedio .navigation li img:hover
    {
        width: 50px;
        opacity: 1;
    }
    .vedio .navigation li img
    {
        width: 45px;
        transition: 0.5s;
    }

}