@font-face{font-family:KalamehWeb;font-style:normal;font-weight:100;src:url('../fonts/kalameh/woff2/KalamehWeb-Thin.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-Thin.woff') format('woff')}@font-face{font-family:KalamehWeb;font-style:normal;font-weight:200;src:url('../fonts/kalameh/woff2/KalamehWeb-ExtraLight.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-ExtraLight.woff') format('woff')}@font-face{font-family:KalamehWeb;font-style:normal;font-weight:300;src:url('../fonts/kalameh/woff2/KalamehWeb-Light.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-Light.woff') format('woff')}@font-face{font-family:KalamehWeb;font-style:normal;font-weight:500;src:url('../fonts/kalameh/woff2/KalamehWeb-Medium.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-Medium.woff') format('woff')}@font-face{font-family:KalamehWeb;font-style:normal;font-weight:600;src:url('../fonts/kalameh/woff2/KalamehWeb-Semibold.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-Semibold.woff') format('woff')}@font-face{font-family:KalamehWeb;font-style:normal;font-weight:800;src:url('../fonts/kalameh/woff2/KalamehWeb-ExtraBold.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-ExtraBold.woff') format('woff')}@font-face{font-family:KalamehWeb;font-style:normal;font-weight:900;src:url('../fonts/kalameh/woff2/KalamehWeb-Black.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-Black.woff') format('woff')}@font-face{font-family:KalamehWeb;font-style:normal;font-weight:700;src:url('../fonts/kalameh/woff2/KalamehWeb-Bold.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-Bold.woff') format('woff')}@font-face{font-family:KalamehWeb;font-style:normal;font-weight:400;src:url('../fonts/kalameh/woff2/KalamehWeb-Regular.woff2') format('woff2'),url('../fonts/kalameh/woff/KalamehWeb-Regular.woff') format('woff')}
.bg-theme{
    background-color: #1b3b90;
}
body {
    font-family: 'KalamehWeb', serif;
}
a{
    text-decoration: none!important;
}
.navbar-collapse{
    list-style: none;
}
.text-start{
    text-align: left;
}
.text-end{
    text-align: right;
}
button:focus{
    outline: 0;
}
.g-4{
    gap: 50px;
}
/*------------------------------------------------------------------
[Table of contents]
1. Header
2. Slider
3.
4.
5.
-------------------------------------------------------------------*/
/* ==========================================================
! 01. Header
==============	=========================================== */
nav{
    background-color: #132d76;
    border-bottom: 4px solid #e29f13;
    position: relative;
}
.navbar-menu li{
    padding: 10px 5px;
}
.navbar-menu li a{
    color: white;
    padding: 23px 10px
}
.navbar-menu .current-menu-item a{
    background-color: #e29f13 ;
}
.navbar-menu > li.nav-item.dropdown > ul{
    background-color: #132d76;
}
.dropdown-item:hover,.dropdown-item:hover{
    background-color: #132d76;
}
.dropdown-toggle::after{
    color: #e29f13;
}
.dropdown-divider{
    border-top: 1px solid #e29f13;
}
.navbar-menu,.navbar-menu > li.nav-item.dropdown > ul{
    text-align: initial;
}

.menu-item-has-children {
    position: relative;
    display: inline-block;
}
.menu-item-has-children:after{
    content: "\f078";
    font: var(--fa-font-solid);
    color: #e29f13;
}
ul li::marker {
    content: "";
}
.sub-menu {
    display: none;
    position: absolute;
    top: 50px;
    background-color: #132d76;
    min-width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 2;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}
.sub-menu .menu-item a{
    background-color: transparent;
}
.sub-menu > li:hover:before{
    content:'\f111' ;
    font-family: FontAwesome;
    font-size: 10px;
    color: #e29f13;
}

#wrapper > header > nav > div > button{
    background: transparent;
    padding: 10px;
    border: 1px solid #e29f13;
    margin-right: 15px;
    border-radius: 8px;
}
#wrapper > header > nav > div > button > i{
    color: white;
    font-size: 26px;
}
#mobileMenu{
    overflow: hidden;
    background-color: #132d76;
    border-bottom: 4px solid #e29f13;
}
#mobileMenu > ul{
    padding: 15px;
    text-align: initial;
}
#mobileMenu > ul > li{
    padding: 10px 0;
}
#mobileMenu > ul > li > a{
    color: white;
}
/* ==========================================================
! 02. Slider
==============	=========================================== */
.slider{
    background-image: url("../images/slider-section-background.png");
    height: 580px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.slide-img{
    border-radius: 30px;
}

#wrapper > section.slider.curved > div > div > div > a.slick-current > div > p{
    transform: translateY(100px);
    font-size: 28px;
    font-weight: bold;
    color: white;
    animation: fadeIn 5s;
    -webkit-animation: fadeIn 5s;
    -moz-animation: fadeIn 5s;
    -o-animation: fadeIn 5s;
    -ms-animation: fadeIn 5s;
}
#wrapper > section.slider.curved > div > div > div > a.slick-slide > div > p{
    transform: translateY(100px);
    font-size: 28px;
    font-weight: bold;
    color: white;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

@-o-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-ms-keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.slide > button.slick-prev.slick-arrow{
    background-image: url("../images/arrow1.png");
    background-position: center;
    right: 50px;
}
.slide > button.slick-next.slick-arrow{
    background-image: url("../images/arrow2.png");
    background-position: center;
    left: 50px;
}

#wrapper > section.slider.curved > .slide > div > div > .slick-slide{
    filter: blur(8px);
}
#wrapper > section.slider.curved > .slide > div > div > .slick-current{
    filter: blur(0px);
}

/* ==========================================================
! 03. Intro
==============	=========================================== */
.intro{
    height: 80vh;
}
.intro-div{
    background-image: url("../images/intro-section-background.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -7%;
}
.intro-content{
    text-align: justify;
    margin-top: 14%;
}
.intro-content h1{
    color: #132d76;
    font-size: 26px;
    font-weight: bold;
    width: fit-content;
    border-bottom: 3px solid #e29f13;
    padding-bottom: 3px;
}
.intro-content p{
    font-size: 16px;
    line-height: 25px;
    color: #58595b;
    font-weight: 400;
}
.but button{
    padding: 5px 35px;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
}
.but-intro{
    text-align: end;
}
.but-intro button{
    background-color: #40c8f4;
}
/* ==========================================================
! 01. Service
==============	=========================================== */
.accordion{
    height: 100vh;
}
.accordion.width {
    display: flex;
}

.accordion.width .card {
    flex-direction: row;
    flex-grow: 0;
    flex-shrink: 1;
    /*min-width: min-content;*/
    background-image: url("../images/accordion.jpg");
    background-size: cover;
    background-position: bottom;
    border: 0;
    border-radius: 0;
    overflow: initial;
    -moz-margin-end: -15px;
}

.accordion.width .card .card-header {
    cursor: pointer;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    text-align: center;
    margin-bottom: 0;
    background-color: #132d76;
    color: #e29f13;
    box-shadow: 25px 0 22px -6px rgba(0,0,0,0.33);
}

.accordion.width .card .card-header:not(.collapsed) {
    pointer-events: none;
    background-color: #40c8f4;
    color: white;
}

.collapsing.width {
    transition: width 0.35s ease;
    height: auto;
    width: 0;
}
.accordion-h{
    color: #132d76;
    font-weight: bold;
    width: fit-content;
    margin: auto;
    border-bottom: 3px solid white;
    padding-bottom: 3px;
}
.but-accordion button{
    background-color: #00000066;
}
/* ==========================================================
! 01. Auction
==============	=========================================== */
#auction{
    background-image: url('../images/bg.png');
    background-size: cover;
    position: relative;
}
.card-content{
    position: relative;
    border-radius: 30px;
    margin: 100px 25px 50px 25px;
}
.card-content .card-body{
    padding: 10px 35px 20px 35px;
}
.card-content img{
    border-radius: 15px 15px 0 0;
    width: 95%;
    height: auto;
    margin: 0 auto;
    margin-top: -45px!important;
}
.lable{
    color: white;
    font-weight: bold;
    padding: 10px 24px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    transform: translateY(40px);

}
.lable-inprogress{
    background-color: #009f05;

}
.lable-close{
    background-color: #ae2222;

}
.lable-wait{
    background-color: #c38e0f;

}
.card-content h6{
    color: #132d76;
    font-size: 16px;
    font-weight: bold;
    text-align: start;
    margin-bottom: 0;
    padding-top: 5px;
}
.card-content p{
    text-align: justify;
    direction: rtl;
    font-size: 14px;
    line-height: 2;
}
.card-content a{
    display: block;
    text-align: end;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #e29f13;
}
.but-cards{
    text-align: center;
}
.but-cards button{
    background-color: #40c8f4;
}
/* ==========================================================
! 01. Project
==============	=========================================== */
.project{
    height: fit-content;
    background-image: url("../images/project.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.project-card-body{
    padding-bottom: 100px;
}
.project-img{
    position: relative;
    margin-top: -380px;
    margin-right: 30px;
}
.project-img img{
    object-fit: cover;
    border-radius: 25px;
}
.project-content{
    opacity: 0;
    position: absolute;
}
.project-title{
    text-align: center;
    font-weight: bold;
    color: #e29f13;
    font-size: 24px;
    margin-bottom: 0;
    max-height: 70px;
}
.project-content > div > p:nth-child(2){
    color: white;
    font-size: 12px;
    text-align: justify;
    padding: 0 20px;
    margin-bottom: 0;
}
.project-card-body a{
    text-align: end;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #4dbfe1;
    margin-left: 25px;
}
.project-but{
    float: right;
    margin-right: 25px;
}
.project-but button{
    padding: 5px 15px;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    background-color: #00000066;
}
.overlay {
    position: absolute;
    top: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    opacity:0;
    border-radius: 25px;
}
.project-card-body:hover .overlay, .project-card-body:hover .project-but > button, .project-card-body:hover .project-content{
    transition: 1s;
}
.project-card-body:hover .overlay{
    opacity: 1;
}
.project-card-body:hover .project-but > button{
    background-color: #4dbfe1;
}
.project-card-body:hover .project-content{
    opacity: 1;
}
/* ==========================================================
! 01. News
==============	=========================================== */
.news{
    background-image: url('../images/bg2.png');
    background-size: cover;
    position: relative;
    margin-bottom: -5%;
}
.news-img img{
    width: 100%;
    height: auto;
    border-radius: 25px 25px 0 0;
}
.news-content{
    padding: 0 20px;
}
.news-text{
    border: 2px solid #e29f13;
    border-top: none;
    border-radius: 0 0 25px 25px;
}
.news-text h4{
    text-align: start;
    font-size: 16px;
    color: black;
    font-weight: bold;
    min-height: 80px;
}
.news-content p{
    text-align: justify;
    font-size: 12px;
    margin-bottom: 20px;
}
.news-content a{
    text-decoration: none;
    color: #4dbfe1;
    font-weight: bold;
}
.news-cards{
    text-align: center;
}
.news-cards button{
    background-color: #e29f13;
}

.section-lable{
    width: 100px;
    height: 100px;
    background-color: #223577;
    border: 4px solid #f0bb4a;
    border-radius: 15px;
    padding: 10px;
    position: absolute;
    top: -50px;
    right: 20px;
}
.section-lable img{
    height: 75px;
}
.section-lable p{
    margin-bottom: 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
.cards-carousel .section-lable img{
    margin-top: -23px;
    margin-bottom: -16px;
}
.project .section-lable img{
    margin-top: -20px;
    margin-bottom: -5px;
}
.news .section-lable img{
    margin-top: -20px;
    margin-bottom: -5px;
}

/* accordion-section*/

/* cards-carousel-section*/

/* project-section*/

/* news-section*/

/* head-section*/
.head{
    background-image: url('../images/head-background.jpg');
    background-size: cover;
    background-position: bottom;
    height: 70vh;
}
.head .title{
    padding-top: 150px;
}
.head h1{
    font-weight: bold;
    width: fit-content;
    margin: auto;
    font-size: 40px;
    color: white;
    border-bottom: 3px solid #e29f13;
    padding-bottom: 3px;
}
.head p{
    font-size: 16px;
    color: white;
    padding-top: 5px;
}

/* main-section */
.main{
    background-image: url('../images/main.jpg');
    background-size: cover;
    height: fit-content;
    margin-top: -15%;
}
.main .card{
    border-radius: 25px;
    margin: auto;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.5);
    z-index: 2;
}
.main img{
    border-radius: 25px 25px 0 0;
    height: auto;
}
.main h6{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #132d76;
    margin-top: -35px;
    border-radius: 25px;
    padding: 5px;
}
.main p{
    text-align: justify;
    color: #132d76;
}
#wrapper > section.main > div.pt-5 > div > div.row > div > div > div > div{
    display: flex;
    justify-content: space-between;
}
.main span{
    padding-top: 5px;
    color: #adadad;
}
.main a{
    background-color: #4dbfe1;
    color: white;
    border-radius: 15px;
    padding: 5px 15px;
}
.main a:hover{
    background-color: #4dbfe1;
    color: white;
    border-radius: 15px;
    padding: 5px 15px;
}
#wrapper > section.main > div > div.container > div.but.but-cards{
    padding-bottom: 100px;
    padding-top: 100px;
}
.yellow-divider{
    height: 50vh;
    background-color: #ffd903ba;
    transform: translateY(-1000px);
    box-shadow: 0 3px 60px rgb(0 0 0 / 0.6);
}
/* contact-us-section */
.contact-us{
    background-image: url('../images/main.jpg');
    background-size: cover;
}
#wrapper > section.contact-us > div > div > div{
    border-radius: 25px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.8);
    z-index: 2;
}
#wrapper > section.contact-us > div > div > div > div.text-end{
    margin-bottom: -8px;
}
#wrapper > section.contact-us > div > div > div > div.text-end > iframe, #wrapper > section.contact-us > div > div.row.justify-content-center.mt-5 > div.col-10.d-none.d-md-flex.p-0.bg-white > div:nth-child(1){
    border-radius: 25px;
    box-shadow: 0 -1px 10px rgb(0 0 0 / 0.8);
}
.panel-body h3{
    font-weight: bold;
    color: #132d76;
}
.panel-body h3 i{
    color: #e29f13;
    padding-left: 10px;
    font-size: 18px;
}
.panel-body p{
    color: #132d76;
    line-height: 2.5;
    font-weight: bold;
    font-size: 14px;
    margin-right: 34px;
}
.panel-body > p > a{
    color: #132d76;
}
/* about-us-section */
.about{
    background-image: url('../images/main.jpg');
    background-size: cover;
}
.about1{
    background: transparent;
    margin-top: -10%;
    box-shadow: inset 19px -35px 25px -30px rgba(0,0,0,0.8);
}
#wrapper > section.about > div.about1 > div > div > div > img{
    margin-bottom: -33%;
}
#wrapper > section.about > div.about2 > div > div > div > p{
    margin-top: 38%;
}
.about2{
    background-color: #e29f13;
    box-shadow: inset 19px 35px 25px -30px rgba(0,0,0,0.8);
}
#wrapper > section.about > div.about1 > div > div > div{
    border-radius: 25px 25px 0 0;
    margin: auto;
    box-shadow: 0 -25px 25px rgb(0 0 0 / 0.25);
    z-index: 2;
}
#wrapper > section.about > div.about2 > div > div > div{
    border-radius: 0 0 25px 25px;
    margin: auto;
    box-shadow: 0 25px 25px rgb(0 0 0 / 0.25);
}
.about1 p, .about2 p{
    color: #132d76;
    font-weight: bold;
    line-height: 2;
    text-align: justify;
}
.lists{
    box-shadow: 0 3px 60px rgb(0 0 0 / 0.6);
}
.missions{
    background-image: url('../images/bg.png');
    background-size: cover;
    background-color: #002578;
}
.vision{
    background-image: url('../images/bg2.png');
    background-size: cover;
}
.activity{
    background-image: url('../images/bg.png');
    background-size: cover;
    background-color: #ff9f15e8;
}
.ability{
    background-image: url("../images/project.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#wrapper > section.ability.lists > div{
    background-color: #0016b5ad;
}
.directors{
    background-image: url('../images/main.jpg');
    background-size: cover;
    background-position: left;
}
.lists h5{
    font-weight: bold;
    width: fit-content;
    margin: auto;
    font-size: 24px;
    border-bottom: 3px solid #e29f13;
    padding-bottom: 3px;
}
.missions h5, .ability h5{
    color: white;
}
.vision h5,.directors h5{
    color: #132d76;
}
.activity h5{
    color: #132d76;
    border-bottom: 3px solid white;
}
#wrapper > section.lists > div > p{
    font-size: 16px;
    padding-top: 5px;
}
#wrapper > section.missions > div > p, #wrapper > section.activity > div > p{
    color: white;
}
#wrapper > section.lists > div.container.text-white.pb-5 > div > div > div > p > i, #wrapper > section.vision.lists > div.container.pb-5 > div > div > div > p > i{
    padding-left: 5px;
}
#wrapper > section.activity > div.container.text-white.pb-5 > div > div > div > p > i{
    color: #132d76;
}
#wrapper > section.vision > div.container.text-white.pb-5 > div > div > div > p{
    color: #132d76;
}
#wrapper > section.directors.lists > div.container.pb-5.text-center > div > div > div{
    border-radius: 15px;
}
#wrapper > section.directors.lists > div.container.pb-5.text-center > div > div > div > div > h3 {
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #4dbfe1;
    border-radius: 25px;
    margin-top: -35px;
    padding: 8px;
}
#wrapper > section.directors.lists > div.container.pb-5.text-center > div > div > div > img{
    border-radius: 15px 15px 0 0;
}
#wrapper > section.directors.lists > div.container.pb-5.text-center > div > div > div > div > p{
    color: #132d76;
    font-weight: bold;
    margin-bottom: 20px;
}
#wrapper > section.directors.lists > div.container.pb-5.text-center > div > div > div > div > a > i{
    color: #e29f13;
    font-size: 26px;
}
#wrapper > section.directors.lists > div.container.pb-5.text-center{
    padding-bottom: 150px!important;
}


[dir=rtl] .slick-prev:before,.slick-prev:before,[dir=rtl] .slick-next:before,.slick-next:before{
    content: ''!important;
}
#auction > div.cards.row.pt-3.slick-initialized.slick-slider > button.slick-prev.slick-arrow{
    background-image: url("../images/arrow1.png");
    background-position: center;
}
#auction > div.cards.row.pt-3.slick-initialized.slick-slider > button.slick-next.slick-arrow{
    background-image: url("../images/arrow2.png");
    background-position: center;
}
#wrapper > section.news > div > div.news-carousel.slick-initialized.slick-slider > button.slick-prev.slick-arrow{
    background-image: url("../images/arrow3.png");
    background-position: center;
}
#wrapper > section.news > div > div.news-carousel.slick-initialized.slick-slider > button.slick-next.slick-arrow{
    background-image: url("../images/arrow4.png");
    background-position: center;
}
#wrapper > section.project > div > div.project-carousel.pt-5.slick-initialized.slick-slider > button.slick-prev.slick-arrow{
    background-image: url("../images/arrow5.png");
    background-position: center;
}
#wrapper > section.project > div > div.project-carousel.pt-5.slick-initialized.slick-slider > button.slick-next.slick-arrow{
    background-image: url("../images/arrow6.png");
    background-position: center;
}
/* units-section */
.units-head{
    background-image: url('../images/head-background.jpg');
    background-size: cover;
    background-position: bottom;
    height: 60vh;
}
.units-head .title{
    padding-top: 150px;
}
.units-head h1{
    font-weight: bold;
    width: fit-content;
    margin: auto;
    font-size: 32px;
    color: white;
    border-bottom: 3px solid #e29f13;
    padding-bottom: 3px;
}
.units-head p{
    font-size: 16px;
    color: white;
    padding-top: 5px;
}
.units-intro{
    background-image: url('../images/bg2.png');
    background-size: cover;
    margin-top: -5%;
}
.units-intro p{
    text-align: justify;
    color: #132d76;
    padding-top: 75px;
    font-weight: bold;
    line-height: 2;
}
.targets{
    background-image: url("../images/project.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#wrapper > section.targets > div{
    background-color: #da8f00c4;
}
#wrapper > section.targets > div > div > div.col-12.col-md-3,
#wrapper > section.ability-units > div > div > div.d-none.d-md-block.col-md-3,
#wrapper > section.ability-units > div > div > div.d-block.d-md-none.col-md-3 {
    background-color: #00000070;
    position: relative;
}
#wrapper > section.ability-units > div > div > div.d-none.d-md-block.col-md-3,
#wrapper > section.ability-units > div > div > div.d-block.d-md-none.col-md-3{
    background-color: #00000070;
    position: relative;
}
#wrapper > section.targets > div > div > div > h4{
    font-weight: bold;
    width: fit-content;
    position: absolute;
    top: 50%;
    left: 20%;
    font-size: 24px;
    color: white;
    border-bottom: 3px solid white;
    padding-bottom: 3px;
}
#wrapper > section.targets > div > div > div, #wrapper > section.ability-units > div > div > div{
    padding: 150px 50px;
}
.targets p, .ability-units p{
    color: white;
    text-align: justify;
    line-height: 2;
    font-size: 18px;
}
.ability-units{
    background-image: url('../images/bg.png');
    background-size: cover;
}
.ability-units > div{
    background-color: rgb(0 49 148 / 85%);
}
#wrapper > section.ability-units > div > div > div > h4{
    font-weight: bold;
    width: fit-content;
    position: absolute;
    top: 50%;
    font-size: 24px;
    color: white;
    border-bottom: 3px solid white;
    padding-bottom: 3px;
}
.activity-units{
    background-image: url('../images/bg2.png');
    background-size: cover;
}
.activity-units > div{
    background-color: #da8f00c4;
}
.activity-units h4{
    font-weight: bold;
    width: fit-content;
    margin: auto;
    font-size: 24px;
    border-bottom: 3px solid white;
    padding-bottom: 3px;
}
.activity-units p{
    text-align: justify;
    line-height: 2;
    font-size: 18px;
}
.projects-units{
    background-image: url('../images/main.jpg');
    background-size: cover;
    background-position: bottom;
}
.projects-units h4{
    font-weight: bold;
    width: fit-content;
    margin: auto;
    font-size: 24px;
    color: #132d76;
    border-bottom: 3px solid #e29f13;
    padding-bottom: 3px;
}
/* all-units-section */
.tabs{
    background-image: url('../images/main.jpg');
    background-size: cover;
    margin-top: -10%;
}
#wrapper > section.tabs > div > div > div > div.col-4, #wrapper > section.tabs > div > div > div{
    border-radius: 25px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.8);
}
#wrapper > section.tabs > div > div > div{
    padding: 0;
}
.tab-pane > div > a > button{
    padding: 5px 25px;
    margin-top: 10px;
    background-color: #41caf8;
    border: 0;
    color: white;
    border-radius: 15px;
    font-weight: bold;
}
.tab-pane > p{
    text-align: justify;
    font-weight: bold;
    color: #132d76;
    line-height: 2;
}
.nav-pills .nav-link{
    text-align: start;
    font-size: 18px;
    font-weight: bold;
    color: #132d76;
    padding: 25px;
}
.nav-link.active{
    color: #e29f13!important;
    background-color: white!important;
    position: relative;
}
.nav-link.active::before{
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    background: #e29f13;
    left: -15px;
    top: 50%;
    position: absolute;
}
#wrapper > section.tabs > div > div:nth-child(2) > div{
    box-shadow:none!important;
    border-radius: 0;
}
#wrapper > section.tabs > div.text-center.pt-5 > h4{
    font-weight: bold;
    width: fit-content;
    margin: auto;
    color: #132d76;
    font-size: 24px;
    border-bottom: 3px solid #e29f13;
    padding-bottom: 3px;
}
.slick-list{
    border-radius: 0!important;
    box-shadow: none!important;
}
/* 404 */
.error{
    height: 100vh;
    background: rgb(219,160,33);
    background: linear-gradient(0deg, rgba(219,160,33,1) 0%, rgba(0,19,159,1) 100%);
    overflow: hidden;
}
.error > div{
    padding: 150px 0;
}
.error > div > div > div > h1{
    font-size: 150px;
    color: white;
    text-decoration: underline;
}
.error > div > div > div > p{
    color: white;
}
/* single */
.single{
    background-image: url('../images/main.jpg');
    background-size: cover;
    margin-top: -10%;
    margin-bottom: -10%;
}
.single-img{
    border-radius: 25px;
}
.single-title > h1{
    font-size: 26px;
    font-weight: bold;
}
.single-content{
    text-align: justify;
    padding-bottom: 150px!important;
}
/* ==========================================================
! 01. Footer
==============	=========================================== */
footer{
    overflow: hidden;
}
footer:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(26,45,109);
    background: radial-gradient(circle, rgba(26,45,109,1) 0%, rgba(31,49,109,1) 35%, rgba(28,41,84,1) 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(2);
}
footer h3{
    font-size: 16px;
    font-weight: bold;
}
footer p{
    font-size: 14px;
    line-height: 2;
}
footer img{
    margin-top: -25px;
}
.copyright{
    font-size: 9px;
    margin-bottom: 0;
}
.fa-circle{
    color: #e29f13;
    margin: auto;
    font-size: 10px;
}
.icons i{
    padding: 5px;
    border: 1px solid;
    border-radius: 100px;
    margin: 0 3px;
}
#wrapper > footer > div > div > .quick-access > ul > li > a{
    color: white;
}
#wrapper > footer > div > div > .quick-access > ul > li > a:hover{
    color: #e29f13;
}
/* responsive */
@media (min-width: 0) {
    /* header */
    #wrapper > header > nav > div > img{
        display: none;
    }
    #wrapper > header > nav > div > button > span > i{
        font-size: 30px;
        color: white;
    }
    .navbar-toggler{
        border: 2px solid #e29f13;
        margin-right: 5px;
    }
    #navbarSupportedContent > ul{
        padding-right: 0;
    }
    #wrapper > header > nav > div > button {
        display: grid !important;
    }
    #mobileMenu{
        display: none;
    }
    /* slider-section*/
    .slider{
        background-position: center;
    }
    .curved {
        position: relative;
        height: 75vh;
        border-bottom-left-radius: 100% 5%;
        border-bottom-right-radius: 100% 5%;
    }
    #wrapper > section.slider.curved > .slide > div > div > .slick-slide{
        transform: scale(.45);
    }
    .slide > button.slick-next.slick-arrow,.slide > button.slick-prev.slick-arrow{
        top: 430px;
    }
    /* intro-section*/
    .intro-div{
        background-position: bottom;
    }
    .intro-content h1{
        font-size: 25px!important;
    }
    /* accordion-section*/
    .accordion-content{
        padding-right: 100px;
    }
    .accordion-h{
        font-size: 18px;
    }
    .accordion-p{
        font-size: 11px;
    }
    .accordion.width .card .card-header {
        padding: 8px!important;
    }
    /* cards-carousel-section*/
    .cards-carousel{
        padding: 0 50px;
    }
    /* project-section*/
    .project-img img{
        height: 310px;
        width: 295px;
    }
    .overlay{
        height: 310px;
        width: 295px;
    }
    .project-content{
        top: -30px;
        right: -30px;
    }
    .project-but{
        margin-top: 32px;
    }
    .project-content > div > p:nth-child(2){
        line-height: 2;
    }
    #wrapper > section.project > div > div > button.slick-prev.slick-arrow{
        margin-right: 25px;
        z-index: 2;
    }
    #wrapper > section.project > div > div > button.slick-next.slick-arrow{
        margin-left: 25px;
        z-index: 2;
    }
    /* news-section*/

    #wrapper > section.news > div > div.news-carousel.slick-initialized.slick-slider > button.slick-next.slick-arrow{
        right: auto;
        left: 15px!important;
        top:610px!important;
    }
    #wrapper > section.news > div > div.news-carousel.slick-initialized.slick-slider > button.slick-prev.slick-arrow{
        right: 15px!important;
        top: 610px!important;
        left: auto!important;
    }
    /* head-section*/
    /* main-section */
    .main{
        margin-bottom: -35%;
    }
    /* contact-us-section */
    #wrapper > section.contact-us > div > div > div{
        transform: scale(.95);
        margin-top: 10px;
    }
    #wrapper > section.contact-us > div > div:nth-child(1) > div:nth-child(2){
        margin-top: 50%;
    }
    #wrapper > section.contact-us > div > div.row.justify-content-center.mt-5 > div:nth-child(3){
        margin-bottom: 50%;
    }
    .contact-us {
        margin-top: -30%;
        margin-bottom: -30%;
    }
    .panel-body h3 {
        font-size: 20px;
    }
    /* about-us-section */
    .about-img{
        background-position: -120px 0px;
    }
    .directors{
        margin-bottom: -30%;
    }
    /* units-section */
    .projects-units{
        margin-bottom: -30%;
    }
    #wrapper > section.projects-units > div.but.but-cards.py-5{
        padding-bottom: 70%!important;
    }
    /* all-units-section */
    .tabs{
        margin-bottom: -50%;
    }
    #wrapper > section.tabs > div > div.row.justify-content-center.pb-5 > div{
        transform: scale(0.85);
    }
    #wrapper > section.tabs > div > div.but.but-cards.py-5{
        padding-bottom: 70% !important;
    }
    /* 404 */
    .error{
        margin-bottom: -30%;
    }
}
@media (min-width: 402px){
    .project-content{
        top: -30px;
        right: -60px;
    }

}
@media (min-width: 768px) {
    /* header */
    /* slider-section*/
    .curved {
        position: relative;
        height: 60vh;
        border-bottom-left-radius: 100% 20%;
        border-bottom-right-radius: 100% 20%;
    }
    #wrapper > section.slider.curved > .slide > div > div > .slick-slide{
        transform: scale(.9);
    }
    .slide > button.slick-next.slick-arrow,.slide > button.slick-prev.slick-arrow{
        top: 550px;
    }
    /* intro-section*/
    /* accordion-section*/
    .accordion-content{
        padding: 100px 200px;
    }
    .accordion-h{
        font-size: 24px;
    }
    .accordion-p{
        font-size: 16px;
    }
    .accordion.width .card .card-header {
        padding: 10px!important;
    }
    /* cards-carousel-section*/
    .cards-carousel{
        padding: 0 100px;
    }
    /* project-section*/
    .project-img img{
        height: 335px;
        width: 305px;
    }
    .overlay{
        height: 335px;
        width: 305px;
    }
    .project-content{
        top: -20px;
        right: -30px;
    }
    .project-but{
        margin-top: 8px;
    }
    .project-content > div > p:nth-child(2){
        line-height: 3;
    }
    #wrapper > section.project > div > div > button.slick-prev.slick-arrow{
        margin-right: 0;
    }
    #wrapper > section.project > div > div > button.slick-next.slick-arrow{
        margin-left: 0;
    }
    /* news-section*/
    #wrapper > section.news > div > div.news-carousel.slick-initialized.slick-slider > button.slick-next.slick-arrow{
        right: auto;
        left: 15px!important;
        top:610px!important;
    }
    #wrapper > section.news > div > div.news-carousel.slick-initialized.slick-slider > button.slick-prev.slick-arrow{
        right: 15px!important;
        top: 610px!important;
        left: auto!important;
    }
    /* head-section*/
    /* main-section */
    /* contact-us-section */
    .contact-us{
        margin-top: -10%;
        margin-bottom: -10%;
    }
    #wrapper > section.contact-us > div{
        padding-bottom: 300px;
    }
    /* about-us-section */
    .about-img{
        background-position: left;
    }
    .directors{
        margin-bottom: -5%;
    }
    /* units-section */
    .projects-units{
        margin-bottom: -10%;
    }
    #wrapper > section.projects-units > div.but.but-cards.py-5{
        padding-bottom: 20%!important;
    }
    .panel-body h3 {
        font-size: 22px;
    }
    /* all-units-section */
    .tabs{
        margin-bottom: -10%;
    }
    #wrapper > section.tabs > div > div.row.justify-content-center.pb-5 > div{
        transform: scale(1);
    }
    #wrapper > section.tabs > div > div.but.but-cards.py-5{
        padding-bottom: 20% !important;
    }
    /* 404 */
    .error{
        margin-bottom: -10%;
    }
}

@media (min-width: 992px){
    /* header */
    .navbar-brand{
        margin-left: 10%;
    }
    #wrapper > header > nav > div > img{
        display: block;
        z-index: 2;
        height: auto;
        width: 60px;
        position: absolute;
        top: 46px;
        left: 8%;
    }
    #wrapper > header > nav > div > button {
        display: none !important;
    }
    #mobileMenu{
        display: none!important;
    }
    /* slider-section*/
    .curved{
        height: 90vh;
    }
    #wrapper > section.slider.curved > .slide > div > div > .slick-slide{
        transform: scale(1);
    }
    .slick-current > .slide-div{
        transform: scale(1.1);
    }
    .slide > button.slick-next.slick-arrow,.slide > button.slick-prev.slick-arrow{
        top: 600px;
    }
    /* intro-section*/
    /* accordion-section*/
    .accordion-content{
        padding: 25px 250px;
    }
    .accordion-h{
        font-size: 24px;
    }
    /* cards-carousel-section*/
    /* project-section*/
    .project-img img{
        height: 335px;
        width: 320px;
    }
    .overlay{
        height: 335px;
        width: 320px;
    }
    /* news-section*/

    #wrapper > section.news > div > div.news-carousel.slick-initialized.slick-slider > button.slick-next.slick-arrow{
        right: auto!important;
        left: -25px!important;
        top: 250px!important;
    }
    #wrapper > section.news > div > div.news-carousel.slick-initialized.slick-slider > button.slick-prev.slick-arrow{
        right: -25px!important;
        left: auto!important;
        top: 250px!important;
    }
    /* head-section*/
    /* main-section */
    .main{
        margin-bottom: -5%;
    }
    /* contact-us-section */
    /* about-us-section */
    /* units-section */
    /* all-units-section */
}
@media (min-width: 1880px){
    .intro-content{
        margin-top: 23%;
    }
}