@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* color palletes */
    --mamlaka-dark-blue: rgba(0, 8, 66, 1);
    --blue-whale: rgba(3, 50, 78, 1);
    --salem: rgba(11, 139, 73, 1);
    --jewel: rgba(13, 119, 65, 1);
    --mamlaka-light-blue: rgba(19, 83, 170, 0.8);
    --mamlaka-light-blue2: rgba(19, 83, 170, 1);
    --jade: rgba(19, 170, 92, 1);
    --mamlaka-black: rgba(25, 25, 25, 1);
    --shadow: rgba(55, 58, 60, .4);
    --shadow-fill: rgba(55, 58, 60, .7);
    --dove-gray: rgba(112, 112, 112, 1);
    --gray: rgba(127, 127, 127, 1);
    --aquamarine: rgba(151, 255, 201, 1);
    --fresh-air: rgba(167, 204, 255, 1);
    --tropical-blue: rgba(201, 224, 255, 1);
    --mamlaka-oceanic-blue: rgba(00, 163, 221, 1);
    --skeptic: rgba(206, 228, 217, 1);
    --mamlaka-yellow: rgba(245, 214, 11, 1);
    --mamlaka-yellow2: rgba(246, 233, 150, 1);
    --mamlaka-yellow3: rgba(252, 209, 22, .8);
    --white: rgba(255, 255, 255, 1);
    --color-background: #F6F6F9;

    /* corner radiuses and box shadows */
    --card-border-radius: 2rem;
    --border-radius-1: 0.4rem;
    --border-radius-2: 0.8rem;
    --border-radius-3: 1.2rem;

    --box-shadow: 0.3em 0.3em 1em var(--shadow-fill);

    /* Font families and font sizes */
    --mamlaka-font: 'Montserrat', sans-serif;
    --navs-font-size: 0.9rem;
    --navs-font-size-2: 0.95rem;
    --font-weight-500: 500;
    --font-weight-600: 600;

    /* padding and margins */
    --card-padding: 1.8rem;
    --padding-1: 1.2rem;
    --global-web-padding: 0 3rem;
    --global-web-padding-2: 0 4em;
    --global-web-padding-mobile: 0 0.2rem;
    --navs-padding: 0.2rem 0.9rem;
    --top-bottom-margin: 2rem 0 2rem 0;
    --top-margin: 2rem 0 0 0;
    --bottom-margin: 0 0 2rem 0;

    /* Transitions */
    --linear-transition-1: 3s linear;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none;
    /* list-style: none; */
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    width: 100vw;
    height: 100vh;
    font-family: var(--mamlaka-font);  
    user-select: none;
    overflow-x: hidden;
    background: var(--color-background);
}
img{
    display: block;
    width: 100%;
}
h1{
    font-weight: 800;
    font-size: 1.8rem;
}

h2{
    font-size: 1.2rem;
}

h3{
    font-size: 0.97rem;
}

h4{
    font-size: 0.8rem;
}

h5{
    font-size: 0.77rem;
}

small{
    font-size: 0.75rem;
}
.container {
    background: var(--color-background);
}
/* SPINNER */
#overlay{	
    position: relative;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
  }
  .cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
  }
  .spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
  }
  @keyframes sp-anime {
    100% { 
      transform: rotate(360deg); 
    }
  }
  .is-hide{
    display:none;
  }
.material-symbols-sharp {
    position: absolute;
}
.p-justified {
    text-align: justify;
}
.wht-bg img{
    background: var(--color-background);
}

/*FLOATING BUTTON*/
.floating-button {
    width: 35px;
    height: 35px;
    background: var(--mamlaka-light-blue2);
    border: 2px solid var(--jewel);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 50px;
    color: #F6F6F9;
}

.floating-button:hover {
    cursor: pointer;
    width: 37px;
    height: 37px;
    background: var(--mamlaka-light-blue);
    transition: .3s ease;
    border: 2px solid var(--mamlaka-yellow);
}

/* N BOX STYLES */
.nbox {
    height: auto;
    display: flex;
    justify-content: center;
}
.nbox-content {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 3rem 0;
    background: var(--white);
}
.nbox-title {
    background: var(--mamlaka-black);
    color: var(--white);
    font-size: 17px; 
    font-weight: 600;
    padding: 1rem;   
}
.nbox-body {
    padding: 1rem;
}
.indented-list {
    padding: .5rem 2rem;
}
.indented-list li {
    padding: .2rem 0;
}
/* - paragraph */
.p-description {
    margin-bottom: 15px;
}
.p-title-color {
    color: var(--mamlaka-light-blue2);
}
.dots-listing{
    /* list-style-type: disc !important; */
    list-style: disc !important;
}
.danger-color {
    color: #F35F5F;
}

/* TABLES */
.table-header {
    background: var(--mamlaka-light-blue2);
    color: var(--white);
    font-size: 15px; 
    font-weight: 600;
    padding: .8rem; 
}
.licences-list-table {
    margin-top: .5rem;
}

/* Font sizes and spacing in 3 diffrent screen sizes */
/* 1. Larger screens */
@media screen and (min-width:900px) {
    p {
        font-size: 1rem;
        font-weight: 100;
    }
    .card-padding {
        padding: 4rem;
    }
    .body-padding {
        padding: 0 3rem;
    }
}
/* 3. Medium screens */
@media (min-width: 450px) and (max-width: 899px) {
    p {
        font-size: 0.9rem;
    }
    .card-padding {
        padding: 2.1rem;
    }
    .body-padding {
        padding: 0 2rem;
    }
    .subsector-category {
        font-size: 15px !important;  
        width: 39rem !important;     
    }
    /* STATISTICS SECTION ON MEDIUM SCREENS */
    .statistics {
        padding: 4rem !important;
    }
    .statistic-counters {
        margin-top: 1rem !important;
    }
    .statistic-counter {
        margin-right: 2rem !important;
        border-left: 2px solid var(--white) !important;
        padding-left: 1.5rem !important;
    }
    .statistic-title {
        font-size: 1.3rem !important;
        font-weight: 700;
    }
    .statistics .statistic-counters .statistic-counter .licences .counter-value {
        font-size: 1.5rem !important;
    }
    .statistics .statistic-counters .statistic-counter .licences .counter-value img {
        height: 30px !important;
    }
    .statistics .statistic-counters .statistic-counter .licences .counter-subtitle {
        font-size: 1rem !important;
    }
    .p-btn-content {
        width: 155px !important;
        height: 45px !important;
        font-size: 10px !important;
    }
    /* VERIFICATION SECTION ON MEDIUM SCREENS */
    .verification-content {
        flex-wrap: wrap;
    }
}
/* 3. small screens */
@media screen and (max-width:449px) {
    .welcome-section-content {
        flex-wrap: wrap;
        overflow: hidden;
    }
    .welcome-title{
        flex-basis: 100%;        
    }
    .title-sm {
    	font-size: 1rem;
    }
    .sector-title h3 {
    	font-size: .8rem;
    }
    .tanzanite-poster {
        display: none;
    }
    .navigation-menu {
        background: var(--blue-whale) !important;
    }
    p {
        font-size: 0.8rem;
    }
    .card-padding {
        padding: 1.4rem;
    }
    .body-padding {
        padding: 0 1rem;
    }
    .subsector-category {
        font-size: 10px !important;    
    }
    .category-title {
        margin-right: 1rem;
    }
    .subsector-description .subsector-category .category-title span {
        display: none;
    }
    .subsector-grid .card .content .details {
        transform: translateY(0) !important;
    }
    /* WELCOME SECTION BUTTONS */
    .welcome-section > .welcome-section-content > .welcome-title > .buttons-section {
        flex-wrap: wrap;
    }
    /* STATISTICS SECTION ON SMALL SCREENS */
    .statistics {
        padding: 4rem !important;
    }
    .counter-wrapper-content {
        margin-top: 1rem !important;
        flex-direction: column;
    }
    .statistic-counter {
        margin-bottom: 2rem !important;
        border-left: none !important;
        border-bottom: 2px solid var(--white) !important;
        padding-bottom: 1.5rem !important;
    }
    .statistic-title {
        font-size: 1.3rem !important;
        font-weight: 700;
    }
    .statistics .statistic-counters .statistic-counter .licences .counter-value {
        font-size: 1.5rem !important;
    }
    .statistics .statistic-counters .statistic-counter .licences .counter-value img {
        height: 40px !important;
        width: 40px !important;
    }
    .statistics .statistic-counters .statistic-counter .licences .counter-subtitle {
        font-size: 1rem !important;
        margin-top: .5rem;
    }
    .statistic-counter:nth-child(1) {
        padding-left: 2.5rem !important;
    }
    /* PERSONA HEADER */
    .personas-header {
		font-size: 1.2rem !important;
		font-weight: 600 !important;
		letter-spacing: .05em !important;
	}
     /* VERIFICATION SECTION ON SMALL SCREENS */
     .verification-content {
        flex-wrap: wrap;
    }
    /* PERSONA BUTTONS ON SMALL SCREENS */
    .buttons-contents {
        flex-direction: column;
        justify-content: center !important;
        width: 100% !important;
    }
    .p-btn-content {
        margin: auto;
        width: 100%;
    }
    /* PERSONA DESCRIPTIONS */
    .persona-description-item {
        flex-wrap: wrap;
    }
    .desc-details {
        flex-basis: content !important;
        padding: 1rem !important;
    }
    .desc-img {
        flex-basis: 100% !important;
        padding: 0;
    }
    .persona-description-item .desc-details button {
        padding: 0.4rem 0.7rem !important;
        font-size: .7em !important;
        font-weight: 500;
    }
    .experience-container {
        flex-wrap: wrap;
    }
    .experience-imgs {
        display: none !important;
    }
    .experience-form {
        flex-basis: 100%;
        padding: 1rem !important;
    }
    .experience-form .title {
        font-size: 13px !important;
    }
    .experience-form .star-rating {
        font-size: 18px !important;
    }
    /* PERSONA OR SUBSECTOR DESCRIPTION(DETAILS) PAGE */
    .subsector-card-single {
        flex-direction: column;
    }
    .licence-title-illustration {
    	display:none;
        overflow: hidden;
        /* background: black; */
    }
    .licence-title-illustration img {
        position: relative !important;
    }
    .indented-list, .p-description {
        font-size: 0.8rem;
    }
    .requirements-categories {
    	flex-wrap: wrap;
    }
	    .pre-requisites {
	 flex-basis: 100%;
	}
	.fee-requirements {
	    flex-basis: 100%;
	}
	.regulation-requirements {
	    flex-basis: 100%;
	}
	/* HIDING DATA-TABLE COLUMNS */
	.column-lg {
		display: none;
	}
	/* VERIFY LICENCE TABLE AND FORM STYLES */
	.licence-verification-form {
		flex-wrap: wrap;
	}
	.licence-verification-form .input-fields {
		flex-basis: 100% !important;
	}
	.licence-verification-form .login-button {
		flex-basis: 100% !important;
	}
	/* LOGIN PAGE */
	.login-header-content img {
	    width: 50px;
	}
}
