body {
    overflow-x: hidden;
    color: #202020;
    font-size: 15px;
    line-height: 1.9;
    background: #eeeeee;
}
* {
    outline: 0 none !important;
}
img {
    max-width: 100%;
}
svg {
    max-width: 100%;
}

a {
    color: #ef9208;
    text-decoration: none !important;
    -webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}
a:hover, a:focus {
    color: #ef9208;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #24292e;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
label {
    font-weight: 400;
}
button {
    background: none;
    border: 0 none !important;
}
iframe {
    width: 100%;
    border: 0 none;
}
video {
    width: 100%;
}
video::-webkit-media-controls-fullscreen-button {
    display: none;
}
i {
    vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 10px;
}

.h1, h1 {
    font-size: 30px;
}
.h2, h2 {
    font-size: 28px;
}
.h3, h3 {
    font-size: 26px;
}
.h4, h4 {
    font-size: 24px;
}
.h5, h5 {
    font-size: 22px;
}
.h6, h6 {
    font-size: 20px;
}

.font-300 {
    font-weight: 300;
}
.font-400 {
    font-weight: 400;
}
b, .font-600 {
    font-weight: 500;
}
strong, .font-700 {
    font-weight: 700;
}
.font-900 {
    font-weight: 900;
}

.font-14 {
    font-size: 14px;
}
.font-17 {
    font-size: 17px;
}
.font-20 {
    font-size: 20px;
}

.color-orange {
    color: #fba915;
}
.color-111 {
    color: #111;
}
.color-666 {
    color: #666;
}
.color-aaa {
    color: #aaa;
}

label.error {
    position: absolute;
    top: 100%;
    font-size: 12px;
    color: #ff2c2c;
    left: 15px;
}


/*============== form start ==============*/
.form-group {
    margin: 0 0 25px 0;
}
.form-group-two {
    margin: 0 -8px;
}
.form-group-two .form-group {
    display: inline-block;
    width: 49.5%;
    padding: 0 8px;
}
.form-group-three {
    margin: 0 -8px;
}
.form-group-three .form-group {
    display: inline-block;
    width: 33%;
    padding: 0 8px;
}
.control-label {
    display: block;
    color: #86919e;
}
.form-control {
    background: #eceef7;
    border-color: #eceef7;
    height: 42px;
    font-size: 15px;
    box-shadow: none;
}
textarea.form-control {
    height: 100px;
}
.form-action {
    text-align: center;
}
.button-btn {
    background: #0e65c7;
    border: 0 none;
    color: #fff;
    font-weight: 500;
    padding: 7px 24px;
    border-radius: 33px;
    min-width: 110px;
    font-size: 15px;
    display: inline-block;
    text-align: center;
}
.button-btn:hover, .button-btn:focus {
    background: #0e65c7;
    color: #fff;
}
.cancel-btn {
    background: #ffebeb;
    color: #202020;
}
.cancel-btn:hover, .cancel-btn:focus {
    background: #ffebeb;
    color: #FF5722;
}

.button-btn + .button-btn {
    margin: 0 0 0 10px;
}

.dropdown-menu {
    border: 0 none;
}
.dropdown-menu>li>a {
    font-size: 15px;
    padding: 10px 20px;
}

input[type=checkbox], input[type=radio] {
    margin: 8px 0 0;
}


.bootstrap-select.form-control {
    width: 100% !important;
    height: 80px;
}
.bootstrap-select .btn {
    padding: 10px 12px;
    font-size: 15px;
}
.bootstrap-select>.dropdown-toggle {
    height: 100%;
}
.bootstrap-select .dropdown-menu {
    right: 0;
}

.form-section {
    margin: 50px auto;
    max-width: 100%;
}
.form-section-400 {
    width: 400px;
}
.form-section-1100 {
    width: 1100px;
}
.form-section-1000 {
    width: 1000px;
}
.form-section-inner {
    background: #fff;
    padding: 60px 50px;
}
.form-section-title {
    text-align: center;
    padding: 0 0 15px;
    font-weight: 900;
    color: #1a58a1;
}
.form-section-sub-title {
    font-weight: 400;
    padding: 20px 0 0;
}
.login-form .form-action .button-btn {
    float: left;
}
.forgot-password {
    margin: 5px 0 0;
    float: right;
}
.forgot-password a {
    color: #999;
}


.myradio {
    position: relative;
    margin: 0 15px 5px 0;
    display: inline-block;
    vertical-align: top;
}
.myradio label {
    border-radius: 4px;
    padding: 0 0 0 24px;
}
.myradio input[type="radio"] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}
.myradio label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #ccc;
    border-radius: 50px;
}
.myradio [type="radio"]:checked + label:before {
    border-color: #fa9d1f;
    background: #fa9d1f;
}
.myradio [type="radio"]:checked + label:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 12px;
    left: 5px;
    border: 1.5px solid #ffffff;
    border-top: none;
    border-right: none;
    background: transparent;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mycheck {
    position: relative;
    margin: 0 15px 5px 0;
    display: inline-block;
    vertical-align: top;
}
.mycheck label {
    border-radius: 4px;
    padding: 0 0 0 24px;
}
.mycheck input[type="checkbox"] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
}
.mycheck label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #ccc;
    border-radius: 3px;
}
.mycheck [type="checkbox"]:checked + label:before {
    border-color: #fa9d1f;
    background: #fa9d1f;
}
.mycheck [type="checkbox"]:checked + label:after {
    content: '';
    width: 9px;
    height: 5px;
    position: absolute;
    top: 12px;
    left: 5px;
    border: 1.5px solid #ffffff;
    border-top: none;
    border-right: none;
    background: transparent;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



.custom-file-input {
    position: relative;
    display: inline-block;
}
.custom-file-input input[type=file] {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.custom-file-input label {
    display: inline-block;
    padding: 6px 18px;
    background: #1a58a1;
    color: #fff;
    border-radius: 5px;
}
.custom-file-input label i {
    padding: 0 8px 0 0;
}
.preview-img {
    display: none;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 0 0 0 20px;
    border-radius: 10px;
}
/*============== form end ==============*/

/*============== common start ==============*/
.page-container {
    padding: 45px 245px 120px 245px;
}

.list-style li {
    position: relative;
    padding: 0 0 12px 20px;
}
.list-style li:before {
    content: "\f061";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
}

.custom-tabs {
    text-align: center;
}
.nav-tabs {
    background: #fff;
    border: 0 none;
    border-radius: 30px;
}
.nav-tabs>li>a {
    border: 0 none;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 30px;
    color: #555;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    border: 0 none;
    background: #ef9208;
    color: #202020;
}
.nav>li>a:focus, .nav>li>a:hover {
    background: #fff;
}

.custom-tab-content {
    background: #fff;
    padding: 50px;
    margin: 15px 0 0;
}
/*============== common end ==============*/

/*============== header start ==============*/
.left-bar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 160px;
    background: #fff;
    z-index: 1;
}
.right-bar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 160px;
    background: #fff;
    z-index: 1;
}


.site-header {
    position: fixed;
    left: 96px;
    top: 50px;
    z-index: 1;
}

.logo span {
    display: none;
    width: 100px;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.7;
    padding: 10px 0 0 15px;
    color: #202020;
}
.logo img.logo-text {
    display: block;
    margin: 14px 0 0 18px;
}


.menu-toggle {
    background: #202020;
    color: #fff;
    padding: 12px 5px 25px 6px;
    cursor: pointer;
    display: inline-block;
    margin: 100px 0 0 30px;
}
.menu-toggle span {
    background: #ffffff;
    height: 2px;
    width: 36px;
    display: inline-block;
    position: relative;
    top: -13px;
}
.menu-toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: #ffffff;
    height: 2px;
    top: 10px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.menu-toggle span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: #ffffff;
    height: 2px;
    top: 20px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.menu-toggle b {
    display: block;
    transform: rotate(-90deg);
    margin: 20px 2px 0 0;
}



.menu-toggle.active span {
    background: none;
}
.menu-toggle.active span:before {
    width: 35px;
    transform: rotate(45deg);
    top: 14px;
}
.menu-toggle.active span:after {
    width: 35px;
    transform: rotate(-45deg);
    top: 14px;
}



.menu-list {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: -5;
    opacity: 0;
    -webkit-transition: left 200ms ease, opacity 100ms ease;
    -moz-transition: left 200ms ease, opacity 100ms ease;
    -ms-transition: left 200ms ease, opacity 100ms ease;
    -o-transition: left 200ms ease, opacity 100ms ease;
    transition: left 200ms ease, opacity 100ms ease;
}
.menu-list-inner {
    height: 100%;
    overflow: auto;
    padding: 10px;
    padding-right: 160px;
}
.menu-list-inner-inner {
    margin: 0 auto;
    padding: 60px 0 0;
    width: 1100px;
    max-width: 100%;
    display: flex;
    justify-content: center;
}
.menu-list-left {
    width: 400px;
    max-width: 100%;
}
.menu-list-inner > ul {
    margin-top: -50px;
}
.menu-list li a {
    padding: 5px 0;
    display: block;
    color: #202020;
    font-size: 32px;
}
.menu-list li a.active {
    color: #f5ca2a;
}
.menu-list .dropdown-menu {
    position: relative;
    box-shadow: none;
    padding: 0 0 15px 0;
    background: none;
    float: none;
}
.menu-list .dropdown-menu>li>a {
    font-size: 28px;
    color: #999;
    display: inline-block;
    padding: 8px 25px;
}

.menu-list-right {
    width: 415px;
    max-width: 100%;
    font-size: 20px;
    padding: 25px 0 0;
}
.menu-list-right h1 {
    font-size: 30px;
}
.menu-list-right h4 {
    padding: 25px 0 10px;
}

.menu-list.active {
    left: 160px;
    right: 0;
    z-index: 0;
    opacity: 1;
}
body.active {
    overflow: hidden;
    padding-right: 17px;
}
body.active .page-container {
    filter: blur(3px);
    position: relative;
    z-index: -1;
}


.login-icons {
    position: fixed;
    right: 0;
    bottom: 34%;
    z-index: 3;
    min-width: 180px;
}
.login-icons a {
    color: #202020;
    padding: 6px 12px;
    background: #fba21b;
    display: inline-block;
    min-width: 149px;
    text-align: center;
}
.login-icons i {
    font-size: 30px;
}

.myprofile-dropdown {
    position: fixed;
    right: 0;
    bottom: 34%;
    z-index: 3;
    min-width: 180px;
}
.myprofile-dropdown>a {
    color: #202020;
    padding: 6px 12px;
    background: #fba21b;
    display: inline-block;
    min-width: 149px;
    text-align: center;
}
.myprofile-dropdown> a i {
    font-size: 30px;
}
.myprofile-dropdown> a i.fa-angle-down {
    font-size: 20px;
}


.event-icons {
    position: fixed;
    right: 0;
    top: 75px;
    z-index: 2;
    min-width: 180px;
}
.event-icons a {
    color: #fff;
    padding: 5px 10px;
    background: #FF5722;
    display: inline-block;
    min-width: 149px;
    text-align: center;
}
.event-icons i {
    font-size: 34px;
}

.footer-donate {
    position: fixed;
    right: 0;
    top: 36%;
    z-index: 2;
    min-width: 180px;
}
.footer-donate a {
    color: #fff;
    background: #1a58a1;
    padding: 5px 10px;
    display: inline-block;
    min-width: 149px;
    text-align: center;
}
.footer-donate i {
    font-size: 34px;
}


.footer-social {
    position: fixed;
    right: 130px;
    bottom: 0;
    background: #795548;
    padding: 15px;
    z-index: 2;
}
.footer-social li a {
    color: #fff;
    font-size: 20px;
}


.lang {
    margin: 100px 0 0 20px;
}
.lang .dropdown {
    display: inline-block;
}
.lang .dropdown > a {
    font-weight: 500;
    color: #202020;
}
.lang .dropdown > a i {
    font-size: 20px;
    padding: 0 4px 0 0;
}
.lang .dropdown-menu {
    min-width: auto;
    background: #fff;
}
.lang .dropdown-menu a {
    color: #202020 !important;
    padding: 6px 30px 6px 20px;
    font-weight: 500;
}
/*============== header end ==============*/


/*============== footer start ==============*/
.site-footer {
    margin: 0 160px 0;
    padding: 25px 25px;
    background: #202020;
    color: #fff;
}
.footer-left {
    display: inline-block;
    width: 49%;
}
.footer-right {
    display: inline-block;
    width: 50%;
    text-align: right;
}
/*============== footer end ==============*/


/*============== modal start ==============*/
.modal-backdrop {
    background-color: #fff;
}
.modal-backdrop.in {
    filter: alpha(opacity=90);
    opacity: .9;
}
button.close {
    position: absolute;
    right: 8px;
    top: 4px;
    font-weight: 300;
    filter: alpha(opacity=100);
    opacity: 1;
    font-size: 38px;
    z-index: 2;
}
.modal-content {
    border: 0 none;
    -webkit-box-shadow: 0 5px 15px rgba(212, 212, 212, 0.5);
    box-shadow: 0 5px 15px rgba(212, 212, 212, 0.5);
}
.modal-header {
    text-align: center;
    border: 0 none;
    padding: 35px 0 0;
}
/*============== modal end ==============*/

/*============== event feedback modal start ==============*/
#eventFeedbackModal .modal-body {
    padding: 40px;
}
/*============== event feedback modal end ==============*/


/*============== video start ==============*/
.home-yt-list {
    display: inline-block;
    vertical-align: top;
    width: 49.7%;
    margin: 0 0 50px;
    position: relative;
}
.home-yt-list-inner {
    position: relative;
    padding: 30px 30px;
}
.home-yt-list-inner:before {
    content: "";
    position: absolute;
    left: -100px;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #f39d1c;
    z-index: -1;
}
.home-yt-list-img {
    position: relative;
}
.home-yt-list-img img {
    height: 340px;
    width: 80%;
    object-fit: cover;
    display: inline-block;
    border-radius: 8px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.home-yt-list-icon {
    position: absolute;
    top: 20px;
    left: 20px;
}
.home-yt-list-icon a {
    background: rgba(0, 0, 0, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 20px 0 0 5px;
    text-align: center;
    display: inline-block;
}
.home-yt-list-icon a svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}
.home-yt-list-caption {
    background: #1a58a1;
    color: #fff;
    padding: 30px;
    width: 70%;
    margin: -60px 0 0 16%;
    z-index: 10;
    position: relative;
}
.home-yt-list-caption p {
    font-size: 18px;
}
.home-yt-list:nth-child(odd) {
    top: 30px;
}
.home-yt-list:nth-child(even) {
    top: -180px;
}
.home-yt-list:nth-child(even) .home-yt-list-inner:before {
    left: auto;
    right: -100px;
}

.home-yt-list:hover img {
    transform: scale(1.08);
}

.home-yt-list:hover .home-yt-list-icon a {
    background: rgba(255, 87, 34, 0.9);
}
/*============== video end ==============*/



/*============== events start ==============*/
.event-title {
    font-size: 76px;
    font-weight: 900;
    color: #d4d4d4;
    text-align: center;
    padding: 0 0 15px;
}
.no-events {
    text-align: center;
    font-size: 42px;
    color: #ccc;
    padding-top: 140px;
}
.events-main {
    margin: 0 -10px 0;
}
.events-list {
    width: 49.7%;
    display: inline-block;
    vertical-align: top;
    padding: 20px 10px 0;
    position: relative;
}
.events-list-inner {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: block;
}
.events-list:nth-child(odd) {
    top: 50px;
}
.events-list:nth-child(even) {
    top: -20px;
}
.events-list img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.events-list h1 {
    position: absolute;
    bottom: 10px;
    left: 25px;
    z-index: 2;
    color: #fff;
}
.events-overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
    transition: all 100ms ease;
}
.events-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffdf40;
    z-index: 2;
    padding: 3px 8px;
    font-weight: 500;
    color: #202020;
}

.events-list:hover .events-overlay {
    background: rgba(0, 0, 0, 0.8);
}
.events-list:hover img {
    transform: scale(1.1);
}


.page-events .events-list:nth-child(odd) {
    top: 0px;
}
.page-events .events-list:nth-child(even) {
    top: 100px;
}
/*============== events end ==============*/









@media only screen and (min-width:1200px) and (max-width:1500px)
{


body {
    font-size: 14px;
}


.h1, h1 {
    font-size: 28px;
}
.h2, h2 {
    font-size: 26px;
}
.h3, h3 {
    font-size: 24px;
}
.h4, h4 {
    font-size: 22px;
}
.h5, h5 {
    font-size: 20px;
}
.h6, h6 {
    font-size: 18px;
}


/*============== common start ==============*/
.page-container {
    padding: 45px 140px 120px 145px;
}
/*============== common end ==============*/

/*============== header start ==============*/
.left-bar {
    width: 100px;
}
.right-bar {
    width: 100px;
}
.site-header {
    left: 30px;
}

.login-icons, .event-icons, .footer-donate, .myprofile-dropdown {
    min-width: 125px;
}
.login-icons a, .event-icons a, .footer-donate a, .myprofile-dropdown>a {
    min-width: 129px;
}

.myprofile-dropdown> a i {
    font-size: 24px;
}
.myprofile-dropdown>a {
    padding: 6px 8px;
}
.footer-social {
    right: 75px;
}

.logo img {
    height: 100px;
}
.logo span {
    font-size: 16px;
}


.menu-list li a {
    font-size: 24px;
}
.menu-list-right h1 {
    font-size: 28px;
}

.menu-list.active {
    left: 100px;
}
/*============== header end ==============*/


.site-footer {
    margin: 0 100px 0;
}


.home-yt-list-inner {
    padding: 30px 20px;
}
.home-yt-list-img img {
    height: 270px;
}
.home-yt-list-caption {
    padding: 15px;
}
.home-yt-list-caption p {
    font-size: 16px;
}


}




@media only screen and (min-width:240px) and (max-width:767px)
{


/*============== form start ==============*/
.button-btn {
    min-width: 90px;
    font-size: 14px;
}

.form-section-inner {
    padding: 60px 15px;
}
.form-group-two .form-group, .form-group-three .form-group {
    width: 100%;
}
/*============== form end ==============*/
    
/*============== common start ==============*/
.page-container {
    padding: 15px 15px;
    overflow: hidden;
}
/*============== common end ==============*/



/*============== header start ==============*/
.left-bar, .right-bar, .event-icons, .footer-donate, .footer-social {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 18px 8px;
    background: #fff;
    box-shadow: 0 0 15px 0 rgba(26, 88, 161, 0.3);
    z-index: 10;
}

.logo {
    float: left;
    width: 60%;
}
.logo img {
    height: 55px;
}
.logo span {
    padding: 8px 0 0 0px;
    display: inline-block;
    vertical-align: top;
    font-size: 13.5px;
    font-size: 14px;
}

.menu-toggle {
    margin: -9px 0 0;
    float: right;
    padding: 10px 6px 10px 6px;
    background: none;
}
.menu-toggle b {
    display: none;
}
.menu-toggle span {
    width: 32px;
    background: #000;
}
.menu-toggle span:before {
    background: #000;
}
.menu-toggle span:after {
    background: #000;
}
.menu-toggle.active span:before {
    width: 30px;
    top: 12px;
}
.menu-toggle.active span:after {
    width: 30px;
    top: 12px;
}



.login-icons {
    bottom: auto;
    top: 53px;
    right: 18px;
    z-index: 12;
    min-width: auto;
}
.login-icons a {
    background: rgba(251, 162, 27, 0.9);
    padding: 3px 8px;
    border-radius: 7px;
    min-width: auto;
}
.login-icons i {
    font-size: 22px;
}

.myprofile-dropdown {
    bottom: auto;
    top: 53px;
    right: 18px;
    z-index: 12;
    min-width: auto;
}
.myprofile-dropdown>a {
    padding: 3px 8px;
    border-radius: 7px;
    min-width: auto;
}
.myprofile-dropdown> a i {
    font-size: 26px;
}

.lang {
    margin: 0;
    position: absolute;
    right: 75px;
    top: 20px;
}
.lang .dropdown > a span {
    display: none;
}

body.active {
    padding: 0;
}
.menu-list.active {
    left: 0;
    top: 91px;
}
.menu-list-inner {
    padding: 10px 15px 30px;
}
.menu-list-inner-inner {
    display: block;
    padding: 0;
}
.menu-list li a {
    font-size: 18px;
}
.menu-list .dropdown-menu>li>a {
    font-size: 18px;
}
.menu-list-right h1 {
    font-size: 22px;
}
.menu-list-right {
    font-size: 16px;
}
.menu-list-right h4 {
    padding: 15px 0 0px;
}
/*============== header end ==============*/

/*============== footer start ==============*/
.site-footer {
    margin: 0;
    padding: 25px 5px;
}
.footer-left {
    width: 100%;
    text-align: center;
}
.footer-right {
    width: 100%;
    text-align: center;
    padding: 10px 0 0;
}
/*============== footer end ==============*/

/*============== events start ==============*/
.event-title {
    font-size: 30px;
}

.events-list {
    width: 100%;
}
.events-list-inner {
    height: 60vh;
}
.events-list:nth-child(even) {
    top: 0;
}


.page-events .events-list:nth-child(even) {
    top: 0;
}
/*============== events end ==============*/




/*============== video start ==============*/
.home-yt-list {
    width: 100%;
}
.home-yt-list:nth-child(odd) {
    top: 0;
}
.home-yt-list-inner {
    padding: 30px 0px;
}
.home-yt-list-img img {
    width: 100%;
    height: 200px;
}
.home-yt-list-caption {
    width: 90%;
    margin: -60px 0 0 5%;
    padding: 10px 15px;
}
.home-yt-list-caption p {
    font-size: 15px;
}
/*============== video end ==============*/



}