@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,400;0,600;0,700;1,100&family=Roboto:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*******************************/
/********* General CSS *********/
/*******************************/
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    transition: .2s;
    font-family: 'poppins', sans-serif;
}
html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    flex: 1 1 300px;
}

/**********************************/
/********** Top Bar CSS ***********/
/*********************************/
.top-bar {
    position: relative;
    height: 130px;
    background-color: #000000;
}
.top-bar .logo img{
    width: 170px;
    height: 145px;
    margin-left: 10px;
}
.top-bar .logo h5{
    color: #fff;
    font-size: 1.2rem;
}

.top-bar .top-bar-text {
    margin-left: 50px;
    margin-top: 10px;
    color: #fff;
    padding-left: 50px;
}

#menu-bar{
    color: #000000;
}
.top-bar .top-bar-text p {
    margin: 0;
    color: #000000;
    font-size: 1rem;
    text-align: center;
    background-color: #fde44d;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/

.nav-bar {
    width: 100%;
    position: relative;
    transition: .3s;
}
.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}
.navbar-brand a{
    color: #000000;
}
.nav-bar .navbar {
    height: 100%;
    background: #fff;
}
.nav-bar .navbar-brand{
    color: #000000;
}
.navbar-nav .nav-link,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    padding: 5px;
    color: #000000;
}
.navbar-nav .nav-link:hover{
    color: #fde44d;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}
.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
}

.nav-bar .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
}

@media (min-width: 992px) {
    .nav-bar {
        padding: 0 75px;
    }
    
    .nav-bar.nav-sticky {
        padding: 0;
    }
    
    .nav-bar .navbar {
        padding: 20px;
    }
    
    .nav-bar .navbar-brand {
        display: none;
    }
    
    .nav-bar a.nav-link {
       
        font-size: 15px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }
    
    .nav-bar a.nav-link {
        padding: 5px;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 35px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }
    
    .carousel .carousel-caption p {
        font-size: 20px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }
    
    .carousel .carousel-caption p {
        font-size: 16px;
    }
    
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: url(/images/about/aboutttttttttt.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.page-header h2 {
    position: relative;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #fff;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #fff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #fff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}
/*******************************/
/********** ABOUT US ***********/
/*******************************/

.about-h{
    text-align: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    background-color: #030f27;
    color: #fde44d;
}
.about-head{
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

}
.about-p{
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.3rem;
    margin-top: 10px;
}
.inner-about{
    flex: 1 1 350px;
}
.inner-about p{
    font-size: 1.3rem;
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
        padding-left: 5px;
        padding-right: 5px;
        text-align: justify;
}
.about-heading {
    display: flex;
    flex-direction: column; /* Change to column direction */
    border-left: 4rem solid #fdbe33;
    background-color: #030f27;
    color: #fde44d;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.order-list {
    list-style-type: decimal;
    margin-left: 20px;
    padding-left: 20px;
    font-size: 1.3rem;
}
.why-us{
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}
.about-why{
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 4rem solid #fdbe33;
   background-color: #000000;
   color: #fde44d;
}
.why-p{
    font-size: 1.3rem;
    padding-left: 10px;
    padding-right: 10px;
}
/*******************************/
/******* SERVICES TEAM *******/
/*******************************/

.pb-70 {
    padding-bottom: 70px;
}
.pt-100 {
    padding-top: 100px;
}


.about-style-two .about-text {
    padding-left: 45px;
}

.about-style-two .about-img {
    margin-bottom: 30px;
}

.about-style-two .about-text .section-title {
    margin-bottom: 30px;
}
.section-title {
    margin: auto;
}
.about-style-two .about-img img {
    border-radius: 55px;
    padding: 15px;
    width: 350px;
    height: 300px;
}
.about-text p{
    font-size: 1.3rem;
}
.about-style-two .about-text .section-title h2 {
    max-width: 500px;
}
.section-title span{
    border-left: 0.7rem solid #fde44d;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 10px;
}
.about-text ul{
    font-size: 1.3rem;
}
/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}
.about .section-header h3{
    color: #fdbe33;
}
.about .about-img {
    position: relative;
    height: 100%;
}
.about .about-img img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
}
.about .about-text p {
    font-size: 1.3rem;
}
.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #030f27;
    border-radius: 0;
    background: #fdbe33;
    transition: .3s;
    margin-bottom: 10px;
}
.about .about-text a.btn:hover {
    color: #fdbe33;
    background: #030f27;
}
@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}
/*******************************/
/********** SERVICES CSS *******/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.service .section-header {
    margin-bottom: 30px;
}
.service .section-header h3{
    color: #fde44d;
}
.service .service-img {
    position: relative;
    height: 80%;
    
}

.service .service-img img {
    width: 80%;
    height: 60%;
    object-fit: cover;
}

.service .service-text p {
    font-size: 1.3rem;
}

.service .service-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #030f27;
    border-radius: 0;
    background: #fdbe33;
    transition: .3s;
}

.service .service-text a.btn:hover {
    color: #fdbe33;
    background: #030f27;
}

@media (max-width: 767.98px) {
    .services .service-img {
        margin-bottom: 30px;
        height: auto;
    }
}
/*******************************/
/********** OUR SERVICES *******/
/*******************************/
 .outer-container h3 {
     text-align: center;
 }

 .outer-div {
     margin-top: 15px;
     display: flex;
     justify-content: center;
     align-items: stretch;
     flex-wrap: wrap;
     gap: 20px;
     box-sizing: border-box;
     padding: 5rem 7%;
 }

 .card {
     flex: 1 1 300px;
     box-shadow: -1px 0 8px #c3c0c0;
     border-radius: 5px;
     box-sizing: border-box;
 }

 .outer-div img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 5px;
     padding-left: 10px;
     padding-right: 10px;
     padding-top: 10px;
     margin-bottom: 5px;
 }

 .outer-div h5 {
     margin-top: 5px;
     margin-bottom: 10px;
     font-size: 1.5rem;
     padding-left: 5px;
     text-align: center;
     background-color: #fde44d;
 }

 .outer-div p {
     font-size: 1.3rem;
     padding-left: 5px;
     padding-bottom: 5px;
 }

 .ordered-list {
     list-style-type: decimal;
     margin-left: 20px;
     padding-left: 20px;
     font-size: 1.3rem;
 }

 .services-areas {
     margin-top: 10px;
     margin-bottom: 10px;
     margin-left: 10px;
     margin-right: 10px;
 }

 .services-areas h5 {
     margin-bottom: 10px;
     padding-left: 20px;
     border-left: 4rem solid #fdda16;
     background-color: #000000;
     color: #fde44d;
     font-size: 1.5rem;
 }

 .services-areas p {
     font-size: 1.3rem;
     padding-left: 10px;
     padding-right: 10px;
     margin-bottom: 20px;
 }

 @media only screen and (max-width: 768px) {
     .card {
         flex: 1 1 100%;
         /* Make each card take full width on smaller screens */
     }
 }
/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#fdbe33, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/********* PRICING **********/
/*******************************/

.logo-bar img{
    width: 100%;
    margin-bottom: 20px;
    min-height: 250px;
}
.pricing-p{
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}
.ourprice{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.price-card{
    text-align: center;
    margin: 15px;   
    width: 430px;
    box-shadow: -1px 0 8px #c3c0c0;
    border-radius: 5px;
}
.text{
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 5px;
}
.pricing-list{
    list-style-type: decimal;
    margin-left: 20px;
    padding-left: 5px;
    font-size: 1.2rem;
}
.price-card h5{
    background-color: #fde44d;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
}
.advantages{
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.list{
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.single{
    margin-top: 10px;
    margin-bottom: 10px;

}
.single h2{
    margin-left: 100px;
    font-size: 2.5rem;
    padding-left: 20px;
}
.single-trade{
    margin-left: 100px;
    font-size: 1.5rem;
}
.approx{
    font-size: 2.5rem;
    margin-left: 400px;
    color: #03295c;
}
.end{
    color: red;
    font-size: 1.5rem;
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {

    .single h2,
    .single-trade,
    .approx,
    .end {
        margin-left: 20px;
        /* Adjust margin for responsiveness */
    }
}
/*******************************/
/********* CONTACT US **********/
/*******************************/

#section-wrapper{
    width: 100%;
    padding: 10px;
}
.box-wrapper{
    position: relative;
    display: table;
    width:1100px;
    margin:auto;
    margin-top:35px;
    border-radius: 30px;
}
.info-wrap{
    width:35%;
    height: 551px;
    padding: 40px;
    float: left;
    display: block;
    border-radius: 15px 0px 0px 15px;
    background: #f9d423;
    color: #fff;
}
.info-title{
    text-align: left;
    font-size: 28px;
    letter-spacing: 0.5px;
}
.info-sub-title{
    font-size: 18px;
    font-weight: 300;
    margin-top: 17px;
    letter-spacing: 0.5px;
    line-height: 26px;
}
.info-details {
    list-style: none;
    margin: 60px 0px;
}
.info-details li {
    margin-top: 25px;
    font-size: 15px;
    color: #fff;
}
.info-details li i {
    background: #030f27;
    padding: 12px;
    border-radius: 50%;
    margin-right: 5px;
}
.info-details li a {
    color: #fff;
    text-decoration: none;
}
.info-details li a:hover {
    color: #000000;
}
.social-icons {
    list-style: none;
    text-align: center;
    margin: 20px 0px;
}
.social-icons li {
    display: inline-block;
}
.social-icons li i {
    background: #F9D423;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all .5s;
}
.social-icons li i:hover {
    background: #fff;
    color: #000000;
}
.form-wrap{
    width:65%;
    float: right;
    height: 551px;
    padding:40px 25px 35px 25px;
    border-radius: 0px 15px 15px 0px;
    background: #ecf0f3;
}
.form-title{
    text-align: left;
    margin-left: 23px;
    font-size: 28px;
    letter-spacing: 0.5px;
}
.form-fields{
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}
.form-fields input,
.form-fields textarea{
    border: none;
    outline:none;
    background: none;
    font-size: 18px;
    color:#555;
    padding: 20px 10px 20px 5px;
    width:100%
}
.form-fields textarea{
    height: 150px;
    resize: none;
}
.form-group{
    width: 46%;
    float: left;
    padding: 0px 30px;
    margin: 14px 12px;
    border-radius: 15px;
    box-shadow: inset 5px 5px 5px #a7acb2, inset -8px -8px 8px #ffffff;
}
.form-fields .form-group:last-child {
    width: 96%;
}
.submit-button{
    width: 96%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 30px;
    font-size: 20px;;
    font-weight: 700;
    outline: none;
    border:none;
    cursor: pointer;
    color:#fff;
    text-align: center;
    background: #030f27;
    box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
    transition: .5s;
}
.submit-button:hover{
    background: #fdbe33;
}
.content{
    width: 80%;
    margin-top: 10px;
    margin-left: 10%;
    margin-right: 10%;
}
.content p{
    font-size: 1.2rem;
    text-align: center;
    justify-content: center;
    margin-top: 5px;
    color: #000000;
}
.content h1{
    margin-top: 15px;
    text-align: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    background-color: #030f27;
}
/* Responsive css */

@media only screen and (max-width: 767px) {
    .box-wrapper{
        width: 100%;
    }
    .info-wrap,
    .form-wrap{
        width: 100%;
        height: inherit;
        float: none;  
    }
    .info-wrap{
        border-radius: 30px 30px 0px 0px;
    }
    .form-wrap{
        border-radius: 0px 0px 30px 30px;
    }
    .form-group{
        width: 100%;
        float: none;
        margin: 25px 0px;
    }
    .form-fields .form-group:last-child, 
    .submit-button{
        width: 100%;
    }
    .submit-button{
        margin: 10px 0px;
    }
   
}
/*******************************/
/********* OUR TRADE **********/
/*******************************/

.our-trade {
    width: 100%;
    box-sizing: border-box;
}

.trade-div {
    background-color: #fde44d;
    margin-bottom: 20px;
    text-align: center;
}

.set {
    margin: auto;
    display: block;
}

.trade-div h1 {
    color: var(--headerclr);
    font-size: 2.5rem;
    text-align: center;
    margin-top: 20px;

}

.main-trade {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    box-sizing: border-box;
}

.inner-trade {
    flex: 0 0 calc(33.33% - 20px);
    /* One-third of the width with some gap */
    max-width: calc(33.33% - 20px);
    /* Limit maximum width of each column */
    box-sizing: border-box;
    margin-bottom: 20px;
    /* Add some space between columns */
}

.inner-trade img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.inner-trade h2 {
    padding: 1rem 0;
    font-size: 1.5rem;
}

.inner-trade p {
    font-size: 1.3rem;
    /* Adjust the font size as needed */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 25px;
}

.card {
    width: 100%;
    box-shadow: -1px 0 8px #c3c0c0;
    border-radius: 5px;
    overflow: hidden;
    /* Hide overflow content */
    box-sizing: border-box;
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
    .main-trade {
        padding: 10px;
        /* Adjust padding for smaller screens */
    }

    .inner-trade {
        flex: 1 1 100%;
        /* Make each column take full width on smaller screens */
        max-width: none;
        /* Remove maximum width on smaller screens */
        margin-bottom: 10px;
        /* Add some space between columns on smaller screens */
    }
}
/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #030f27;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fdbe33;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #fdbe33;
}
.fa{
    color: #fdbe33;
}
.footer-contact p{
    font-size: 0.9rem;
}
.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #fdbe33;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #fdbe33;
    border-color: #fdbe33;
}

.footer .footer-social a:hover i {
    color: #fff;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fdbe33;
    background: #121518;
    border-radius: 0;
    border: 2px solid #fdbe33;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #fdbe33;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #fdbe33;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #fdbe33;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}
