* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

a, a:hover, a:focus {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

:root {
    --mainColor: #1D4289;
    --lightColor: #e76970;
}

body {
    padding: 0%;
}

.Wraper {
    max-width: 2500px;
    margin: auto;
}

.bg-main {
    background-color: var(--mainColor) !important;
}

.text-main {
    color: var(--mainColor) !important;
}

.text-u-h:hover {
    text-decoration: underline !important;
}

header {
    border-radius: 0px 0px 30px 30px;
}

.font-10 {
    font-size: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-18 {
    font-size: 18px;
}

.font-21 {
    font-size: 21px;
}

.font-24 {
    font-size: 24px;
}

.font-50 {
    font-size: 50px;
}

.bg-black {
    background-color: #000000;
}

nav>ul>li:hover .li-child {
    display: block !important;
}

.w-200 {
    width: 200%;
}

.w-10 {
    width: 10%;
}

.w-35 {
    width: 35%;
}

.w-80 {
    width: 80%;
}

p {
    margin: 0%;
}

.st-box-c:hover {
    background-color: #F6F4F5;
    cursor: pointer;
}

.bg-light-gray {
    background-color: #F4F5FA;
}

.rounded-larg {
    border-radius: 20px;
}

.pointer {
    cursor: pointer;
}

#search {
    border: 2px solid lightgray !important;
}

#search:focus-visible {
    border: 2px solid lightgray !important;
    outline: none;
}

.img-child-box {
    width: 30%;
    display: inline-block;
    border-radius: 10px;
    border: .5px solid lightgray;
    margin-bottom: 10px;
    cursor: pointer;
}

.news-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 10px;
    font-weight: bold;
}

.mx-10 {
    margin-left: 10% !important;
    margin-right: 10% !important;
}

.a-main-text {
    color: var(--mainColor);
}

.a-main-text:hover {
    color: rgb(47, 47, 218);
}

footer {
    border-radius: 30px 30px 0px 0px;
}

@media screen and (max-width:992px) {
    .nav-res {
        position: fixed;
        top: 0%;
        left: 101%;
        width: 100vw;
        height: 100vh;
        background-color: white;
        overflow-y: auto;
        z-index: 99999;
        transition: all 1s;
    }
    .leftSlide {
        left: 0% !important;
    }
    .nav-res>nav>ul {
        flex-direction: column;
        white-space: nowrap;
        align-content: space-between;
        width: 100%;
        padding-top: 70px;
    }
    .nav-res>nav>ul>li {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        color: var(--mainColor) !important;
    }
    .nav-res>nav>ul>li>a {
        color: var(--mainColor) !important;
    }
    .nav-res>nav>ul>li>i {
        color: var(--mainColor) !important;
    }
    .w-200 {
        width: 100%;
    }
    .nav-res>nav>ul>li>ul {
        position: static !important;
        background-color: var(--mainColor);
    }
    .nav-res>nav>ul>li>ul>li {
        margin-top: 10px;
    }
    .w-md-20 {
        width: 20% !important;
    }
}

@media screen and (max-width:764px) {
    .img-child-box {
        width: 48%;
    }
    .w-sm-50 {
        width: 50% !important;
    }
}

@media screen and (max-width:450px) {
    .img-child-box {
        width: 98%;
    }
    .font-sm-35 {
        font-size: 35px;
    }
}

@media screen and (max-width:370px) {
    .font-m-18 {
        font-size: 18px !important;
    }
    .w-m-30 {
        width: 30% !important;
    }
    .w-m-50 {
        width: 50% !important;
    }
    .w-35 {
        width: 50% !important;
    }
    .font-m-11 {
        font-size: 11px !important;
    }
}

@media screen and (max-width:2600px) and (min-width:1500px) {
    .container {
        max-width: 88% !important;
    }
}

/* checkbutton start */

.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* modification */

.hover-box{
    transition: all .5s;
}

.hover-box:hover {
    margin-top: 5px !important;
    box-shadow: 0 3px 15px 2px rgb(0 0 0 / 55%);
}