/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Aug 15 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: 'torus_proregular', 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: 'torus_prosemibold', sans-serif;
  --nav-font: 'torus_prosemibold', sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #00AFFF;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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 {
  --nav-color: #fff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #00AFFF;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #111;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fff;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00AFFF;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'nunitoregular';
  font-size: 17px;
}


.form-select {
  font-family: 'nunitoregular';
  font-size: 17px;
}

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);
}

/* 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(--surface-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(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

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

  .header .btn-getstarted {
    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);
}

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */


@media (min-width: 993px) {
  .top-nav {
    display: inline-block !important
  }
}

@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: #fff;
    padding: 18px 15px;
    font-size: 16px;
    font-family: 'torus_probold';
    font-weight: 400;
    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(--nav-hover-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: 0;
    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: 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 {
    background-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;
  }
}

/* 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: var(--nav-mobile-background-color);
    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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: #000 url("../img/bg2.png") 0 0 no-repeat;
  background-size: cover;
  font-size: 16px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 150px;
  margin-bottom: 20px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  color: #b8b8b8;
  font-family: 'torus_proregular';
  font-weight: 400;
  font-size: 16px;
}

.phone-icon {
  background: #fff;
  color: #00AFFF;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 100px;
  padding: 4px 0;
  margin-right: 16px;
}

.foot-contact {
  position: relative;
  top: -32px;
}

.c-item {
  Color: #00AFFF
}

.footer .social-links a {

  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
  color: #fff;
  background-color: var(--accent-color);
}

.footer .social-links a:hover {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
}

.footer h4 {
  font-family: 'torus_prosemibold';
  position: relative;
  Color: #00AFFF;
  padding-bottom: 12px;
  text-transform: uppercase;
}

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

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

.footer .footer-links ul i {
  margin-right: 4px;
  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 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  font-family: 'torus_proregular';
}

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

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

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



.footer .copyright {
  padding: 30px 0;
  background: #111;
}

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

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

.foot-contact {
  background: #00aaff
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-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: 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 95%);
  padding: 20px 0;
}

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

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

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

.section.serlist {
  /*padding-bottom: 20px;
  padding-top: 20px;*/
}

.p-justify p {
  text-align: justify;
}

.p-justify .row {
  margin-bottom: 50px;
}

.devider-50 {
  float: left;
  width: 100%;
  height: 80px;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  padding: 0;
  line-height: 54px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2 span {
  font-family: 'nunitoregular';
  font-weight: 400;
}

.section-title h2 b,
.section-title h2 strong {
  font-weight: 700;
}

/*.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}*/

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: end;
  justify-content: start;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 400;
  font-family: 'torus_proregular';
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

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

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

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

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  );
}

.clients .swiper-slide img:hover {}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

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

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/


.services {

  background: #FFFFFF;
  background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 53%, rgba(0, 175, 255, 1) 52%);
  background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 53%, rgba(0, 175, 255, 1) 52%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 53%, rgba(0, 175, 255, 1) 52%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF",
      endColorstr="#00AFFF",
      GradientType=0);

}



.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/




.call-to-action {
  padding: 80px 0;
  background: #333 url("../img/j1.png") 0 0 no-repeat;
  background-size: cover;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

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

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.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: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.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;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

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

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}



.blogwrap {
  background: url("../img/news.jpg") 0 0 no-repeat
}

.icons_cont {
  text-align: center;
}



.btitle {
  Color: #333;
}


/* ath_carousel_se_01 */
.ath_carousel_se_01 .owl-theme .owl-dots,
.ser_carousel_se_01 .owl-theme .owl-dots {
  text-align: center;
  margin-top: 18px;
}

.ath_carousel_se_01 .owl-theme .owl-dots .owl-dot,
.ser_carousel_se_01 .owl-theme .owl-dots .owl-dot {
  display: inline-block;
}

.ath_carousel_se_01 .owl-theme .owl-dots .owl-dot span,
.ser_carousel_se_01 .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 5px;
  background: #00afff;
  border: 0px solid #fff;
  display: block;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
  border-radius: 50%;
}

.ath_carousel_se_01 .owl-theme .owl-dots .owl-dot:hover span,
.ser_carousel_se_01 .owl-theme .owl-dots .owl-dot:hover span {
  color: #fff;
  background: #00afff;
  /*  border: 5px double;*/
  padding: 5px;
  border-radius: 50%;
}

.ath_carousel_se_01 .owl-theme .owl-dots .owl-dot.active span,
.ser_carousel_se_01 .owl-theme .owl-dots .owl-dot.active span {
  color: #fff;
  background: #00afff;
  /* border: 5px double;*/
  opacity: 0.8;
  padding: 5px;
  border-radius: 50%;


}



.ath_carousel_se_01 .owl-carousel .owl-nav button.owl-next,
.ser_carousel_se_01 .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 42%;
  right: -20px;
  padding: 0px 15px 6px 15px !important;
  background: rgb(255, 255, 255);
  display: inline-block;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 35px;
  line-height: 35px;
  color: #e0571d;
  box-shadow: 0 0 8px rgba(0, 0, 0, .25);
}

.ath_carousel_se_01 .owl-carousel .owl-nav button.owl-next:hover,
.ser_carousel_se_01 .owl-carousel .owl-nav button.owl-next:hover {
  background: #ff5e14;
  color: #fff;
}

.ath_carousel_se_01 .owl-carousel .owl-nav button.owl-prev,
.ser_carousel_se_01 .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 42%;
  left: -20px;
  padding: 0px 15px 6px 15px !important;
  background: rgb(255, 255, 255);
  display: inline-block;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 35px;
  line-height: 35px;
  color: #e0571d;
  box-shadow: 0 0 8px rgba(0, 0, 0, .25);
}

.ath_carousel_se_01 .owl-carousel .owl-nav button.owl-prev:hover,
.ser_carousel_se_01 .owl-carousel .owl-nav button.owl-prev:hover {
  background: #ff5e14;
  color: #fff;
}



.ath_carousel_se_01 .owl-arrow .owl-nav,
.ser_carousel_se_01 .owl-arrow .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.8rem;
}

.ath_carousel_se_01 .owl-arrow .owl-nav .owl-prev,
.ath_carousel_se_01 .owl-arrow .owl-nav .owl-next,
.ser_carousel_se_01 .owl-arrow .owl-nav .owl-prev,
.ser_carousel_se_01 .owl-arrow .owl-nav .owl-next {
  display: inline-block;
  transition: all 0.6s ease-in-out;
  color: #000000;
}

.ath_carousel_se_01 .main_services,
.ser_carousel_se_01 .main_services {
  position: relative;
  margin: 15px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 8px 8px;
  /* box-shadow: 12px 14px 0 #ececec; */
  min-height: 348px;
  background: #fff;
}

.ath_carousel_se_01 .main_services:hover,
.ser_carousel_se_01 .main_services:hover {
  border: 1px solid #ededed;
  box-shadow: none;
}


@media only screen and (max-width: 768px) {

  .ath_carousel_se_01 .owl-carousel .owl-nav button.owl-prev,
  .ser_carousel_se_01 .owl-carousel .owl-nav button.owl-prev {
    top: 42%;
    left: 0px;

  }

  .ath_carousel_se_01 .owl-carousel .owl-nav button.owl-next,
  .ser_carousel_se_01 .owl-carousel .owl-nav button.owl-next {
    top: 42%;
    right: 0px;

  }
}



.lp-color {
  Color: #00AFFF;
}




.contact-btn-animated {
  display: inline-flex;
  align-items: center;
  background-color: #00aaff;
  color: #fff;
  font-weight: 600;
  padding: 10px 10px 10px 15px;
  border: none;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'torus_proregular';
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.contact-btn-animated .arrow-box {
  background-color: #fff;
  color: #000;
  margin-left: 12px;
  padding: 8px 10px;
  display: inline-flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn-animated .arrow-icon {
  transition: transform 0.3s ease;
}

.contact-btn-animated:hover {
  background-color: #007acc;
  color: #fff;
}

.contact-btn-animated:hover .arrow-box {
  background-color: #000;
  color: #fff;
  transform: translateX(5px);
  /* Slide effect */
}

.contact-btn-animated:hover .arrow-icon {
  transform: translateX(3px);
  /* Slight extra movement on arrow */
}








.aog-support-banner {
  background: #fff;
  color: #00aaff;
  font-weight: 700;
  font-family: sans-serif;
  text-transform: uppercase;
  padding: 10px 30px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}

.aog-support-banner::before,
.aog-support-banner::after {
  content: '';
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  background: #333;
  z-index: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.aog-support-banner::before {
  left: -15px;
  transform: skewX(-30deg);
}

.aog-support-banner::after {
  right: -15px;
  transform: skewX(-30deg);
}

.aog-text {
  position: relative;
  z-index: 2;
}


.aog-support-banner:hover {
  background: #111;
}


.aog-support-banner:hover::before,
.aog-support-banner:hover::after {
  background: #fff;
}




.hero-section video {
  top: 0;
  left: 0;
}



.modal-backdrop {
  z-index: 99;
}

#modalsearch .modal-dialog,
#modalinfo .modal-dialog {
  max-width: 100%;
  height: 100vh;
}

#modalsearch .modal-content,
#modalinfo .modal-content {
  height: 96%;
  background: #111
}


#modalinfo .footer .footer-links ul a {
  padding: 5px 0;
}


#modalinfo ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: start;
  flex-direction: column;
}

#modalinfo .footer {
  height: 100%;
  background: #000 url("../img/modal-bg.png") 0 0 no-repeat;
  background-size: cover;
}


#modalinfo .footer a i {
  margin: 0;
  font-size: 20px;
}


.box-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #111;
  width: 80%;
  margin: auto;
  height: 90px;
}

.box-wrap .btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: #00AFFF;
  border-radius: 0;
  width: 80px;
}

.box-wrap #exampleInputEmail1 {
  border-radius: 0;
  padding: 32px;
}

/**hero*/
.hero-text-wrap {
  position: relative;
  padding: 20px 0 20px 60px;
}


.hero-text-wrap .line-one {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 8px;
  background: #00AFFF
}

.hero-text-wrap .line-two {
  position: absolute;
  top: 0;
  left: 15px;
  height: 100%;
  width: 8px;
  background: #4D89BD
}

.hero-text-wrap .line-three {
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 8px;
  background: #345C7E
}







/***/

.button {
  padding: 0 .5rem;
  font-family: inherit;
  font-size: .875rem;
  line-height: 1.14em;
  color: #00AFFF;
  text-transform: uppercase
}

.button:focus .button__decor:before,
.button:hover .button__decor:before {
  transform: translateY(-50%)
}

.button:focus .button__decor svg,
.button:hover .button__decor svg {
  transform: rotate(1turn)
}

.button--steps {
  max-width: 13.625rem
}

.button__decor {
  position: relative;
  margin-left: 1rem;
  line-height: 0
}

.button__decor:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 21px;
  height: 23px;
  background: 50% no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 21 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.263.842l10.105 10.105m0 0L9.263 22.316m10.105-11.369H.421' stroke='%2300AFFF'/%3E%3C/svg%3E");
  transition: transform .3s ease-in-out
}

.mapsvg.button__decor:before {
  background: none;
  content: "Map";
}


.button__decor svg {
  width: 96px;
  height: 96px;
  transition: transform .3s ease-in-out
}

.button__decor--reverse {
  margin-left: auto;
  margin-right: 1rem;
  transform: scaleX(-1)
}

.button__decor--reverse-right {
  transform: scale(1)
}

.button__decor--medium svg,
.button__decor--steps svg {
  width: 68px;
  height: 68px
}

.button__decor--medium:before,
.button__decor--steps:before {
  width: 15px;
  height: 17px
}

.button__decor--large svg {
  width: 80px;
  height: 80px
}

.button__decor--large:before {
  width: 18px;
  height: 19px
}

.button__decor--small svg {
  width: 40px;
  height: 40px
}

.button__decor--small:before {
  width: 10px;
  height: 10px
}

.button__decor--xsmall {
  margin-right: .5rem
}

.button__decor--xsmall svg {
  width: 2rem;
  height: 2rem
}

.button__decor--xsmall:before {
  width: 10px;
  height: 10px
}

.button__add {
  margin: 2rem auto 2.5rem
}

@media print,
screen and (min-width:40em) {
  .button__add {
    margin: 2rem 0 2.5rem
  }
}

.button__add:focus .button__add-text,
.button__add:hover .button__add-text {
  transform: translateX(10px)
}

.button__add:focus .button__add-icon,
.button__add:hover .button__add-icon {
  transform: scale(1.1)
}

.button__add-icon {
  width: 32px;
  height: 32px;
  margin-right: 16px;
  background-position: 50%
}

.button__add-icon,
.button__add-text {
  transition: transform .3s ease-in-out
}

.button__add-text {
  font-size: .875rem;
  line-height: 1.14em;
  color: #00AFFF;
  text-transform: uppercase
}

.button[data-element-animate] {
  transition: opacity .4s .7s;
  opacity: 0
}

.button[data-element-animate] .button__decor:before {
  will-change: transform;
  transform: translate(-50%);
  transition: transform .8s cubic-bezier(.4, 0, 0, 1) .7s
}

.button[data-element-animate] .button__text {
  display: inline-block;
  will-change: transform;
  transition: transform .8s cubic-bezier(.3, 0, 0, 1) .7s;
  transform: translate(-1rem)
}

.button.animate {
  opacity: 1
}

.button.animate .button__decor:before {
  transform: translate(-50%, -50%)
}

.button.animate .button__text {
  transform: none
}

.button-circle {
  width: 4rem;
  height: 4rem;
  border: 1px solid #00AFFF;
  border-radius: 50%;
  transition: border-color .3s ease
}

.button-circle svg path {
  transition: stroke .3s ease
}

.button-circle:focus,
.button-circle:hover {
  border-color: #47484e
}

.button-circle:focus svg path,
.button-circle:hover svg path {
  stroke: #47484e
}

.button-circle--prev svg {
  transform: scaleX(-1)
}

.button-mini {
  font-size: .75rem;
  line-height: 1.17em;
  text-align: center
}

.button-mini svg {
  width: inherit;
  height: inherit
}

.button-mini__container {
  visibility: hidden;
  position: fixed;
  bottom: 5%;
  right: 1.1875rem;
  z-index: 5;
  width: 6.1875rem
}

.button-mini__container--z-6 {
  z-index: 6
}

.button-mini__container--show {
  animation: show-button 1s ease-in-out both
}

.button-mini__container--show .button-mini__decor {
  animation: show-title 1s ease-in-out both
}

.button-mini__container--show svg {
  animation: rotate-small-circle 1.5s ease-in-out
}

.button-mini__container--hide {
  animation: hide_button 1s ease-in-out both
}

.button-mini__container--hide .button-mini__decor {
  animation: hide-title 1s ease-in-out both
}

.button-mini__container--small-text span {
  font-size: .6875rem;
  line-height: 1.27em
}

.button-mini__container--xsmall-text span {
  font-size: .5625rem;
  line-height: 1.22em
}

.button-mini__container--bottom-10 {
  top: auto;
  bottom: 10%
}

.button-mini__container--top-77 {
  top: 77%;
  bottom: auto
}

.button-mini--small,
.button-mini--small svg {
  width: 45px;
  height: 45px
}

.button-mini__decor {
  position: relative
}

.button-mini__decor:focus svg,
.button-mini__decor:hover svg {
  transform: translate(-50%, -50%) rotate(1turn)
}

.button-mini__decor svg {
  z-index: 2;
  transform: translate(-50%, -50%) rotate(0)
}

.button-mini__decor--arrow:before,
.button-mini__decor svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform .3s ease-in-out
}

.button-mini__decor--arrow:before {
  content: "";
  transform: translate(-50%, -50%);
  width: 18px;
  height: 19px;
  background: 50% no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 21 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.263.842l10.105 10.105m0 0L9.263 22.316m10.105-11.369H.421' stroke='%23f8ae38'/%3E%3C/svg%3E")
}

.button-mini__decor--arrow:hover:before {
  transform: translateY(-50%)
}

.button-mini__decor--large {
  width: 80px;
  height: 80px
}

.button-mini__decor--large:after {
  width: 11px;
  height: 10px
}

.button-mini__decor--large-for-medium {
  width: 45px;
  height: 45px
}

@media print,
screen and (min-width:40em) {
  .button-mini__decor--large-for-medium {
    width: 80px;
    height: 80px
  }
}

.button-mini__decor--xxlarge svg {
  width: 99px;
  height: 99px
}


.switcher-col__text p {
  color: #fff;
}



#loading-area {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999999999;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80px;
  overflow: hidden;
}

#loading-area.loading-page-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading-area.loading-page-1 .bar-load {
  width: 100%;
}

#loading-area.loading-page-1:before,
#loading-area.loading-page-1:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  top: 0;
  background: #192436;
  transition: all 1.5s;
  transform-origin: left top;
  z-index: -1;
}

#loading-area.loading-page-1:before {
  top: auto;
  bottom: 0;
}

#loading-area.loading-page-1.active:before,
#loading-area.loading-page-1.active:after {
  height: 0px;
}

#loading-area.loading-page-1 .line {
  width: 100%;
  height: 3px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

#loading-area.loading-page-1 .line:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100px;
  content: "";
  background-color: var(--primary);
  animation-name: center-animate;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

#loading-area.loading-page-2 {
  background-color: #000;
}

#loading-area.loading-page-2 .loading-inner {
  font-family: var(--font-family-title);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 3px solid #ffffff;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 150px;
  color: var(--primary);
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#loading-area.loading-page-2 .loading-inner:before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  border: 3px solid transparent;
  height: 100%;
  width: 100%;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  border-right: 3px solid var(--primary);
  animation: dzLoad1 2s linear infinite;
}

#loading-area.loading-page-2 .loading-inner .loading {
  display: block;
  position: absolute;
  left: 50%;
  width: 50%;
  top: calc(50% - 2px);
  height: 4px;
  transform-origin: left;
  background: transparent;
  animation: dzLoad2 2s linear infinite;
}

#loading-area.loading-page-2 .loading-inner .loading:before {
  content: "";
  position: absolute;
  background: var(--primary);
  width: 16px;
  box-shadow: 0 0 20px var(--primary);
  height: 16px;
  border-radius: 50%;
  top: -6px;
  right: -8px;
}

#loading-area.loading-page-2 .load-text .text-load {
  font-weight: 900;
  display: inline-block;
  color: rgba(255, 255, 255, 0.1);
  position: relative;
  font-size: 70px;
  line-height: 70px;
  font-size: 24px;
  text-align: center;
  user-select: none;
  text-transform: uppercase;
  font-family: var(--font-family-title);
  letter-spacing: -1px;
}

#loading-area.loading-page-2 .load-text .text-load:before {
  animation: letters-loading 4s infinite;
  color: #fff;
  content: attr(data-text);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 70px;
  position: absolute;
  text-transform: uppercase;
}

#loading-area.loading-page-2 .load-text .text-load:nth-child(2):before {
  animation-delay: 0.2s;
}

#loading-area.loading-page-2 .load-text .text-load:nth-child(3):before {
  animation-delay: 0.4s;
}

#loading-area.loading-page-2 .load-text .text-load:nth-child(4):before {
  animation-delay: 0.6s;
}

#loading-area.loading-page-2 .load-text .text-load:nth-child(5):before {
  animation-delay: 0.8s;
}

#loading-area.loading-page-2 .load-text .text-load:nth-child(6):before {
  animation-delay: 1s;
}

#loading-area.loading-page-2 .load-text .text-load:nth-child(7):before {
  animation-delay: 1.2s;
}

#loading-area.loading-page-2 .load-text .text-load:nth-child(8):before {
  animation-delay: 1.4s;
}

#loading-area.loading-page-3 {
  background-color: #071c35;
}

#loading-area.loading-page-3 .loading-inner {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading-area.loading-page-3 .loading-inner .loader {
  background-color: rgba(0, 0, 0, 0.04);
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: dzLoad3 3s linear infinite;
}

#loading-area.loading-page-3 .loading-inner .loader .circle {
  transform-origin: left;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  width: 50%;
  height: 2px;
}

#loading-area.loading-page-3 .loading-inner .loader .circle:before {
  content: '';
  background: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: -57px;
  right: 14px;
  background: var(--primary);
  box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary), 0 0 60px var(--primary), 0 0 80px var(--primary), 0 0 100px var(--primary), 0 0 0 5px rgba(255, 255, 0, 0.1);
}

#loading-area.loading-page-3 .loading-inner .loader:nth-of-type(2) {
  background-color: rgba(0, 0, 0, 0.025);
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-right: 4px solid #5aaf1e;
  border-bottom: 4px solid #5aaf1e;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  animation: dzLoad3 3s reverse linear infinite;
}

#loading-area.loading-page-3 .loading-inner .loader:nth-of-type(2) .circle {
  transform: rotate(-45deg);
}

#loading-area.loading-page-3 .loading-inner .loader:nth-of-type(2) .circle:before {
  top: -4px;
  right: -6px;
  background: #5aaf1e;
  box-shadow: 0 0 20px #5aaf1e, 0 0 40px #5aaf1e, 0 0 60px #5aaf1e, 0 0 80px #5aaf1e, 0 0 100px #5aaf1e, 0 0 0 5px rgba(3, 169, 244, 0.1);
}

#loading-area.loading-page-4 {
  background-color: #fff;
}

#loading-area.loading-page-4 .loading-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#loading-area.loading-page-4 .loading-inner .wrapper {
  margin: auto;
  position: relative;
  height: 100px;
  width: 100px;
  overflow: hidden;
}

#loading-area.loading-page-4 .loading-inner .wrapper svg,
#loading-area.loading-page-4 .loading-inner .wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

#loading-area.loading-page-4 .loading-inner .wrapper .img1 {
  -webkit-animation: rotate360 5s linear infinite;
  animation: rotate360 5s linear infinite;
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load {
  font-weight: 900;
  letter-spacing: 15px;
  display: inline-block;
  color: rgba(0, 0, 0, 0.15);
  position: relative;
  font-size: 70px;
  line-height: 70px;
  font-size: 60px;
  letter-spacing: 1px;
  text-align: center;
  user-select: none;
  text-transform: uppercase;
  font-family: var(--font-family-title);
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load:before {
  animation: letters-loading 4s infinite;
  color: var(--title);
  content: attr(data-text);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 70px;
  position: absolute;
  text-transform: uppercase;
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load:nth-child(2):before {
  animation-delay: 0.2s;
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load:nth-child(3):before {
  animation-delay: 0.4s;
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load:nth-child(4):before {
  animation-delay: 0.6s;
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load:nth-child(5):before {
  animation-delay: 0.8s;
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load:nth-child(6):before {
  animation-delay: 1s;
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load:nth-child(7):before {
  animation-delay: 1.2s;
}

#loading-area.loading-page-4 .loading-inner .load-text .text-load:nth-child(8):before {
  animation-delay: 1.4s;
}

@media only screen and (max-width: 575px) {
  #loading-area.loading-page-4 .loading-inner .load-text .text-load {
    font-size: 30px;
  }

  #loading-area.loading-page-4 .loading-inner .wrapper {
    height: 80px;
    width: 80px;
  }
}

#loading-area.loading-page-5 {
  background-color: #fff;
}

#loading-area.loading-page-5 .loading-inner {
  text-align: center;
  position: absolute;
  line-height: 50px;
  text-transform: uppercase;
  width: 250px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-family-title);
  color: var(--title);
  letter-spacing: 5px;
  font-weight: 900;
}

#loading-area.loading-page-5 .loading-inner::before,
#loading-area.loading-page-5 .loading-inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  animation: dzLoad4 .7s infinite alternate ease-in-out;
  background-color: var(--primary);
}

#loading-area.loading-page-5 .loading-inner::before {
  top: 0;
}

#loading-area.loading-page-5 .loading-inner::after {
  bottom: 0;
}

@keyframes dzLoad4 {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }

  50% {
    height: 8px;
    width: 40px;
  }

  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}

@keyframes center-animate {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes dzLoad1 {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes dzLoad2 {
  0% {
    transform: rotate(45deg);
  }

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

@keyframes dzLoad3 {
  0% {
    transform: rotate(0deg);
  }

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

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

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

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






/*about us*/

.hero.inner-head {
  width: 100%;
  min-height: 40vh;
  align-items: center;
  justify-content: center;
}






.breadcrumbs span {
  font-family: 'nunitosemibold';
  padding: 3px;
}

.inner-head::after {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.inner-head {
  height: 350px;
  padding-top: 180px;
  position: relative;
}

.inner-head .hero-text-wrap {
  position: relative;
  z-index: 99;
}

.inner-head img {
  width: 100%;
  position: absolute;
  object-fit: cover;
  inset: 0;
}

.inner-head .hero-title {
  text-transform: uppercase;
  font-size: 40px;
  Color: #fff
}

#about {
  background: #000 url("../img/aboutinfobg.jpg") 0 0 no-repeat;
  background-size: cover;
}

@media (min-width: 1200px) {

  .about-info.card {
    background: #fff;
    padding: 40px 80px 40px 40px;
  }

  .c-form {
    margin-top: -130px;
  }

  .ser-info-box {
    margin-top: -40px;
  }


}


.services-detail .inner-head {}

.services-block {
  background: url("../img/bg-dot.pn")
}


.aboutvm {
  background: rgba(0, 0, 0, 0.9) url("../img/vision.jpg") 0 0 no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
}

.section.clients {
  background: rgba(255, 255, 255, 0.9) url("../img/partner-bg.jpg") 0 0 no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
}
}


.aboutstate {
  background: #000 url("../img/statebg.jpg") 0 0 no-repeat;
  background-size: cover;
}

.aboutstate h4 {
  Color: #fff;
  margin-top: 10px;
}

.aboutstate .stats-item {
  border-left: 1px solid #fff;
  padding: 40px;
}

.aboutstate .stats-item.first {
  border-left: 0px solid #fff;
  padding: 40px;
}

.qy-cer {
  background: #000 url("../img/statebg.jpg") 0 0 no-repeat;
  background-size: cover;
}

.service-details li {
  margin: 10px 0;
}

.c-info {
  background: #000 url("../img/c-info.jpg") 0 0 no-repeat;
  background-size: cover;
}

.c-form {
  background: #fff;
  padding: 40px;
}

.c-form p {
  Color: #00afff;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'torus_prosemibold';
  margin-bottom: 5px
}

.c-form h2 {
  Color: #111;
  font-size: 28px;
  margin-bottom: 20px;
}

.ctitle h2 {
  Color: #fff;
}

.ctitle p {
  Color: #fff;
  font-size: 20px;
}

.c-inf {
  padding: 80px 60px;
}




.career {
  background: #fff url("../img/aboutinfobg.jpg") 0 0 no-repeat;
  background-size: cover;
}


.text-00 {
  color: #00afff !important;
  font-family: 'torus_prosemibold' !important;
}

.contact-btn-animated {
  font-family: 'torus_prosemibold' !important;
}




.serlist-img {
  position: relative;
}


.serlist-img .serlist-icon.icon-right {
  right: -40px;
}

.serlist-img .serlist-icon.icon-left {
  left: -40px;
}

.serlist-img .serlist-icon {
  position: absolute;
  z-index: 6;
  top: 60%;
  background: #fff;
  width: 80px;
  height: 80px;
  padding: 20px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  font-family: 'nunitobold';
  font-size: 40px;
  color: #aaa;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ser-Certificates {
  background: #f8f8f8
}

.footer .footer-about .footer-contact p span {
  font-family: nunitoregular;
}

.ser-Certificates img {
  width: 150px;
}

.ser-Certificates .border p {
  min-height: 48px;
}

.hero iframe {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  width: 177.78vh !important;
  height: 56.25vw !important;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}



@media(max-width: 767px) {

  .hero.service-head {
    min-height: 35vh;
  }

  .service-head .hero-text-wrap {
    padding-left: 0;
    padding-bottom: 0;
  }

}


@media(min-width: 768px) and (max-width: 1100px) {

  .hero.service-head {
    min-height: 60vh;
  }

  .service-head .hero-text-wrap {
    padding-left: 0;
    padding-bottom: 0;
  }

}




@media(min-width: 1100px) {

  .hero.service-head {
    min-height: 90vh;
  }

  .services-wrap {}

  .services-wrap .mt-neg {
    margin-top: -30px;
    z-index: 6
  }

}

.serwrap {
  background: #00afff url("../img/services/sr1.png") right center no-repeat;
  background-attachment: fixed;
  position: relative;
}

.bg-cer {
  padding: 100px 0;
  background-image: url(../img/bg-cer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.bg-cer:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.bg-cer .col-12 {
  z-index: 9;
}

.services-listing-video {
  max-width: 100%;
}

.ser_carousel_se_01_carousel .owl-dots {
  display: none !important;
}

.inner-page .serwrap.ser_carousel_se_01 {
  padding-bottom: 0;
}



.services-related h5 {
  Color: #fff;
}

.ser-btn-more {
  background: #fff;
  border: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  bottom: -31px;
  position: absolute;
  right: 20px;
}

.about img {
  border-radius: 5px;
}




.foot-des {
  color: #b8b8b8;
  font-family: 'torus_proregular';
  font-weight: 400;
  font-size: 16px;
}

.ser-number {
  color: #ffffff;
  font-family: 'nunitosemibold';
  font-weight: 400;
  font-size: 33px;
  margin-bottom: 10px;
  border-bottom: 1px solid;
  display: block;
}


.ser-info {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.ser-info h5 {
  Color: #fff;
}

.serwrap .round_icon_img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ser_carousel_se_01 .main_services {
  min-height: 450px !important;
  overflow: hidden;
}


.serh-title {
  background: #000000;
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",
      endColorstr="#000000",
      GradientType=0);
}

.serwrap::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  content: "";
  background: #f9f9f9;
}

#indu {
  padding-bottom: 30px;
}

.serlist .col-md-6 p, .about-info1 p, .aboutvm-wrap p, #aboutsec p, p.foot-des {
  text-indent: 2em;
}