/** Client Side Side UI & UX 
	
	Colors
	-------------
	
	Black: #0D0D0D;
	Yellow: #0A7ABF;
	Grey: #949494;

	
	Illustration Image Link
	------------------
	
	undraw.io
	behance.net

**/

/* Custom Page **/

* {
	margin: 0;
	padding: 0;
}

html {
	--scrollbarBG: #949494;
	--thumbBG: #0A7ABF;
}

body::-webkit-scrollbar {
  	width: 7px;
}

body::-webkit-scrollbar-track {
  	background: #949494;
}

body::-webkit-scrollbar-thumb {
  	background: #0A7ABF;
  	border-radius: 6px;
}

body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	width: 100%;
	overflow-x: hidden;

	background: url('../img/imigongo.png') no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

::selection {
    background: #0A7ABF;
    color: #FFFFFF;
}

iframe {
	padding: 0;
	margin: 0;
	width: 100%;
	border: none;
}


/* Buttons **/

.btn, .btn:hover, .btn:active, .btn:focus {
	outline: none;
	box-shadow: none;
	border-radius: 0;
	height: 40px;
}

.btn-instagram {
	background-color: #fb3958;
	border: 2px solid #fb3958;
}


/* Input **/

.form-control, .form-control:hover, .form-control:focus, .form-control:active {
	outline: none;
	box-shadow: none;
	border-radius: 0;
	height: 40px;
}

/* Borders **/
.border-top-grey {
	border-top: 1px solid #201f1f;
}


/* Colors **/

.color-black {
	color: #0D0D0D;
}

.color-primary-color {
	color: #0A7ABF;
}

.color-grey {
	color: #5e5e5e;
}

.color-white {
	color: #FFFFFF;
}


/* Background **/

.background-black {
	background: #0D0D0D;
}

.background-primary-color {
	background: #0A7ABF;
}

.background-primary-color1 {
	background: #0A7ABF;
}

.background-primary-color:hover {
	background: #18A2D9;
}

.background-grey {
	background: #949494;
}

.background-white-light {
	background: #FFFFFF;
}

.background-white-grey {
	background: #f4f5f6;
}


/* Typograph **/

a {
	text-decoration: none;
	text-decoration-color: none;
	border: none;
	outline: none;
	color: inherit;
	transition: all 0.6s ease !important;
}

a:hover, a:active, a:focus {
	transition: all 0.6s ease !important;
	text-decoration: none;
	color: #0A7ABF !important;
}

.text-bold {
	font-weight: 600;
}

.text-font-normal {
	font-weight: 300 !important;
}

.text-upper-case {
	text-transform: uppercase;
}

.text-capitalize {
	text-transform: capitalize;
}

.text-large {
	font-size: 56px;
	font-family: 'Signika', sans-serif;
	font-weight: 600;
}

.text-head {
	font-size: 36px;
	font-family: 'Signika', sans-serif;
	font-weight: 600;
}

.text-title {
	font-size: 24px;
	font-family: 'Signika', sans-serif;
}

.text-normal {
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
}

.text-small {
	font-size: 12px;
	font-family: 'Poppins', sans-serif;
}


/* Nabar **/

.navbar {
	background: #FFFFFF !important;
	transition: 0.2s ease-in-out;
	min-height: 70px !important;
}

.fixed-top {
	transition: all 0.6s ease;
}

.navbar .navbar-brand {
	padding-right: 100px;
}

.navbar .navbar-brand img {
	position: absolute;
  	width: 60px;
  	top: 10px;
}

.navbar li a {
	font-size: 13px;
	padding: 10px 20px !important;
	color: #0D0D0D;
	text-transform: uppercase;
}

.navbar li a.active,
.navbar li a:hover {
	color: #0A7ABF !important;
}

.navbar .form-inline .btn {
	min-width: 150px;
	text-transform: uppercase;
	font-size: 12px;
	padding: 8px 32px;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

.navbar .dropdown .dropdown-menu {
	border: 0;
	padding-top: 10px;
	margin-top:-10px;
	padding-bottom: 15px;
	padding-right: 5px;
	border-radius: 0;
	background: #FFFFFF;

	-webkit-box-shadow: 0px 15px 10px 0px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 15px 10px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 15px 10px 0px rgba(0, 0, 0, 0.08);
}

.navbar .dropdown .dropdown-menu .dropdown-item {
	background: none;
	border-left: 4px solid #FFFFFF;
}

.navbar .dropdown .dropdown-menu .dropdown-item:hover {
	border-left: 4px solid #0A7ABF;
	color: #0A7ABF;
}

@media all and (min-width: 992px) {
	.navbar .dropdown .dropdown-menu {
		display: block;
		visibility: hidden;
		opacity: 0;
		transform: .3s;
		top: 0;
	}

	.navbar .dropdown.fade-up .dropdown-menu {
		top: 180%;
	}

	.navbar .dropdown:hover .dropdown-menu {
		transition: .3s;
		opacity: 1;
		visibility: visible;
		top: 100%;
		transform: rotate(0deg);
	}
}

@media screen and (max-width: 768px) {
	.navbar .navbar-toggler {
		background: #FFFFFF;
		color: #0D0D0D;
		border: none;
		padding: 10px !important;
	}
}

/* Footer **/
footer .footer-top-bar ul li {
	padding: 8px 0;
}

footer .footer-top-bar ul {
	list-style: none;
	list-style-type: none;
	font-size: 13px;
}

.footer-bottom-bar, .footer-bottom-bar .container .row{
	font-size: 13px;
	font-family: 'Poppins', sans-serif;
}

.footer-top-bar a:hover {
	/* color: #0A7ABF; */
	color: white !important;
	text-decoration: underline;
}

/** Home **/

.home-top-section {
	background: url('../../public/assets/img/slider2.jpg');
	background-blend-mode: overlay;
	box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.5);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.subpage-top-section {
	background: url('../../public/assets/img/maountain.jpg');
	background-blend-mode: overlay;
	box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.5);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.about-section .right-section img {
	vertical-align: middle;
	width: 50%;
}

.about-section .right-section .mission {
	border-bottom-right-radius: 52px;
	border-top-left-radius: 52px;
}

.about-section .right-section .vision {
	border-bottom-left-radius: 52px;
	border-top-right-radius: 52px;
}

.about-section .modal .modal-content {
	background: transparent !important;
}

.about-section .modal .modal-header {
	border: none !important;
}

.about-section .modal .modal-header button {
	position: relative;
	right: 10px;
	padding: 0 !important;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
}

.join-us {
	background: url('../../public/assets/img/fivevolcano.jpg');
	background-blend-mode: overlay;
    box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.5);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.join-us .row {
	border-radius: 22px;
}

.join-us .position {
	margin-top: -5px;
}

.join-us img {
	border-bottom-left-radius: 120px;
}

.services-section .service-box {
	border-top-left-radius: 52px;
	border-bottom-right-radius: 52px;
}

.partner-section .partner-img-box {
	background: #ffffff;
	width: 100%;
	height: 130px;
	padding: 15px;
}

.partner-section .partner-img-box img {
	height: 100%;
	width: 100% auto;
	display: block;
	margin: 0 auto;
}


/** News **/

.news-section .main .title {
	font-size: 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 600 !important;
}

.news-section .view p {
	line-height: 30px;
	color: #5e5e5e;
	font-size: 15px !important;
	text-align: justify !important;
}


/** Events **/

.event-section .main .title {
	font-size: 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 600 !important;
}

.event-section .main .events-status-box {
	position: relative;
	top: -35px;
	float: right;
	padding: 5.5px 20px;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.50);
}

.event-section .main .events-box {
	border-top-right-radius: 20px;
}

/** End Events **/


/** Auth **/

.auth-box label,
.auth-box span {
    font-weight: 300 !important;
    font-size: 14px;
}

.auth-box span a {
    color: darkblue;
}

.auth-box .form-group {
    margin-top: 20px;
}

.auth-box .form-control,
.auth-box .btn {
    height: 45px;
    font-size: 14px;
}

.auth-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    border: 8px solid #ffffff;
    margin-top: -100px;
    margin-bottom: 20px;
}

.contact .label {
	margin-top: 30px;
}

.label1, .label {
	font-size: 15px !important;
	color: #47494b !important;
}

.p-info {
	font-size: 16px !important;
	color: #80888d !important;
	margin-bottom: 40px;
}

.contact input.form-control {
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  font-size: 12px !important;
  background: #f0eeee !important;
  border: 1px solid #f0eeee;
  height: 45px !important;
}

.contact input.form-control:hover,
.contact input.form-control:focus,
.contact input.form-control:active,
.contact textarea.form-control:hover,
.contact textarea.form-control:active,
.contact textarea.form-control:focus {
  border: 1px solid #0A7ABF;
}

.contact textarea.form-control {
  resize: none;
  height: 200px;
  border: 2px solid #f0eeee;
  background: #f0eeee !important;
}

.contact button.btn,
.contact button.btn:hover,
.contact button.btn:active,
.contact button.btn:focus {
  background:#0A7ABF;
  border: 4px solid#0A7ABF;
  color: #ffffff;
  height: 45px;
  transition: all 0.6s ease;
}

#contact:hover {
	color: white !important;
}

.background-visitRwanda {
	background: url('../img/Visitrwanda.jpg');
	background-blend-mode: overlay;
  box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	/* background-attachment: fixed;	 */
	height: 450px;
}

.background-news {
	background: url('../img/news.png');
	background-blend-mode: overlay;
  box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	/* background-attachment: fixed;	 */
	height: 450px;
}

.background-publications {
	background: url('../img/publication.png');
	background-blend-mode: overlay;
  box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	/* background-attachment: fixed;	 */
	height: 450px;
}

.background-visitRwanda:hover, .background-news:hover, .background-publications:hover {
	opacity: .7;
	transition: .4s ease-in-out;
	cursor: pointer;
}


.card-img-top{
	height: 50% !important;
	width: 80% !important;
	padding: 10px !important;
}


.background-publications {
	background: url('../img/publication.png');
	background-blend-mode: overlay;
  box-shadow: inset 0 0 0 50vw rgba(0,0,0,0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
	/* background-attachment: fixed;	 */
	height: 450px;
}

.background-visitRwanda:hover, .background-news:hover, .background-publications:hover {
	opacity: .7;
	transition: .4s ease-in-out;
	cursor: pointer;
}
