/**
* Template Name: FlexStart
* Template URL: https://bootstrapmade.com/flexstart-bootstrap-startup-template/
* Updated: Nov 01 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --primary-bg-color: #efa21f;
  --secondary-bg-color: #39393a; /* Background color for the entire website, including individual sections */
}

.primary-text{
  color: var(--primary-bg-color) !important;
}

.seconadary-text{
  color:  var(--secodary-color)  !important;
}

.primary-bg{
   background-color: var(--primary-bg-color) !important;
}
.secondary-bg{
  background-color: var(--secondary-bg-color) !important;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --primary-color: #efa21f;  /* The default color of the main navmenu links */
  --secodary-color: #39393a; /* Applied to main navmenu links when they are hovered over or active */
}

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

body {
  color:#686565;
  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(--secodary-color);
  font-weight: 500;
}
img {
  max-width: 100%;
}

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


.list-style1 > li:before{
  content: "\f26b";
  font-family: bootstrap-icons !important;
  font-style: normal; 
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  color: var(--primary-color);
  margin-right: 10px;
}

.list-style1 > li{
   margin-bottom: 10px;
   display: flex;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--primary-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: var(--primary-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.php-email-form .theme-btn {
    background: var(--secodary-color);
    color: #fff;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header-top {
  background: #39393a;
  padding: 8px 0;
  font-size: 14px;
}

.header {
  color: var(--secodary-color);
  background-color: #fff;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  top: 40px;
}

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

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
  transition: .2s ease all;
}


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

.header .theme-btn{
  margin-left: 30px;
}

.theme-btn,
.theme-btn:focus {
  color: var(--secodary-color);
  background: transparent;
  border: 1px solid var(--secodary-color);
  border: 2;
  font-size: 15px;
  padding: 8px 25px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
  border-radius: 50px;
  display: inline-block;
}

.theme-btn:hover,
.header .theme-btn:focus:hover {
  color: #fff;
  background: var(--secodary-color);
}

.info-links {
  display: flex;
  align-items: center;
  margin: 0;
  list-style: none;
  color: #fff;
  font-weight: 500;
}

.info-links li:not(:last-child) {
  margin-right: 10px;
}

.header-top .social-links a {
  color: #fff;
  border-color: #fff;
  border-width: 1px;
  width: 25px;
  height: 25px;
  font-size: 12px;
}

.header-top .social-links a:hover{
  border-color: var(--primary-color);  
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .theme-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  top: 0px;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--secodary-color);
    padding: 18px 12px;
    font-size: 14px;
    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;
    transition: 0.3s;
  }

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--secodary-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 rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #ffffff;
  }

  .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(--primary-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;
  }
}

/* Navmenu - Mobile */
@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;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color:#fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 0px;
  position: relative;
}



.footer .footer-top {
  padding-top: 50px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

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

.footer .copyright {
  background-color: var(--secondary-bg-color);
  color: #fff;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primary-bg-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--secodary-color);
  color: var(--primary-color);
}

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

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 100px 0;
  padding-bottom: 150px;
  border-top: 1px solid 
color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  z-index: 1;
}

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

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

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  justify-content: end;
}

.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 70%);
}

.lp-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-banner:before {
        background-color: rgb(0 0 0 / 75%);
    content: ' ';
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.lp-banner:after {
    content: ' ';
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: url(../img/bgn-triangle-bottom.png) no-repeat 100% 100%;
    background-size: contain;
}

.lp-banner .banner-content .tag-title {
    color: #efa21f;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    border-bottom: 2px solid #39393a;
}

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

@media (max-width: 1199px) {

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

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


.section-title h2 {
  color: var(--secodary-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.section-title h2 span {
  color: var(--primary-color);
}

.section-title p{
  margin-top: 15px;
}


.section-title p .description-title {
  color: var(--secodary-color);
}

.section-title h2:after {
  content: "";
  background: var(--secodary-color);
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/img-slider-03.jpg) top center no-repeat;
  background-size: cover;
}

.hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  top: 0;
  bottom: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size:40px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.hero p {
  color: #fff;
  margin: 5px 0 30px 0;
  font-size: 16px;
  font-weight: 400;
}



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

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

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

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.bt-bb-cover {
  position: absolute;
  bottom: 0;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  bottom: -1px;
}


@media (max-width: 640px) {
  .hero h1 {
        font-size: 34px;
        line-height: 36px;
  }

    .hero p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
        padding: 8px;
    }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  padding-top: 0;
  margin-top: -150px;
  position: relative;
  z-index: 2;
  background: transparent;
}

.about .content {
  margin-top: 150px;
}

.about .about-img img {
  height: 100%;
  object-fit: cover;
}

.about .section-title {
  padding-bottom: 30px;
  text-align: left;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-box {
  padding: 24px 20px;
  padding-top: 35px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.features .feature-box:before{
  display: block;
  content: "";
  background: var(--primary-color);
  width: 25em;
  height: 5em;
  position: absolute;
  z-index: -1;
  right: -1px;
  top: 0;
  margin: 0;
  -webkit-transform: skewY(30deg);
  -moz-transform: skewY(30deg);
  -ms-transform: skewY(30deg);
  transform: skewY(30deg);
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  z-index: 1;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 15px;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
  display: inline-block;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.features {
  padding-bottom: 180px;
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}

.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #222;
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}


.alt-features .list-style1 li a {
    color: #222;
    text-decoration: underline;
}

.alt-features .list-style1 li:before {
    font-size: 20px;
    color: #f80c0c;
}

.alt-features .icon-box h4 {
    margin-bottom: 20px;
}

.alt-features .icon-box > div {
    background: #ddd;
    padding: 10px;
    width: 100%;
}

.alt-features .list-style1 li a:hover {
    color: #0209f6;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: #fff;
  /* box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1); */
  height: 100%;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
  padding-top: 0;
  overflow: hidden;
}

.services .service-item .image-wrapper:before {
  display: block;
  content: "";
  background: var(--primary-bg-color);
  width: 27em;
  height: 7em;
  position: absolute;
  z-index: -1;
  right: -1px;
  top: 0;
  margin: 0;
  -webkit-transform: skewY(30deg);
  -moz-transform: skewY(30deg);
  -ms-transform: skewY(30deg);
  transform: skewY(30deg);
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  z-index: 1;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 8px 20px;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.service-item .content {
  padding: 10px;
  text-align: left;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: .3s ease all;
  height: 100%;
}

.service-item:hover .content {
  background: linear-gradient(45deg, #7477db, #efa21f, #a38d8db8);
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.service-item .image-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  max-height: 250px;
}

.service-item .image-wrapper img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.service-content-box {
  padding-right: 20px;
}
.service-content-box p{
  text-align: justify;
}

.service-content-box .table>:not(caption)>*>* {
  padding: 10px 20px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .section-title {
  padding-bottom: 0;
}

.contact {
  padding-bottom: 0;
}

.contact .form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 max-height: 740px;
}

.contact .php-email-form {
  padding: 0 40px;
  padding-top: 180px;
  padding-bottom: 80px;
}

.form-control {
  background: #fff;
  height: 52px;
  line-height: 1;
  border: 1px solid rgba(24, 24, 24, .2);
  border-radius: 50px;
}


textarea.form-control {
  border-radius: 26px;
  height: auto;
  padding: 20px;
}


button[type="submit"] {
  border: none;
  height: 52px;
  line-height: 1;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

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

/* location */

.location {
  padding-bottom: 0;
  padding-top: 0;
}

.bt-top-cover {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  top: -1px;
}

.bt-top-cover img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.info-item {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.info-item i {
    font-size: 34px;
    margin-right: 0px;
    background: var(--secodary-color);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 40px;
    text-align: center;
}
.info-item .icon {
    margin-bottom: 15px;
}

.info-item .content {
    text-align: center;
}

.info-item .content h3 {
  font-size: 20px;
}

.info-item .content p {
  margin: 0;
}

.curve-section{
  padding-bottom: 150px;
}

/* case studies */

/* case studies */


.article-item .image-wrapper {
    position: relative;
    overflow: hidden;
}

.article-item .image-wrapper img {
  max-height: 300px;
  width: 100%;
  min-height: 300px;
  height: 100%;
  object-fit: cover;
}

.article-item .image-wrapper:after {
    content: "";
    background: #ffffff;
    width: 200px;
    height: 300px;
    position: absolute;
    top: -163px;
    right: -146px;
    transform: rotate(323deg);
    box-shadow: inset 0 0 10px #00000082;
}


.article-item .content-wrapper {
    padding: 20px;
}

.article-item .content-wrapper .tag {
    color: #efa21f;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
    display: inline-block;
}

.article-item .content-wrapper .tag:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #39393a;
    top: 10px;
    left: 0;
}

.article-item .content-wrapper h3 {
    font-size: 22px;
}

.article-item .content-wrapper .footer {
  border-top: 1px solid #ddd;
  margin-top: 20px;
  padding-top: 15px;
  text-align: right;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

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

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: inline-block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.our-client  ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.our-client ul > li {
  width: 20%;
  margin-right: 2.5%;
  margin-bottom: 20px;

}

.our-client ul > li > a{
  display: block;
  border-width: 1px;
  border-color: #B7B7B7;
  box-shadow: 6px 6px 18px 0px rgba(0, 0, 0, 0.3);
}

.patner-banner-card img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 30px;
  display: block;
}

.icon-with-text-wrap .icon-box {
    text-align: center;
    margin-bottom: 20px;
}

.icon-with-text-wrap .icon-box h4 {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 18px;
}


.content-banner-card .image {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
}

.content-banner-card .image img {
    width: 100%;
    height: 100%;
    object-position: top center;
    object-fit: cover;
}

.content-banner-card .section-title {
    padding: 100px 0;
}

.content-with-image-column .content-image img {
    max-height: 253px;
    width: 100%;
    object-fit: cover;
}

.chat-btn {
  display: inline-block;
  position: fixed;
  bottom: 66px;
  right: 10px;
  z-index: 1;
  width: 52px;
}

.chat-btn img {
  max-width: 100%;
}

@media(max-width:991px){
  .our-client ul > li {
    width: 25%;
}
}

@media(max-width: 767px) {
  .about .content {
    margin-top: 40px;
    text-align: justify;
}

.features {
  padding-bottom: 150px;
  padding-top: 0;
}

.clients {
  padding-top: 0;
}

.alt-features {
  padding-top: 0;
}

.contact .php-email-form {
  padding-top: 80px;
}
.contact {
  padding-top: 0;
}

.header {
  top: 62px;
}

.hero .theme-btn {
  max-width: 150px;
}

.hero {
    min-height: 80vh;
    padding: 95px 0 60px 0;
}
.about .about-img img {
    max-width: 300px;
    margin: 0 auto;
}

.section-title h2 {
  font-size: 28px;
}

.page-title .heading h1 {
  font-size: 30px;
}

.page-title .heading {
  padding: 60px 0;
  padding-bottom: 102px;
}

.header .navmenu {
  order: 3;
  margin-left: auto;
}

.header .logo {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  max-width: 80%;
}

.our-client ul > li {
  width: 42%;
} 

.header-top {
  font-size: 12px;
}

.header .theme-btn {
    display: none;
}

.about {margin-top: -100px;}

}


