/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #444444;
    background-color: white;
  }
  
  /* a {
    color: #009961;
    text-decoration: none;
  }
  
  a:hover {
    color: #00cc81;
    text-decoration: none;
  } */
  
  /* h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Raleway", sans-serif;
  } */
  
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #1c1c1c;
    padding: 10px 0;
    font-size: 14px;
    color: #9b9b9b;
  }
  
  #topbar .contact-info i {
    font-style: normal;
    color: #f7941d;
  }
  
  #topbar .contact-info i a,
  #topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
  }
  
  #topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
  }
  
  #topbar .contact-info i a:hover {
    color: #8fc04e;
  }
   
  
  #topbar .social-links a {
    color: #f7941d;
    line-height: 0;
    transition: 0.3s;
    margin-left: 10px;
  }
  
  #topbar .social-links a:hover {
    color: white;
  
}
  a{
    text-decoration: none;
  }
  

  
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    /* border-bottom: 1px solid rgb(177, 175, 175); */
  }
  
  #header.header-scrolled,
  #header.header-inner-pages {
    background: rgba(40, 40, 40, 0.9);
  }
  
  #header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  #header .logo a {
    color: #f7941d;
  }
  
  #header .logo img {
    max-height: 75px;
  
  }
  
  @media (max-width: 992px) {
    #header {
      border: 0;
      padding: 15px 0;
    }
  }
  
  /* Get Startet Button */
  .get-started-btn {
    margin-left: 25px;
    background: #f7941d;
    color: #283890;
    border-radius: 10px;
    padding: 8px 25px 9px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
  }
  
  .get-started-btn:hover {
    background: #283890;
    color: #f7941d;
  }
  
  @media (max-width: 992px) {
    .get-started-btn {
      margin: 0 15px 0 0;
      padding: 6px 18px;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
   
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar>ul>li {
    position: relative;
    white-space: nowrap;
    margin: 0 12px;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 3px;
    font-size: 14px;
    font-weight: 600;
    color: black;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #f7941d;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  
  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #f7941d;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-top: 2px solid #f7941d;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #282828;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #f7941d;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #f7941d;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: black;
  }
  
  .navbar-mobile a:hover:before,
  .navbar-mobile li:hover>a:before,
  .navbar-mobile .active:before {
    visibility: hidden;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #f7941d;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #f7941d;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }

  
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/3.jpg") top center;
    background-size: cover;
    position: relative;
  }
  
  #hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero .container {
    padding-top: 72px;
    position: relative;
    text-align: center;
  }
  
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  
  #hero h2 {
    color: #eee;
    margin-bottom: 40px;
    font-size: 24px;
  }
  
  #hero .play-btn {
    width: 94px;
    height: 94px;
    margin: 0 auto;
    background: radial-gradient(#f7941d 50%, #283890 52%);
    border-radius: 50%;
    display: block;
    overflow: hidden;
    position: relative;
  }
  
  #hero .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  
  #hero .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 3s;
    animation: pulsate-btn 3s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #f7941d;
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }
  
  #hero .play-btn:hover::after {
    border-left: 15px solid #283890;
    transform: scale(20);
  }
  
  #hero .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #f7941d;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  
  @-webkit-keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
  
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  
  @keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
  
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }


  /*--------------------------------------------------------------
# Heroc Section
--------------------------------------------------------------*/
#heroc {
  width: 100%;
  height: 100vh;
  background: url("../img/28.jpeg") top center;
  background-size: cover;
  position: relative;
}

#heroc:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#heroc .container {
  padding-top: 72px;
  position: relative;
  text-align: center;
}

#heroc h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#heroc h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 24px;
}

#heroc .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#f7941d 50%, #283890 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

#heroc .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#heroc .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 3s;
  animation: pulsate-btn 3s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid #f7941d;
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#heroc .play-btn:hover::after {
  border-left: 15px solid #283890;
  transform: scale(20);
}

#heroc .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #f7941d;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #heroc {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #heroc h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #heroc h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

    /*--------------------------------------------------------------
  # Heroc Section
  --------------------------------------------------------------*/
    #herocc {
      width: 100%;
      height: 100vh;
      background: url("../img/32.jpg") top center;
      background-size: cover;
      position: relative;
    }
  
    #herocc:before {
      content: "";
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;
    }
  
    #herocc .container {
      padding-top: 72px;
      position: relative;
      text-align: center;
    }
  
    #herocc h1 {
      margin: 0 0 10px 0;
      font-size: 48px;
      font-weight: 700;
      line-height: 56px;
      color: #fff;
    }
  
    #herocc h2 {
      color: #eee;
      margin-bottom: 40px;
      font-size: 24px;
    }
  
    #herocc .play-btn {
      width: 94px;
      height: 94px;
      margin: 0 auto;
      background: radial-gradient(#f7941d 50%, #283890 52%);
      border-radius: 50%;
      display: block;
      overflow: hidden;
      position: relative;
    }
  
    #herocc .play-btn::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateX(-40%) translateY(-50%);
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 15px solid #fff;
      z-index: 100;
      transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
  
    #herocc .play-btn::before {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      -webkit-animation-delay: 0s;
      animation-delay: 0s;
      -webkit-animation: pulsate-btn 3s;
      animation: pulsate-btn 3s;
      -webkit-animation-direction: forwards;
      animation-direction: forwards;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-timing-function: steps;
      animation-timing-function: steps;
      opacity: 1;
      border-radius: 50%;
      border: 5px solid #f7941d;
      top: -15%;
      left: -15%;
      background: rgba(198, 16, 0, 0);
    }
  
    #herocc .play-btn:hover::after {
      border-left: 15px solid #283890;
      transform: scale(20);
    }
  
    #herocc .play-btn:hover::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateX(-40%) translateY(-50%);
      width: 0;
      height: 0;
      border: none;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 15px solid #f7941d;
      z-index: 200;
      -webkit-animation: none;
      animation: none;
      border-radius: 0;
    }
  
    @media (min-width: 1024px) {
      #herocc {
        background-attachment: fixed;
      }
    }
  
    @media (max-width: 768px) {
      #herocc h1 {
        font-size: 28px;
        line-height: 36px;
      }
  
      #herocc h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
      }
    }
  
    @-webkit-keyframes pulsate-btn {
      0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
      }
  
      100% {
        transform: scale(1, 1);
        opacity: 0;
      }
    }
  
    @keyframes pulsate-btn {
      0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
      }
  
      100% {
        transform: scale(1, 1);
        opacity: 0;
      }
    }
  
      /*--------------------------------------------------------------
  # herodd Section
  --------------------------------------------------------------*/
    #herodd {
      width: 100%;
      height: 100vh;
      background: url("../img/5.jpg") top center;
      background-size: cover;
      position: relative;
    }
  
    #herodd:before {
      content: "";
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;
    }
  
    #herodd .container {
      padding-top: 72px;
      position: relative;
      text-align: center;
    }
  
    #herodd h1 {
      margin: 0 0 10px 0;
      font-size: 48px;
      font-weight: 700;
      line-height: 56px;
      color: #fff;
    }
  
    #herodd h2 {
      color: #eee;
      margin-bottom: 40px;
      font-size: 24px;
    }
  
    #herodd .play-btn {
      width: 94px;
      height: 94px;
      margin: 0 auto;
      background: radial-gradient(#f7941d 50%, #283890 52%);
      border-radius: 50%;
      display: block;
      overflow: hidden;
      position: relative;
    }
  
    #herodd .play-btn::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateX(-40%) translateY(-50%);
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 15px solid #fff;
      z-index: 100;
      transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
  
    #herodd .play-btn::before {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      -webkit-animation-delay: 0s;
      animation-delay: 0s;
      -webkit-animation: pulsate-btn 3s;
      animation: pulsate-btn 3s;
      -webkit-animation-direction: forwards;
      animation-direction: forwards;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-timing-function: steps;
      animation-timing-function: steps;
      opacity: 1;
      border-radius: 50%;
      border: 5px solid #f7941d;
      top: -15%;
      left: -15%;
      background: rgba(198, 16, 0, 0);
    }
  
    #herodd .play-btn:hover::after {
      border-left: 15px solid #283890;
      transform: scale(20);
    }
  
    #herodd .play-btn:hover::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translateX(-40%) translateY(-50%);
      width: 0;
      height: 0;
      border: none;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 15px solid #f7941d;
      z-index: 200;
      -webkit-animation: none;
      animation: none;
      border-radius: 0;
    }
  
    @media (min-width: 1024px) {
      #herodd {
        background-attachment: fixed;
      }
    }
  
    @media (max-width: 768px) {
      #herodd h1 {
        font-size: 28px;
        line-height: 36px;
      }
  
      #herodd h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
      }
    }
  
    @-webkit-keyframes pulsate-btn {
      0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
      }
  
      100% {
        transform: scale(1, 1);
        opacity: 0;
      }
    }
  
    @keyframes pulsate-btn {
      0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
      }
  
      100% {
        transform: scale(1, 1);
        opacity: 0;
      }
    }
  
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
    overflow: hidden;
  }
  
  .section-bg {
    background-color: #f7941d;
  }
  
  .section-title {
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #f7941d;
    bottom: 0;
    left: 0;
  }
  
  .section-title p {
    margin-bottom: 0;
    color: #777777;
    font-size: 15px;
  }

  


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
  color: black;
  font-family: 'Times New Roman', Times, serif;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 60px 30px;
    transition: all ease-in-out 0.3s;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    border-radius: 18px;
    border-bottom: 5px solid #fff;
  }
  
  .services .icon-box .icon {
    width: 64px;
    height: 64px;
    background: #009961;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
    color: #fff;
  }
  
  .services .icon-box .icon i {
    font-size: 28px;
  }
  
  .services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .services .icon-box h4 a {
    color: #282828;
    transition: ease-in-out 0.3s;
  }
  
  .services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .icon-box:hover {
    transform: translateY(-10px);
    border-color: #009961;
  }
  
  .services .icon-box:hover h4 a {
    color: #009961;
  }
  


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #f7941d;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: black;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  font-family: 'Times New Roman', Times, serif;
  color: black;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #f7941d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #f7941d;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #f7941d;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #f7941d;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# devis
--------------------------------------------------------------*/
.devis .info {
  width: 100%;
  background: #fff;
}

.devis .info i {
  font-size: 20px;
  background: #f7941d;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.devis .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: black;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.devis .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  font-family: 'Times New Roman', Times, serif;
  color: black;
}

.devis .info .email,
.devis .info .phone {
  margin-top: 40px;
}

.devis .php-email-form {
  width: 100%;
  background: #fff;
}

.devis .php-email-form .form-group {
  padding-bottom: 8px;
}

.devis .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.devis .php-email-form .error-message br+br {
  margin-top: 25px;
}

.devis .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #f7941d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.devis .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.devis .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #f7941d;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.devis .php-email-form input,
.devis .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.devis .php-email-form input:focus,
.devis .php-email-form textarea:focus {
  border-color: #f7941d;
}

.devis .php-email-form input {
  height: 44px;
}

.devis .php-email-form textarea {
  padding: 10px 12px;
}

.devis .php-email-form button[type=submit] {
  background: #f7941d;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.devis .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


    /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
    #footer {
      background: black;
      padding: 0 0 30px 0;
      color: #fff;
      font-size: 14px;
    }
  
    #footer .footer-top {
      background: #151515;
      border-bottom: 1px solid #222222;
      padding: 60px 0 30px 0;
    }
  
    #footer .footer-top .footer-info {
      margin-bottom: 30px;
    }
  
    #footer .footer-top .footer-info h3 {
      font-size: 28px;
      margin: 0 0 20px 0;
      padding: 2px 0 2px 0;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
      color: #f7941d;
    }
  
    #footer .footer-top .footer-info h3 span {
      color: #283890;
    }
  
    #footer .footer-top .footer-info p {
      font-size: 14px;
      line-height: 24px;
      margin-bottom: 0;
      font-family: 'Times New Roman', Times, serif;
      color: #fff;
    }
  
    #footer .footer-top .social-links a {
      font-size: 18px;
      display: inline-block;
      background: #292929;
      color: #fff;
      line-height: 1;
      padding: 8px 0;
      margin-right: 4px;
      border-radius: 4px;
      text-align: center;
      width: 36px;
      height: 36px;
      transition: 0.3s;
    }
  
    #footer .footer-top .social-links a:hover {
      background: #ffc451;
      color: #151515;
      text-decoration: none;
    }
  
    #footer .footer-top h4 {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      position: relative;
      padding-bottom: 12px;
    }
  
    #footer .footer-top .footer-links {
      margin-bottom: 30px;
    }
  
    #footer .footer-top .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
  
    #footer .footer-top .footer-links ul i {
      padding-right: 2px;
      color: #ffc451;
      font-size: 18px;
      line-height: 1;
    }
  
    #footer .footer-top .footer-links ul li {
      padding: 10px 0;
      display: flex;
      align-items: center;
    }
  
    #footer .footer-top .footer-links ul li:first-child {
      padding-top: 0;
    }
  
    #footer .footer-top .footer-links ul a {
      color: #fff;
      transition: 0.3s;
      display: inline-block;
      line-height: 1;
    }
  
    #footer .footer-top .footer-links ul a:hover {
      color: #ffc451;
    }
  
    #footer .footer-top .footer-newsletter form {
      margin-top: 30px;
      background: #fff;
      padding: 6px 10px;
      position: relative;
      border-radius: 4px;
    }
  
    #footer .footer-top .footer-newsletter form input[type=email] {
      border: 0;
      padding: 4px;
      width: calc(100% - 110px);
    }
  
    #footer .footer-top .footer-newsletter form input[type=submit] {
      position: absolute;
      top: 0;
      right: -2px;
      bottom: 0;
      border: 0;
      background: none;
      font-size: 16px;
      padding: 0 20px;
      background: #ffc451;
      color: #151515;
      transition: 0.3s;
      border-radius: 0 4px 4px 0;
    }
  
    #footer .footer-top .footer-newsletter form input[type=submit]:hover {
      background: #ffcd6b;
    }
  
    #footer .copyright {
      text-align: center;
      padding-top: 30px;
    }
  
    #footer .credits {
      padding-top: 10px;
      text-align: center;
      font-size: 13px;
      color: #fff;
    }

    #tt{
    color: black;
     font-size: 55px;
     font-family: 'Times New Roman', Times, serif;
     text-align: justify;
    }



        /*--------------------------------------------------------------
    # Portfolio
    --------------------------------------------------------------*/
        .portfolio #portfolio-flters {
          padding: 0;
          margin: 0 auto 25px auto;
          list-style: none;
          text-align: center;
          border-radius: 50px;
        }
    
        .portfolio #portfolio-flters li {
          cursor: pointer;
          display: inline-block;
          padding: 8px 16px 10px 16px;
          font-size: 14px;
          font-weight: 500;
          line-height: 1;
          color: #444444;
          margin: 0 3px 10px 3px;
          transition: all ease-in-out 0.3s;
          background: #f4f4f4;
          border-radius: 50px;
        }
    
        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
          color: #fff;
          background: #f7941d;
        }
    
        .portfolio #portfolio-flters li:last-child {
          margin-right: 0;
        }
    
        .portfolio .portfolio-item {
          margin-bottom: 30px;
          overflow: hidden;
        }
    
        .portfolio .portfolio-item img {
          position: relative;
          top: 0;
          transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
    
        .portfolio .portfolio-item .portfolio-info {
          opacity: 0;
          position: absolute;
          left: 15px;
          right: 15px;
          bottom: -50px;
          z-index: 3;
          transition: all ease-in-out 0.3s;
          background: #f7941d;
          padding: 15px 20px;
        }
    
        .portfolio .portfolio-item .portfolio-info h4 {
          font-size: 18px;
          color: #fff;
          font-weight: 600;
        }
    
        .portfolio .portfolio-item .portfolio-info p {
          color: #fff;
          font-size: 14px;
          margin-bottom: 0;
        }
    
        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
          position: absolute;
          right: 50px;
          font-size: 24px;
          top: calc(50% - 18px);
          color: white;
          transition: ease-in-out 0.3s;
        }
    
        .portfolio .portfolio-item .portfolio-info .preview-link:hover,
        .portfolio .portfolio-item .portfolio-info .details-link:hover {
          color: #f7941d;
        }
    
        .portfolio .portfolio-item .portfolio-info .details-link {
          right: 15px;
        }
    
        .portfolio .portfolio-item:hover img {
          top: -30px;
        }
    
        .portfolio .portfolio-item:hover .portfolio-info {
          opacity: 1;
          bottom: 0;
        }
    
        /*--------------------------------------------------------------
    # Portfolio Details
    --------------------------------------------------------------*/
        .portfolio-details {
          padding-top: 40px;
        }
    
        .portfolio-details .portfolio-details-slider img {
          width: 100%;
        }
    
        .portfolio-details .portfolio-details-slider .swiper-pagination {
          margin-top: 20px;
          position: relative;
        }
    
        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
          width: 12px;
          height: 12px;
          background-color: #fff;
          opacity: 1;
          border: 1px solid #f7941d;
        }
    
        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
          background-color: #f7941d;
        }
    
        .portfolio-details .portfolio-info {
          padding: 30px;
          box-shadow: 0px 0 30px rgba(40, 40, 40, 0.08);
        }
    
        .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: 30px;
        }
    
        .portfolio-details .portfolio-description h2 {
          font-size: 26px;
          font-weight: 700;
          margin-bottom: 20px;
        }
    
        .portfolio-details .portfolio-description p {
          padding: 0;
        }
    
     