 /* ----- GLOBAL RESET ----- */
    
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ----- GLOBAL VARRIABLES ----- */

 :root {
    --container-width: 1320px;
    --color-primary: #5956e9;
    --color-primary-7: rgba(38, 103, 255, 0.07);
    --color-primary-2: #0b1460;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light: #ecf2f6; 
    --color-dark: #27272e;
    --color-text-dark: #292930;
    --color-accent1: #ffdc60;
    --color-accent2: #fab8c4;
    --color-blue-shade: #6865ff;
    --color-link: #2522ba;
    --color-mabel: #dbf8ff;
    --color-fog: #dbdeff;
    --color-pink-shade: #ffd3db;
    --color-peach: #ffeddc;
    --color-rose: #c75c6f;
    --color-chart1: #896ba7;
    --color-chart2: #badeff;
    --color-body: #2b323c;
    --color-gray-1: #757589;
    --color-gray-2: #999fae;
    --color-gray-3: #999ab8;
    --color-gray-4: #99a1aa;
    --color-ship-gray: #42424a;
    --color-ghost: #c7c7d5;
    --color-mercury: #e5e5e5;
    --color-dribble: #ea4c89;
    --color-behance: #0067ff;
    --color-linkedin: #0177ac;
    --border-lighter: 1px solid #ECF2F6;
    --transition: all 0.2s ease-in-out;
    --font-primary: 'DM Sans', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}
/* GLOBAL STYLE */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-body);
    font-weight: 400;
    height: 100%;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    margin: 0;
	padding: 0;
	font-size: 13px;
	text-align: center;
}

section,
header,
footer {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.container {
    width: 1000px;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

p {
    font-size: 14px;
    line-height: 1.5;
}

span {
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button,
input {
    margin: 0;
}

input::placeholder,
.form-control::placeholder {
    color: var(--color-gray-2);
    opacity: 1;
    font-family: var(--font-primary);
    transition: var(--transition);
}

ul li {
    list-style: none;
}

.d-flex {
    display: flex;
}
    /* BUTTON */

.btn, .participate, .video-link {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    background-color: var(--color-primary);
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: none;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    padding: 15px 30px;
    outline: none;
    cursor: pointer;
    transition: all 0.4s;
}

.participate::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-link);
    visibility: hidden;
    transition: all 0.5s ease;
    border-radius: 5px;
    z-index: -1;
}

.participate:hover::before {
    width: 100%;
    visibility: visible;
}

.btn:hover {
    background-color: #162399;
}
a.abt-btn {
    font-weight: 500;
    color: var(--color-primary);
    position: relative;
    padding-left: 20px;
}

a.abt-btn::before {
    content: '';
    height: 2px;
    width: 30px;
    background-color: var(--color-primary);
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(50%);
    transition: var(--transition);
}

a.abt-btn:hover::before {
    width: 100%;
}

/* Navbar */
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}

.header{
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    position: absolute;
    top: 0;left: 0;
    right: 0;
    z-index: 4;
}

.header-flex{
    background-color: transparent;
    padding: 16px 25px 17px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bar{
    border: none;
    background-color: none;
    padding: 0;
    margin: 0;
}
.icons{
    font-size: 2rem;
    cursor: pointer;
}
.menu-toggle{
    background-color: transparent;
    border: none;
    color: var(--color-link);
}
.logo{
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--color-link);
}
.logo img {
    width: 100%;
    max-width: 150px; 
}
.logo-sidebar{
    margin-bottom: 10px;
}

.button-login{
    padding: 7px 12px;
    width: fit-content;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.show-sm{
    display: none;
}
@media (min-width: 600px){
    .nav-links{
        display: flex;
        justify-content: space-between;
    }
    .nav-links li{
        margin-left: 1rem;
    }
}
@media (min-width: 769px){
    .show-sm{
        display: block;
    }
    .header-flex{
        padding: 16px 80px 17px;
    }
    .menu-toggle{
        display: none;
    }
    .show-md{
        display: block;
    }
}

/* sidebar */
.sidebar{
    width: 272px;
    height: 100%;
    position: fixed;
    z-index: 10001;
    top: 0;
    right: -272px;
    background-color: #fff;
    transition: all 0.3s ease;
}
.fa-arrow-right-to-bracket{
    transform: scaleX(-1);
}
.showsidebar{
    transform: translateX(-272px);
}
.menu-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px 10px 20px;
}
.menu-links ul{
    width: 100%;
}
.sidebar-ovelay{
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    height: 100vh;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.showsidebar-ovelay{
    opacity: 1;
    visibility: visible;
}
.logo-sidebar{
    margin-bottom: 15px;
}
.signup{
    margin-bottom: 20px;
    padding: 12px 24px;
}
.login{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    margin-top: 15px;
    margin-bottom: 20px;
    color: var(--color-gray-2)
}
.menu-header-h3{
    padding-top: 6px;
    padding-bottom: 10px;
    margin: 0 20px 0 20px;
    border-bottom: 1px solid #dadbdd;
    color: #404145;
    font-weight: 600;
}
.menu-links-items{
    width: 100%;
    font-size: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--color-gray-2)
}
.menu-icons{
    margin-right: 1rem;
    margin-left: 1rem;
    font-size: 1.1rem;
}
/* ----- BANNER SECTION ----- */
    
.banner {
    position: relative;
    z-index: 2;
    height: auto;
    display: flex;
    align-items: center;
}
.banner .banner-box {
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 0;
    width: 100%;
    margin-top: 90px;
    margin-bottom: 60px;
    height: auto;
    margin: 90px auto 60px;
}
.banner .banner-box .banner-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner .banner-box .banner-content .title {
    font-family: 'El Messiri', sans-serif;  
    font-size: 30px;
    color: var(--color-body);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.5;
}

.banner .banner-box .banner-content .btn-grp {
    align-items: center;
}

.banner .banner-box .banner-content .btn-grp .btn {
    margin-right: -20px;
}
.shadow{
    padding: 20px 40px;
    box-shadow: 0px 15px 20px #5856e975;
}
.shadow-2{
    padding: 20px 40px;
    box-shadow: 0px 15px 20px rgba(255, 255, 255, 0.062);
    background-color: transparent;
    border: 2px solid var(--color-white);
    transition: var(--transition);
}

.banner .banner-box .banner-thumbnail {
    width: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner .banner-box .banner-thumbnail .large-thumb{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.banner .banner-box .banner-thumbnail img {
    width: 80%;
    height: auto;
}
/* =============== counterdown deadline ============= */
.deadline-countdown-timers {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.countdown-timer-container1, .countdown-timer-container2, .countdown-timer-container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 30px);
    max-width: 800px;
    margin: 1rem auto; 
    opacity: 1;
    pointer-events: all;
    transition: all 250ms ease-in-out; 
}

.countdown-timer-container1.red .event-title1,
.countdown-timer-container2.red .event-title2,
.countdown-timer-container3.red .event-title3,
.countdown-timer-container1.red .countdown-item-title,
.countdown-timer-container2.red .countdown-item-title,
.countdown-timer-container3.red .countdown-item-title {
    color: red;
}
.countdown-timer {
    background-color: #eaf0f8;
    padding: 2rem 1.5rem;
    padding-bottom: 0;
    padding-top: 1.5rem;
    border-top: 2px solid #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px #a7b3be, 0 -10px 20px #f8fcff;

}
.countdown-timer .event-title1, .countdown-timer .event-title2, .countdown-timer .event-title3 {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.8rem;
    font-size: 19px;
    font-weight: 600;
}

.countdown-timer span {
    margin: 1.5rem auto;
    color: red;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.event-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(80px, 1fr));
    gap: 1rem;
}
.countdown-item {
    padding: 0.6rem 0rem;
    font-size: 1rem;
    background-color: #eaf0f8;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 15px;
    box-shadow: 1px 12px 16px rgba(0, 3, 5, 0.2), -1px -12px 16px #fff;
    transition: all 250ms ease-in-out;
    display: grid;
    place-items: center;

}
.countdown-item-title {
    font-size: 1.3rem;
    font-weight: 600;
}
/* ================time line =================== */
.timeline {
    margin-top: 2rem;
}
.timeline .timeline-content-wrapper {
    display: flex;
    max-width: 1100px;
    margin-left: 20px;
    margin-right: 20px;
    justify-content: space-around;
    padding: 20px 10px;
    margin-top: 30px;
    box-shadow: 0px 10px 60px 0px rgb(38 103 255 / 10%);
    border-radius: 20px;
    background: #fff;
}
.timaline-header {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.timaline-header span{
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.timeline .time-content {
    min-width: 540px;
    position: relative;
}
.timeline .classes-content {
    width: 400px;
    padding-left: 10px;
    margin-bottom: 20px;
}
.timeline-wrapper {
    width: 100%;
}

/* our goal */
.ourGoal h2, .affiliate-details h2{
    margin-top: 2rem;    
}
.ourGoal .section-wrapper, .affiliate-details .section-wrapper {
    padding-right: 6px;
}
.ourGoal p, .affiliate-details p {
    font-size: 18px;
    font-weight: 500;
    line-height: 2.2;  
    font-family: 'El Messiri', sans-serif;  
    text-align: center;
}
/* =======timeline ul ========== */
.timesection-title{
    font-size: 15px;
	font-weight: 500;
	color: rgb(255, 255, 255);
    display: grid;
	place-items: center;
    padding: 10px;
	background-color: #5956e9;
	border-radius: 30px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
    height: 60px;
}
.time-content ul{
	list-style: none;
    width: 100%;
    margin-top: 60px;
}
.time-content ul::after{
	position: absolute;
	content: ' ';
	width: 2px;
	height: calc(100% - 255px);
    background-color: #5956e9;
    left: 50%;
	top: 100px;
	transform: translateX(-50%);
	z-index: 0;
}
.time-content ul li{
	width: 200px;
	height: auto;
	padding: 15px 20px;
	background-color: #fff;
	box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.284);
	border-radius: 10px;
	margin: 0 15px 30px 15px;
	z-index: 99;
	position: relative;
}
.time-content ul li:nth-child(even){
	float: left;
	clear: right;
	text-align: right;
    transform: translateX(25px);
}
.time-content ul li:nth-child(odd){
	float: right;
	clear: left;
    text-align: right;
    transform: translateX(-25px);
}
.time-content ul li .title{
	font-size: 16px;
	font-weight: 500;
	color: rgb(255, 255, 255);
    display: grid;
	place-items: center;
	position: absolute;
	top: 10px;
	right: -15px;
	width: 230px;
	height: 35px;
    background-color: #5956e9;
    border-radius: 30px;
	border-bottom-right-radius: 0;
}
.time-content ul li .title::before{
	content: '';
	position: absolute;
	top: 35px;
	right: 0;
	width: 15px;
	height: 20px;
	background-color: #5956e9;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	z-index: 2;
}
.time-content ul li .title::after{
	content: '';
	position: absolute;
	top: 35px;
	right: 0;
	width: 15px;
	height: 10px;
	background-color: #504ecf;
}
.time-content ul li div{
	font-size: 16px;
	color: #444;
	padding-top: 10px;
}
.time-content ul li div i{
    padding-right: 5px;
}
.time-content ul li div:nth-last-of-type(2){
    margin-top: 35px;
}
.time-content ul li .date{
	position: absolute;
	top: -45px;
	width: 185px;
	height: 35px;
	border-radius: 20px;
	color: #fff;
    background-color: #5956e9;	
    display: grid;
	place-items: center;
	font-size: 12px;
    font-weight: 600;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.418);
}
.time-content ul li:nth-child(even) .date{
	right: 20px;
}
.time-content ul li:nth-child(odd) .date{
	left: 20px;
}

.time-content ul li .circle{
	width: 30px;
	height: 30px;
	background-color: #5856e954;
	border-radius: 50%;
	position: absolute;
	top: 0;
	z-index: 99;
    transition: all 0.5s ease;
}

.time-content ul .circle::after{
	content: ' ';
	width: 15px;
	height: 15px;
	background-color: #0b1460;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}
.timesection-title h2 {
    font-size: 18px;
}

.time-content ul li:nth-child(odd) .circle{
	right: calc(100%);
	transform: translate(-50%, -50%);
}
.time-content ul li:nth-child(even) .circle{
	left: calc(100%);
	transform: translate(50%, -50%);
}
/* ========== class sidenavber ============ */
.timeline-wrapper{
	position: relative;
	max-width: 20rem;
	height: 430px; 
	background-color: #0b1460;
    border-radius: 20px;
	color: #fff;
	padding: 1.5rem 1.5rem 2rem;
	transition: .5s;
	z-index: 99;
    box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.284);
  }

.nav{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}
.nav button{
    background-color: transparent;
    border: none;
    padding-left: 10px;
    /* width: 100%; */
    width: auto;
    margin-left: 0;
    text-align: left;
    cursor: pointer;
}
.nav__link{
	display: grid;
	grid-template-columns: max-content max-content;
	align-items: center;
	column-gap: .75rem;
	padding: .75rem;
	color: #fff;
	border-radius: .5rem;
	margin-bottom: 1rem;
	transition: .3s;
	/* cursor: pointer; */
  }
  .nav__name{
      cursor: pointer;
  }
  .nav__link:nth-child(3){
      width: 100%;
  }
  .nav__link:hover{
	background-color: #5956e9;
  }
  .nav__name{
	font-size: 0.9rem;
    font-weight: 600;
  }
  .active{
	background-color: #5956e9;
  }
  .collapse{
	grid-template-columns: 1fr max-content;
  }
  .collapse__link{
	justify-self: flex-end;
	transition: .3s;
  }
  .collapse__link.rotate{
    transform: rotate(180deg);
  }
  .collapse__menu{
	display: none;
	width: 100%;
  }
  .collapse__sublink{
	color: white;
	font-size: 1rem;
	display: block;
	padding-top: 15px;
    margin-left: 0 !important;
    width: auto !important;
  }
  .collapse__sublink:hover{
	color: #0b1460;
  }
/* show collapse */
  .showCollapse .collapse__menu{
	display: block;
  }
  .keepCollapse .collapse__menu{
	display: block;
  }
  
  /*Rotate icon*/
.showCollapse .rotate{
	transform: rotate(180deg);
  }
  @media screen and (max-width:992px) {
    .timeline .timeline-content-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .timeline .time-content {
        max-width: 540px;
    }
    .timeline .classes-content {
        width: 540px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .timeline-wrapper{
        width: 100%;
        height: auto;
    }
    .time-content ul{
        margin-top: 80px;
    }
    .time-content ul::after{
        top: 120px;
        height: calc(100% - 275px);
    }
    }
    @media screen and (max-width:760px) {
        .timeline .classes-content {
            width: 360px;
        }
        .timeline .time-content{
            min-width: 340px;
        }
        .timesection-title{
            font-size: 15px;
            font-weight: 500;
            border-radius: 20px;
            border-bottom-left-radius: 0%;
            border-bottom-right-radius: 0%;
        }
        .time-content ul{
            margin-right: 50px;
        }
        .time-content ul::after{
            right: 20px;
            top: 165px;
            height: calc(100% - 325px);
            display: none;
        }
        .time-content ul li{
            float: none;
            clear: none;
            margin-bottom: 60px;
        }

        .time-content ul li:nth-child(even){
            transform: translateX(129px);
            text-align: right;
        }
    
        .time-content ul li:nth-child(even) .date{
            left: 20px;
        }
        .time-content ul li:nth-child(odd) .date{
            right: 20px;
        }
        .time-content ul li:nth-child(odd) .circle{
            right: -55px;
            transform: translate(50%, 50%);
            display: none;
        }
        .time-content ul li:nth-child(even) .circle{
            right: -55px;
            transform: translate(50%, 50%);
            display: none;
        }
        .time-content ul li:nth-child(odd){
            transform: translateX(-12px);
        }
    }
    @media screen and (max-width:460px){
        .timeline .classes-content {
            width: 100%;
        }
        .timeline .time-content{
            min-width: 200px;
        }
        .time-content ul::after{
            display: none;
        }
        .time-content ul li .circle{
            display: none;
        }
    }

/* =============== awards sections =================== */
.awards {
    padding-top: 100px;
    padding-bottom: 90px;
    position: relative;
    z-index: 0;
}

.awards .section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.awards .section-wrapper .box {
    flex-basis: 40%;
}
.awards .section-wrapper .text-right {
    flex-basis: calc(60% - 70px);
    padding-left: 70px;
    padding-right: 30px;
}
.awards .section-wrapper .text-right h2 {
    margin-bottom: 2rem;
    line-height: 1.5;
}
.awards .section-wrapper .text-right p {
    line-height: 1.4;
    font-size: 17px;
}
.box {
    position: relative;
    max-width: 400px;
    background-color: var(--color-primary);
    padding: 20px;
    border-radius: 10px;
}
.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 78px);
    height: 100%;
    background-color: #fff;
}
.box1 {
    margin-right: 8rem;
}
.box h3 {
    position: relative;
    color: var(--color-body);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-right: 80px;
}
.box .list {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
}
.box .list::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: left;
}
.box .list:hover::before {
    transition: transform 0.5s;
    transform: scaleX(1);
    transform-origin: right;
}
.box .list .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    color: var(--color-body);
}
.box .list .content .rank {
    position: absolute;
    left: 0;
    font-size: 2rem;
    color: var(--color-body);
    transition: all 0.5s;
    padding-left: 10px;
}
.box .list .content .rank small{
    opacity: 0.35;
    font-weight: 500;
    margin-right: 5px;
}

.section-title.last {
    padding-bottom: 10px;
}
.box .list:hover .content .rank {
    transform: scale(1);
}
.box .list .content h4 {
    font-weight: 600;
    font-size: 17px;
    transition: all 0.5;
}
.box .list .content h4 span {
    margin-left: 6px;
    font-weight: 700;
}
.box .list .content p {
    font-size: 16px;
    transition: all 0.5;
}
.box .list:hover .content p,
.box .list:hover .content h4,
.box .list:hover .content .rank {
    color: #fff;
}

/*  payment details */
.pass-textt {
    width: 100%;
    text-align: left;
}
.pass-textt ul{
    list-style-type: circle;
}
.pass-textt ul li{
    list-style: disc;
}
.pass-textt p {
    font-size: 20px;
    line-height: normal;
    padding: 0 20px;
    color: #000000;
}
.home-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.home-text p {
    font-size: 21px;
    line-height: normal;
    padding: 0 20px;
    text-align: center;
    color: #000000;
}
.img-container {
    display: flex;
    justify-content: center;
}
.img-container img {
    max-width: 130px;
    margin: 20px 0; 
}
.bank-info {
    direction: ltr;
    text-align: center;
} 
.bank-info p{
    text-align: left;
}
.bank-info span{
    text-decoration: underline;
    font-weight: 600;
}
.last-p {
    margin-top: 30px;
}
.btn-whatsap {
    background-color: rgb(75, 204, 75);
    max-width: 200px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    border: none;
    border-radius: 15px;
    transition: var(--transition);
    padding: 15px 30px;
    outline: none; 
    cursor: pointer;
}
.btn-whatsap i {
    font-size: 20px;
}
.right {
    margin-top: 20px;
}
.right p{
    text-align: right;
}
/*  ================ How to pass the exam ============ */
.pass-exam {
    margin-top: 6rem;
    margin-bottom: 3rem;
}
.pass-exam-container {
    width: 100%;
}
.pass-exam-container .etapes{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pass-exam-container .pass-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: center;
    text-align: right;
}
.pass-exam-container .pass-text p {
    font-size: 20px;
    line-height: normal;
    padding: 0 20px;
    text-align: left;
}

.timeline-header span {
    font-size: 24px;
}
.pass-exam-container .pass-thumbnail{
    width: 60%; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.pass-exam-container .pass-thumbnail img {
    width: 100%;
}
.pass-exam-container .pass-thumbnail.large img {
    width: 90%;
}
/* testimonials */

.contai {
    width: 100%;
}
.test{
	float: left;
	position: relative;
	padding: 30px 0;
	background: #fcfcfd;
	z-index: 1;
	width: 100%;
    display: block;
}
.section-title{
	float: left;
	position: relative;
	width: 100%;
	padding-bottom: 40px; 
}
.swiper-container {
	width: 100%;
	height: 100%;
}
.listing-carousel-button{
	position: absolute;
	top: 50%;
	width: 60px;
	height: 50px;
	line-height: 50px;
	margin-top: -25px;
	z-index: 100;
	cursor: pointer;
	background: var(--color-primary);
	box-shadow: 0 9px 26px rgba(58, 87,135,0.45);
	transition: all 200ms linear;
	outline: none;
}
.listing-carousel-button.listing-carousel-button-next{
	right: -30px;
	padding-right: 20px;
	border-radius: 60px 0 0 60px;
}
.listing-carousel-button.listing-carousel-button-prev{
	left: -30px;
	padding-left: 20px;
	border-radius: 0 60px 60px 0;
}
.listing-carousel-button.listing-carousel-button-next:hover{
	right: -15px;
	background: rgba(6,27,65,0.4);
}
.listing-carousel-button.listing-carousel-button-prev:hover{
	left: -15px;
	background: rgba(6,27,65,0.4);
}
.testi-item {
	transition: all .3s ease-in-out;
	transform: scale(0.9);
	opacity: 0.9;
}
.testimonials-text {
	padding: 75px 50px 75px;
	overflow:hidden;
	background: #f5f6fa;
	border:1ps solid #f1f1f1;
	border-radius: 10px;
	transition: all .3s ease-in-out;
}
.testimonials-text-after{
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	position: absolute;
	color: #ccc;
	opacity: .3;
	font-size: 35px;
	transition: all 400ms linear;
	bottom: 25px;
	right: 30px;
}
.testimonials-text-before{
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	position: absolute;
	color: #ccc;
	opacity: .3;
	font-size: 35px;
	transition: all 400ms linear;
	top: 25px;
	left: 30px;
}
.testimonials-text .listing-rating{
	float: none;
	display: inline-block;
	margin-bottom: 12px;
}
.listing-rating i{
	color: var(--color-primary);
}
.testimonials-avatar h3{
	font-weight: 600;
	color: #7d93b2;
	font-size: 18px;
}
.testimonials-avatar h4{
	 font-weight:400;
	 font-size:14px;
	 padding-top:6px;
	 color:var(--color-primary);
}
.testimonials-carousel .swiper-slide{
	padding: 30px 0;
}	 
.testi-avatar{
	position: absolute;
	left: 50%;
	top: -30px;
	width: 90px;
	height: 90px;
	margin-left: -45px;
	z-index: 20;
}
.swiper-slide-active .testimonials-text {
	background: #fff;
	box-shadow: 0 9px 26px rgba(58, 87,135,0.1);
}
.testimonials-text p{
	color: #878c9f;
	font-size: 16px;
	line-height: 24px;
	padding-bottom: 10px;
	font-weight: 500;
}
.text-link{
	position: absolute;
	bottom:0;
	padding: 15px 0;
	border-radius: 10px 10px 0 0;
	background: #f9f9f9;
	border:1px solid #eee;
	box-shadow: 0 10px 15px rgba(0,0,0,0.03);
	left: 50%;
	width: 200px;
	margin-left: -100px;
}
.swiper-slide-active .testi-item{
	opacity: 1;
	transform: scale(1.0);
}
.tc-pagination{
	float: left;
	margin-top: 10px;
	width: 100% !important;
}
.tc-pagination_wrap {
	position: absolute;
	bottom: -40px;
	left: 0;
	width: 100%;
}
.tc-pagination2{
	float: none;
	display: inline-block;
	padding: 14px 0;
	background: #fff;
	border-radius: 30px;
	min-width: 250px;
	border-bottom: 0;
}
.tc-pagination .swiper-pagination-bullet, .tc-pagination2.swiper-pagination-bullet{
	opacity: 1;
	background: #384f95;
	margin:0 2px;
	width: 10px;
	height: 10px;
	transition: all 300ms ease-in-out;
}


/* ----- CTA (Call to Action) SECTION ----- */
.calltoaction{
    background: var(--color-primary);
    color: var(--color-white);
}
.cta {
    padding: 40px 0;
    position: relative;
    z-index: 0;
}

.cta::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/cta-shape.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: -1;
    opacity: 0.1;
}

.cta.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cta h2 {
    color: var(--color-white);
    font-size: 30px;
    padding-right: 20px;
    font-family: 'El Messiri', sans-serif;  
}
/* ============ Footer ============ */
footer{
    width: 100%;
    height: auto;
    background-color: var(--color-primary);
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
footer .container{
    width: 100%;
    max-width: 100%;
}
.footer-container{
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.75fr);
    gap: 48px;
    width: 100%;
    align-items: start;
}
.footer-container .sec{
    margin-left: 0;
    width: 100%;
    min-width: 0;
}
.footer-container .sec.about-us{
    width: 100%;
}
.footer-container .legal-name{
    color: #fff;
    margin-bottom: 12px;
}
.location-us{
    width: 100%;
}
.location-us .info{
    position: relative;
}
.location-us .info li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}
.location-us .info li span:nth-child(1){
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
    margin-top: 2px;
}
.location-us .info li p{
    margin: 0;
}
.footer-map-wrap{
    margin-top: 8px;
}
.footer-map{
    width: 100%;
    height: 160px;
    border: 0;
    border-radius: 10px;
    display: block;
}
.map-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: rgb(202, 202, 202);
    text-decoration: none;
    font-size: 14px;
}
.map-link:hover{
    color: #fff;
}
.map-link .fa{
    font-size: 12px;
}
.footer-container h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}
.footer-container h2::before{
    content: '';
    position: absolute;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary-2);
}
footer P{
    color: rgb(223, 223, 223);
    text-align: start;
}
.sci{
    margin-top: 20px;
    display: flex;
}
.sci li{
    list-style: none;
}
.sci li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #fff;
}
.sci li a:hover{
    background-color: transparent;
}

.sci li a .fa{
    color: #fff;
    font-size: 20px;
}

.contact-us{
    width: 100%;
    margin-left: 0 !important;
}
.contact-us .info{
    position: relative;
}
.contact-us .info li{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.contact-us .info li span:nth-child(1){
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}
.contact-us .info li span{
    color: rgb(223, 223, 223);
}
.contact-us .info li a{
    color: rgb(202, 202, 202);
    text-decoration: none;
}
.contact-us .info li a:hover{
    color: #fff;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 8px 100px;
    background-color: var(--color-dark);
    color: #999;
}

/* ********************************************  video  ******************************** */
.responsive-video-container {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 34.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 50px;
  }
  
  .responsive-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  


/* back-up button */
  .back-btn-wrap {
    position: fixed;
    bottom: 30px;
    right: 10px;
    margin-left: 2.5rem;
    opacity: 0;
    visibility: hidden;
  }
  .show-link{
      opacity: 1;
      visibility: visible;
  }
  
  .back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    background-color: var(--color-primary-2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0px 10px 10px #5856e975;
    transition: 0.3s;
    position: relative;
    z-index: 2;
  }
  @keyframes scale {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.45;
    }
  
    100% {
      transform: translate(-50%, -50%) scale(1.6);
      opacity: 0;
    }
  }
  
  .back-btn-wrap:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    border-radius: 50%;
    opacity: 0.08;
    animation: scale 1.2s ease-out infinite 1s;
  }

/* =================== error page =================== */
.banner-error {
    width: 100%;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner-error img {
    max-width: 500px;
    margin-top: 5rem;
}
.banner-error p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}
.banner-error a {
    margin-top: 2rem;
}

/* ==================== BREAKPOINTS ==================== */


/* ----- X-Large devices (large desktops, 1200px and up) ----- */

@media (min-width: 1200px) and (max-width: 1500px) {
    :root {
       --container-width: 1140px;
   }
   .banner .banner-box{
       max-width: var(--container-width);
       padding: 0;
       padding-right: 40px;
   }
   .banner .banner-box .banner-content .title {
       font-size: 30px;
   }
   .banner .banner-box .banner-thumbnail img {
       margin-left: 0;
   }

}
/* ----- Large devices (desktops, 992px and up) ----- */

@media (min-width: 992px) and (max-width: 1200px) {
    :root {
       --container-width: 960px;
   }
   .banner .banner-box .banner-content .title {
       font-size: 30px;
   }
   .banner .banner-box .banner-thumbnail img {
       margin-left: 0;
   }
   .cta{
    padding-left: 50px;
    padding-right: 50px;
}

}
/* ----- Medium devices (tablets, 768px and up) ----- */

@media (min-width: 768px) and (max-width: 992px) {
    .deadline-countdown-timers {
        flex-direction: column;
    }
    .countdown-timer-container {
        margin: 1.5rem auto;
    }
    .countdown-timer {
        padding: 2rem 3rem;
        padding-bottom: 0;
    }
    
    :root {
       --container-width: 760px;
   }
   .container{
       max-width: var(--container-width);
   }
   .banner {
       padding-top: 70px;
       margin-bottom: 70px;
    }
   .banner .banner-box{
       flex-direction: column;
   }
   .banner .banner-box .banner-content {
       width: 100%;
   }
   .banner .banner-box .banner-thumbnail {
       width: 100%;
   }
   .banner .banner-box .banner-content .title {
       font-size: 30px;
   }
   /* .btn {
       padding: 10px 25px;
   } */
   .banner .banner-box .banner-thumbnail {
       width: 100%;
       text-align: center;
       margin-top: 30px;
   }
   .banner .banner-box .banner-thumbnail img {
       margin-left: 0;
   }
   .pass-exam-container .pass-text p {
    font-size: 20px;
}
   .cta h2{
       font-size: 25px;
   }

}
@media (min-width: 576px) and (max-width: 768px) {
    :root {
       --container-width: 540px;
   }
   .deadline-countdown-timers {
    flex-direction: column;
}
.countdown-timer-container {
    margin: 1.5rem auto;
}
.countdown-timer {
    padding: 2rem 3rem;
    padding-bottom: 0;
}
   .container {
       max-width: var(--container-width);
   }
   .header .container{
       max-width: 100%;
   }
   .banner {
    padding-top: 70px;
    margin-bottom: 10px;
 }
.banner .banner-box{
    flex-direction: column;
    margin-bottom: 60px;
}
.banner .banner-box .banner-content {
    width: 100%;
}

.banner .banner-box .banner-content .title {
    font-size: 25px;
}
.btn {
    padding: 15px 20px;
}

.banner .banner-box .banner-thumbnail .large-thumb{
    display: none;
}
.awards {
    padding-top: 80px;
    padding-bottom: 20px;
}
.awards .section-wrapper {
    flex-direction: column;
}
.awards .section-wrapper .text-right {
    order: 2;
    margin-top: 3rem;
}
.awards .section-wrapper .box {
    flex-basis: 0;
    width: 100%;
}
.awards .section-wrapper .box1 {
    margin-right: 0;
}
.awards .section-wrapper .box2 {
    margin-top: 4rem;
}

.pass-exam-container .etapes {
    flex-direction: column;
}
.pass-exam-container .pass-thumbnail {
    width: 100%;
}
.pass-exam-container .pass-text {
    width: 100%;
    order: 2;
    margin: 2rem 0;
}

.cta h2{
    font-size: 20px;
}
.faq .faq-content-wrapper{
    flex-direction: column;
}
.faq .right-content {
    width: 100%;
}
.faq .left-content {
    width: 100%;
}
.footer-container {
    grid-template-columns: 1fr;
}
.footer-container .sec.about-us {
    margin-bottom: 30px;
    width: 100%;
}
.footer-container .location-us {
    width: 100%;
    margin-bottom: 30px;
}
.footer-container .contact-us {
    width: 100%;
}
footer {
    padding: 50px 60px;
}

} 
/* ----- X-Small devices (portrait phones, less than 576px) ----- */

@media (max-width: 576px) {
    :root {
       --container-width: 100%;
   }
   .deadline-countdown-timers {
    flex-direction: column;
}
.countdown-timer-container {
    margin: 1.5rem auto;
}

   .container {
       max-width: var(--container-width);
       padding: 0 15px;
   }
   .banner .banner-box .banner-content {
       width: 100%;
       padding-top: 10px;
   }
   .banner .banner-box .banner-content .title {
       font-size: 27px;
       margin-bottom: 40px;
       line-height: 1.7;
   }
   .banner .banner-box{
    flex-direction: column;
    margin-bottom: 60px;
}
.awards {
    padding-top: 80px;
    padding-bottom: 20px;
}
.awards .section-wrapper {
    flex-direction: column;
}
.awards .section-wrapper .text-right {
    order: 2;
    margin-top: 3rem;
    padding-left: 30px;
}
.awards .section-wrapper .box {
    flex-basis: 0;
    width: 100%;
}
.awards .section-wrapper .box1 {
    margin-right: 0;
}
.awards .section-wrapper .box2 {
    margin-top: 4rem;
}
.pass-exam-container .etapes {
    flex-direction: column;
}
.pass-exam-container .pass-thumbnail {
    width: 100%;
}
.pass-exam-container .pass-text {
    width: 100%;
    order: 2;
    margin: 2rem 0;
}
.pass-exam-container .pass-text p {
    font-size: 17px;
}
.cta{
    padding: 20px 0;
    padding-right: 30px;
}
.cta h2 {
    padding-right: 0;
}


.cta h2{
    font-size: 20px;
    margin-bottom: 10px;
}
.btn {
    padding: 15px 20px;
}

.banner .banner-box .banner-thumbnail .large-thumb{
    display: none;
}
.faq .faq-content-wrapper{
    flex-direction: column;
}
.faq .right-content {
    width: 100%;
}
.faq .left-content {
    width: 100%;
}
.faq .right-content .faq-wrapper .single-faq h4{
    font-size: 15px;
}
.faq .right-content .faq-wrapper .single-faq p{
    font-size: 14px;
} 
.footer-container {
    grid-template-columns: 1fr;
}
.footer-container .sec.about-us {
    margin-bottom: 30px;
    width: 100%;
}
.footer-container .location-us {
    width: 100%;
    margin-bottom: 30px;
}
.footer-container .contact-us {
    width: 100%;
}
footer {
    padding: 50px 30px;
}
.copyright{
    padding: 8px 40px;
}
}
@media (max-width: 1100px) { 
    .responsive-video-container {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        padding-bottom: 45.25%;
        height: 0;
        overflow: hidden;
        margin-bottom: 50px;
    }
}
@media (max-width: 650px) { 
    .responsive-video-container {
        width: 85%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 48.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 50px;
    }
}
@media (max-width: 500px) { 
    .responsive-video-container {
        width: 95%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 54.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 50px;
    }
}
@media (max-width: 490px) { 
    .cta.cta-container{
        flex-direction: column;
        align-items: center;
    }
    .smalltx {
        font-size: 24px !important;
    }
    .countdown-timer {
        /* box-shadow: none; */
        width: 100% !important;
        /* padding: 1rem;
        margin: 0 10px; */
        transform: scale(0.8);
    }
    .countdown-timer-container1, .countdown-timer-container2, .countdown-timer-container3 {
        width: 100%;
        margin: auto;
    }
    .countdown-item {
        padding: 0.6rem 0.2rem;
    }
}

@media (max-width: 490px) { 
    .event-countdown {
        grid-template-columns: repeat(4, minmax(50px, 1fr));
    }
}
@media (max-width: 400px) { 
    .arrow-button {
        display: none !important;
    }
}