@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Oswald:wght@200..700&display=swap');

@font-face {
  font-family: SourceSansPro;
  src: url(../css/SourceSansPro-Regular.otf);
}


:root {
  --default-font:   SourceSansPro;
  --heading-font: "Oswald", sans-serif;
  --nav-font:  SourceSansPro;
}
:root { 
  --background-color: #ffffff;
  --default-color:#f4732a; 
  --heading-color: #172a28; 
  --accent-color: #344e41; 
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff; 
  --nav-hover-color: #f85a40; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #01433c; 
  --nav-dropdown-hover-color: #f85a40; 
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  /* letter-spacing: 1px; */
}

p {
  color: #5c5c5c;
  line-height: 1.8;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: transparent;
}

.header .topbar {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 5px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: #344e41;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 1px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }



  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/



.footer {
  color: var(--default-color);
  background-color:#2a312c;
  font-size: 14px;
  position: relative;
  padding-top: 50px !important;
      padding-bottom: 0 !important;
}

.footer .footer-top {
  padding-top: 50px;
  background-color:#2a312c ;
}

.footer .footer-about .logo {
  margin-bottom: 25px;
  margin-top: 20px;
}
.footer .footer-about .logo a{
  color: #fff;
}
.footer .footer-about p{
  color: #fff;
  padding: 15px 0;
  font-weight: 400;
}

.footer .footer-about .logo img {
  max-height: 100px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 16px;
}

.social-links{
  margin-left: 40px;
}
.footer-about{
  position: relative;
}
h3.social-heading{
  color: #fff;
  position: absolute;
  left: 15px;
  top: 50%;
  font-size: 25px;
  transform: translate(-50%, -50%) rotate(270deg);
  letter-spacing: 1px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  border: 1px solid #f4732a;
  font-size: 16px;
  color: #f4732a;
  margin-right: 10px;
  transition: 0.3s;
  margin-top: 12px;
}
.footer .social-links a i{
  font-size: 14px;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff  ;
}

.footer h4 {
      font-size: 21px;
    font-weight: 400;
  position: relative;
  padding-bottom: 15px;
  color: #fff;
  letter-spacing: 1px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  color: #fff;

}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #fff;
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  padding-left: 5px;
  transition: 0.5s all;
}

.footer .footer-links ul a::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%,-50%) scaleX(0);
  height: 10px;
  width: 10px;
  background-color:  #f4732a;
  border-radius: 50%;
  transition: 0.5s all;
}

.footer .footer-links ul a:hover::after{
  transform: translate(-50%,-50%) scaleX(1);
}

.footer .footer-links ul a:hover {
  color:#f4732a ;
  padding-left: 15px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}







.footer .copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
   
}

.footer .copyright p a{
  color: white;
}





.footer-top-box{
  padding-bottom: 10px;
  margin-bottom: 25px;

}
.mid-footer{
  border-top: 1px solid #454e48;
  border-bottom: 1px solid #454e48;
  padding: 30px 0;
}
.footer-contact ul{
  padding: 0;
  margin: 0;
}
.footer-contact ul li {
  list-style: none;
  margin-top: 15px;
  font-size: 16px;
  display: flex;
  color: #fff;
}
.footer-contact ul li span {
  display: inline-block;
  padding-right: 10px;
}
.footer-contact ul li span i{
  color:#198754;
}
.footer-contact ul li a {
  color: #fff;
  font-size: 16px;
}




<!--////////////////////////////////--->





/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background:#01433c;
  transition: all 0.6s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloader img{
  width: 7%;
  margin: auto;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  
  
  
  background-color:#f4732a;
  
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #344e41 ;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--accent-color);
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
  color: var(--default-color);
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {

  background-image: url('../img/new/banner-2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  padding: 150px 0 0 0;
  padding-bottom: 70px;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 .accent {
  color: var(--conrast-color);
}
.hero-box{
  margin-top: 70px;
}
.hero-box h2{
  color: #fff;
  letter-spacing: 1px;
}
.hero-box h3{
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #f4732a;
  -webkit-text-fill-color: transparent
}

.hero p {
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
  margin-top: 15px;
  font-size: 18px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .btn-get-started:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 600;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--contrast-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.hero .icon-box {
  padding: 40px 25px;
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}
.icons-area{
  background: #f2f2f2;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* .hero .icon-box:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 10%);
} */

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color:#f4732a;
}


.hero-list{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  margin-top: 15px;
}

.hero-list li{
  margin-right: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  list-style: none;
  letter-spacing: 0.5px;
}

.hero-list li span{
  display: inline-block;
  padding-right: 15px;
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-content h3{
  color: #f85a40;  
  font-size: 17px;
  font-family: var(--default-font);
}

.about-content h2{
  font-weight: 700;
  font-size: 32px;
  padding-bottom: 10px;
}

.about-content ul{
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.about-content ul li{
  list-style: none;
  margin-top: 15px;
  margin-right: 15px;
  color: #5c5c5c;
}

.about-content ul li span{
  display: inline-block;
  padding-right: 5px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services{
  background-color: #2a312c;
}
.services h2{
  color: #fff;
}

.services .section-title h2:after{
  background-color: #fff;
}
.services p{
  font-size: 14px;
    color: #fff;
    letter-spacing: 0.5px;
}
.services .service-item {
  padding: 20px;
  /* box-shadow: 0px 0 30px color-mix(in srgb, var(--default-color), transparent 90%); */
  height: 100%;
  background-color: #2a312c;
  border: 1px solid #667b6c;
  border-radius: 5px;
  overflow: hidden;
}

.services .service-item .icon {
  width: 60px;
  height: 60px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: #fff;
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}
.services .service-item .icon img{
    width:100%;
    height:100%;
}

/*.services .service-item .icon:before {*/
/*  position: absolute;*/
/*  content: "";*/
/*  height: 100%;*/
/*  width: 100%;*/
/*  background: color-mix(in srgb, var(--heading-color), transparent 95%);*/
/*  border-radius: 50px;*/
/*  z-index: 1;*/
/*  top: 10px;*/
/*  right: -20px;*/
/*  transition: 0.3s;*/
/*}*/

.services .service-item h3 {
  color: #f4732a;
  font-weight: 500;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  margin-bottom: 20px;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: #fff;
}
a.readmore i{
    padding-left:10px;
}

.services .service-item:hover .icon i {
  color: #fff;
}

.services .service-item:hover .icon:before {
  background: #fff;
}

.services .service-item:hover h3 {
    border-color: 
color-mix(in srgb, #f7c147, transparent 10%);
    color: #ffffff;
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}
.services .service-item p{
  color: #fff;
  font-size: 14.5px;
  letter-spacing:0.5px;
  font-weight: 200 !important;
}


.flip-box {
  background-color:transparent;
  width: 100%;
  height: 380px;
  perspective: 1000px;

  /* overflow: hidden; */
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  /* border-radius: 15px; */
}

/*.flip-box:hover .flip-box-inner {*/
/*  transform: rotateY(180deg);*/
/*}*/

.flip-box-front, .flip-box-back {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-box-front {
  color: rgb(255, 255, 255);
  box-shadow: 0px 0 30px color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  background-color: #344e41;
}

.flip-box-back {
  padding: 30px 20px;
  box-shadow: 0px 0 30px 
color-mix(in srgb, var(--default-color), transparent 90%);
  min-height: 350px;
  color: white;
  transform: rotateY(180deg);
  /* background-image: url('../img/new/ser-1.jpg'); */
  /* background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/new/ser-1.jpg);

  background-position:  center;
  background-size: cover;
  background-repeat: no-repeat; */
  background-color: #344e41;
  border-radius:5px;

}
.flip-box-back h3{
  color: #f4732a;;
  /* text-shadow: 0.5px 1px 5px #000; */
  font-weight: 500;
}
.flip-box-back p{
  color: #fff;
}
.flip-box-back .icon{
    width:60px;
    height:60px;
    margin-bottom:20px;
}
.flip-box-back .icon img{
    width:100%;
    height:100%;
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq-box{
  border-bottom: 1px solid #ccc;
  margin-top: 25px;
  padding-bottom: 25px;
}
.faq-box h2{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  /* letter-spacing: 1px; */
}




.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*Text Animation*/
.text {
  height: 90px;
}

.text p {
  display: block;
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #f4732a;
  -webkit-text-fill-color: transparent
}

.word {
  position: absolute;
  opacity: 0;
}

.letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

.letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  transform: rotateX(-90deg);
}

.letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wisteria {
  color: #8e44ad;
}

.belize {
  color: #2980b9;
}

.pomegranate {
  color: #c0392b;
}

.green {
  color: #16a085;
}

.midnight {
  color: #2c3e50;
}
.word {
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 15px;
}
/*----------==================Year Area===========--------*/

.process{
  padding-top: 50px;
}
.year-area{
  position: relative;
  padding-top: 50px;
}

.year-area::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width:6px;
  height: 100%;
  background-color: #01433c;
  border-radius: 0px;
}
.year-f::after{
    border-radius:50px 50px 0 0;
}
.year-l::after{
    border-radius: 0 0 50px 50px;
}
.content-process{
  padding: 15px;
  border-radius: 10px;
  box-shadow: 1px 2px 10px #ccc;
  margin-left: 75px;
  position: relative;
}
.content-process h2 {
    font-size: 26px;
    font-weight: 500;
}
.content-process::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  width: 19%;
  height: 5px;
  background-color: #2c3e5078;
  border-radius: 0px;
}

.content-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -87px;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #f85a40;
    border-radius: 50px;
    z-index: 99;
}
.content-process1::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -97px;
    left:auto;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #f85a40;
    border-radius: 50px;
    z-index: 99;
}

.year{
  position: relative;
  width: 100%;
  height: 100%;
}

.year h3{
   font-size: 26px;
  font-weight: 500;
  position: absolute;
  right:20px;
  top: 50%;
  transform: translate(-50%,-50%);
} 


.year1 h3{
  left: 118px;
  right: auto;
}

.content-process1 {
    margin-right: 75px;
    margin-left: 0;
}

.content-process1::after {
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  width: 19%;
  height: 5px;
  left: auto;
}

.stretched-link::after{
    display:none !important;
}

a.btn-watch-video {
    color: #fff;
    padding: 8px 20px;
    background-color: #f4732a;
    display: inline-block !important;
    border-radius: 5px;
    font-size: 14px !important;
    letter-spacing: 1px;
     border:1px solid transparent;
}

a.btn-watch-video:hover{
    background-color: transparent;
    border:1px solid #f4732a;
    color:#fff;
}


a.btn-watch-video i{
    display:inline-block;
    padding-right:10px;
}

/*=======--------Responsive=======--------------*/
@media only screen and (min-width:1400px) {
    .content-process1::after {
      width: 15%;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1200px) {
 .content-process1::after {
    width: 22%;
   }
}



@media only screen and (max-width:992px) {
   .content-process::after {
    width: 33%; 
}
.content-process1::after {
    width: 33%;
}

.process.container, .process .container-md, .process .container-sm {
        max-width: 992px;
    }
}



@media only screen and (max-width:768px) {
.hero-box {
  margin-top: 15px;
}
.hero-list{
  display:none;
}
.text {
  height: 26px;
}
.hero-box h3 {
  font-size: 40px;
  letter-spacing: 6px;
}
.hero p {
    margin-top: 31px;
}
.about-content h2 {
  font-weight: 700;
  font-size: 25px;
}

.about-img {
  margin-top: 15px;
  border-radius:10px;
  overflow:hidden;
}

.about-img img {
    border-radius: 10px;
}
.year-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 4%;
}
.content-process1 {
  margin-right: 0px;
}
.content-process1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  width: 15%;
  height: 5px;
  background-color: #2c3e5078;
  border-radius: 0px;
}
.content-process::after {
  width: 15%;
}
.year h3 {
  font-size: 35px;
  font-weight: 700;
  position: absolute;
  right: 0px;
  top: 30px;
  transform: translate(-50%, -50%);
}
.year {
  display: none;
}
.flip-box {
  width: 100%;
}
.content-process {
    margin-left: 0px;
    padding-left:30px;
}
.faq-box h2 {
    display: flex;
}
.faq-box h2 strong{
    display:inline-block;
    padding-right:15px;
}
.social-links {
    margin-top: 0 !important;
}
h3.social-heading {
    left: 24px;
}
}

@media only screen and (max-width:425px) {
    .hero-box h3 {
        font-size: 30px;
        letter-spacing: 3px;
    }
}


@media only screen and (max-width:375px) {
    .header .logo h1 {
    font-size: 25px;
    }
    .faq-box h2 {
    font-size: 18px;
        margin-bottom: 0px;
    }
    .services .service-item {
    padding: 13px;
    }
    h3.social-heading {
        left: 23px;
        font-size: 21px;
    }
        .hero-box h3 {
              font-size: 25px;
        letter-spacing: 4px;
    }
    
    
    .about-content h2 {
        font-size: 25px;
    }
    .section-title h2 {
    font-size: 25px;
    }
    .content-process h2 {
    font-size: 27px;
    }
}



