



:root{
    --primary: #0C0C0C;
    --secondary: #481E14;
    --third: #9B3922;
    --four: #F2613F;
    --bg-color: #030f27;
    --blue: #13357B;
    --yellow: #FFC470;
}








.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 60px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}



  
  /*================================================
  Default CSS
  =================================================*/
  .default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: var(--bs-primary);
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    opacity: 1;
    /* font-weight: 400; */
    font-size: 16px;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  
  .default-btn span {
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #8B322C;
    color: #ffffff;
    -webkit-transition: width 0.5s ease-in-out,
      height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out,
      height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
    opacity: 1;
  }
  
  .default-btn:hover {
    color: #ffffff !important;
    background-color: var(--yellow);
    /* background-color: var(--bs-primary); */
  }
  
  .default-btn:hover span {
    width: 225%;
    height: 562.5px;
  }
  
  .default-btn i {
    font-size: 16px;
    position: relative;
    top: 2px;
    margin-left: 10px;
  }


/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--blue) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.bg-primary1{
    background-color: var(--bg-color);
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 90vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 90vh;
        /* margin-top: -100px; */
    }

    .carousel-header {
        height: 90vh !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f1f8ff;
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #8B322C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

p{
    color: #848484;
    font-size: 18px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 24px;
    }
}

.animate-charcter {
    /* text-transform: uppercase; */
    background-image: linear-gradient(-225deg,
            #231557 0%,
            #44107a 29%,
            #791f06 67%,
            #e79615 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    /* font-size: 19px; */
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}




.hero1 {
    display: flex;
    max-width: 1440px;
    gap: 2em;
    justify-content: space-between;
    /* margin: 5em 2em; */
  }
  
  .text1 {
    width: 40%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* font-family: sans-serif; */
  }


  @media (max-width: 480px) {
    .text1 {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* font-family: sans-serif; */
        text-align: center;
      }

      p{
        color: #848484;
        font-size: 16px;
    }


    .header2 .item .cover .header-content h2 {
        font-weight: 400;
        text-align: center;
        color: #fff;
        
      }
    
      .header2 .item .cover .header-content p {
        font-weight: 300;
        text-align: center;
        color: #fff;
      }

      
    
   
}
  
  .text__short {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #8B322C;
  }
  
  .text__title {
    line-height: 1.1;
    margin: 0;
  }
  
  .text__description {
    line-height: 145%;
    font-size: 1em;
    font-weight: 300;
    padding-bottom: 1em;
  }
  
  .text__button {
    max-width: 120px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    color: white;
    background-color: #8B322C;
    padding: 1em 2em;
    border-radius: 0.5em;
  }
  
  .grid__container {
    min-width: 60%;
    display: grid;
    grid-gap: .5em;
    grid-template-columns: repeat(8, 1fr);
  }
  
  .grid__item {
    background-color: grey;
    border-radius: 0.5em;
  }
  
  .one {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-image: url('../img/banner/banner1.jpg');
    background-position: center;
    background-size: cover;
  }
  
  .two {
    grid-column: 2 / 5;
    grid-row: 1 / 4;
    background-image: url('../img/home/h2.webp');
    background-position: center;
    background-size: cover;
  }
  
  .three {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
    background-image: url('../img/home/h3.jpg');
    background-position: center;
    background-size: cover;
  }
  
  .four {
    grid-column: 6 / 7;
    grid-row: 1 / 2;
    background-color: #FDF5DD;
    border-radius: 0 0 100px 0;
    -moz-border-radius: 0 0 100px 0;
    -webkit-border-radius: 0 0 100px 0;
  }
  
  
  .five {
    grid-column: 5 / 7;
    grid-row: 2 / 4;
    background-image: url('../img/home/h4.webp');
    background-position: center;
    background-size: cover;
  }
  
  .six {
    grid-column: 7 / 8;
    grid-row: 2 / 3;
    background-color: #D3F0EE;
    border-radius: 0 100px 0 0;
    -moz-border-radius: 0 100px 0 0;
    -webkit-border-radius: 0 100px 0 0;
  }
  
  .seven {
    grid-column: 7 / 8;
    grid-row: 3 / 4;
    background-image: url('../img/home/h5.jpeg');
    background-position: center;
    background-size: cover;
  }
  
  .eight {
    grid-column: 8 / 9;
    grid-row: 3 / 4;
    border-radius: 50%;
    background-color: #CED7ED;
  }
  
  .nine {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    background-color: #FADEE0;
    border-radius: 100px 0 0 0;
    -moz-border-radius: 100px 0 0 0;
    -webkit-border-radius: 100px 0 0 0;
  }
  
  .ten {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
    background-image: url('../img/home/h6.webp');
    background-position: center;
    background-size: cover;
  }
  
  .eleven {
    grid-column: 3 / 5;
    grid-row: 4 / 6;
    background-image: url('../img/home/h7.jpg');
    background-position: center;
    background-size: cover;
  }
  
  .twelve {
    grid-column: 5 / 6;
    grid-row: 4 / 5;
    background-image: url('../img/home/h8.jpg');
    background-position: center;
    background-size: cover;
  }
  
  @media (max-width: 900px) {
    .grid__container {
      min-width: 50%;
      height: 400px;
      margin-top: 50px;
    }
  }
  
  @media (max-width: 780px) {
    .hero1 {
      flex-direction: column-reverse;
      margin: 0;
    }
  
    .text1 {
      width: 100%;
    }
  }


  
/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    /* padding: 5px 0; */
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #fdbe33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #030f27);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color: #fdbe33;
    background: #030f27;
}

.fact .fact-right {
    color: #030f27;
    background: #fdbe33;
}

.fact .fact-left h2 {
    color: #fdbe33;
}




/*******************************/
/******** Home What we do CSS *********/
/*******************************/

/* .header2 .item .cover .header-content h2 {
    font-weight: 700;
    font-size: 20px !important;
    color: #fff;
  } */
  .header2 .item .cover .header-content h1 {
    font-size: 36px !important;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
  }
  /* .header2 .item .cover .header-content p {
    font-size: 18px !important;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
  } */
  

  .header2 .item .cover .header-content h2 {
    font-weight: 700;
    color: #fff;
    
  }

  .header2 .item .cover .header-content p {
    font-weight: 300;
    color: #fff;
    line-height: 26px;
  }
  
  
  #news-slider {
    margin-top: 20px;
  }
  
  .post-slide {
    background: #fff;
    margin: 10px 15px 10px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
  }
  
  .post-slide .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -12px 15px 8px 15px;
    margin-left: -10px;
  }
  
  .post-slide .post-img img {
    width: 100%;
    height: 250px;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
  }
  
  .post-slide:hover .post-img img {
    transform: scale(1.1, 1.1);
  }
  
  .post-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(-45deg, rgba(6, 190, 244, 0.75) 0%, rgba(45, 112, 253, 0.6) 100%);
    transition: all 0.50s linear;
  }
  
  .post-slide:hover .over-layer {
    opacity: 1;
    text-decoration: none;
  }
  
  .post-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
  }
  
  .post-slide .post-content {
    background: #fff;
    padding: 2px 20px 40px;
    border-radius: 15px;
  }
  
  .post-slide .post-title a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
  }
  
  .post-slide .post-title a:hover {
    text-decoration: none;
    color: #3498db;
  }
  
  .post-slide .post-description {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
  }
  
  .post-slide .post-date {
    color: #a9a9a9;
    font-size: 14px;
  }
  
  .post-slide .post-date i {
    font-size: 20px;
    margin-right: 8px;
    color: #CFDACE;
  }
  
  .post-slide .read-more {
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
  }
  
  .post-slide .read-more:hover {
    background: #3498db;
    text-decoration: none;
    color: #fff;
  }
  
  .owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
  }
  
  .owl-controls .owl-buttons .owl-prev {
    background: #fff;
    position: absolute;
    top: -13%;
    left: 15px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
  }
  
  .owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: -13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
  }
  
  .owl-controls .owl-buttons .owl-prev:after,
  .owl-controls .owl-buttons .owl-next:after {
    content: "\f104";
    font-family: FontAwesome;
    color: #333;
    font-size: 30px;
  }
  
  .owl-controls .owl-buttons .owl-next:after {
    content: "\f105";
  }
  
  @media only screen and (max-width:1280px) {
    .post-slide .post-content {
      padding: 0px 15px 25px 15px;
    }
  }
  
  
  
  .wraper1 {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    background: #000;
  }
  
  .wraper1 .owl-theme img {
    width: 100%;
    min-height: 200px;
  }
  
  .wraper1 .owl-carousel .owl-prev,
  .wraper1 .owl-carousel .owl-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #fff !important;
    color: #000 !important;
    font-size: 1.5em !important;
    width: 40px;
    height: 40px;
    border-radius: 100% !important;
    font-weight: bold;
    /* padding: 15px !important; */
    text-align: center;
    box-shadow: 0px 0px 10px 0px #000;
  }
  
  .wraper1 .owl-carousel .owl-prev:hover,
  .wraper1 .owl-carousel .owl-next:hover {
    box-shadow: 0px 0px 0px 0px #000;
    background-color: #8B322C !important;
    color: #fff !important;
  }
  
  .wraper1 .owl-carousel .owl-prev {
    left: -30px;
  }
  
  .wraper1 .owl-carousel .owl-next {
    right: -30px;
  }
  
  .wraper1 .owl-theme .owl-dots .owl-dot.active span {
    background: red !important;
    width: 25px;
    transition: 0.2s ease-in-out;
  }
  
  .wraper1 .owl-theme .owl-dots .owl-dot:hover span {
    background: #8B322C !important;
    transition: 0.2s ease-in-out;
  }
  
  
  /* Responsive design custom css */
  @media only screen and (max-width:480px) {
    .wraper1 .owl-theme .owl-dots .owl-dot {
      display: none;
    }
  
    .wraper1 .owl-carousel .owl-prev,
    .wraper1 .owl-carousel .owl-next {
      width: 30px;
      height: 30px;
      font-size: 14px !important;
      top: 45%;
      box-shadow: 0px 0px 0px 0px #000;
    }
  
    .wraper1 .owl-carousel .owl-prev {
      left: 0px;
    }
  
    .wraper1 .owl-carousel .owl-next {
      right: 0px;
    }
  }
  
  
  .header2 .item {
    height: 100vh;
    position: relative;
  }
  .header2 .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .header2 .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
  }
  .header2 .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
  }
  .header2 .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  }


  .header2 .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
  }
  .header2 .item .cover .header-content h4 {
    /* font-size: 24px; */
    font-weight: 300;
    line-height: 36px;
    color: #fff;
  }
  .header2 .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }
  .header2 .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }
  .header2 .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
  }
  .header2 .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
  }
  .header2 .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
  }
  .header2 .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
  }
  .header2 .owl-nav .owl-prev:focus {
    outline: 0;
  }
  .header2 .owl-nav .owl-prev:hover {
    background: #000 !important;
  }
  .header2 .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
  }
  .header2 .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
  }
  .header2 .owl-nav .owl-next:focus {
    outline: 0;
  }
  .header2 .owl-nav .owl-next:hover {
    background: #000 !important;
  }
  .header2:hover .owl-prev {
    left: 0px;
    opacity: 1;
  }
  .header2:hover .owl-next {
    right: 0px;
    opacity: 1;
  }


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 15px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
    height: 350px;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    color: #ffffff;
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #030f27;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #fff;
    background: var(--bs-primary);
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #ffffff;
    background-color: var(--yellow);
}



/*******************************/
/******** Home Why Choose Us CSS *********/
/*******************************/


ul.polaroids {
    /* width: 970px; */
    /* margin: 0 0 18px -30px; */
    }
    
    ul.polaroids a {
    background: #fff;
    display: inline;
    float: left;
    margin: 0 0 27px 20px;
    width: auto;
    padding: 10px 10px 15px;
    text-align: center;
    /* font-family: "Marker Felt", sans-serif; */
    text-decoration: none;
    color: #333;
    font-size: 18px;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.25);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
    -webkit-transform: rotate(-2deg);
    -webkit-transition: -webkit-transform .15s linear;
    -moz-transform: rotate(-2deg);
    }
    
    ul, menu, dir {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 40px;
    }
    
    ul.polaroids li {
     display: inline;
    line-height: 18px;
    }
    
    
    
    ul.polaroids img {
    display: block;
    width: 190px;
    margin-bottom: 12px;
    }
    
    ul {
    list-style: none outside;
    }
    
    
    ul.polaroids a:after {
    content: attr(title);
    }
    
    /* By default, we tilt all our images -2 degrees */
    ul.polaroids a {
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    }
  
  
    .imge img{
      -webkit-transform: rotate(2deg);
      -moz-transform: rotate(2deg);
      /* border: 10px solid var(--bs-primary); */
      height:200px;
      width: 100%;
    }

    .imge img{
      -webkit-transform: rotate(5deg);
      -moz-transform: rotate(5deg);
      position: relative;
      right: 5px;
    }


    .imge img{
      -webkit-transition: -webkit-transform .15s linear;
      -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.25);
      -moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
    }



    ul.polaroids li a {
      -webkit-transform: rotate(2deg);
      -moz-transform: rotate(2deg);
      } 
  
 
    
    /* Scale the images on hover, add transitions for smoothing things out, and ensure the hover appears on top */
    ul.polaroids a:hover {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    position: relative;
    z-index: 5;
    }
    
    /* Add drop shadows and smooth out the transition (Safari only) */
    ul.polaroids a {
    -webkit-transition: -webkit-transform .15s linear;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.25);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
    }
     
    /* On hover, darken the shadows a bit */
    ul.polaroids a {
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.5);
    -moz-box-shadow: 0 3px 6px rgba(0,0,0,.5);
    }
  

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header3 {
  position: fixed;
  top: 230px;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  overflow-y: auto;
}

@media (max-width: 992px) {
  #header3 {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu3 {
  padding: 0;
  display: block;
}

.nav-menu3 * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu3>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu3 a,
.nav-menu3 a:focus {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 2px;
  border: 2px solid var(--bs-primary);
  background: var(--bs-primary);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu3 a i,
.nav-menu3 a:focus i {
  font-size: 20px;
}

.nav-menu3 a span,
.nav-menu3 a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu3 a,
  .nav-menu3 a:focus {
    width: 56px;
  }

  .nav-menu3 a span,
  .nav-menu3 a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu3 a:hover,
.nav-menu3 .active,
.nav-menu3 .active:focus,
.nav-menu3 li:hover>a {
  color: #fff;
  background: var(--bs-primary);
}

.nav-menu3 a:hover span,
.nav-menu3 .active span,
.nav-menu3 .active:focus span,
.nav-menu3 li:hover>a span {
  color: #fff;
}

.nav-menu3 a:hover,
.nav-menu3 li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu3 a:hover span,
.nav-menu3 li:hover>a span {
  display: block;
}



    

.service3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/banner/banner1.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}

    

/*** Testimonial Start ***/
.testimonial3 .testimonial-carousel {
    position: relative;
    
}

.testimonial3 .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid #FFC470; 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial3 .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial3 .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #8B322C;
    border: 1px solid #FFC470;
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial3 .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: #FFC470;
}

.testimonial3 .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid #8B322C;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial3 .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid #8B322C;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial3 .testimonial-carousel .owl-nav .owl-prev i,
.testimonial3 .testimonial-carousel .owl-nav .owl-next i {
    color: #8B322C;
    font-size: 17px;
    transition: 0.5s;
}

.testimonial3 .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial3 .testimonial-carousel .owl-nav .owl-next:hover {
    background: #FFC470;
}

.testimonial3 .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial3 .testimonial-carousel .owl-nav .owl-next:hover i {
    color: #fff;
}

.testimonial3 .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: #8B322C !important;
    color: #fff;
    transition: 0.5s;
    
}

.testimonial3 .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment p{

    color: #fff;
    transition: 0.5s;
}

.testimonial3 .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var#fff; 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/





/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  background: url(../img/banner/banner1.jpg) top right no-repeat;
  background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #999999;
}


.bg-img {
  background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/banner/banner1.jpg) center center no-repeat;
  background-size: cover;
}



  
.service-item1 .service-icon {
  margin-top: -50px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.service-item1 .service-icon i {
  transition: .2s;
  color: #8B322C;
}

.service-item1 img {
  height: 250px;
}

.service-item1:hover .service-icon i {
  font-size: 60px;
}



/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
  position: relative;
  padding: 15px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: -15px 0 25px 0;
  list-style: none;
  font-size: 0;
  text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
  cursor: pointer;
  display: inline-block;
  margin: 5px;
  padding: 8px 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0;
  background: #8B322C;
  border: none;
  transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #030f27;
  color: #fff;
}

.portfolio .load-more {
  text-align: center;
}

.portfolio .load-more .btn {
  padding: 15px 35px;
  font-size: 16px;
  transition: .3s;
}

.portfolio .load-more .btn:hover {
  color: #8B322C;
  background: #030f27;
}

.portfolio .portfolio-warp {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.portfolio .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-img img {
  width: 100%;
  height: 350px;
  transition: .3s;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 15, 39, .7);
  transition: .5s;
  opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio .portfolio-overlay p {
  margin: 0;
  color: #ffffff;
}

.portfolio .portfolio-text {
  display: flex;
  align-items: center;
  height: 60px;
  background: #030f27;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
  margin: 0;
  padding: 0 15px 0 25px;
  width: calc(100% - 60px);
  font-size: 20px;
  font-weight: 700;
  color: #8B322C;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
  width: 60px;
  height: 60px;
  padding: 3px 0 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  line-height: 60px;
  font-weight: 100;
  color: #030f27;
  background: #ffffff;
  border-radius: 0;
  transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
  color: #ffffff;
  background: #8B322C;
}




/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("../img/banner/banner3.webp") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.chefs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}

.chefs .container {
  position: relative;
  z-index: 10;
}

.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.chefs .member .pic {
  overflow: hidden;
}

.chefs .member img {
height: 300px;
}

.chefs .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  color: #0c4c91;
  position: relative;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.chefs .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0c4c91;
  bottom: 0;
  left: calc(50% - 25px);
}

.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.chefs .member .social {
  margin-top: 15px;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}

.chefs .member .social a:hover {
  color: #ffb03b;
}

.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}




/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 20px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #0c4c91;
}

.constructions .card-item p {
  color: #0c4c91;
  margin: 0;
}



.about-section{
  position: relative;
  padding: 20px 0 70px;
}

.about-section .sec-title{
  margin-bottom: 45px;
}

.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}

.about-section .text{
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.about-section .list-style-one{
  margin-bottom: 45px;
}

.about-section .btn-box{
  position: relative;
}

.about-section .btn-box a{
  padding: 15px 50px;
}

.about-section .image-column{
  position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}

.about-section .image-column .inner-column:before{
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
}

.about-section .image-column .image-1{
  position: relative;
}

.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
  background-color: #191e34;
  color: #fff;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services5 .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services5 .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid #8B322C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #8B322C;
}

.services5 .icon-box .icon i {
  font-size: 28px;
}

.services5 .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services5 .icon-box h4 a {
  color: #36343a;
  transition: ease-in-out 0.3s;
}

.services5 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services5 .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services5 .icon-box:hover h4 a {
  color: #8B322C;
}

.services5 .icon-box:hover .icon {
  color: #fff;
  background: #8B322C;
}




/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #76b5ee;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #1977cc;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}



/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
  position: relative;
  width: 100%;
  padding: 45px 0;
}

.contact .col-md-6 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.contact .col-md-6:first-child {
  background: #030f27;
}

.contact .col-md-6:last-child {
  background: #8B322C;
}

.contact .contact-info {
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.contact .contact-item {
  position: relative;
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  border: 1px solid rgba(256, 256, 256, .2);
}

.contact .contact-item [class^="flaticon-"]::before {
  margin: 0;
  color: #FFC470;
  font-size: 40px;
}

.contact .contact-text {
  position: relative;
  width: auto;
  padding-left: 20px;
}

.contact .contact-text h2 {
  color: #FFC470;
  font-size: 20px;
  font-weight: 600;
}

.contact .contact-text p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
}

.contact .contact-item:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  position: relative;
  padding: 0 15px;
}

.contact .contact-form input {
  color: #ffffff;
  height: 40px;
  border-radius: 0;
  border-width: 1px;
  border-color: rgba(256, 256, 256, .4);
  background: transparent;
}

.contact .contact-form textarea {
  color: #ffffff;
  height: 185px;
  border-radius: 0;
  border-width: 1px;
  border-color: rgba(256, 256, 256, .4);
  background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
  box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
color: #ffffff;
opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
color: #ffffff;
}

.contact .contact-form .form-control::-ms-input-placeholder {
color: #ffffff;
}

.contact .contact-form .btn {
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #8B322C;
  background: #FFC470;
  border: none;
  border-radius: 0;
  transition: .3s;
}

.contact .contact-form .btn:hover {
  color: #030f27;
  background: #ffffff;
}

.contact .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}




/*******************************/
/********* 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: #FFC470;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #FFC470;
}

.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: #FFC470;
    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: #FFC470;
    border-color: #FFC470;
}

.footer .footer-social a:hover i {
    color: #030f27;
}

.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: #8B322C;
    background: #121518;
    border-radius: 0;
    border: 2px solid #8B322C;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #121518;
    background: #8B322C;
}

.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: #8B322C;
}

.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: #FFC470;
    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;
    }
}



/**
* Mobile Bottom Navigation 
*/

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  
    z-index: 1000;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    display: flex;
    padding: 5px 0;
    box-shadow: 0 -2px 5px -2px #333;
    background-color: #fff;
  }
  
  .mobile-bottom-nav__item {
    flex-grow: 1;
    text-align: center;
    font-size: 12px;
    display: flex;
  
    flex-direction: column;
    justify-content: center;
  }
  
  .mobile-bottom-nav__item a {
    color: #000 !important;
    font-size: 11px;
  }
  
  .mobile-bottom-nav__item--active {
    color: #8B322C;
  }
  
  .h300 img {
    height: 300px;
  }
  
  .mobile-bottom-nav__item-content a i {
    font-size: 22px;
    color: #8B322C;
    display: block;
    margin-bottom: 3px;
  
  }
  
  .mobile-bottom-nav__item-content {
    display: flex;
    flex-direction: column;
  }
  
  /**
  * Modal Popup
  */
  
  .pdn {
    padding: 10px 10px !important;
    width: 180px;
  }
  
  .mod_head {
    background: #8B322C;
  }
  
  .modal-title {
    color: #fff;
  }
  
  .vrt {
    vertical-align: middle;
  }
  
  .bgh {
    background: #0c4c91;
  }
  
  .h45 {
    height: 45px !important;
  }
  
  .contact-forms .form-group {
    margin-bottom: 31px;
  }
  
  .ltp {
    padding: 20px !important;
    letter-spacing: 1px;
  }
  