/*///////////////////////////////////////
/	Theme Name:	aladalahclub.com		/
/	Theme author: jaabrty.com			/
/	Theme 1st colors: #0f3658			/
/	Theme 2nd colors: #9c1b3b			/
///////////////////////////////////////*/

/* <Variable Menu > */

:root {
    --first: #0f3658;
    --second: #9c1b3b;
}

/* </Variable Menu > */


/* <Fonts Menu > */

@font-face {
    src: url(../fonts/arFont.ttf);
    font-family: arFont;
}

/* </Fonts Menu > */

body {
    font-family: arFont;
}

#index, #pages{
    direction: rtl;
    background: var(--first);
}

.navbar{
    direction: rtl;
}

/* <Overlay> */
.loading-overlay {
    background: #fff;
    position: fixed;
    padding: 25% 0 0 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
}

.spinning {
    background: #fff;
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 50%;
    border: 4px solid rgba(0, 0, 0, .1);
    border-left: 4px solid var(--first);
    border-right: 4px solid var(--second);
    animation: spinning 1.5s linear infinite;
}

@keyframes spinning {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loading-overlay p {
    margin: 20px;
    color: var(--first);
}

/* </Overlay> */


/* <scroll-up> */

#scroll-top {
    height: 40px;
    width: 50px;
    background: var(--first);
    color: #f1f1f1;
    opacity: 0.8;
    text-align: center;
    border: 4px solid var(--second);
    border-radius: 5px;
    box-shadow: 0 0 4px #fff;
    position: fixed;
    right: 15px;
    bottom: 10px;
    z-index: 99999;
    display: none;
    cursor: pointer;
}

#scroll-top:hover {
    background: var(--second);
    color: #fff;
    border: 2px solid #ddd;
    opacity: 0.8;

}

/* </scroll to top> */

/* <top-titlle> */

#top-tittle{
    background: var(--first);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
    border-bottom: solid 20px #5b0d25;
    height: 9rem;
}

 #logo-top-tittle {
     direction: ltr;
     position: absolute;
     z-index: 999;
     left: 30px;
     top: 60px;
}

#logo-top-tittle img {
    margin-top: 23px;
    width: 140px;
    height: auto;
}

/* </top-titlle> */


a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.modal-backdrop {
    z-index: 1000;
}

/* <navbar> */

nav.navbar {
    border-bottom: 4px solid var(--second);
}

nav.bg-dark {
    background: #212331 !important;
}

nav.bg-dark .logo {
    height: 80px;
    width: auto;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: -24px auto;
    z-index: 99999;
}

nav .dropdown-item {
	text-align: right;
}

nav #navbarNav .navbar-nav .nav-item .nav-link {
    border-bottom: 2px solid #ffffff00;
    color: #fff;
    text-shadow: 0px 0px 4px var(--second);
}

nav #navbarNav .navbar-nav:first-child .nav-item .nav-link:hover {
    border-bottom: 2px solid var(--second);
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu {
    background: var(--first);
    color: #fff;
	margin-left: -270px;
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: right;
    color: #fff;
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: var(--second);
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .links {
    padding: 15px 5px 30px 5px;
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .links .header {
    background-image: linear-gradient(to right, var(--first), var(--second) 60%);
    margin: 50px 0 12px 0;
    padding: 8px 14px;
    width: 100%;
    color: #fff;
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .links .header h5 {
    margin: 4;
    8px
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .links ul {
    list-style: none;
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .links ul li a {
    color: #fff;
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .links ul li a:hover {
    color: #999;
}

nav #navbarNav .navbar-nav .nav-item .dropdown-menu .links {
    background: var(--first);
    padding-right: 5px;
}

@media (min-width: 576px) {
    nav.bg-dark .logo {
        height: 105px;
        margin: -26px auto;
    }
}

@media (min-width: 768px) {
    nav.bg-dark .logo {
        height: 120px;
        margin: -28px auto;
    }
}

@media (min-width: 992px) {
    nav.bg-dark .logo {
        height: 130px;
    }
}

/* <login> */

.wrapper form {
    width: 100%;
    margin: 30px;
    padding: 45px;
}

.wrapper form h2 {
    margin: 24px 0;
}

.wrapper form input {
    margin: 10px 0;
}

/* </login> */

/* </navbar> */

/* <last-news> */

#last-news {
	background: #f0f0f0;
    min-height: 470px;
    color: #fff;
}

#last-news .row{
	background: var(--second);
    min-height: 470px;
    color: #fff;
}

#last-news .txt {
    min-height: 466px;
	z-index: 10;
}

#last-news .txt .box {
    padding: 0 20px;
    position: relative;
}

#last-news .txt .box h4::after {
    display: block;
    float: right;
    content: "";
    position: relative;
    height: 4px;
    width: 12%;
    margin: 10px 4px 10px 87%;
    border-radius: 8px;
    padding: 0;
    background-color: var(--first);
}


#last-news .img {
    min-height: 466px;
    background-position: center;
    background-size: cover;
	object-fit: cover;
	z-index: 11;
}


#last-news .img img{
    height: 466px;
    width: 100%;
    padding: 5%;
    object-fit: cover;
}

@media (max-width: 768px) {
	
	#last-news {
		background: none;
	}
	
	#last-news .row{
		border: 0;
		border-radius: 0;
	}

    #last-news .txt {
        background-color: #ffffff00;
    }

    #last-news .txt .box {
		padding-top: 230px;
        background: #ffffff00;
        bottom: 0 !important;
    }

    #last-news .txt .box h4 {
        background: #333333ad;
        padding: 10px 5px;
        display: inline-block;
        font-size: 16px;
    }

    #last-news .txt .box h4::after {
        clear: both;
        display: block;
        float: right;
        content: "";
        position: relative;
        height: 4px;
        width: 44%;
        margin: 10px 4px 0 70%;
        border-radius: 8px;
        padding: 0;
        background-color: var(--second);
    }

    #last-news .txt .box p {
        display: inline-block;
        width: 100%;
        padding: 5px;
        background: #00000099;
        font-size: 12px;
        text-shadow: 0.5px 0.5px #444;
    }

    #last-news .img {
        position: absolute;
        z-index: 9;
        right: 0;
		border-radius: 0 0 0 0;
    }

}

@media (min-width: 768px) {
    #last-news .row {
		border: 5px solid var(--first);
		border-radius: 45px;
    }
    #last-news .txt .box {
        top: 30%;
	}
}

/* </last-news> */

/* <board> */

#index .board {
    border-top: 6px solid var(--second);
    border-bottom: 6px solid var(--second);
}

#index .board .squad {
    background-image: url("../imgs/squad.png?dummy=8484744");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 42vh;
    position: relative;
}


@media (min-width: 576px) {
    #index .board .squad {
        min-height: 50vh;
    }
}

#index .board .next {
    background-image: url("../imgs/stadium.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 44px 65px 65px 40px 36px 36px 20px;
    color: #fff;
}

#index .board .next .tittle {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 1;
    grid-row-end: 2;
    margin: auto;
    font-size: 20px;
}

#index .board .next .club1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 4;
    max-width: 70%;
    height: auto;
    margin: auto;
}

#index .board .next .team1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 5;
    font-size: 14px;
    padding: 10px 0;
}

#index .board .next .against {
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 4;
    margin: auto;
    font-size: 38px;
    text-shadow: 2px 2px var(--second);

}

#index .board .next .club2 {
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 2;
    grid-row-end: 4;
    max-width: 70%;
    height: auto;
    margin: auto;
}

#index .board .next .team2 {
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 4;
    grid-row-end: 5;
    font-size: 14px;
    padding: 10px 0;
}

#index .board .next .stadium {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 5;
    grid-row-end: 6;
    font-size: 14px;
}

#index .board .next .date-time {
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 7;
    padding-right: 20px;
    font-size: 14px;
}

#index .board .next .date {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 6;
    grid-row-end: 7;
    padding-right: 20px;
    font-size: 14px;
}

#index .board .next .time {
    grid-column-start: 4;
    grid-column-end: 6;
    grid-row-start: 6;
    grid-row-end: 7;
    padding-left: 20px;
    font-size: 14px;
}

#index .board .next .book-btn {
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 7;
    grid-row-end: 8;
    padding-left: 20px;
    font-size: 14px;
    background-color: #9c1b3b;
    border-radius: 20px;
    /* margin-bottom: ; */
}

#index .board .newsBoard {
	max-height: 300px;
}

#index .board .newsBoard img{
	height: 300px;
	object-fit: cover;
	object-position: center;
}

#index .board .newsBoard h6{
	padding: 3px;
	background-color: #333333ad;
}

#index .board .newsBoard a{
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid var(--second);
}

#index .board .newsBoard a:hover{
    background-color: #999;
    border: 3px solid var(--first);
	color: #fff;
}

#index #add1, #index #add2 {
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* </board> */



/* <news> */

#news {
    min-height: 65vh;
    width: 100%;
	background: #f0f0f0;
}

#news .content {
    background-color: #fff;
    min-height: 600px;
    width: 100%;
    margin: 80px 0;
    padding: 30px;
    border-radius: 38px;
    border: 8px solid var(--second);
}

#news .content h2 {
    display: inline-block;
    margin: 30px 0;
    color: var(--first);
    border-bottom: 3px solid var(--second);
}

#news .card {
    max-height: 400px;
    min-height: 360px margin: auto;
}

#news .card img {
    height: 214px;
    width: 100%;
    object-fit: cover;
    border: 0.5px solid #aaa;
}

#news .card h5 {
    font-size: 12px;
    font-weight: 900;
    color: var(--second);
}

#news .card p {
    font-size: 10px;
    font-weight: 400;
}

#news .content .pages {
    display: inline-block;
    margin-top: 30px;
}

#news .content .pages a {
    background: var(--second);
    float: right;
    height: 40px;
    width: 24px;
    margin: 0;
    padding: 8px 4px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid var(--first);
    color: #fff;
    font-size: 16px;
    text-align: center;
}

#news .content .pages a:first-child {
    border-radius: 0 50% 50% 0;
    width: 34px;
}

#news .content .pages a:nth-last-child(1) {
    border-radius: 50% 0 0 50%;
    width: 34px;
}

#news .content .pages a:hover {
    background-color: var(--first);
}

#news .content .pages .active {
    background-color: #9c1b3bd1;
}

/* </news> */

/* <hastag> */

#index .hashtag {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 40px;
    background: var(--second);
}

#index .hashtag a {
    margin: 70px auto;
    color: #fff;
    text-decoration: none;
    font-size: 35px;
    text-shadow: 2px 2px var(--first);
}

#index .hashtag a:hover {
    color: var(--first);
    text-shadow: 2px 2px #fff;
}

/* </hastag> */

/* <media> */

#media {
    padding: 30px 0;
}

#media .sliders {
    padding: 14px 0;
}

#media .sliders .pictures,
#media .sliders .videos {
    background-color: #fff;
    margin: 10px 0;
    padding: 20px 20px 0 20px;
    border-radius: 15px;
    border: 4px solid var(--second);

}


#media .sliders .pictures h3,
#media .sliders .videos h3 {
    width: 100%;
    border-bottom: 2px solid #666;
    text-align: right;
    font-size: 26px;
    color: #999;
}

#media .sliders .pictures .box,
#media .sliders .videos .box {
    width: 100%;
    height: auto;
}

#media .sliders .pictures .box a,
#media .sliders .videos .box a {
    display: inline;
    height: 200px;
    width: 160px;
    padding: 0;
}

#media .sliders .pictures .box a img,
#media .sliders .videos .box a img {
    display: inline;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#media .sliders .pictures .box .modal,
#media .sliders .videos .box .modal {
    background: #cacacabd;
}

#media .sliders .pictures .box .modal h5,
#media .sliders .videos .box .modal h5 {
    width: 100%;
    padding: 10px;
    text-align: right;
    color: var(--first);
}

#media .sliders .pictures .box .modal img,
#media .sliders .videos .box .modal img {
    margin: 0 10px;
    padding: 0;
}

#media .sliders .pictures .box .modal h4,
#media .sliders .videos .box .modal h4 {
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #fff;
}


#media .sliders .pictures .pages,
#media .sliders .videos .pages {
    display: inline-block;
    margin-top: 8px;
}

#media .sliders .pictures .pages a,
#media .sliders .videos .pages a {
    background: var(--second);
    float: right;
    height: 40px;
    width: 24px;
    margin: 0;
    padding: 8px 4px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid var(--first);
    color: #fff;
    font-size: 16px;
    text-align: center;
}

#media .sliders .pictures a:first-child,
#media .sliders .videos a:first-child {
    border-radius: 0 50% 50% 0;
    width: 34px;
}

#media .sliders .pictures a:nth-last-child(1),
#media .sliders .videos a:nth-last-child(1) {
    border-radius: 50% 0 0 50%;
    width: 34px;
}

.twitterFeed {
    width: 100%;
    background: #333;
    height: 660px;
    overflow: scroll;
    border-radius: 5px;
}

/* </media> */

/* <players> */

#players {
    width: 100%;
    min-height: 390px;
    padding: 20px 0 0px 0;
    background: var(--first);
}

#players .header {
    min-height: 230px
}

#players .header h2 {
    font-size: 90px;
    color: #fff;
    font-weight: 600;
}

#players .player {
    margin-top: 10px;
    width: 100%;
    min-height: 360px;
    background: #333;
}

#players .player img {
    width: 100%;
    height: auto;
    background: #fff;
    object-fit: cover;
}

#players .player .info {
    color: #fff;
}

#players .player .info ul li {
    list-style: none;
}

#players .player .number {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    top: 0;
    right: 0;
    text-align: center;
    color: #fff;
    background: var(--second);
    font-size: 24px;
}

#players .link a {
    color: #fff;
    font-size: 22px;
    border-bottom: 5px solid var(--second);
    border-radius: 20px;
}

#players .link a:hover {
    color: #cacaca;
    padding-bottom: 5px;
}

/* </players> */

/* <sponsers> */

#sponsers {
    min-height: 260px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0)), url(../imgs/bg-footer-noise.jpg);
    background-repeat: repeat-x, repeat;
    background-size: 100px 15px, 140px 140px;
}

#sponsers h3 {
    color: #777;
    letter-spacing: normal;
    text-shadow: #000 0 1px 0;
    border: solid 1px #000;
    text-rendering: optimizeLegibility;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    text-align: center;
    height: 10px;
    margin-top: 20px;
    font-size: 26px;
}

#sponsers h3:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: solid 1px #333;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

#sponsers h3 span {
    display: inline-block;
    padding: 3px 10px;
    z-index: 1;
}

#sponsers img {
	height: 140px;
	width: auto;
	padding-top: 20px;
}

/* <sponsers> */

/* <pages> */
/* <admin> */

#pages .cPanel .title {
    background: #fff;
    margin-top: 60px;
    padding: 20px;
    border-radius: 15px;
    border: 3px solid var(--second);
}

#pages .pix_edit,
#pages .pagination_edit,
#pages .img_gallery_edit,
#pages .vid_gallery_edit {
    background: #fff;
    margin-top: 24px;
    padding: 20px;
    border-radius: 15px;
    border: 3px solid var(--second);
}

#pages .pix_edit p {
    display: inline-block;
    font-size: 10px;
}

#pages .pix_edit img,
#pages .pagination_edit img,
#pages .img_gallery_edit img,
#pages .vid_gallery_edit img {
    display: block;
    height: 50px;
    width: auto;
    margin: auto;
}

#pages .cPanel input {
    font-size: 12px;
}

#pages .cPanel .custom-file-label {
    padding-right: 80px;
    padding-top: 8px;
    font-size: 12px;
}

#pages .cPanel .custom-file-label:after {
    font-size: 14px;
}

#pages .pagination_edit .edit_modal {
    background: #090;
    width: 320px;
    margin: auto;
    margin-top: 140px;
}

/* </admin> */

/* <Edit> */

#pages .edit_box {
    width: 100%;
    min-height: 300px;
    background: #fff;
    border-radius: 15px;
    border: 3px solid var(--second);
}

/* </Edit> */

/* <add> */

#pages .news_add,
#pages .img_gallery,
#pages .vid_gallery {
    width: 100%;
    min-height: 300px;
    background: #fff;
    margin-top: 60px;
    border-radius: 15px;
    border: 3px solid var(--second);
}

/* </add> */

/* <history> */


#history{
    background: var(--first);
}
#history .timeline {
    max-width: 900px;
    margin: 40px auto;
    padding: 0;
    background-color: #252827;
    color: #fff;
}

#history .timeline p {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    opacity: .7;
}

#history .timeline-body {
    position: relative;
    background-color: #f3f3f3;
    margin-right: 100px;
    border-radius: 8px 0 0 8px;
    padding: 0;
    border-right: 4px solid #4298c3;
}

#history .timeline-body h2 {
    color: #333;
    text-shadow: 1px 1px 2px var(--second);
    padding-left: 13%;
    padding-top: 10px;
}

#history .timeline-item {
    position: relative;
}

#history .timeline-item:after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #4298C3;
    background-color: #f3f3f3;
    position: absolute;
    right: -12px;
    top: 15px;
    z-index: 9;
}

#history .timeline-item:last-child:after {
    content: none;
}

#history .time {
    position: absolute;
    right: -50px;
    top: 14px;
    opacity: .5;
    font-size: 13px;
}

#history .content {
    margin: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #555 !important;
}

#history .timeline-item:last-child .content {
    border-bottom: none !important;
}

.content p {
    color: var(--first)
}

#history .title {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-top: 15px !important;
    color: var(--second);
}

/* </history> */

/* <achievement> */

.main-timeline {
    direction: ltr;
    background: #25303b;
    width: 80%;
    margin: 20px auto;
    position: relative;
}

.main-timeline:before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0 0 -1px;
    position: absolute;
    top: 0;
    left: 50%;
}

.main-timeline .timeline {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.main-timeline .timeline:after {
    content: "";
    display: block;
    clear: both;
}

.main-timeline .timeline-content {
    width: 48%;
    float: left;
    margin: 12px 0 0 0;
    border-radius: 6px;
}

.main-timeline .date {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #25303b;
    padding: 5px 0;
    margin: 0 0 0 -10px;
    position: absolute;
    top: 20px;
    left: 50%;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.main-timeline .title {
    padding: 15px;
    margin: 0;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    border-radius: 6px 6px 0 0;
    position: relative;
}

.main-timeline .title:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 14px;
    right: -5px;
    transform: rotate(-45deg);
}

.main-timeline .description {
    direction: rtl;
    padding: 15px;
    margin: 0;
    font-size: 12px;
    color: #656565;
    background: #fff;
    border-radius: 0 0 6px 6px;
}

.main-timeline .timeline:nth-child(2n+2) .timeline-content {
    float: right;
}

.main-timeline .timeline:nth-child(2n+2) .title:after {
    left: -5px;
}

.main-timeline .timeline:nth-child(odd) .title,
.main-timeline .timeline:nth-child(odd) .title:after {
    background: #2266a0;
}

.main-timeline .timeline:nth-child(even) .title,
.main-timeline .timeline:nth-child(even) .title:after {
    background: var(--second);
}

@media only screen and (max-width: 990px) {
    .main-timeline {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .main-timeline .date {
        left: 2%;
    }

    .main-timeline:before {
        left: 6%;
    }

    .main-timeline .timeline-content {
        width: 85%;
        float: right;
    }

    .main-timeline .title:after {
        left: -5px;
    }
}

@media only screen and (max-width: 480px) {

    .main-timeline:before,
    .main-timeline .date {
        left: 12%;
    }

    .main-timeline .timeline-content {
        width: 75%;
    }

    .main-timeline .date {
        width: 20px;
        height: 20px;
        margin-left: -23px;
    }

    .main-timeline .month {
        font-size: 14px;
    }
}


/* </achievement> */



/* <latest News page> */

.newsPage {
	padding-bottom: 50px;
	position: relative;
}

.newsPage h1 {
	display: inline-block;
    margin: 30px 0;
    color: var(--first);
    border-bottom: 3px solid var(--second);
}

.newsPage .wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.newsPage img {
 	max-width: 450px;
	z-index: 1;
}
@media (max-width: 991px) {
  .events img {
    display: none;
  }
}
.newsPage .info {
    flex: 1;
    max-width: 95%;
    z-index: 4;
    color: #fff;
    background: #3333338c;
    padding: 5px;
	margin-top: 164px;
}
.newsPage .title {
  text-align: center;
  margin: 20px 0 0;
  font-size: 24px;
}

.dots {
  height: 380px;
  width: 460px;
  background-repeat: no-repeat;
  position: absolute;
}
.dots-up {
	top: 100px;
	right: 0;
	background-position: center;
	background-size: 100% auto;
	z-index: 0;
}
.dots-down {
	background-image: url('../../layout/imgs/dots.png');
	left: 0;
	bottom: 30px;
}
/* </latest News Page> */

/* <contact> */

#contact {
	min-height: 90vh;
}

#contact h2{
	padding-top: 30px;
    padding-right: 74px;
    padding-bottom: 32px;
	position: relative;
	width: fit-content;
	margin-bottom: 1rem
}

#contact .part:first-child{
	padding-top: 20px;
	padding-bottom: 20px;
    border-radius: 40px 40px 0 0;
    border-top: 0.7px solid #7e7e7e;
    border-right: 0.7px solid #7e7e7e;
    border-left: 0.7px solid #7e7e7e;
	background: #f0f0f0;
}


#contact .part:nth-child(2){
    border-radius: 0 0 40px 40px;
    border: 0.7px solid #7e7e7e;
}

#contact .nav-link {
	color: var(--first);
}

#contact .nav-link.active {
	color: var(--second);
	background: #fff;
	border: 1px solid var(--second);
}

#contact .nav-link:hover{
	color: #fff;
	background: var(--second);
	border: 1px solid #fff;
}

#contact .btn{
	color: #fff;
    background: var(--second);
    border: none;
}

#contact .btn:hover{
	color: var(--second);
    background: #fff;
    border: 1px solid var(--second);
}

/* </contact> */

/* <fan-add> */

#fan-add .card h5 {
    color: var(--second);
    text-shadow: 1px 1px 4px var(--first);
}

#fan-add .card img {
    height: 100%;
    object-fit: cover;
}

#fan-add #advantage h2 {
    color: var(--second);
    text-shadow: 1px 1px 4px var(--first);
}

#fan-add #advantage i {
    display: block;
    color: var(--second);
    font-size: 36px;
    padding: 20px 0;
}

#fan-add #advantage span {
    color: var(--first);
}

#fan-add #membership {
    background: #fff;
    border: 4px solid var(--second);
    border-radius: 10px;
}


/* </fan-add> */


/* <Management> */

#management {
    width: 100%;
    padding: 30px 0;
    background: var(--first);
}

#management .title,
#management .content {
    width: 100%;
    margin: 0;
    padding: 40px 0;
}

#management .title .h-140 {
    height: 140px;
    width: 100%;
    background: #fff;
    color: var(--first);
    border-left: 8px solid var(--second);
    border-top: 2px solid var(--second);
    border-bottom: 2px solid var(--second);
    border-right: 120px solid var(--second);
}

#management .title .h-140 h2 {
    margin: auto;
}

#management .content .frame {
    background-color: #fff;
    padding: 20px;
    border-top: 8px solid var(--second);
    border-right: 34px solid var(--second);
    border-bottom: 8px solid var(--second);
    border-left: 18px solid var(--second);
}


#management .content .frame p {
    font-size: 12px;
}


/* </Management> */

/* <Career> */

#career {
    background: #fff;
}


#career #header{
    min-height: 30vh;
    background: var(--first);
    color: #fff;
    padding-right: 5rem;
    padding-top:  22vh;
}

/* <Career> */

/* <Predict> */

#predict {
    width: 100%;
    min-height: 70vh;
    background: var(--first);
}

#predict #game {
    min-height: 200px;
    background: #fff;
    border: 8px solid var(--second);
    border-radius: 10px;
    overflow: auto;
}

#predict #game img {
    width: 100%;
    height: auto;
}

/* </Predict> */

/* <Survey.php> */

#survey .info-box {
    direction: rtl;
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
    border-radius: 0.25rem;
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    min-height: 80px;
    padding: 0.5rem;
    position: relative;
    width: 100%;
}

#survey .info-box .info-box-icon{
    border-radius: 0.25rem;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.875rem;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 70px;
    color: #f0f0f0;
}

#survey .info-box .info-box-content{
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
} 

#survey .info-box .info-box-text{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
} 

#survey .info-box .info-box-number{
    display: block;
    margin-top: 0.25rem;
    font-weight: 700;
} 

/* </Survey.php> */

/* <footer> */

footer {
    background: #212331;
    border-top: 18px solid var(--second);
    direction:rtl;
}

footer .logo {
    margin-top: 50px;
}

footer .logo img {
    height: 110px;
    width: auto;
}

footer .logo .logo_text {
    position: absolute;
    display: inline-block;
    padding-right: 16px;
    padding-top: 8px;
    padding-bottom: 12px;
    margin-top: 22px;
    border-right: 4px solid #fff;
}

footer .logo .logo_text h4 {
    display: inline;
    line-height: inherit;
    color: #fff;
    font-size: 16px;
}

footer .links {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

footer .links a {
    color: #fff;
    text-shadow: 1px 1px var(--first);
    font-size: 12px;
}

footer .links a:hover {
    color: #cacaca;
    text-shadow: 1px 1px var(--second);
}

footer .social_media h6,
footer .location h6 {
    padding: 10px 0;
    color: #fff;
    display: inline-block;
}

footer i {
    color: var(--second);
    font-size: 12px;!important
    padding: 0.1rem;!important
}

footer i:hover {
    color: #fff;
    text-shadow: 1px 1px 2px var(--second);
}

/* </footer> */