@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@600&display=swap');
body {
    padding: 0px;
    margin: 0px;
}

.background-img {
    background-image: url(../images/background.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-position: center center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 69px;
    height: 39px;
    margin-top: 8px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0a2c48;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 31px;
    width: 31px;
    right: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #8ec344;
}

input:focus+.slider {
    box-shadow: 0 0 1px #8ec344;
}

input:checked+.slider:before {
    -webkit-transform: translateX(-29px);
    -ms-transform: translateX(-29px);
    transform: translateX(-29px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.box-btn {
    padding: 0px 50px;
    height: 100px;
    background-color: #13436c;
    border-radius: 100px;
    margin-top: -100px;
}

.box-btn h1 {
    color: #fff;
    font-size: 50px;
    margin-left: 20px;
    margin-bottom: 0px;
    margin-top: 0px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.logo-icon {
    width: 100%;
}

.logo-icon img {
    width: 120px;
    text-align: center;
    margin-top: 90px;
}

.content {
    width: 100%;
    height: 55vh;
}

.video-box {
    background-color: #002D4B;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
}

.video-box video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    outline: none;
}

.close-icon {
    background-color: #042F4A;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 30px;
    right: 30px;
    border-radius: 100%;
    cursor: pointer;
}

.close-icon img {
    width: 30%;
}