html,body,*{
    margin: 0;
    padding: 0;
}
:root{
    --bgcolor:#ff4500;
}
html,
body {
    min-width: 1280px;
}
body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff
}

body * {
    box-sizing: border-box;
    flex-shrink: 0;
}

*, ::after, ::before {
     box-sizing: border-box;
 }

a, a:active, a:focus, a:hover {
    color: #000;
    text-decoration: none;
}

input {
    background-color: transparent;
    border: 0;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}


a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
    color: inherit;
}

button:active {
    opacity: 0.6;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}
ul,li{
    list-style: none;
    padding: 0;
    margin: 0;
}

.flex-1{
    flex: 1;
}


img {
    width: 100%;
    display: block;
}

.page {
    position: relative;
    overflow: hidden;
}

.header {
    background-color: rgba(255, 255, 255, 1);
    position: sticky;
    z-index: 100;
    top: 0;
}

.header>div {
    height: 60px;
    margin: 0 auto;
}

.logo-container {
    width: 200px;
    align-items: center;
}

.header .menu {
    justify-content: space-around;
    height: 100%;
}


.header .menu .menu-item {
    flex: 1;
    text-align: center;
    padding: 5px;
    cursor: pointer;
    color: #444;
    font-size: 14px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    background: linear-gradient(to right, #ff4500, #ff4500) no-repeat center bottom;
    background-size: 0 1px;
    background-origin: content-box;
}



.header .menu-item>a{
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.header .menu .menu-item:hover{
    color: rgba(255, 69, 0, 1);
    background-size: 50% 1px;
}


.header .menu .menu-item a{
   color: inherit;
}
.header .menu .menu-item a:hover{
    color: inherit;
    text-decoration: none;
}
.header .menu .menu-item.active {
    color: rgba(255, 69, 0, 1);
    background-size: 50% 1px;
}


.header .logo {
    width: 100px;
}

.header-cover img {
    width: 100%;
}



.section-title {
    overflow-wrap: break-word;
    color: rgba(44, 44, 44, 1);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.section-title.white {
    color: #fff;
}

.section-separator {
    background-color: rgba(255, 69, 0, 1);
    width: 100px;
    height: 10px;
    margin: 0 auto;
}

.section-separator.white {
    background-color: rgba(255, 255, 255, 1);
}

.mb-50 {
    margin-bottom: 50px;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.row-cols-3>* {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}



.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container,.container-sm {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container,.container-md,.container-sm {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container,.container-lg,.container-md,.container-sm {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container,.container-lg,.container-md,.container-sm,.container-xl {
        max-width:1140px
    }
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    line-height: 1.5;
}


.footer {
    background-color: rgba(5, 9, 29, 1);
    padding: 50px 0;
    justify-content: center;
    font-size: 14px;
}

.footer .logo {
    padding: 20px;
    width: 160px;
}

.footer .content {
    margin-left: 15px;
    margin-block-start: -30px;
}

.footer .content a {
    transition: 0.5s;
    color: #9d9d9d;
}

.footer .content a:hover {
    color: #fff;
    text-decoration: none;
}

.footer .content .row:first-child {
    color: #ff4400;
}

.footer .subscribe-container .qrcode-item {
    padding: 10px;
    width: 100px;
}

.qrcode-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #F7F7F7;
    text-align: center;
    text-decoration: none;

}
a.qrcode-item:hover{
    color: inherit;
    text-decoration: none;
}

.footer .col-4 {
    margin-top: 8px;
}
.footer .copyright{
    border-top: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    color: #9d9d9d;
    text-align: center;
}

 i svg{
    width: 1em;
    height: 1em;
}


.video-icon-cda {
    height: 400px;
}


.video-icon-cda a {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100%;
    color: #FF4500;
    background: #fff;
    display: flex;
    text-align: center;
    position: relative;
    -webkit-animation: hassan 1s linear infinite;
    animation: hassan 1.5s linear infinite;
    -webkit-transition: .5s;
    transition: .5s;
    font-size: 28px;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.video-icon-cda svg{
    display: block;
}

@keyframes hassan {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.4)
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 40px rgba(255, 255, 255, 0)
    }
}

