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

body {
    font-family: 'Montserrat', sans-serif;
}

/* header */

strong{
    font-weight:bold
}
.banner-slider .slick-arrow {
    position: absolute;
    top: 50%;
    margin: -20px 0px 0px 0px;
    z-index: 10;
    font-size: 0;
    width: 40px;
    border-radius: 50%;
    border: none;
    height: 40px;
}

.banner-slider .slick-arrow.slick-prev {
    left: 0;
    background: url("../assets/icon/ar-left.svg") 0 0 / 100% no-repeat;
}

.banner-slider .slick-arrow.slick-next {
    right: 0;
    background: url("../assets/icon/ar-right.svg") 0 0 / 100% no-repeat;
}

.banner-slider .slick-arrow.slick-disabled {
    opacity: 0.2;
}

.header {
    padding: 10px 0;
}
.header .nav{
    margin-top:35px;
}

.header .nav-list {
    display: flex;
    align-items: center;
     gap:50px;
    width:100%;
}
.header .nav-list .dropdown-wrapper{
 position:relative;
}
.header .nav-list .dropdown-wrapper i{
font-size:13px;
}
.header .nav-list .dropdown-wrapper a{
 padding:10px 0;
}
.header .nav-list li .drop-down{
   position: absolute;
    left: 0;
    top: 110%;
    width: 200px;
    background-color: #fff;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    height: auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
}
.header .nav-list .dropdown-wrapper:hover .drop-down{
      visibility: visible;
    top: 165%;
    opacity: 1;
}
.header .nav-list .dropdown-wrapper .drop-down li{
    padding: 10px; 
}
.header .nav-list .dropdown-wrapper .drop-down li:not(:last-child){
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header .nav-list .dropdown-wrapper .drop-down li a{
font-size:16px; 
}

.header .nav-list a {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    transition: .3s;
}

.header .nav-list a:hover {
    color: var(--primary-color);
}

.general-header {
    height: 120px;
    background-color: #fff;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.general-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 129.12px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    width: 100%;
    height: 100%;
}

.general-header .nav-icon {
    display: flex;
    height: 35px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-icon .line {
    width: 55px;
    background-color: var(--primary-color);
    height: 3.5px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(253, 163, 49, 0.95);
    z-index: 999;
    transform: translateY(-4000px);
    transition: 0.4s ease;

}

.menu.show {
    transform: translateY(0);
}

.menu .menu-header {
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu .menu-header svg {
    cursor: pointer;
}

.menu .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.menu .nav ul {
    width: 100%;
}

.menu .nav ul li {
    padding: 10px 0;
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 36px;
    transition: 0.4s ease;
    width: 100%;
    margin-bottom: 25px;
}

.menu .nav ul li:hover {
    background-color: var(--primary-color);
}

.menu .nav ul li:hover a {
    color: #fff;
}

footer {
    padding: 30px 0;
    background-color: #F2F2F2;
}

footer .footer-nav ul {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-nav ul li {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.footer-nav ul li a {
    transition: all 0.4s ease;
    color: #303030;
    position: relative;
}

.footer-nav ul li a:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    height: 1px;
    width: 0;
    transition: all 0.4s ease;
    background-color: #9C9C9C;
}

.footer-nav ul li a:hover:after {
    width: 100%;
}

.footer-nav ul li a:hover {
    opacity: 0.7;
    color: #303030;
}

.footer-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DFE2ED;
    margin-bottom: 15px;
}

.footer-middle .footer-nav ul li {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    line-height: 19.5px;
    color: #303030;
}

.footer-middle .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-middle .footer-social img:hover {
    opacity: 0.8;
}

footer .copyright {
    text-align: center;
    color: #9C9C9C;
    font-weight: 600;
    line-height: 16px;
    font-size: 12px;
}

.breadcrumb-area {
    border-top: 2px solid var(--primary-color);
    padding: 30px 0;
    margin-top: 10px;
}

.breadcrumb-area ul {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.breadcrumb-area ul li a {
    color: #9C9C9C;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}

.breadcrumb-area ul li a.active,
.breadcrumb-area ul li a:hover {
    color: var(--primary-color);
}

.breadcrumb-area .breadcrumb-title {
    color: #303030;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
}
.lang {
    margin-left: auto;
  
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lang .lang-item {
    position: relative;
    font-size: 17px;
    font-weight: 500;
    background-color: #eee;
    padding: 10px;
    border-radius: 3px;
    display: flex;
    cursor: pointer;
    width: 70px;
    align-items: center;
    transition: 0.4s;
}
.lang .lang-item:hover {
  color: var(--primary-color);
}

.lang .lang-dropdown {
    position: absolute;
    background-color: #eee;
    width: 70px;
    height: 80px;
    display: flex;
    z-index: 99;
    border-radius: 3px;
    text-align: center;
    left: 0;
    right: 0;
    top: 40px;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    display: none;
}

.lang .lang-dropdown {
    line-height: 30px;
}
.lang .lang-dropdown a:hover{
   color:#333;
}
.single-item-certificate{
    padding:10px;

}
.single-item-certificate img{
    border-radius:10px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.page-item a{
      transition: 0.4s;
        background: #eee !important;
   border:none;
   color:#333;
   box-shadow:none!important;
}
.page-item.active span,.page-item a:hover{
        background: #F28C00 !important;
    border: navajowhite;
    color: #fff;
}