header {
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: overlay;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
}

/*///////////////////////////////////////////////*/
.navigation {
    position: fixed;
    width: 5%;
    height: 100%;
    background: #1a1c20;
    transition: .5s;
    overflow: hidden;
    z-index: 10;
}

.navigation:hover,
.navigation.active {
    width: 17%;
}

.navigation ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.navigation ul li {
    position: relative;
    width: 100%;

}

.navigation ul li:hover {
    background: #fd9800;
    transition: 1s ease;
    transform: scale(1.1);

}

.navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    color: #fff;
}

.navigation ul li a .icon {
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;

}

.navigation ul li a .icon svg {
    font-size: 1.5rem;
    transition: .5s ease;
}

.navigation ul li:hover svg {
    color: #1a1c20;
    transition: .5s ease;
    transform: scale(1.2);

}

.navigation ul li a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
    font-size: 1.2rem;
}

.toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin-top: 8px;
}


.toggle::before {
    content: '\f0c9 ';
    font-family: fontAwesome;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    line-height: 60px;
    font-size: 1.6rem;
    color: #fff;

}


.toggle.active::before {
    content: '\f00d ';
    color: #fca519;
    transition: .5s all;
}

@media (max-width:767px) {
    .navigation {
        left: -60px;
    }

    .navigation.active {
        left: 0px;
        width: 100%;
    }
}

/*/////////////////////////////////////////////////*/
header .border-header {
    border-bottom: 1px solid #fff;


}

header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

header .top-bar .logo {
    font-size: 28px;
    font-weight: bold;
    margin: auto;
    padding-left: 25px;

}

header .top-bar nav {
    display: flex;
}

header .top-bar nav li {
    display: inline-block;
    margin: 0 20px;
}

header .top-bar nav svg {
    color: #fff;
    margin: 0 10px;
    cursor: pointer;
}


header .top-bar ul li a:hover,
header .top-bar nav svg:hover {
    color: #fca519;
    transition: ease .5s;

}

header .mobile-btn {
    display: none;
    font-size: 32px;
    color: #fca519;
}


header .welcome-msg {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-60%, -50%);
    width: 50%;

}

header .welcome-msg h1 {
    font-size: 52px;
}

header .welcome-msg h1 span {
    display: block;
}

header .welcome-msg p {
    font-size: 18px;
    margin: 12.5px 0
}

.about {
    padding: 75px 0;
}

.about .about-container {
    display: flex;
    justify-content: space-between;
}

.about .about-container .about-txt,
.about .about-container .about-img {
    flex-basis: 49%;
}

.about .about-container .about-txt h2 span {
    display: block
}

.about .about-container .about-txt .inner-txt {
    display: flex;
    margin-top: 25px;
}

.about .about-container .about-txt .inner-txt p {
    margin-left: 8px;
}

.about .about-container .about-txt>p {
    margin: 25px 0;
}

.about .about-container .about-txt .main-btn:hover {

    color: #132743;

}

.about .about-container .inner-txt p {
    color: #868484;
}

.about .about-container .about-img {
    background-image: url('../img/sec1.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, .8);
    background-blend-mode: overlay;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    flex-basis: 35%;
    height: 75vh;

}

.about .about-container .about-img p {
    color: #fff;
    padding: 0 50px;
    text-align: center;
    letter-spacing: 1.2px;
}



.services {
    height: 90vh;
    background-image: url('../img/services.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, .85);
    background-blend-mode: overlay;
}

.services .container {
    width: 80%;
    margin: auto;
}


.services .services-item {
    display: flex;
    justify-content: space-between;
    color: white;
}

.services-title {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;

}

.services-content {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;

}

.services-title .title-content p {

    color: #fff;
    margin-top: 15px;
    line-height: 1.6;

}

.services-content-items .item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 20px 0;
}

.services-content-items .item .title-cont {
    display: flex;
    flex-direction: column;
}

.services-content-items .item .title-cont h3 {
    color: #f49f16;
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
}

.services-content-items .item .title-cont p {
    line-height: 1.5;
    font-size: .8rem;
    color: #bbbbbb;

}

.services-content-items .item svg {
    font-size: 2.3rem;
    margin-right: 30px;
}

.profess {
    padding: 25px 0;
}

.profess .profess-items {
    display: flex;
    justify-content: space-between;
}

.profess .profess-items .profess-box {
    width: 50%;
    color: #fff;
    display: flex;
    justify-content: space-between;

}

.profess .profess-box .prof-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, .7);
    background-blend-mode: overlay;
    align-items: flex-end;
    display: flex;
    height: 70vh;
    flex-basis: 50%;
    padding: 0 20px;
    padding-bottom: 30px;
    text-align: center;
    margin: 0 1%;
}

.profess .profess-box .ba {
    background-image: url(../img/profe1.jpg);
}

.profess .profess-box .sa {
    background-image: url(../img/profe2.jpg);

}

.profess .profess-box .prof-item svg {
    font-size: 3rem;
    padding-bottom: 15px;
}

.profess .profess-box .prof-item h3 {
    font-size: 1.2rem;
    color: #f49f16;
    text-transform: uppercase;
}

.profess .profess-box .prof-item p {

    padding: 10px 0;
    color: #c0bdbd;

}

.profess .profess-box .prof-item .main-btn {
    padding: 4px 8px;
}

.profess .profess-items .prof-title {
    width: 43%;
}

.profess .profess-items .prof-title>p {
    margin: 10px 0;
}

.icon-check {
    padding: 25px 0;
}

.icon-check .item {
    display: flex;
    margin-bottom: 10px;
}

.icon-check .item svg {
    font-size: 1.5rem;
    margin-right: 20px;
}


.team {
    background-image: url(../img/teambg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, .6);
    background-blend-mode: overlay;
    height: 90vh;
    padding: 35px 0;
    text-align: center;

}

.team h2 {
    margin-bottom: 20px;
}

.team-eara {
    padding: 25px 0;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 95%;
    justify-content: space-between;

}

.team-eara .single-team {
    width: 23.75%;
    height: 100%;
    transition: .5s ease-out;
    position: relative;


}

.team-eara .single-team:hover {
    transform: translateY(15px);
}

.team-eara .single-team:hover::before {
    opacity: 1;
}

.single-team:hover .team-text {
    opacity: 1;
    transform: translateY(140px);

}

.team-eara .single-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to top, #000, transparent);
    z-index: 2;
    transition: .5s;
    opacity: 0;
}

.team-eara .single-team img {
    width: 100%;
    height: 50vh;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    border-radius: 7px;
}


.single-team .team-text {
    position: relative;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(170px);
    transition: .5s;
    text-align: left;
    padding-left: 10px;
}

.single-team .team-text h3 {
    font-size: 1.4rem;
    font-family: Shrikhand;
    letter-spacing: 3px;
}

.single-team .team-text p {
    font-size: 15px;
    font-family: Poppins;
    letter-spacing: 1px;
    margin-top: 6px;
}



.team-text a svg {
    color: #fff;
    width: 50%;
    height: 50%;
    font-size: 1.7rem;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 5px;
    margin: 0 5px;
    font-weight: bold;

}

.team-text a svg:hover {
    color: #fca519;
    border: 1px solid #fca519;

}

.serve {
    padding: 75px 0;
}

.serve .serve-container {
    display: flex;
    justify-content: space-between;
}

.serve .serve-container .serve-left {
    flex-basis: 65%;
}

.serve .serve-container .serve-left h2 span {
    display: block;
}

.serve .serve-container .serve-left .serve-upper,
.serve .serve-container .serve-left .serve-down {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.serve .serve-container .serve-left .serve-upper {
    margin-bottom: 25px;
}

.serve .serve-container .serve-left .serve-upper .upper-img,
.serve .serve-container .serve-left .serve-upper .upper-heading {
    flex-basis: 49%;
}

.serve .serve-container img {
    width: 100%;
    display: block;
}

.serve .serve-container .serve-left .serve-down .down-img:first-child {
    flex-basis: 33.3333%;
}

.serve .serve-container .serve-left .serve-down .down-img:last-child {
    flex-basis: 62.6666666%;
}

.serve .serve-container .serve-left .serve-down .down-img {
    filter: grayscale(1);
    transition: .7s ease-in-out;
}

.serve .serve-container .serve-left .serve-down .down-img:hover {
    filter: grayscale(0);
    box-shadow: 0px 9px 8px 0px #888;
}

.serve .serve-container .serve-right {
    flex-basis: 32%;
    display: flex;
    align-items: flex-end
}


.case {
    padding: 75px 0;
}

.case h2,
.case p {
    text-align: center;
}

.case .case-container {
    margin-top: 37.5px;
    display: flex;
}

.case .case-container .case-item {
    flex-basis: 33.33333%;
    position: relative;
    overflow: hidden;
}

.case .case-container .case-item img {
    width: 100%;
    display: block;
}

.case .overlay-box {
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, .7);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: top 1s ease-in-out;
}

.case .overlay-box p {
    margin: 12.5px 0;
}

.case .case-container .case-item:hover .overlay-box {
    top: 0;
}


.vedio .vedio-container {
    padding: 35px 0;
    width: 95%;
    display: flex;
    justify-content: space-between;
}

.vedio .vedio-fra {
    width: 60%;
    height: 60%;
    margin-left: 25px;
}

.vedio .vedio-fra iframe {
    width: 90%;
    height: 49vh;
}

.vedio .vedio-txt {
    width: 50%;
}

.vedio .vedio-txt h3:nth-of-type(2) {
    margin-bottom: 10px;
}

.vedio .vedio-txt p {
    font-size: .9rem;
    line-height: 1.7;
}


.vedio .vedio-txt img {
    margin-bottom: 10px;
    width: 100%;
    height: 55%;
}

.contact .contact-item {
    display: flex;
    justify-content: space-between;
}

.contact .img {
    background-image: url(../img/contact.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, .7);
    width: 40%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    color: #bbbbbb;

}

.contact .img .txt {
    width: 60%;
    align-items: center;
}

.contact p {
    margin-top: 15px;

}

.contact .social {
    width: 49%;
}

.social {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: left;
}

.social .services-content-items {
    margin-top: 20px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.social .services-content-items .item-icon {
    width: 12%;
}


.social .services-content-items .item h3 {
    color: black;
    text-transform: capitalize;
    font-family: sans-serif;
}

.social .services-content-items .item p {
    color: rgb(51, 51, 51);
    margin: 0;
}

.social .icon {
    text-align: center;

}

.social .icon svg {
    margin: 0 7px;
    font-size: 1.6rem;
    color: black;
}

.social .icon svg:hover {
    color: #935b00;
}

.copyright {
    text-align: center;
    background-color: #1a1c20;
    color: #fff;
    padding: 20px 0;
}