@font-face {
    font-family: "semiBold";
    src: url(../Fonts/tajawal/Tajawal-Medium.ttf);
}

@font-face {
    font-family: "regular";
    src: url(../Fonts/tajawal/Tajawal-Regular.ttf);
}

@font-face {
    font-family: "bold";
    src: url(../Fonts/tajawal/Tajawal-Bold.ttf);
}

* {
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    direction: rtl;
    text-decoration: none;
    font-family: 'regular';
}


/***************************** Global Style *****************************/

h1,
h2,
h3 {
    font-family: "bold";
    color: #000;
}

h4,
h5,
h6 {
    font-family: "semiBold";
    color: #222;
}

p {
    font-size: 12px;
    font-family: 'regular';
    color: #555;
}

.text-inf {
    font-size: 16px;
    line-height: 2;
    color: #999;
}

a {
    color: #000;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: 0;
}

ul {
    list-style-type: none;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
    -webkit-transition: all .3s ease !important;
    transition: all .3s ease !important;
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.scroll-top-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(-135deg, #01234b, #01234b);
    color: #000;
    text-align: center;
    line-height: 50px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
    background-color: #000;
    border-radius: 50%;
    color: #fff;
}

.scroll-top-btn i {
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    position: relative;
    bottom: 4px;
}

form .form-control {
    font-size: 15px;
}

form .form-control::-webkit-input-placeholder {
    font-size: 15px;
}

form .form-control:-ms-input-placeholder {
    font-size: 15px;
}

form .form-control::-ms-input-placeholder {
    font-size: 15px;
}

form .form-control::placeholder {
    font-size: 15px;
}

form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: 1px solid #01234b;
}

.owl-carousel.owl-theme .owl-dots {
    display: none;
}

.owl-carousel.owl-theme .owl-nav {
    display: block;
    text-align: left;
    position: absolute;
    top: -50px;
    left: 0;
}

.owl-carousel.owl-theme .owl-nav button {
    width: 30px;
    height: 30px;
    border: 1px solid #01234b;
    display: inline-block;
    font-size: 25px;
    margin: 0px 12px;
    font-family: monospace;
}

.owl-carousel.owl-theme .owl-nav button span {
    position: relative;
    bottom: 5px;
    color: #01234b;
    font-family: unset;
}

.owl-carousel.owl-theme .owl-nav button:hover {
    background-color: #01234b;
}

.owl-carousel.owl-theme .owl-nav button:hover span {
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    opacity: .7;
    width: 100%;
    height: 100%;
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/***************************** Animations *****************************/

@-webkit-keyframes width {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes width {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
        opacity: .5;
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
        opacity: .5;
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        opacity: 1;
    }
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/***************************** Start Edit Navbar & Footer *****************************/

.navbar-brand {
    max-width: 150px;
}

.all-navbar-container .top-nav {
    background-color: #01234b;
    position: relative;
    height: 100%;
}

.all-navbar-container .top-nav .logo-container {
    background-color: #fff;
    -webkit-clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
    padding: 0;
    width: 100%;
    text-align: center;
    height: 101%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.all-navbar-container .top-nav .logo-container .main-logo {
    height: 100px;
    padding-right: 30px;
}

.all-navbar-container .top-nav .logo-container .main-logo .navbar-brand img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.all-navbar-container .top-nav .logo-container .mass-logo img {
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
}

.all-navbar-container .top-nav .navbar-inner {
    width: 100%;
    padding: 30px 0px;
    padding-left: 5vw;
    position: relative;
    height: 100%;
}

.all-navbar-container .top-nav .navbar-inner .search-outer {
    width: 100%;
}

.all-navbar-container .top-nav .navbar-inner .search-outer .search-container {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    width: 70%;
    margin: auto;
    position: relative;
}

.all-navbar-container .top-nav .navbar-inner .search-outer .search-container .form-control {
    position: relative;
    padding-right: 40px;
    border-radius: 20px;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-animation: width .5s forwards;
    animation: width .5s forwards;
    display: none;
}

.all-navbar-container .top-nav .navbar-inner .search-outer .search-container .btn-outline-success {
    position: absolute;
    top: 1px;
    right: 10px;
    border: none;
    color: #01234b;
    border-radius: 20px;
    background-color: transparent;
    display: none;
    -webkit-transition: .3s;
    transition: .3s;
}

.all-navbar-container .top-nav .navbar-inner .search-outer .search-container .btn-outline-success:hover {
    background-color: transparent;
}

.all-navbar-container .top-nav .navbar-inner .icons-container {
    float: left;
    font-size: 25px;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}

.all-navbar-container .top-nav .navbar-inner .icons-container i {
    color: #ccc;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-right: 15px;
    font-size: 16px;
}

.all-navbar-container .top-nav .navbar-inner .icons-container i:hover {
    color: #fff;
}

.all-navbar-container nav {
    position: relative;
    padding: 20px 0px;
}

.all-navbar-container nav.bg-light {
    background-color: #fff !important;
    border-bottom: 1px solid #9993;
}

.all-navbar-container nav .nav-item {
    text-align: center;
    margin: 0px 10px;
    text-align: center !important;
}

.all-navbar-container nav .nav-item .nav-link {
    font-family: "regular";
    color: #333;
}

.all-navbar-container nav .nav-item .dropdown-menu {
    border-top: 3px solid #01234b;
    padding: 0;
    border-radius: 0;
}

.all-navbar-container nav .nav-item .dropdown-menu .dropdown-item {
    font-size: 13px;
    line-height: 2;
    border-bottom: 1px solid #9993;
}

.all-navbar-container nav .manager-container {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    /* position: absolute; */
    left: 0%;
}

.all-navbar-container nav .manager-container .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #01234b;
    text-align: center;
    display: block;
}

.all-navbar-container nav .manager-container .icon img {
    position: relative;
    top: 8px;
    width: 25px;
    height: 25px;
}

.all-navbar-container nav .manager-container .text {
    margin: 0px 15px;
    text-align: center;
}

.all-navbar-container nav .manager-container .text p {
    margin-bottom: .5rem;
    color: #01234b;
}

.all-navbar-container nav .manager-container .text h6 a {
    font-family: 'bold';
    color: #8B0000;
}

.navbar .container-fluid {
    padding: 0 5vw;
}

footer {
    padding: 50px 0px;
    background-color: #01234b;
}

footer .logo-footer {
    max-width: 130px;
}

footer .content {
    margin: auto;
}

footer .content .social-btn {
    padding: .5rem 2rem;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    margin: 5px;
}

footer .content .social-btn p {
    color: #fff;
    margin-bottom: 0;
    font-size: 15px;
    position: relative;
    top: 3px;
}

footer .content .social-btn span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

footer .content .social-btn span i {
    position: relative;
    top: 4px;
}

footer .content .social-btn.insta {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#e09b3d), color-stop(#c74c4d), color-stop(#c21975), to(#7024c4));
    background-image: linear-gradient(to top, #e09b3d, #c74c4d, #c21975, #7024c4);
}

footer .content .social-btn.insta i {
    color: #de2d70;
}

footer .content .social-btn.insta:hover span {
    background-color: #de2d70;
}

footer .content .social-btn.insta:hover span i {
    color: #fff;
}

footer .content .social-btn.face {
    background-color: #3d5a98;
}

footer .content .social-btn.face i {
    color: #3d5a98;
}

footer .content .social-btn.face:hover span {
    background-color: #3d5a98;
}

footer .content .social-btn.face:hover span i {
    color: #fff;
}

footer .content .followers {
    padding: 6px 30px;
    border: 1px solid #fff;
    color: #fff;
    background-color: #01234b;
    display: inline-block;
}

footer .content .followers:hover {
    background-color: #fff;
    color: #01234b;
}

footer .content .dropdown {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0px 5px;
    display: inline-block;
    float: left;
}

footer .content .dropdown .dropdown-menu {
    min-width: auto;
}

footer .content .dropdown button {
    padding: 6px 30px;
    background-color: #fff;
    color: #01234b;
}

footer .content .social-btn,
footer .content .followers,
footer .content .dropdown {
    position: relative;
    top: 15px;
}

footer .bg-light {
    background-color: transparent !important;
    padding: 50px 0px;
}

footer .navbar .nav-link {
    color: #fff !important;
    margin: 0px 10px;
}

footer .copywrite {
    border-top: 1px solid #ccc;
    padding-top: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

footer .copywrite .links {
    font-size: 12px;
}

footer .copywrite .links a {
    margin-left: 15px;
    color: #fff;
}

footer .copywrite p {
    margin-bottom: 0;
    color: #fff;
}


/***************************** Start Edit Home Page *****************************/

.swiper-container {
    overflow: hidden;
}

header .header-carousel {
    position: relative;
    overflow: hidden;
}

header .header-carousel .swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

header .header-carousel .swiper-container .overlay {
    opacity: .5;
}

header .header-carousel .swiper-container.gallery-top {
    height: 100%;
    width: 100%;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide {
    height: 550px;
    background-size: cover;
    background-position: top;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text {
    position: relative;
    z-index: 9;
    top: 30%;
    right: 20%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text h6 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    color: #fff;
    margin-bottom: 20px;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text h6::after {
    content: '';
    width: 120%;
    height: 2px;
    background-color: #ccc;
    position: absolute;
    top: 140%;
    right: 0;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text h2 {
    color: #fff;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text p {
    font-size: 15px;
    line-height: 1.8rem;
    color: #eee;
    margin-top: 1rem;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text .button {
    -webkit-clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
    background-color: #01234b;
    padding: .57rem 2.75rem;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    top: 25px;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text .button .see-more-btn {
    color: #fff;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text .button .see-more-btn i {
    margin-left: 5px;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text .button:hover {
    background-color: #fff;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text .button:hover .see-more-btn {
    color: #01234b;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide .text .button:hover i {
    -webkit-animation: spinner .5s forwards;
    animation: spinner .5s forwards;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide.swiper-slide-active .text {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide.swiper-slide-active .text h6 {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide.swiper-slide-active .text h2 {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide.swiper-slide-active .text p {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

header .header-carousel .swiper-container.gallery-top .swiper-slide.swiper-slide-active .text .button {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

header .header-carousel .swiper-container.gallery-thumbs {
    position: absolute;
    bottom: 0;
    background-color: #111;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: .8;
    padding: 20px 0;
}

header .header-carousel .swiper-container.gallery-thumbs .swiper-slide {
    background-size: cover;
    background-position: center;
    width: 25%;
    height: 100%;
    opacity: .6;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0px 15px;
    border-left: 1px solid #fff1;
}

header .header-carousel .swiper-container.gallery-thumbs .swiper-slide .news-img {
    width: 120px;
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    -o-object-fit: cover;
    object-fit: cover;
}

header .header-carousel .swiper-container.gallery-thumbs .swiper-slide .text {
    position: relative;
    z-index: 9;
    padding: 0px 10px;
}

header .header-carousel .swiper-container.gallery-thumbs .swiper-slide .text h6 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    color: #fff;
    margin-bottom: 20px;
}

header .header-carousel .swiper-container.gallery-thumbs .swiper-slide .text h6::after {
    content: '';
    width: 120%;
    height: 2px;
    background-color: #ccc;
    position: absolute;
    top: 140%;
    right: 0;
}

header .header-carousel .swiper-container.gallery-thumbs .swiper-slide .text h5 {
    color: #fff;
    font-size: 18px;
}

header .header-carousel .swiper-container.gallery-thumbs .swiper-slide .text p {
    font-size: 10px;
    color: #999;
    padding-top: .5rem;
}

header .header-carousel .swiper-container.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

header .header-carousel .swiper-button-prev.swiper-button-white,
header .header-carousel .swiper-container-rtl .swiper-button-next.swiper-button-white {
    opacity: .5;
}

header .header-carousel .swiper-button-prev.swiper-button-white:hover,
header .header-carousel .swiper-container-rtl .swiper-button-next.swiper-button-white:hover {
    opacity: 1;
}

.sections {
    padding: 50px 0px;
}

.sections .sections-carousel .item .card {
    margin: 10px;
    height: 100%;
    height: 200px;
    border-radius: 20px;
    -webkit-transition: .5s;
    transition: .5s;
    position: relative;
    overflow: hidden;
}

.sections .sections-carousel .item .card .card-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 210px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.sections .sections-carousel .item .card .card-inner img.short-img {
    /* -webkit-transform: scaleY(1.4); */
    /* transform: scaleY(1.4); */
    width: 60%;
    object-fit: contain;
    object-position: bottom;
}

.sections .sections-carousel .item .card .card-inner h6 {
    position: relative;
    top: 60px;
    right: 25px;
    font-size: .9rem;
}

.sections .sections-carousel .item .card .card-inner .section-name {
    -webkit-clip-path: 20% 0%, 80% 0%, 100% 100%, 0% 100%;
    clip-path: 20% 0%, 80% 0%, 100% 100%, 0% 100%;
    border-radius: 20px 20px 0px 0px;
    background-color: #01234b;
    width: 130px;
    height: 40px;
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 25px;
}

.sections .sections-carousel .item .card .card-inner .section-name p {
    color: #fff;
    position: relative;
    top: 12px;
}

.sections .sections-carousel .item .card:hover {
    -webkit-box-shadow: 5px 7px 12px -5px #ccc, -4px 6px 12px -5px #ccc;
    box-shadow: 5px 7px 12px -5px #ccc, -4px 6px 12px -5px #ccc;
}

.about {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #9993;
}

.about .logo img {
    max-width: 150px;
}

.about .about-l {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.about .about-b {
    position: absolute;
    left: 0;
    bottom: 0;
    min-height: 70px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.about .info {
    padding-left: 50%;
    background-color: #fff;
    position: relative;
    -webkit-clip-path: polygon(45% 0, 100% 0, 100% 100%, 20% 100%);
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 20% 100%);
    padding-bottom: 50px;
}

.about .info .content {
    padding: 80px 0px;
}

.about .info .logo {
    padding: 0 30px;
    min-width: 200px;
}

.about .info h2 span {
    color: #0073b6;
}

.about a.link {
    position: absolute;
    bottom: 20px;
    right: 30px;
    color: #999;
    z-index: 20;
}

.subjects {
    padding: 50px 0px;
    overflow: hidden;
    position: relative;
    background-color: #fcfcfc;
    margin-bottom: 50px;
}

.subjects .owl-carousel.owl-theme .owl-nav {
    top: -98px;
}

.subjects .nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
}

.subjects .nav.nav-pills .nav-link {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.subjects .nav.nav-pills .nav-link.active,
.subjects .nav.nav-pills .nav-link:hover,
.subjects .nav.nav-pills .nav-link .nav-pills .show>.nav-link {
    color: #01234b;
    font-weight: bold;
    background-color: transparent;
}

.subjects .item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 20px;
    border: 1px solid #9993;
    padding: 10px;
    border-radius: 10px;
}

.subjects .item img {
    width: 140px;
    height: 98px;
    border-radius: 7px;
}

.subjects .item .text {
    padding: 0px 10px;
}

.subjects .item .text h6 {
    font-size: .8rem;
    line-height: 1.5rem;
}

.subjects .item .text span {
    color: #666;
    font-size: 14px;
}

.subjects .main-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.subjects .main-item img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
}

.subjects .main-item .text {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
}

.subjects .main-item .text .section-name {
    background-color: #01234b;
    color: #fff;
    border-radius: 10px;
    padding: .575rem 1.375rem;
    border: none;
}

.subjects .main-item .text h5 {
    color: #fff;
    padding-top: 20px;
}

.subjects .item-row {
    width: 100%;
    height: 350px;
}

.subjects .item-row img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.components {
    padding: 60px 0px 50px;
    overflow: hidden;
}

.components .components-carousel .owl-item>.item {
    border: 1px solid #9995;
    border-radius: 15px;
    padding: 30px 15px;
    /* box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1); */
    /* margin: 15px; */
}

.components .owl-carousel.owl-theme .owl-nav {
    top: 30px;
    left: 30px;
}

.components .articles {
    padding: 12px;
    border: 1px solid #9994;
    margin: 5px 0px;
    border-radius: 15px;
    background-color: #f5f5f5;
    /* box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.1); */
}

.components .articles h5 {
    padding-bottom: 20px;
}

.components .articles .card {
    border: none;
    margin: 5px 0px;
    border: 1px solid #9993;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.components .articles .card img {
    height: 120px;
}

.components .articles .card .card-body h6 {
    font-size: 14px;
}

.components .articles .card .card-body p {
    font-size: 12px;
    color: #777;
}

.components .articles a.bttn {
    text-align: center;
    padding: 6px 40px;
    background-color: #01234b;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    border: 1px solid #01234b;
    margin-bottom: 10px;
    display: inline-block;
}

.components .articles a:hover {
    color: #01234b;
    background-color: #fff;
}

.components .images {
    padding: 10px;
    margin: 5px 0px;
    overflow: hidden;
}

.components .images h5 {
    padding-bottom: 20px;
}

.components .images .item {
    height: 200px;
    position: relative;
    margin: 20px 0px;
    overflow: hidden;
}

.components .images .item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}

.components .images .item .overlay {
    opacity: 0;
}

.components .images .item .text {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
}

.components .images .item .text .section-name {
    background-color: #01234b;
    color: #fff;
    border-radius: 10px;
    padding: .275rem 2.375rem .375rem;
    border: none;
}

.components .images .item .text h6 {
    color: #fff;
    padding-top: 20px;
    font-size: .9rem;
}

.components .images .item .gallery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    background-color: #333;
    color: #fff;
    text-align: center;
    font-size: 20px;
    opacity: .9;
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-transform: translateX(65px);
    transform: translateX(65px);
}

.components .images .item .gallery-icon i {
    position: relative;
    top: 12px;
}

.components .images .item .gallery-icon:hover {
    background-color: #fff;
    color: #01234b;
}

.components .images .item.main-item {
    height: 420px;
    margin-top: 64px;
    border-radius: 15px;
    overflow: hidden;
}

.components .images .item:hover .gallery-icon {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.videos {
    padding: 50px 0px;
}

.videos .item .card {
    border: none;
    position: relative;
    overflow: hidden;
    border: 1px solid #9994;
    margin: 2px;
    border-radius: 10px;
    overflow: hidden;
}

.videos .item .card img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
}

.videos .item .card span {
    color: #777;
    font-size: 12px;
}

.videos .item .card .videos-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    background-color: #333;
    color: #fff;
    text-align: center;
    font-size: 20px;
    opacity: .9;
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-transform: translateX(65px);
    transform: translateX(65px);
}

.videos .item .card .videos-icon i {
    position: relative;
    top: 13px;
}

.videos .item .card .videos-icon:hover {
    background-color: #fff;
    color: #01234b;
}

.videos .item .card:hover .videos-icon {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.join {
    padding: 50px 0px;
}

.join .logo-img {
    max-width: 150px;
}

.join .join-inner {
    height: 350px;
    background: url(../images/join.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: relative;
}

.join .join-inner .join-container {
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    padding: 30px 20px;
    position: relative;
    top: 22px;
    border-radius: 20px 20px 0px 20px;
}

.join .join-inner .join-container::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-left: 20px solid transparent;
    display: block;
    position: absolute;
    right: 0;
    top: 100%;
}

.join .join-inner .join-container .text h5 {
    color: #01234b;
}

.join .join-inner .join-container .text a {
    padding: 6px 30px;
    background-color: #01234b;
    color: #fff;
    border-radius: 20px;
    border: 2px solid #01234b;
    font-size: 14px;
}

.join .join-inner .join-container .text a i {
    margin-left: 5px;
    position: relative;
    top: 3px;
}

.join .join-inner .join-container .text a:hover {
    background-color: #fff;
    color: #01234b;
}

.join .join-inner .join-container .text a:hover i {
    -webkit-animation: spinner .5s forwards;
    animation: spinner .5s forwards;
}


/***************************** Start Edit Single News Page *****************************/

.page-links.links {
    padding: 50px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.page-links.links:after {
    position: absolute;
    content: "";
    left: 0;
    top: -30%;
    width: 50%;
    height: 300%;
    background-image: url(../images/logo.png);
    transform: rotate(-45deg);
    background-size: cover;
    opacity: 0.05;
}

.page-links.links a {
    margin-left: 5px;
}

.page-links.links a.active {
    color: #01234b;
    font-weight: 500;
}

.single-news {
    padding: 50px 0px;
}

.single-news .content {
    border-radius: 20px;
    border: 1px solid #9992;
    overflow: hidden;
    background-color: #fcfcfc;
}

.single-news .image-content {
    position: relative;
    width: 100%;
    height: 450px;
}

.single-news .image-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-news .image-content .section-name {
    background-color: #01234b;
    color: #fff;
    border-radius: 10px;
    padding: .275rem 2.375rem .375rem;
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
}

.single-news .card-body span {
    color: #999;
    font-size: 12px;
    direction: ltr;
}

.single-news .card-body h5 {
    padding: 1.2rem 0rem;
}

.single-news .card-body p {
    font-size: 15px;
    line-height: 2.3rem;
    color: #666;
}


/***************************** Start Edit Contact Page *****************************/

.contact {
    padding: 50px 0px;
}

.contact .page-header {
    background: url("../images/contact-header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 25px;
    color: #fff;
    border-radius: 45px;
}

.contact .page-header .links a {
    margin-left: 7px;
    color: #fff;
}

.contact .page-header .links a.active {
    font-weight: bold;
}

.contact .page-header h3 {
    padding: 62px 0px;
    color: #fff;
}

.contact .contact-inner {
    padding: 30px 0px;
}

.contact .contact-inner .form-control {
    height: calc(3em + 1rem + 2px);
    border: 1px solid #e2e2e2;
    border-radius: 15px;
}

.contact .contact-inner .form-control:focus {
    border: 1px solid #01234b;
}

.contact .contact-inner textarea {
    height: 300px !important;
}

.contact .contact-inner .submit-btn {
    background-color: #01234b;
    color: #fff;
    border-radius: 15px;
    border: 1px solid #01234b;
    margin: auto;
    position: relative;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    padding: .75rem 3.375rem;
    font-family: 'semiBold';
}

.contact .contact-inner .submit-btn:hover {
    background-color: #fff;
    color: #01234b;
}


/***************************** Start Edit news Page *****************************/

.news {
    padding: 50px 0px;
}

.news .page-header {
    background: url("../images/news-header.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 25px;
    color: #fff;
    border-radius: 45px;
}

.news .page-header .links a {
    margin-left: 7px;
    color: #fff;
}

.news .page-header .links a.active {
    font-weight: bold;
}

.news .page-header h3 {
    padding: 62px 0px;
    color: #fff;
}

.news .news-inner {
    padding: 30px 0px;
}

.news .news-inner .nav-pills .nav-link {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.news .news-inner .nav-pills .nav-link.active,
.news .news-inner .nav-pills .nav-link:hover,
.news .news-inner .nav-pills .nav-link .nav-pills .show>.nav-link {
    color: #01234b;
    font-weight: bold;
    background-color: transparent;
}

.news .news-inner .content {
    padding: 20px;
}

.news .news-inner .content .articles {
    padding: 10px;
    border: 1px solid #ccc;
    margin: 5px 0px;
}

.news .news-inner .content .articles h5 {
    padding-bottom: 20px;
}

.news .news-inner .content .articles .card {
    border: none;
    margin: 5px 0px;
}

.news .news-inner .content .articles .card img {
    height: 120px;
}

.news .news-inner .content .articles .card .card-body h6 {
    font-size: 14px;
}

.news .news-inner .content .articles .card .card-body p {
    font-size: 12px;
    color: #777;
}

.news .news-inner .content .articles a {
    text-align: center;
    font-size: 14px;
}

.news .news-inner .content .articles a:hover {
    color: #01234b;
}

.news .news-inner .content .news-card {
    margin-bottom: 10px;
}

.news .news-inner .content .news-card .image-content {
    width: 100%;
    height: 300px;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.news .news-inner .content .news-card .image-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news .news-inner .content .news-card .image-content .section-name {
    background-color: #01234b;
    color: #fff;
    border-radius: 10px;
    padding: .275rem 2.375rem .375rem;
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
}

.news .news-inner .content .news-card .card-body {
    border-radius: 15px;
    position: relative;
    top: -50px;
    background-color: #Fff;
    width: 94%;
    padding: 1.4rem;
    border: 1px solid #eee;
    margin-right: 3%;
}

.news .news-inner .content .news-card .card-body h6 {
    margin-bottom: 1.5rem;
}

.news .news-inner .content .news-card .card-body p {
    color: #777;
}

.news .news-inner .content .news-card .card-body .card-footer {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    width: 100%;
}

.news .news-inner .content .news-card .card-body .card-footer .button {
    -webkit-clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
    background-color: #01234b;
    padding: .57rem 2.75rem;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.news .news-inner .content .news-card .card-body .card-footer .button .see-more-btn {
    color: #fff;
}

.news .news-inner .content .news-card .card-body .card-footer .button .see-more-btn i {
    margin-left: 5px;
}

.news .news-inner .content .news-card .card-body .card-footer .button:hover {
    background-color: #041a33;
}

.news .news-inner .content .news-card .card-body .card-footer .button:hover .see-more-btn {
    color: #fff;
}

.news .news-inner .content .news-card .card-body .card-footer .button:hover i {
    -webkit-animation: spinner .5s forwards;
    animation: spinner .5s forwards;
}

.news .news-inner .content .news-card .card-body .card-footer span {
    font-size: 15px;
    color: #aaaaaa;
    position: relative;
    top: 10px;
}

.news .news-inner .content .pagination {
    width: 100%;
}

.news .news-inner .content .pagination nav {
    margin: auto;
}

.news .news-inner .content .pagination nav .page-link {
    color: #01234b;
    padding: .5rem .95rem;
}

.news .news-inner .content .pagination nav .page-link.active {
    background-color: #01234b;
    color: #fff;
}

.news .news-inner .content .pagination nav .page-link:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/* -------------------- about page -------------------- */

.about-pg {
    padding: 50px 0;
}

.about-pg .img {
    position: relative;
}

.about-pg .img img {
    max-width: 100%;
    border-radius: 30px;
    border: 5px solid #01234b;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}


/***************************** Start Edit Home Page *****************************/


/***************************** Start Edit Home Page *****************************/


/*# sourceMappingURL=style.css.map */