/**
* Template Name: Maxim - v2.2.0
* Template URL: https://bootstrapmade.com/maxim-free-onepage-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Raleway", sans-serif;
    color: #444444;
  }
  
  a {
    color: #1bac91;
  }
  
  a:hover {
    color: #22d8b6;
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
  }
  .button {
    display: inline-block;
    padding: 5px 10px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #1bac91;
    border: none;
  }
  
  .button:active {
    background-color: #00344D;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 15px;
    bottom: 15px;
    background: #8B4513;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
  }
  
  .back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
  }
  
  .back-to-top:hover {
    color: #8B4513;
    background: #EAF2FD;
    transition: background 0.2s ease-in-out;
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  
  #header2 {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 15px 0;
    background: #8B4513;
  }
  
  #header2 .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  #header2 .logo h1 a, #header2 .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header2 .logo img {
    padding: 0;
    margin: 0;
    max-height: 32px;
  }
  
  @media (max-width: 992px) {
    #header2 {
      height: 60px;
      padding: 8px 0;
    }
  }
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  .nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
  }
  
  .nav-menu a {
    display: block;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0 12px 0;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
  }
  
  .nav-menu i {
    margin : 0 5px 0 5px;
  }
  
  .nav-menu > ul > li + li {
    margin-left: 30px;
  }
  
  .nav-menu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 3px;
    left: 0;
    background-color: black;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
    visibility: visible;
    width: 100%;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: black;
  }
  
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: black;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
  }
  
  .nav-menu .drop-down:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
  }
  
  .nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: white;
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #B3E0FF;
  }
  
  .nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
  }
  
  .nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }
  
  .nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }
  
  .nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
  }
  
  .nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
  }
  
  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    color: #fff;
  }
  
  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: black;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    outline: none;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #B3E0FF;
    text-decoration: none;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(16, 31, 29, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: calc(115vh - 40px);
    background: url("../img/banner/b7.jpg") center center;
    background-size: cover;
    position: relative;
    margin-top:0px;
    padding: 0;
  }
  
  #hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero .container {
    z-index: 2;
  }
  
  #hero h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 56px;
    color: #fff;
  }
  
  #hero img {
    width : 300px;
  }
  
  #hero h2 {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-size: 20px;
  }
  
  #hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    border: 2px solid #fff;
    color: #fff;
  }
  
  #hero .btn-get-started:hover {
    border-color: #1bac91;
    background: #1bac91;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
    #hero img {
      width:60%;
    }
  }
  
  @media (max-width: 768px) {
    #hero {
      margin-top: 0px;
      height: calc(110vh - 60px);
    }
  }
  
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
    #hero img {
        width: 80%;
    }
  }
  
  /* Banner About Us */
  
  .banner {
    background-color: #0c0e27;
    background-color: #0c3866;
    color: white; 
    padding-top: 13em;
    }
   
  .banner-effect {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0; 
    }
  
   .banner p {
    color: #ddd; }
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
    overflow: hidden;
  }
  
  .section-bg2 {
    background: url("../img/background4.jpg") center center;
    background-size: cover;
    position: relative;
  }
  
  .section-title {
    padding-bottom: 40px;
    text-align: center;
  }
  
  .section-title h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #21413c;
  }
  
  .section-title p {
    margin-bottom: 0;
    text-align: justify;
    text-justify: inter-word;
  }
  
  /*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
  .about h3 {
    font-weight: bold;
    font-size: 27px;
    color: #0E3E7F;
    font-family: Helvetica;
    text-align: center;
    padding-left: 35px;
  }
  
  .about .icon-box {
    margin-top: 44px;
  }
  
  .about .icon-box i {
    font-size: 48px;
    float: left;
    color: #0E3E7F;
  }
  
  .about .icon-box h4 {
    font-size: 22px;
    font-weight: bold;
    margin-left: 60px;
    color: black;
    font-family: Helvetica;
  }
  
  .about p {
    font-size: 18px;
    color: black;
    margin-left: 30px;
    font-family: Helvetica;
    text-align: justify;
    text-justify: inter-word;
  }
  
  .about .mission {
    font-size: 18px;
    color: white;
    margin-left: 50px;
    font-family: Helvetica;
    text-align: justify;
    text-justify: inter-word;
  }
  
  .about .mission2 {
    font-size: 18px;
    color: white;
    margin-right: 5px;
    font-family: Helvetica;
    text-align: justify;
    text-justify: inter-word;
    float: left;
  }
  
  .about img {
      object-fit:cover ;
      width:100%;
      height:auto;
  }
  
  /*--------------------------------------------------------------
  # Steps & activity/events
  --------------------------------------------------------------*/
  .steps {
    padding: 50px 0 40px 0;
  }
  
  .steps h3 {
    font-weight: 600;
    font-size: 30px;
    color: #0E3E7F;
    font-family: Helvetica;
    text-align: center;	
  }
  
  section.steps .modal-content {
      text-align: center;
      text-align: -webkit-center;
      text-align: -moz-center;
  }
  
  section.steps .modal-header h4 {
      color: white;
      font-size: 30px;
      font-weight: bold;
      text-transform: uppercase;
      font-family: Helvetica;
  }
  
  section.steps .modal-header {
      background:#8B4513;
  }
  
  section.steps .modal-footer {
      background: #0E3E7F;
  }
  
  section.steps .modal-body p {
      font-size:14px;
      font-weight:normal;
      color:black;
      line-height:30px;
      padding:20px 0;
  }
  
  section.steps img.img-responsive.team-agile {
      width: 100%; 
      height: auto;
      margin: 0 auto;
  }
  
  section.steps button.close {
      font-size: 60px;
      font-weight: 300;
      position: absolute;
      right: 20px;
      top: 1px;
      color: white;
  }
  
  section.steps button.btn.btn-default {
      font-size: 16px;
      font-weight: normal;
      color: #fff;
      background-color:black;
  }
  
  .blog-grids h3 a {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin-top: 15px;
    padding: 0px 1.2em;
    padding-bottom: 15px;
    display: block;
    color: var(--heading-color);
    border-bottom: 1px solid #ddd;
    text-transform: capitalize;
    }
    
  .blog-grids h3 a:hover {
    color: #49c0b6; }
  
  .blog-info {
    box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.1);
    padding: 10px 0px;
    border-radius: 8px; }
  
  .blog-grids a img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width : 500px;
    height : 200px;
    }
  
  .blog-info ul {
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    grid-gap: 10px;
    margin: 1em 1.5em .5em; }
  
  .blog-info ul li {
    display: inline-block; }
  
  .blog-info ul li,
  .blog-info ul li a {
    color: #999; }
  
  .blog-info ul li a:hover {
    color: #333; }
  
  @media only screen and (max-width: 1080px) {
    .blog-grids h3 a {
      font-size: 18px; }
    .blog-info ul li,
    .blog-info ul li a {
      font-size: 14px; } }
  
  @media only screen and (max-width: 767px) {
    .blog-info ul li,
    .blog-info ul li a {
      font-size: 16px; } }
  
  /* Zoom In css starts here */
  figure {
    overflow: hidden;
    margin: 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px; }
  
  .blog-grid img {
    display: block;
    width: 100%; }
  
  .blog-grid#zoomIn img {
    transform: scale(1);
    transition: .3s ease-in-out; }
  
  .blog-grid#zoomIn:hover img {
    transform: scale(1.2); }
  
  /* Zoom In css ends here */
  /*--------------------------------------------------------------
  # Features
  --------------------------------------------------------------*/
  
  .features .nav-tabs {
    border: 0;
  }
  
  .features h3 {
      color: #FFD741;
      font-family: Helvetica;
      font-weight: bold;
      font-size: 30px;
      text-align: center;
  }
  
  .features p {
      color: black;
      font-family: Helvetica;
      font-size: 18px;
      text-align:justify;
      text-justify:inter-word;
      
  }
  
  .features .nav-link {
    border: 0;
    padding: 20px;
    transition: 0.3s;
    color: black;
  }
  
  .features .nav-link:hover {
    color: white;
  }
  
  .features .nav-link h4 {
    font-size: 18px;
    font-weight: bold;
  }
  
  .features .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .features .nav-link.active {
    box-shadow: 0 2px 29px 0 rgba(04, 57, 108, 1);
    background-color:#0E3E7F;
    border-radius:20px;
  }
  
  .features .nav-link.active h4 {
    color: white;
  }
  
  .features .nav-link.active p {
    color: white;
  }
  
  .features .tab-pane.active {
    -webkit-animation: slide-down 0.5s ease-out;
    animation: slide-down 0.5s ease-out;
  }
  
  @-webkit-keyframes slide-down {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes slide-down {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  section.features img.img-responsive.team-agile {
      width: 100%; 
      height: auto;
      margin: 0 auto;
  }
  
  section.features button.btn.btn-default {
      font-size: 16px;
      font-weight: bold;
      color: #8B4513;
      background-color:white;
  }
  
  section.features button.close {
      font-size: 60px;
      font-weight: bold;
      position: absolute;
      right: 20px;
      top: 1px;
      color:white;
  }
  
  section.features .modal-body p {
      font-size:14px;
      font-weight:normal;
      color:black;
      line-height:30px;
      padding:20px 0;
      font-family: Helvetica;
  }
  section.features .modal-content {
      text-align: center;
      text-align: -webkit-center;
      text-align: -moz-center;
      margin-top: 50px;
  }
  
  section.features .modal-header h4 {
      color: white;
      font-size: 30px;
      font-weight: bold;
      text-transform: uppercase;
      text-align:center;
  }
  
  section.features .modal-header {
      background:#8B4513;
  }
  
  section.features .modal-footer {
      background: #8B4513;
  }
  
  @media only screen and (max-width: 767px) {
      section.features .modal-header h4 {
          font-size: 20px;
      }
      
      section.features button.close {
           font-size: 30px;
      }
  }
  /*--------------------------------------------------------------
  # Roadmap
  --------------------------------------------------------------*/
  .services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
  }
  
  .services p {
      
      text-align:justify;
      text-justify: inter-word;
      
  }
  
  .services .icon-box:hover {
    box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
  }
  
  .services h3 {
      color: white;
      font-family: Helvetica;
      font-weight: bold;
  }
  
  .services .icon i {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
  }
  
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    color: black;
  }
  
  .services .title2 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 30px;
    color: black;
    font-family: Open Sans;
  }
  
  .services .title a {
    color: #111;
  }
  
  .services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    font-family: Helvetica;
  }
  
  .services .icon-box-pink .icon i {
    color: #ff689b;
  }
  
  .services .icon-box-cyan .icon i {
    color: #3fcdc7;
  }
  
  .services .icon-box-green .icon i {
    color: #41cf2e;
  }
  
  .services .icon-box-blue .icon i {
    color: #2282ff;
  }
  
  /*--------------------------------------------------------------
  # Testimonials
  --------------------------------------------------------------*/
  .testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
    padding: 5px 5px 5px 5px;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
  }
  
  .testimonials h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: white;
    font-family: Helvetica;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
  }
  
  .testimonials p {
    font-size: 18px;
    color: white;
    font-family: Helvetica;
  }
  
  .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #a8d3cc;
    font-size: 26px;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
  }
  
  .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #eff7f6;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
  }
  
  .testimonials .owl-nav, .testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
  }
  
  .testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
  }
  
  .testimonials .owl-dot.active {
    background-color: #1bac91 !important;
  }
  
  @media (max-width: 767px) {
  
  }
  
  /*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  
  .portfolio h3{
      font-family:Helvetica;
      color: white;
      font-weight:bold;
      font-size: 30px;
  }
  
  .portfolio p{
      font-family:Helvetica;
      color: white;
      font-size: 18px;
  }
  
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
  }
  
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #1bac91;
  }
  
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }
  
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
  }
  
  .portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
  }
  
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }
  
  .portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
  }
  
  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
  }
  
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #4ae3c6;
  }
  
  .portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
  }
  
  .portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 30px;
  }
  
  .portfolio-details .portfolio-details-container {
    position: relative;
  }
  
  .portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
  }
  
  .portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #1bac91 !important;
  }
  
  .portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
  }
  
  .portfolio-details .portfolio-description {
    padding-top: 50px;
  }
  
  .portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
  }
  
  @media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
      width: 100%;
    }
    .portfolio-details .portfolio-info {
      position: static;
      margin-top: 30px;
    }
  }
  
 
 
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #8B4513;
    padding: 0 0 10px 0;
    color: #fff;
    font-size: 14px;
  }
  
  #footer .footer-top2 {
    background: #8B4513;
    border-bottom: 1px solid #8B4513;
    padding: 40px 0 10px 0;
  }
  
  #footer .footer-top2 .footer-info {
    margin-bottom: 15px;
  }
  
  #footer .footer-top2 .footer-info h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  
  #footer .footer-top2 .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: white;
  }
  
  #footer .footer-top2 .social-links a {
    font-size: 18px;
    display: inline-block;
    background: white;
    color: #8B4513;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top2 .social-links a:hover {
    background: black;
    color: #fff;
    text-decoration: none;
  }
  
  #footer .footer-top2 h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    position: relative;
    padding-bottom: 12px;
  }
  
  #footer i{
      color:#8B4513;
  }
  
  #footer .footer-top2 .footer-links {
    margin-bottom: 15px;
  }
  
  #footer .footer-top2 .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #footer .footer-top2 .footer-links ul i {
    padding-right: 2px;
    color: white;
    font-size: 18px;
    line-height: 1;
  }
  
  #footer .footer-top2 .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top2 .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top2 .footer-links ul a {
    color: white;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top2 .footer-links ul a:hover {
    color: #34dfbf;
  }
  
  #footer .footer-top2 .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px 0 0 4px;
  }
  
  #footer .footer-top2 .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
  }
  
  #footer .footer-top2 .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: -4px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: black;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
  
  #footer .footer-top2 .footer-newsletter form input[type="submit"]:hover {
    background: white;
    color:#;
  }
  
  #footer .copyright {
    text-align: center;
    padding-top:15px;
  }
  
  #footer .credits {
    padding-top: 5px;
    text-align: center;
    font-size: 13px;
    color: #fff;
  }
  
  #footer img {
      width:80%;
      padding : 5px;
  }
  
  @media(max-width:768px){
      #footer img {
          width:60%;
      }
  }
  
  /*Ingredient*/
  
  .serve-grid {
          max-width: 153px;
          height: 153px;
      }
  
  .serve-grid span {
          font-size: 2em;
          margin-top: 1.2em;
      }
      
  .serve-grid {
      -webkit-box-shadow: 5px 7px 23px 0px rgba(58, 52, 82, 0.16);
      -moz-box-shadow: 5px 7px 23px 0px rgba(58, 52, 82, 0.16);
      box-shadow: 5px 7px 23px 0px rgba(58, 52, 82, 0.16);
      max-width: 192px;
      border-radius: 5%;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      
  }
  
  .serve-gd1 {
      margin-top: 12em;
  }
  
  .serve-gd2 {
      margin-top: 0em;
  }
  
  .serve-gd3 {
      margin-top: 0em;
  }
  
  .serve-grid p {
      font-size: 1em;
      text-transform: capitalize;
      letter-spacing: 1px;
      font-weight: 600;
      color: #555;
  }
  
  .serve-grid span {
      font-size: 2em;
      margin-top: 1.7em;
  }
  
  .text-center {
      text-align :center;
  }
  
  @media(max-width:568px) {
      .content-bg-1 {
          max-width: 195px;
          padding: 2em 1em;
      }
  
      .serve-grid {
          max-width: 153px;
          height: 153px;
          margin: 0 auto;
      }
  
      .serve-gd2 {
          margin-top: 0em;
      }
  }
  
  @media(max-width:1080px) {
      .nav_w3pvt {
          width: 96%;
          padding: 1em 1em;
          margin-top: 2em;
      }
  
      a.navbar-brand {
          font-size: 0.8em;
          margin: 0;
      }
  
      .serve-grid {
          max-width: 153px;
          height: 153px;
      }
  
      .serve-grid span {
          font-size: 2em;
          margin-top: 1.2em;
      }
  
      .serve-grid p {
          font-size: 0.9em;
          color: #555;
      }
  
      h3.tittle-wthree {
          font-size: 2.3em;
      }
  
      .content-bg-1 {
          max-width: 400px;
          padding: 4em 4em;
          position: absolute;
      }
  
      .ser-w3pvt-gd-wthree {
          padding: 2em 1em;
      }
  }
  
  /*video background*/
  
  #video-viewport { 
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1; 
      }
      
  iframe { 
      display:block;
      width:100%;
      height:65vh;
      object-fit: cover;
      }
  
  .fullsize-video-bg { 
      height: 100%;
      overflow: hidden;
      }
  
  .fullsize-video-bg:before { 
      content: "";
      background: rgba(114,45,0,.35);
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      }
      
  .fullsize-video-bg .inner {
      display: table;
      width: 100%;
      max-width: 24em;
      height: 100%;
      margin: 0 auto;
      padding: 0;
      position: relative;
      z-index: 2;
      text-shadow:
      0 1px 5px rgba(0,0,0,.5);
      }
      
  .fullsize-video-bg .inner > div { 
      text-align: center;
      display: table-cell;
      vertical-align: middle;
      padding: 0 2em;
      }