/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --fristColor: #FFCB0F;
    --secondColor: #222533;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
}

.clearfix {
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
}

/*--------------------------------------------------------------
# header1
--------------------------------------------------------------*/
#header1 {
    display: none;
    background-color: var(--fristColor);
}

@media (min-width: 992px) {
    #header1 {
        display: block;
    }

    #header1 .contact-info,
    #header1 .social-info {
        list-style: none;
        display: flex;
        padding: 0;
        margin: 0;
    }

    #header1 .contact-info li a,
    #header1 .social-info li a {
        text-decoration: none;
        color: var(--secondColor);
    }

    #header1 .contact-info li {
        padding-right: 25px;
    }
}

/*--------------------------------------------------------------
# header2
--------------------------------------------------------------*/
#header {
    background-color: var(--secondColor);
}

#header .logo a {
    color: #fff;
    text-decoration: none;
    font-style: italic;
}

#header .logo a span {
    color: var(--fristColor);
}

#header .logo a h6 {
    font-size: 10px;
    font-style: normal;
    color: #A2A3A4;
}

#header nav ul {
    list-style: none;
    display: flex;
}

#header nav ul li a {
    color: var(--secondColor);
}

#header nav ul li a svg {
    color: var(--fristColor);
}

#header nav ul li a:hover,
#header nav ul li a.active {
    color: var(--fristColor);
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--fristColor);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--fristColor);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block !important;
    }

    .navbar ul {
        display: none !important;
    }
}

@media (min-width: 992px) {
    #header nav ul li a {
        color: #fff;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(34 37 51 / 89%);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block !important;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--secondColor);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--fristColor);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../img/banner.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

#hero h4 {
    color: #fff;
    padding: 15px 0;
}

#hero h1 {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

#hero h1:nth-child(3) {
    color: var(--fristColor);
    text-transform: uppercase;
    font-weight: bold;
}

#hero p {
    color: #fff;
    padding: 20px 0;
}

#hero .btn {
    font-family: "Jost", sans-serif;
    display: inline-block;
    border: 2px solid var(--fristColor);
    border-radius: 8px;
    transition: 0.5s;
    color: var(--fristColor);
    background: var(--secondColor);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    margin: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

#hero .btn:hover,
#hero .btn:focus {
    border: 2px solid var(--secondColor);
    background: var(--fristColor);
    color: var(--secondColor);
    box-shadow: none;
}

@media (min-width: 768px) {
    #hero p {
        width: 70%;
        margin: 0 auto 15px auto;
    }
}

/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/
.welcome .content h2 {
    font-weight: bold;
    color: var(--fristColor);
    padding: 20px 0 0 0;
    text-transform: uppercase;
    margin-bottom: 0;
}

.welcome .content h4 {
    color: var(--secondColor);
    padding-bottom: 10px;
}

.welcome .content p {
    color: var(--secondColor);
    font-size: 14px;
}

.welcome .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    height: 250px;
}

#welcome .content .btn {
    font-family: "Jost", sans-serif;
    transition: 0.5s;
    background: var(--fristColor);
    color: var(--secondColor);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

#welcome .content .btn:hover,
#welcome .content .btn:focus {
    color: var(--fristColor);
    background: var(--secondColor);
    box-shadow: none;
}

@media (min-width: 992px) {
    .welcome .img {
        height: 365px;
    }

    .welcome .content {
        padding: 40px 0 0 0;
    }
}

/*--------------------------------------------------------------
# why us section
--------------------------------------------------------------*/
.whyUs {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("../img/bg4.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0;
    text-align: center;
}

.whyUs .section-title h2 {
    font-weight: bold;
    color: var(--fristColor);
    padding: 10px 0;
    text-transform: uppercase;
}

.whyUs .section-title p {
    color: #fff;
    font-size: 14px;
}

.whyUs article {
    margin-top: 60px;
}

.whyUs article .content {
    background-color: rgb(34 37 51 / 57%);
    padding: 60px 10px 20px 10px;
    border-radius: 10px;
    position: relative;
}

.whyUs article .content h5 {
    color: var(--fristColor);
    text-transform: capitalize;
    padding: 15px 0 5px 0;
}

.whyUs article .content p {
    color: #fff;
    font-size: 14px;
    padding-bottom: 15px;
}

.whyUs article .content .img {
    padding: 20px;
    background-color: var(--fristColor);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    color: var(--secondColor);
    font-size: 40px;
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
# Services section
--------------------------------------------------------------*/
.services {
    padding: 40px 0;
}

.services .section-title h2 {
    font-weight: bold;
    color: var(--secondColor);
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0 30px 0;
}

.services article figure {
    position: relative;
}

.services article figure figcaption {
    position: absolute;
    bottom: 0px;
    background-color: rgb(34 37 51 / 70%);
    color: #fff;
    padding: 5px 8px;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
}

.services article .content p {
    font-size: 14px;
    color: var(--secondColor);
}

.services .content .btn {
    font-family: "Jost", sans-serif;
    transition: 0.5s;
    background: var(--fristColor);
    color: #fff;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.services .content .btn:hover,
.services .content .btn:focus {
    background: var(--secondColor);
    box-shadow: none;
}

@media (min-width: 992px) {

    .services article {
        width: 30%;
        margin: 0 auto;
    }
}

/*--------------------------------------------------------------
# portfolio section
--------------------------------------------------------------*/
.portfolio {
    width: 100%;
    background: linear-gradient(rgba(92, 93, 88, 0.8), rgba(92, 93, 88, 0.8)),
        url("../img/bg2.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0;
    text-align: center;
}

.portfolio .section-title h2 {
    font-weight: bold;
    color: #fff;
    padding: 10px 0;
    text-transform: uppercase;
}

.portfolio .section-title p {
    color: #fff;
    font-size: 14px;
}

.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    margin: 10px 5px;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: var(--secondColor);
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

/*--------------------------------------------------------------
# reviews section
--------------------------------------------------------------*/
.reviews {
    padding-top: 40px;
    background: url("../img/bg3.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.reviews .section-title h2 {
    font-weight: bold;
    color: var(--secondColor);
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0;
}

.reviews .section-title p {
    color: var(--secondColor);
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
}

.reviews article {
    margin: 0 auto 30px auto;
}

.reviews article .content {
    background-color: #E5E5E5;
    padding: 20px;
    position: relative;
}

.reviews article .content::after {
    content: "";
    position: absolute;
    left: 48%;
    bottom: -7px;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background-color: #e5e5e5;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.reviews article .content p {
    font-size: 14px;
    color: var(--secondColor);
}

.reviews article .content img {
    height: 20px;
    width: 40px;
    padding-right: 10px;
}

.reviews article .img {
    text-align: center;
}

.reviews article .img img {
    margin-top: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.reviews article .img h6 {
    color: var(--secondColor);
    text-transform: uppercase;
}

.reviews article .content.yellow,
.reviews article .content.yellow::after {
    background-color: var(--fristColor);
}

.reviews article .content.yellow p {
    color: #fff;
}

@media (min-width: 992px) {

    .reviews article {
        width: 30%;
    }
}

/*--------------------------------------------------------------
# questions section
--------------------------------------------------------------*/
.questions {
    background-color: rgb(255 203 15 / 70%);
    padding: 40px 0;
    border-bottom: 20px solid #646972;
}

.questions .section-title h2 {
    text-align: left;
    color: #646972;
}

.questions .section-title h3 {
    text-transform: uppercase;
    font-weight: lighter;
    color: #646972;
}

.questions form .form-group input {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.questions form .form-group .btn {
    font-family: "Jost", sans-serif;
    transition: 0.5s;
    background: #646972;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    border-radius: 8px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

@media (min-width: 992px) {
    .questions form .form-group {
        display: flex;
    }

    .questions form .form-group input {
        margin: 0 10px 15px 10px;
    }

    .questions form .form-group .btn {
        width: 30%;
        margin: 0 10px;
        height: 35px;
    }
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
footer {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("../img/bg2.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0;
}

footer .footer-top h4 {
    text-transform: capitalize;
    color: #fff;
    padding-bottom: 15px;
}

footer .footer-top .footer-contact .logo a {
    color: #fff;
    text-decoration: none;
    font-style: italic;
}

footer .footer-top .footer-contact .logo a span {
    color: var(--fristColor);
}

footer .footer-top .footer-contact .logo a h6 {
    font-size: 10px;
    font-style: normal;
    color: #A2A3A4;
}

footer .footer-top .footer-contact p {
    color: #fff;
    font-size: 12px;
}

footer .footer-top .footer-contact .social-links a {
    color: var(--secondColor);
    text-decoration: none;
    background-color: var(--fristColor);
    padding: 8px 10px;
    margin-right: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

footer .footer-top .footer-links,
footer .footer-top .footer-posts,
footer .footer-top .footer-contact {
    margin-top: 40px;
}

footer .footer-top .footer-links ul,
footer .footer-top .footer-posts ul,
footer .footer-top .footer-contact ul {
    list-style: none;
    color: #fff;
    padding-left: 0;
}

footer .footer-top .footer-links ul li,
footer .footer-top .footer-posts ul li,
footer .footer-top .footer-contact ul li {
    padding-bottom: 8px;
}

footer .footer-top .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    padding-left: 15px;
    text-transform: capitalize;
}

footer .footer-top .footer-posts ul li {
   display: inline-flex;
   justify-content: space-between;
   align-content: center;
}

footer .footer-top .footer-posts ul li span {
    text-transform: capitalize;
    width: 50px;
    height: 50px;
    font-size: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    padding: 5px 10px;
    text-align: center;
    align-content: center;
}

footer .footer-top .footer-posts ul li p {
    padding-left: 10px;
}

footer .footer-top .footer-contact ul li span {
    padding-left: 15px;
}

.footer-bottom {
    text-align: center;
    background-color: var(--secondColor);
    color: #fff;
    padding: 30px 0;
    font-size: 12px;
    text-transform: capitalize;
}

.footer-bottom span {
    color: var(--fristColor);
}