*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #2c2c2c;
}

a{
    text-decoration: none;
}
ul{
    list-style-type: none;
    padding-left: 0;
}

body .white-color{
    color: #ffffff !important;
}
body .black-color{
    color: #000000 !important;
}
body .green-color{
    color: #34a853 !important;
}
body .red-color{
    color: #e84234 !important;
}
body .yellow-color{
    color: #fcba10 !important;
}
body .blue-color{
    color: #4186f1 !important;
}

body .padding-tb-80{
    padding: 80px 0;
}
body .padding-tb-60{
    padding: 60px 0;
}
body .padding-tb-50{
    padding: 50px 0;
}

body h2{
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;    
}
body h3{
    font-size: 20px;
    font-weight: 600;
    color: #34a855;    
}
body h4{
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;    
}
body h5{
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;    
}

body .psg{
    font-size: 15px;
    line-height: 26px;
    color: #808080;
    font-weight: 400;   
}

body .title-bottom-spacing{
    margin-bottom: 40px;
}
body .btn{
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 35px;
    border: 0;
    transition: all 0.3s ease-in-out;
}

body .btn-primary{
    color: #ffffff;
    background: rgb(247,188,0);
    background: -moz-linear-gradient(90deg, rgba(247,188,0,1) 0%, rgba(247,149,0,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(247,188,0,1) 0%, rgba(247,149,0,1) 100%);
    background: linear-gradient(90deg, rgba(247,188,0,1) 0%, rgba(247,149,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7bc00",endColorstr="#f79500",GradientType=1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    min-width: 100px;
}
body .btn-primary:hover{
    -webkit-box-shadow: 2px 2px 20px 0px #f7b800;
    box-shadow: 2px 2px 20px 0px #f7b800;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
}
body .btn-secondary{
    background: rgb(52,169,83);
    background: -moz-linear-gradient(90deg, rgba(52,169,83,1) 0%, rgba(1,91,25,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(52,169,83,1) 0%, rgba(1,91,25,1) 100%);
    background: linear-gradient(90deg, rgba(52,169,83,1) 0%, rgba(1,91,25,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#34a953",endColorstr="#015b19",GradientType=1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 20px 0 rgb(86 90 207 / 30%);
}
body .btn-secondary:hover{
    -webkit-box-shadow: 2px 2px 20px 0px #2a9947;
    box-shadow: 2px 2px 20px 0px #2a9947;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
}

body .owl-carousel .owl-nav button.owl-prev,
body .owl-carousel .owl-nav button.owl-next{
	height: 80px;
    width: 40px;
    line-height: 48px;
    background-color: #ffffff;
    color: #e9423a;
    position: absolute;
    top: 50%;
    margin-top: -1.2rem;
    border-radius: 0;
    box-shadow: 0 4px 10px 0 rgb(31 34 120 / 14%);
    transition: all 0.3s ease-in-out;
}
body .owl-carousel .owl-nav button.owl-prev span,
body .owl-carousel .owl-nav button.owl-next span{
	display:inline-block;
	font-size:2rem;
	line-height:1rem;
}
body .owl-carousel .owl-nav button.owl-prev:hover,
body .owl-carousel .owl-nav button.owl-next:hover{
	background-color: #fabc08;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}
body .owl-carousel .owl-nav button.owl-prev{
	left: 0;
}
body .owl-carousel .owl-nav button.owl-next{
	right: 0;
}
body .owl-dots{
	display: none;
}

body .form-label{
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 500;
}
body .form-control {
	border: 0;
	font-size: 14px;
	color: #2c2c2c;
	width: 100%;
	transition: all 0.3s ease-in-out;
	padding: 8px 16px;
	border-radius: 6px;
	border: 1px solid #d7d7d7;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}
body .form-control::placeholder {
	color: #b5b5b5;
}
body .form-control:focus {
	border-color: #fabb00;
	box-shadow: none;
}
body .form-control:hover {
	border-color: #fabb00;
	box-shadow: none;
}

.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}
.vert-move {
-webkit-animation: mover 1s infinite alternate;
animation: mover 1s infinite alternate;
}
@-webkit-keyframes mover {
0% {
    transform: translateY(0);
}
100% {
    transform: translateY(-12px);
}
}
@keyframes mover {
0% {
    transform: translateY(0);
}
100% {
    transform: translateY(-12px);
}
}

body .card-box{
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}

body header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    -webkit-box-shadow: 2px 2px 20px 0px #00000029;
    box-shadow: 2px 2px 20px 0px #00000029;
}
body header .navbar .navbar-brand{
    padding: 0;
}
body header .navbar .navbar-brand img{
    width: 140px;
}
body header .navbar .navbar-brand.secondary-logo img{
    width: auto;
    height: 60px;
    margin-right: 10px;
    margin-left: 10px;
}
body header .navbar .navbar-brand.secondary-logo h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}
body header .navbar .navbar-brand.secondary-logo p{
    font-size: 13px;
}

body header .navbar .navbar-nav .nav-item .nav-link{
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 16px;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid transparent;
}
body header .navbar .navbar-nav .nav-item .nav-link:hover{
    color: #fabd02;
    border-color: #fabd02;
    transition: all 0.3s ease-in-out;
}
body header .navbar .navbar-nav .nav-item .nav-link.active{
    color: #eb4139;
    border-color: #eb4139;
    transition: all 0.3s ease-in-out;
}

body .banner{
    padding-top: 87px;
    min-height: 500px;
}
body .banner .banner-1{
    /* background-image: url('../img/banner1.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
    background-color: #ffffff;
}
body .banner .banner-img img{
    width: 80%;

}
body .banner-wrapper{
    padding-top: 90px;
    padding-bottom: 100px;
    transition: all 0.7s ease-in-out;
}
body .banner .banner-info .banner-title{
    font-size: 58px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 16px;
}
body .banner-wrapper .banner-icon-1{
    position: absolute;
    top: 10%;
    left: 12%;
    width: 120px !important;
    transition: all 0.7s ease-in-out;
}
body .banner-wrapper .banner-icon-2{
    position: absolute;
    bottom: 5%;
    left: 6%;
    width: 130px !important;
    transition: all 0.7s ease-in-out;
}
body .banner-wrapper .banner-icon-3{
    position: absolute;
    top: 10%;
    right: 12%;
    width: 125px !important;
    transition: all 0.7s ease-in-out;
}
body .banner-wrapper .banner-icon-4{
    position: absolute;
    bottom: 10%;
    right: 7%;
    width: 125px !important;
    transition: all 0.7s ease-in-out;
} 
body .banner-wrapper:hover .banner-icon-1{
    transform: translate3d(-20px, -20px, -20px);
    transition: all 0.7s ease-in-out;
}
body .banner-wrapper:hover .banner-icon-2{
    transform: translate3d(-20px, -20px, -20px);
    transition: all 0.7s ease-in-out;
}
body .banner-wrapper:hover .banner-icon-3{
    transform: translate3d(20px, -20px, 20px);
    transition: all 0.7s ease-in-out;
}
body .banner-wrapper:hover .banner-icon-4{
    transform: translate3d(20px, -20px, 20px);
    transition: all 0.7s ease-in-out;
}

body .banner .owl-carousel.banner-carousel .owl-nav button.owl-prev,
body .banner .owl-carousel.banner-carousel .owl-nav button.owl-next{
    top: 40%;
}
body .Accreditation-section{
    background-color: #f7b000;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
body .Accreditation-section:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    background-image: url('../img/wave-shape-1.webp');
    background-repeat: no-repeat;
    background-position: Top center;
    background-size: 100%;
    height: 55px;
    background-color: #f7b000;
    z-index: 1;
}
body .Accreditation-section::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    background-image: url('../img/wave-shape-1.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    height: 55px;
    background-color: #f7b000;
    transform: rotateX(-180deg);
    z-index: 1;
}

body .Accreditation-report-info{
    padding: 20px;
    border-radius: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 2px 2px 20px 0px #00000029;
    box-shadow: 2px 2px 20px 0px #00000029;
}
body .Accreditation-section .Accreditation-report-info .search-btn{
    margin-top: 20px;
}

body .about-section{
    background-image: url('../img/white-shape.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 100px;
}

body .about-wrapper .about-icon-1{
    position: absolute;
    top: -10%;
    right: 6%;
    width: 90px !important;
    transition: all 0.7s ease-in-out;
}
body .about-wrapper:hover .about-icon-1{
    transform: translate3d(20px, 20px, 20px);
    transition: all 0.7s ease-in-out;
}

body .aboutCollapse-content .card-body{
    background-color: transparent;
    border: 0;
    padding: 0;
}
body .btn-view{
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    padding: 8px 18px;
    border: 1px solid #000000;
    border-radius: 35px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}
body .btn-view:hover{
    border-color: #e84337;
    color: #eb403a;
    transition: all 0.3s ease-in-out;
    background-color: #ffe1df;
}
body .AboutGoal-section{
    padding-top: 40px;
}
body .AboutGoal-section .AboutGoal-icon-1{
    position: absolute;
    bottom: 14%;
    right: 8%;
    width: 130px !important;
    transition: all 0.7s ease-in-out;
}
body .AboutGoal-section:hover .AboutGoal-icon-1{
    transform: translate3d(20px, 20px, 20px);
    transition: all 0.7s ease-in-out;
}
body .AboutGoal-section .goal-box{
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}
body .AboutGoal-section .goal-box .goal-img{
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    margin-right: 10px;
    border-radius: 10PX;
    position: relative;
    -webkit-box-shadow: 2px 4px 14px 0px #00000026;
    box-shadow: 2px 4px 14px 0px #00000026;
    transition: all .5s;
    overflow: hidden;
    background-color: #ffffff;
}
body .AboutGoal-section .goal-box .goal-img img{
    width: 80px;
}
body .AboutGoal-section .goal-box p{
    font-size: 13px;
    color: #2c2c2c;
    transition: all 0.3s ease-in-out;  
}
body .AboutGoal-section .goal-box.color-1{
    background-color: #ffe6e4;
}
body .AboutGoal-section .goal-box.color-2{
    background-color: #fff5d8;    
}
body .AboutGoal-section .goal-box.color-3{
    background-color: #d5e3ff;
}
body .AboutGoal-section .goal-box.color-4{
    background-color: #e1ffe8;
}
body .AboutGoal-section .goal-box.color-5{
    background-color: #ffe6e4;
}
body .AboutGoal-section .goal-box:hover{
    -webkit-box-shadow: 2px 4px 30px 0px #00000026;
    box-shadow: 2px 4px 30px 0px #00000026;
    transform: scale(1.05);
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}
body .AboutGoal-section .goal-box.color-1:hover .goal-img{
    background-color: #e84236;
    transition: all 0.3s ease-in-out;
}
body .AboutGoal-section .goal-box.color-2:hover .goal-img{
    background-color: #f8be04;
    transition: all 0.3s ease-in-out;
}
body .AboutGoal-section .goal-box.color-3:hover .goal-img{
    background-color: #4585f4;
    transition: all 0.3s ease-in-out;
}
body .AboutGoal-section .goal-box.color-4:hover .goal-img{
    background-color: #32a750;
    transition: all 0.3s ease-in-out;
}
body .AboutGoal-section .goal-box.color-5:hover .goal-img{
    background-color: #e84236;
    transition: all 0.3s ease-in-out;
}

body .aboutFramework-section{
    background-color: #4186f0;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
body .aboutFramework-section:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    background-image: url('../img/wave-shape-1.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    height: 55px;
    background-color: #4186f0;
    z-index: 1;
}
body .aboutFramework-section::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    background-image: url('../img/wave-shape-1.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    height: 55px;
    background-color: #4186f0;
    transform: rotateX(-180deg);
    z-index: 1;
}
body .aboutFramework-section .box-top-spacing{
    margin-top: 70px;
}
body .aboutFramework-section .card-box .card-img{
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    margin-right: 10px;
    border-radius: 10px;
    position: relative;
    -webkit-box-shadow: 2px 4px 14px 0px #00000026;
    box-shadow: 2px 4px 14px 0px #00000026;
    transition: all .5s;
    overflow: hidden;
    background-color: #ffffff;
    margin-top: -70px;
    border: 4px solid transparent;
    transition: all 0.3s ease-in-out;
}   
body .aboutFramework-section .card-box .card-img img{
    width: 90px;
}
body .aboutFramework-section .card-box:hover{
    -webkit-box-shadow: 2px 4px 30px 0px #00000026;
    box-shadow: 2px 4px 30px 0px #00000026;
    transition: all 0.3s ease-in-out;
}
body .aboutFramework-section .card-box:hover h5{
    color: #4186f3;
    transition: all 0.3s ease-in-out;
}
body .aboutFramework-section .card-box:hover .card-img{
    border-color: #f9bd08;
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

body .aboutbenefit-section .aboutbenefit-box{
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}
body .aboutbenefit-section .aboutbenefit-box .aboutbenefit-img{
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    margin-right: 10px;
    border-radius: 10PX;
    position: relative;
    -webkit-box-shadow: 2px 4px 14px 0px #00000026;
    box-shadow: 2px 4px 14px 0px #00000026;
    transition: all .5s;
    overflow: hidden;
    background-color: #ffffff;
    border: 4px solid transparent;
}
body .aboutbenefit-section .aboutbenefit-box .aboutbenefit-img img{
    width: 80px;
}
body .aboutbenefit-section .aboutbenefit-box p{
    font-size: 13px;
    color: #2c2c2c;
    transition: all 0.3s ease-in-out;  
}
body .aboutbenefit-section .aboutbenefit-box.color-1{
    background-color: #ffe6e4;
}
body .aboutbenefit-section .aboutbenefit-box.color-2{
    background-color: #fff5d8;    
}
body .aboutbenefit-section .aboutbenefit-box.color-3{
    background-color: #d5e3ff;
}
body .aboutbenefit-section .aboutbenefit-box:hover{
    -webkit-box-shadow: 2px 4px 30px 0px #00000026;
    box-shadow: 2px 4px 30px 0px #00000026;
    transform: scale(1.05);
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}
body .aboutbenefit-section .aboutbenefit-box.color-1:hover .aboutbenefit-img{
    border-radius: 50%;
    border-color: #e84236;
    transition: all 0.3s ease-in-out;
}
body .aboutbenefit-section .aboutbenefit-box.color-2:hover .aboutbenefit-img{
    border-radius: 50%;
    border-color: #f9bd08;
    transition: all 0.3s ease-in-out;
}
body .aboutbenefit-section .aboutbenefit-box.color-3:hover .aboutbenefit-img{
    border-radius: 50%;
    border-color: #4186f0;
    transition: all 0.3s ease-in-out;
}

body .Minister-section{
    position: relative;
}
body .Minister-section:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    background-image: url('../img/wave-shape-1.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    height: 55px;
    z-index: 1;
}
body .Minister-section .Minister-img{
    width: 150px;
    margin-right: 20px;
}
body .custom-table.table-scroll {
    overflow: auto;
    max-height: 200px;
}
body .custom-table table {
    width: 100%;
    border-collapse: collapse;
}
body .custom-table table thead tr th {
    font-size: 14px;
    color: #7e7e7e;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid gray;
    padding: 10px;
    background-color: #ffffff;
}
body .custom-table table tbody {
    border-top: 0 !important;
}
body .custom-table table tbody tr td {
    font-size: 14px;
    color: #565656;
    text-align: left;
    padding: 10px;
    font-weight: 400;
    border: 1px solid #e9eef2;
    vertical-align: middle;
}
body .action-icons {
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
}
body .action-icons li a {
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    color: #ffffff !important;
    border-radius: 5px;
    cursor: pointer;
    background: rgb(85,209,183);
    background: -moz-linear-gradient(180deg, rgba(85,209,183,1) 0%, rgba(36,156,181,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(85,209,183,1) 0%, rgba(36,156,181,1) 100%);
    background: linear-gradient(180deg, rgba(85,209,183,1) 0%, rgba(36,156,181,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#55d1b7",endColorstr="#249cb5",GradientType=1);
    margin: 0 5px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
}
body .action-icons li a img{
    width: 22px;
}
body .action-icons li a:hover {
    background: rgb(62,134,243);
    background: -moz-linear-gradient(180deg, rgba(62,134,243,1) 0%, rgba(12,75,171,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(62,134,243,1) 0%, rgba(12,75,171,1) 100%);
    background: linear-gradient(180deg, rgba(62,134,243,1) 0%, rgba(12,75,171,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3e86f3",endColorstr="#0c4bab",GradientType=1);
    transition: all 0.3s ease-in-out;
}



body .footer-section{
    background-color: #35a854;
    position: relative;
    padding-top: 100px;
    padding-bottom: 30px;
    overflow: hidden;
}
body .footer-section:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    background-image: url('../img/wave-shape-1.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    height: 55px;
    background-color: #35a854;
    z-index: 1;
}

body .footet-logo{
    border-radius: 10px;
}
body .footer-info ul li a{
    font-size: 14px;
    padding: 2px 5px;
    cursor: pointer;
    color: #ffffff;
}
body .footer-info ul li:hover{
    color: #ffffff;
}

body .footer-info .social-info li{
    font-size: 14px;
    padding: 2px 5px;
    cursor: pointer;
}
body .footer-info .social-info li a{
    font-size: 20px;
    padding: 5px 10px;
    background-color: #ffffff;
    border-radius: 7px;
    color: #33a954 !important;
    display: block;
    min-width: 43px;
    text-align: center;
    cursor: pointer;
}
body .footer-bottom{
    background-color: #fbbc01;
    padding: 16px 0;
}
body .footer-bottom p{
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 0;
}













@media (min-width: 1500px) and (max-width: 1920px) {
   
}

@media (min-width: 1200) and (max-width: 1500px) {
   
}

@media (min-width: 320px) and (max-width: 767px) {

    body h2{
        font-size: 28px;
    }
    body h3{
        font-size: 18px;
    }
    body .banner{
        height: auto;
    }
    body .banner-wrapper .banner-icon-1 {
        position: absolute;
        top: 5%;
        left: 0;
        width: 60px !important;
    }
    body .banner-wrapper .banner-icon-3 {
        position: absolute;
        top: 5%;
        right: 0;
        width: 70px !important;
        transition: all 0.7s ease-in-out;
    }
    body .banner-wrapper .banner-icon-2 {
        position: absolute;
        bottom: 10%;
        left: 6%;
        width: 60px !important;
        transition: all 0.7s ease-in-out;
    }
    body .banner-wrapper .banner-icon-4 {
        position: absolute;
        bottom: 10%;
        right: 7%;
        width: 75px !important;
        transition: all 0.7s ease-in-out;
    }
    body .about-wrapper .about-icon-1{
        display: none;
    }
    body header .navbar .navbar-brand{
        margin-right: 0px;
    }
    body header .navbar .navbar-brand img{
        width: 100px;
    }
    body header .navbar .navbar-brand.secondary-logo img{
        height: 43px;
    }
    body header .navbar .navbar-brand.secondary-logo h5{
        display: none;
    }
    body header .navbar .navbar-brand.secondary-logo p{
        display: none;
    }
}


