<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* Template Name: Eterna
* Template URL: https://bootstrapmade.com/eterna-free-multipurpose-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font &amp; Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "DM Sans",  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: "DM Sans",  sans-serif;
  --nav-font: "DM Sans",  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: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #E37B25; /* 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: #ffffff; /* 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: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #F15C41; /* 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: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #F15C41; /* 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: #3c3c3c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #565656;
  --contrast-color: #ffffff;
}

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


/*--------------------------------------------------------------
# General Styling &amp; Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

.blur {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease;
}

.popup 
{
   width: 400px;
  background: #fff;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  padding: 20px 30px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

 .openpopup {
visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup h2 
{
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
  text-align: center;
   font-family: "DM Sans",  sans-serif;
    color:#212121;
}

.popup p
{
  font-size: 20px;
  font-weight: 500;
  margin: 30px 0 10px;
  text-align: center;
   font-family: "DM Sans",  sans-serif;
    color:#212121;
}

.popup button 
{
  width: 100%;
  margin-top:50px;
  padding: 10px 0;
  background: #E7702D;
  color: #ffffff;
  border :0;
  outline: none;
  font-size: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  font-family: "Cormorant Upright", serif;
}
.noscroll {
  overflow: hidden;
}


.servicepopup 
{
   width: 400px;
  background: #fff;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  padding: 20px 30px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

 .seropenpopup {
visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.servicepopup h2 
{
  font-size: 38px;
  font-weight: 500;
  margin: 30px 0 10px;
  text-align: center;
   font-family: "DM Sans",  sans-serif;
    color:#212121;
}

.servicepopup p
{
  font-size: 20px;
  font-weight: 500;
  margin: 30px 0 10px;
  text-align: center;
   font-family: "DM Sans",  sans-serif;
    color:#212121;
}

.servicepopup button 
{
  width: 100%;
  margin-top:50px;
  padding: 10px 0;
  background: #E7702D;
  color: #ffffff;
  border :0;
  outline: none;
  font-size: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  font-family: "Cormorant Upright", serif;
}

@media screen and (max-width: 480px) {
  .popup {
    padding: 16px;
    width: 90%;
  }

   .servicepopup {
    padding: 16px;
    width: 90%;
  }
}


a {
  /*color: var(--accent-color); */
  color:#E37B25;
  text-decoration: underline;
  transition: 0.3s;
  font-size: 14px;
  font-weight: bold;
}

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; */
  background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .error {
  margin-bottom: 24px;
   font-weight: 400;
font-size: 12px;
line-height: 15px;
letter-spacing: 1%;
color:#FF5252;
}

.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: var(--background-color);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  /*box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);*/
  box-shadow:1px 2px 12px 0px rgba(255, 183, 132, 0.5);
}

.header .topbar {
  background-color: var(--background-color);
  height: 55px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

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

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

@media (max-width: 575px) {

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

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
  font-weight: unset;
}

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

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

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

.header .branding {
  padding: 10px 0;
}

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

.header .snclogo
{
  position: absolute; 
  top: 6%;
  left: 48%;
}

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

.header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 8px solid var(--accent-color);
}

.flex-container {
   display: flex;
    align-items: center;
    flex-direction: column;
}

.flex-container img {
  width:100%;
  height:auto;
}
a.video {
  float: left;
 position: relative;

}

iframe.video {
  float: left;
 position: relative;
 width: 100%;
  height: 100%;

}
a.video span {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../img/play.png") no-repeat;
  background-position: 50% 50%;
}

iframe.video span {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../img/play.png") no-repeat;
  background-position: 50% 50%;

}


/*--------------------------------------------------------------
# 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(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .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&gt;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: 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: 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&gt;a {
    color: var(--nav-dropdown-hover-color);
  }

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

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

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

@media (max-width: 1199px) {
  .desktop
  {
    display: none;
  }
}

.mobilveiw1 {
  display: block; /* default it will show in mobile devices. */
}
@media only screen and (min-width: 1199px) {
.mobilveiw1 {
  display: none; /* it will hide larger than 1199px eg: laptop and desktop */
}
}


/* 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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
   height: fit-content;
  }

  .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;
    text-decoration: none;
  }

  .navmenu .social-links a
  {
    padding: 10px 7px;
  }
 .navmenu .social-links a&gt;i
  {
    background-color: 
 color-mix(in srgb, var(--accent-color), #e575296b 90%);
  }


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

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

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

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

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

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

  .navmenu .dropdown&gt;.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&gt;ul {
    display: block;
  }
}



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

.footer .prefooter-newsletter {
  /*background-color: color-mix(in srgb, var(--default-color), transparent 95%);*/
  background-color:#0D0D0D;
  padding: 25px 0;
}

.footer .prefooter-newsletter h4 {
  color:#fff;
  font-size: 32px;
  font-weight: 400;
}

.footer .prefooter-newsletter h4&gt;span {
 background: linear-gradient(#E37B25,#E57529,#EC6637,#F15C41);
-webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
   /*background-color: var(--surface-color);*/
   background-color:#EBE9E3;
  color: var(--background-color);
  border-radius: 4px;
}


.footer .footer-newsletter .newsletter-form input[type=text]{
  border: 0;
  padding: 4px 8px;
  width: 100%;
   /*background-color: var(--surface-color);*/
   background-color:#EBE9E3;
  color: var(--background-color);
  border-radius: 4px;
}

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

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


.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  /*background: var(--accent-color);*/
  background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 4px;
   font-family: "Cormorant Upright", serif;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
 /* background: color-mix(in srgb, var(--accent-color), transparent 20%);*/
  background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
}

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

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

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

.footer h4 {
  font-size: 16px;
 font-weight: bold;
  position: relative;
  color:#000000;
  /*padding-bottom: 12px;*/
}

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

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

.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%);*/
  color: #000000;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  /* margin-bottom: 5px; */
  color: #000000;
}

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

.footer .copyright p {
  margin-bottom: 0;
  color: #000000;
}
.footer .copyright a
{
  text-decoration: none;
}

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

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

#pageLoader
{
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #E37B25 transparent #E37B25 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: 100px;
  z-index: 99999;
  /*background-color: var(--accent-color);*/
  background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
  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%);*/
  background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
  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 &amp; Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  /*--background-color: color-mix(in srgb, var(--default-color), transparent 96%);*/
  color: var(--default-color);
  /*background-color: var(--background-color);*/
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.page-title .breadcrumbs ol&gt;li&gt;a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.page-title .breadcrumbs 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: 30px 20px;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  /* margin-bottom: 20px;
  padding-bottom: 20px; */
  position: relative;
}

.error
{
  font-weight: 500;
font-size: 14px;
line-height: 15px;
letter-spacing: 1%;
color:#FF5252;
}

.joberror
{
  font-weight: 500;
font-size: 14px;
line-height: 15px;
letter-spacing: 1%;
color:#ff0000;
}

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

.section-title p {
  margin-bottom: 0;
  font-weight: 500;
font-size: 28px;
color:#686868;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  padding-bottom: 0px;
}

.hero .mobsubtitle h4 
{
  display: none;
}

.homebg
{
  background-image: url("../img/herobg.png");
  background-repeat:no-repeat;
  background-size: 75%;
  background-position: bottom;
  padding: 40px 0px 220px 0px; 
  /* padding: 40px 0px 200px 0px; */
}

.banner img {
  width: 100%;
}

.hero .carousel {
  width: 100%;
  min-height: 64vh;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-height: 400px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

@media (max-width: 500px) {
  .hero {
    padding-bottom: 127px;
  }
  .hero .carousel {
    min-height: 50vh;
  }
}

.hero img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
 top: 50px;
  /* top:30px; */
  /* top: 18px; */
  object-fit: none;
  /* z-index: 1; */
}

.subtitlepicture  {
  display: flex;
  justify-content: center; /* Aligns horizontally */
  align-items: center; /* Aligns vertically */
  margin-top: 119px;
}

@media only screen and (max-width: 1024px)  {
  .homebg
{
  background-size: contain;
  background-position: bottom;
}
}

@media only screen and (max-width: 1440px) {
  .hero img {
 height: 108% !important;
}
.hero .mobsubtitle h4 
{
  display: none;
}
} 

/* @media only screen and (max-width: 1024px) {
  .hero img {
 top:100px;
}
}  */

@media only screen and (max-width: 1024px) {
  .hero .subtitle h4 {
margin-top:120px;
}

.hero .mobsubtitle h4 
{
  display: none;
}
} 

@media only screen and (max-width: 768px)  {
  .hero img {
    object-fit: auto;
    top:35px;
    }
    .services .inovations 
    {
      width: auto !important;
    }
    .services .service-des p
    {
      width: auto !important;
    }
    .services .service-item 
    {
       width: auto !important;
    }

.subtitlepicture  {
  margin-top: 126px;
}

.subtitlepicture img {
  width:44%;
}
.hero .mobsubtitle h4 
{
  display: none;
}
.just h5 
{
  font-size: 17px !important;
}


}

@media only screen and (max-width : 500px) {
  .hero img {
    object-fit: auto;
    padding: 10px;
    margin: 75px auto 0;
    }
    .subtitlepicture  {
  margin-top: 47px;
    }
  .subtitlepicture img {
  width:59%;
}

}

@media only screen and (max-width: 500px) {
 .hero .subtitle h4 {
  margin-bottom: -30px;
 font-size: 15px;
 display: none;
}

.hero .mobsubtitle h4 {
          font-size: 16px;
        font-weight: 700;
        display: block;
        margin-top: 163px;
}

.about .energy p
{
  font-size: 12px !important;
}
.hero .carousel-container
{
   position: static !important;
  inset: 29px 64px 64px 64px;
}

}

/* @media only screen and (max-width: 1440px) and (min-width: 769px){
  .subtitlepicture img {
 display: none;
}
.subtitlepicturelabtop img 
{
  display: block;
}
} */

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  /*background: color-mix(in srgb, var(--background-color), transparent 20%);*/
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  /* background-color: color-mix(in srgb, var(--background-color), transparent 20%);*/
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 15px 64px 64px 64px;
  display: flex;
   /*justify-content: center;*/
  align-items: center;
  flex-direction: column;

}

.hero .subtitle {
  position: absolute;
  inset: 270px 64px 64px 64px;
  /* inset: 250px 64px 64px 64px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hero .subtitle h4 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;

}

.hero .subtitle img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: none;
}

.hero .carousel-item h2 {
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

.hero .carousel-item h2 span {
  color: #E37B25;
}
/*--------------------------------------------------------------
/* mobile font sizes*/
@media (max-width: 768px) {
  .hero .carousel-item h2 {
    font-size: 36px;
  }
  .clients h2
  {
    font-size: 22px;
  }
  .clients p
  {
    font-size: 15px;
  }
  .about h3
  {
    font-size: 20px !important;
  }
  .hero .carousel-item p {
    font-size: 13px;
  }
  .hero .subtitle h4 {
    text-align: center;

  }
  .contact h2
  {
    font-size: 22px;
  }
  .jobdetails .read-more a
  {
        width: auto;
    height: auto;
    font-size: 14px !important;
  }
  .blog-posts .applynow a
{
   font-size: 14px !important;
}
}

@media  only screen and (max-width: 500px) {
  .aboutcare,
  .connetbtn
  {
     display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .experience h3 {
    font-size: 25px !important;
    font-weight: 700 !important;
    text-align: center!important;
    padding: 0px !important;
  }

  .department a
  {
    text-align: center;
  }
  .jobapply 
  {
    padding: 50px 0px !important;
  }

  .about p {
    font-size: 15px !important;
    margin-right: 0px !important;
  }
  .about h4 
  {
    font-size: 22px !important;
  }

  .about h5
  {
    font-size: 22px !important;
    margin-right: 0px !important;
    
  }
  .about .trust h5
  {
     font-size: 20px !important;
  }
  .globalexhibitionsheading h5
  {
    font-size: 18px !important;
    text-align: center !important;
  }
  .blog-posts .applynow a
{
   font-size: 13px !important;
}

  .connetbutton button, 
  .connetbtn button,
  .aboutcare button,
  .hero .btn-get-started
  {
    font-size: 20px !important;
  }

  .services h3
  {
     font-size: 22px !important;
      padding: 0px !important;
  }
  .services p 
  {
    font-size: 15px !important;
  }
  .footer .prefooter-newsletter h4 
  {
     font-size: 20px !important;
  }

   .jobdetails .read-more a
  {
        width: auto;
    height: auto;
    font-size: 14px !important;
  }
.developemntsolution .outerside
{
  padding: 0px !important;
}
.developemntsolution .firstdescr p&gt;span, 
.developemntsolution .seconddescr p&gt;span
{
  font-size: 18px !important;
}

}

@media  (max-width: 768px) {

  p
 {
    font-size: 13px;
  }

  .about p {
    font-size: 15px !important;
  }

  .talk .contactdetails h5 
  {
    font-size: 22px !important;
    line-height: 32px !important;
  }

  .connetbtn button,
  .aboutcare button,
  .connetbutton button,
  .hero .btn-get-started{
    font-size:16px !important
  }
}

/* mobile font sizes
--------------------------------------------------------------*/


.hero .carousel-item p {
  animation: fadeInDown 1s both 0.2s;
  font-weight: 500;
  font-size:24px;
  text-align: center;
}
/* 
@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
} */

.hero .btn-get-started {
  color: var(--contrast-color);
  background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
  font-family: "Cormorant Upright", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 18px;
  border-radius: 4px;
  /*transition: 0.5s;*/
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
  box-shadow: 0px 8px 16px rgba(255, 142, 81, 0.4);
  text-decoration: none;
  z-index: 3;
}

.connetbutton button
{
 color: var(--contrast-color);
     background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
     font-family: "Cormorant Upright", serif;
     font-weight: 700;
     font-size: 24px;
     letter-spacing: 1px;
     padding: 4px 18px;
     border-radius: 4px;
     border :none;
     transition: 0.5s;
     margin: 10px;
     box-shadow: 0px 8px 16px rgba(255, 142, 81, 0.4);
}


.allservieces button
{
 color: var(--contrast-color);
     background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
     font-family: "Cormorant Upright", serif;
     font-weight: 600;
     font-size: 20px;
     letter-spacing: 1px;
     padding: 10px 16px;
     border-radius: 8px;
     border :none;
     transition: 0.5s;
     margin: 10px;
}

.connetbtn button
{
 color: var(--contrast-color);
     background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
     font-family: "Cormorant Upright", serif;
     font-weight: 700;
     font-size: 24px;
     letter-spacing: 1px;
      padding: 4px 18px;
     border-radius: 4px;
     border :none;
     transition: 0.5s;
     margin: 10px;
     box-shadow: 0px 8px 16px rgba(255, 142, 81, 0.4);
}

.aboutcare button
{
 color: var(--contrast-color);
     background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
     font-family: "Cormorant Upright", serif;
     font-weight: 700;
     font-size: 24px;
     letter-spacing: 1px;
     padding: 4px 18px;
     border-radius: 4px;
     border :none;
     transition: 0.5s;
     margin: 10px;
     box-shadow: 0px 8px 16px rgba(255, 142, 81, 0.4);
}


.linespace
{
  line-height: 20px;
}
.connetbutton button:hover
{
  background: linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
}

.hero .btn-get-started:hover {
  background: linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 15%;
  transition: 0.3s;
  opacity: 0.4;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
  
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  color: var(--default-color);
  font-size: 48px;
  line-height: 1;
}

.hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: var(--accent-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}

.hero .carousel-indicators li.active {
  opacity: 1;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .hero .carousel-indicators li {
    margin-bottom: 20px;
  }
}

.hero .featured {
  margin-top: -150px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .hero .featured {
    margin-top: 0;
  }
}

.hero .featured-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero .featured-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.hero .featured-item .icon {
  margin-bottom: 10px;
}

.hero .featured-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.hero .featured-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.hero .featured-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.hero .featured-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.hero .featured-item:hover h4 a,
.hero .featured-item:hover .icon i,
.hero .featured-item:hover p {
  color: var(--contrast-color);
}

.hero .featured-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

.about h4 {
  font-weight: 600;
font-size: 32px;
text-align: center;
color:#E37B25;
}

.about h3 {
  font-size:38px;
  font-weight: 700;
  margin-top:12px;
}

.about .bxcxwhere h5
{
  font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.about .bxgoal h3 
{
   font-weight: 700;
    font-size: 36px;
    text-align: center;
}
.services .innvo h3 
{
    font-size:44px;
  font-weight: 700;
  text-align: center;
}

.about .experience h3 {
  font-size:38px;
  font-weight: 700;
  text-align: center;
  padding: 0px 168px;
  margin-top: 12px;
  color:#212121;
}
.about .energy p
{
  font-size: 16px;
  color: #000000;
  text-align: center;
  display: flex;
}

.about .energy h5
{
font-weight: 700;
    font-size: 26px;
  text-align: center;
  margin-right: 226px;
}
.about .bxcxpara p 
{
font-weight: 400;
font-size: 18px;
text-align: center;
color: #000000;
}

.about p 
{
  font-weight: 400;
font-size: 20px;
color:#575757;

}

.about .trust h5
{ 
font-weight: 400;
font-size: 28px;
text-align: center;
margin:0px;
}

.about .empower p
{ 
font-weight: 700;
font-size: 24px;
text-align: center;
color:#202020;
}

.about h5{
font-weight: 700;
font-size: 26px;
text-align: center;
}

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

.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: 40px;
}

/*--------------------------------------------------------------
# Developemnt Section
--------------------------------------------------------------*/
.developemnt .firsttitle h3{
font-weight: 700;
font-size: 32px;
background: linear-gradient(#E37B25,#E57529,#EC6637,#F15C41);
-webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}
.developemnt .firstdescr p{
font-weight: 400;
font-size: 20px;
line-height: 28px;
letter-spacing: -3%;
color:#000000;
}
 
.developemntsolution .experience h3
{
font-weight: 700;
font-size: 38px;
line-height: 100%;
letter-spacing: -3%;
color: #000000;
text-align: center;
}

.developemntsolution .outerside 
{
  border: 1px solid #F4F4F4;
filter: drop-shadow(1px 0px 0px rgba(0, 0, 0, 0.12));
border-radius: 12px;
padding: 10px 20px 27px 35px;
    margin-top: 40px;
}

.developemntsolution .firstdescr
{
  display: flex;
  align-items: center;
  height: 100%;
}

.developemntsolution .seconddescr
{
  display: flex;
  align-items: center;
  height: 100%;
}
 
.developemntsolution img{
  display: block;
    margin-right: auto;
    margin-left: auto;
}

.developemntsolution .firstdescr p 
{
font-weight: 400;
font-size: 20px;
line-height: 28px;
letter-spacing: -3%;
color: #000000;
padding: 0px 173px 0px 0px;
}

.developemntsolution .seconddescr p 
{
font-weight: 400;
font-size: 20px;
line-height: 28px;
letter-spacing: -3%;
color: #000000;
padding: 0px 0px 0px 170px;
}

.developemntsolution .firstdescr p&gt;span,
.developemntsolution .seconddescr p&gt;span
{
font-weight: 700;
font-size: 20px;
line-height: 28px;
letter-spacing: -3%;
background: linear-gradient(#E37B25,#E57529,#EC6637,#F15C41);
-webkit-background-clip: text;
 background-clip: text;
 -webkit-text-fill-color: transparent;
}
/*--------------------------------------------------------------
# Solutions Section
--------------------------------------------------------------*/
 .solroadbg {
  width: 100%;
    height:870px;
   /* border: 1px solid green;*/
    background-image: url("../img/road.png");
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: -10px;
    background-size: 225px;
}

.firstpointframe
{
  width: 100%;
  height:100px;
  position: relative;
  /* border: 1px solid #3436BA; */
}
.firstpointnum img{
  position: absolute;
  top: 80%;
  left: 576px;
}
.firstpointicon img 
{
    position: absolute;
    top: 58%;
    left: 405px;
}
.firstpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top: 84%;
   left:60%
}


.secondpointframe
{
    width: 100%;
  height:100px;
  position: relative;
}
.secondpointnum img{
  position: absolute;
  top: 80%;
 right: 575px;
}
.secondpointicon img 
{
   position: absolute;
   top: 54%;
    right: 384px;
}
.secondpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top:78%;
  left:230px;
}

.thirdpointframe
{
  width: 100%;
  height:100px;
  position: relative;
  /* border: 1px solid #3436BA; */
}
.thirdpointnum img{
  position: absolute;
  top: 80%;
  left: 54%;
}
.thirdpointicon img 
{
    position: absolute;
    top: 51%;
    left: 405px;
}
.thirdpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top: 79%;
   left:60%
}

.fourthpointframe
{
    width: 100%;
  height:100px;
  position: relative;
}
.fourthpointnum img{
  position: absolute;
  top: 80%;
 right: 575px;
}
.fourthpointicon img 
{
   position: absolute;
   top: 49%;
    right: 384px;
}
.fourthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top: 84%;
  left: 152px;
}


.fifthpointframe
{
  width: 100%;
  height:100px;
  position: relative;
  /* border: 1px solid #3436BA; */
}
.fifthpointnum img{
  position: absolute;
  top: 64%;
  left: 576px;
}
.fifthpointicon img 
{
    position: absolute;
    top: 43px;
    left: 405px;
}
.fifthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top: 70%;
  left:60%
}

.sixthpointframe
{
    width: 100%;
  height:100px;
  position: relative;
}
.sixthpointnum img{
  position: absolute;
  top: 72%;
 right: 575px;
}
.sixthpointicon img 
{
   position: absolute;
   top: 40%;
    right: 384px;
}
.sixthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top: 66%;
  left: 108px;
}

.seventhpointframe
{
  width: 100%;
  height:100px;
  position: relative;
  /* border: 1px solid #3436BA; */
}
.seventhpointnum img{
  position: absolute;
  top: 54%;
  left: 576px;
}
.seventhpointicon img 
{
    position: absolute;
    top: 33px;
    left: 405px;
}
.seventhpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top: 58%;
   left:60%
}
.eightpointframe
{
    width: 100%;
  height:100px;
  position: relative;
}
.eightpointnum img{
  position: absolute;
  top: 60%;
 right: 575px;
}
.eightpointicon img 
{
   position: absolute;
   top: 30%;
    right: 384px;
}

.eightpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top: 50%;
  left:175px;
}

.solpointsodd
{
width: 100%;
    height:103px ;
    display: block;
    position: relative;
    /* bottom: 3px; */
    /* margin-left: auto;
    margin-right: auto; */
    /*border: 1px solid #3436BA;*/

}

.solpointseven
{
width: 100%;
    height:95px ;
    display: block;
    position: relative;
    /* bottom: 0; */
    /* margin-left: auto;
    margin-right: auto; */
    /*border: 1px solid #ba3487; */
}

.oddnumber img
{
    position: absolute;
    top: 80%;
    left: 54%;
}

.evennumber img
{
    position: absolute;
    top: 80%;
    right:  53%;
 /* border: 1px solid #059652;*/
}

.soluiconodd img
{
  position: absolute;
    top: 58%;
    left: 405px;
}

.soluiconeven img
{
    position: absolute;
    top: 50%;
    right: 36%;
}
.soluiconoddpoints h5{

 /*  border: 1px solid #863374;*/
  position :absolute;
  font-size: 22px;
  font-weight: 500;
  color:#202020;
  top: 84%;
   left:66%
}

.soluiconevenpoints h5{
  /*  border: 1px solid #863374;*/
  position :absolute;
   font-size: 22px;
  font-weight: 500;
  color:#202020;
 top: 80%;
   right: 68%;
}

@media screen and (min-resolution: 144dpi) and (max-resolution: 160dpi) {
   
  .firstpointnum img{
  position: absolute !important;
  top: 80% !important;
  left: 501px !important;
}
.firstpointicon img 
{
    position: absolute !important;
    top: 58% !important;
    left: 320px !important;
}
.firstpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 22px!important;
  font-weight: 500 !important;
  color:#202020!important;
  top: 84% !important;
   left:60% !important;
}

.secondpointnum img{
  position: absolute !important;
  top: 80% !important;
 right: 499px !important;
}
.secondpointicon img 
{
   position: absolute !important;
   top: 54%!important;
    right: 310px !important;
}
.secondpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 77% !important;
  left: 168px !important;
}

.thirdpointnum img{
  position: absolute !important;
  top: 80% !important;
  left:  506px!important;
}
.thirdpointicon img 
{
    position: absolute !important;
    top: 51% !important;
    left: 320px !important;
}
.thirdpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 79% !important;
   left:60%  !important;
}

.fourthpointnum img{
  position: absolute !important;
  top: 80% !important;
 right: 499px !important;
}
.fourthpointicon img 
{
   position: absolute !important;
   top: 49% !important;
    right: 310px !important;
}
.fourthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 77% !important;
  left: 95px !important;
}

.fifthpointnum img{
  position: absolute !important;
  top: 64% !important;
  left: 506px !important;
}
.fifthpointicon img 
{
    position: absolute !important;
     top: 42% !important;
    left: 320px !important;
}
.fifthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 70% !important;
   left:60% !important;
}

.sixthpointnum img{
  position: absolute !important;
  top: 72% !important;
  right:499px!important;
}
.sixthpointicon img 
{
   position: absolute !important;
  top: 42% !important;
  right:310px  !important;
}
.sixthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 66% !important;
  left: 50px  !important;
  /* width: 300px; */
}

.seventhpointnum img{
  position: absolute !important;
  top: 54% !important;
  left: 506px !important;
}
.seventhpointicon img 
{
    position: absolute !important;
    top: 33px !important;
    left: 320px !important;
}
.seventhpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 58% !important;
   left:60% !important;
}

.eightpointnum img{
  position: absolute !important;
  top: 60% !important;
right: 499px !important;
}
.eightpointicon img 
{
   position: absolute !important;
   top: 30% !important;
    right: 310px  !important;
}
.eightpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color:#202020 !important;
 top: 58% !important;
 left: 110px !important;
}
.clients .swiper-wrapper
{
  height: 0px !important;
}
}


@media only screen and (max-width: 768px)  {
  .firstpointnum img{
  position: absolute !important;
  top: 80% !important;
  left: 387px !important;
}
.firstpointicon img 
{
    position: absolute !important;
    top: 58% !important;
    left: 200px !important;
}
.firstpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 84% !important;
   left:66% !important;
}

.secondpointnum img{
  position: absolute !important;
  top: 80% !important;
 right: 385px !important;
}
.secondpointicon img 
{
   position: absolute !important;
   top: 54% !important;
    right: 200px !important;
}
.secondpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 77% !important;
  left:69px !important;
}

.thirdpointnum img{
  position: absolute !important;
  top: 80% !important;
  left: 391px !important;
}
.thirdpointicon img 
{
    position: absolute !important;
    top: 51% !important;
    left: 200px !important;
}
.thirdpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 79% !important;
   left:66% !important;
}

.fourthpointnum img{
  position: absolute !important;
  top: 80% !important;
 right: 385px !important;
}
.fourthpointicon img 
{
   position: absolute !important;
   top: 49% !important;
    right: 200px !important;
}
.fourthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 77% !important;
  left: 0px !important;
}

.fifthpointnum img{
  position: absolute !important;
  top: 64% !important;
  left: 391px !important;
}
.fifthpointicon img 
{
    position: absolute !important;
     top: 42% !important;
    left: 200px !important;
}
.fifthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 70% !important;
   left:66% !important;
}

.sixthpointnum img{
  position: absolute !important;
  top: 72% !important;
  right: 385px !important;
}
.sixthpointicon img 
{
   position: absolute !important;
  top: 42% !important;
  right: 200px !important;
}
.sixthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 66% !important;
  width: 224px !important;
  left: 42px !important;
}

.seventhpointnum img{
  position: absolute !important;
  top: 54% !important;
  left: 388px !important;
}
.seventhpointicon img 
{
    position: absolute !important;
    top: 33px !important;
    left: 200px !important;
}
.seventhpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 58% !important;
   left:66% !important;
}

.eightpointnum img{
  position: absolute !important;
  top: 60% !important;
right: 385px !important;
}
.eightpointicon img 
{
   position: absolute !important;
   top: 30% !important;
    right: 200px !important;
}
.eightpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color:#202020 !important;
 top: 58% !important;
 left: 16px !important;
}
}



 .solroadmbg {
  width: 100%;
    height:834px;
   /* border: 1px solid green;*/
    background-image: url("../img/mobsol.png");
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: -10px;
    background-size: 225px;
}

@media screen and (max-width: 767px) {
.firstpointicon img 
{
    position: absolute !important;
   top: 65% !important;
         left: 47px !important;
        width: 90px !important;
}
.firstpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 79% !important;
   left:79% !important;
}
.secondpointicon img 
{
   position: absolute !important;
  top: 63% !important;
  right: 45px !important;
   width: 90px !important;
}
.secondpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color:#202020!important;
  top: 74% !important;
   left: 9px !important;
  width: 100px !important;
}
.thirdpointicon img 
{
    position: absolute !important;
    top: 58% !important;
  left: 45px !important;
  width: 90px !important;
}
.thirdpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 65% !important;
   left: 79% !important;
}
.fourthpointicon img 
{
   position: absolute !important;
top: 54% !important;
right: 43px !important;
width: 90px !important;
    }

.fourthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color:#202020 !important;
 top: 62% !important;
left: 9px !important;
  width: 100px !important; 
}


.fifthpointicon img 
{
    position: absolute !important;
    top: 52% !important;
    left: 44px !important;
    width: 90px !important;
}
.fifthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color:#202020 !important;
 top: 58% !important;
 left: 79% !important;
}

.sixthpointicon img 
{
   position: absolute !important;
  top: 48% !important;
  right: 46px !important;
  width: 90px !important;
}
.sixthpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color:#202020 !important;
top: 56% !important;
 left: 0% !important;
  width: 100px !important;
}

.seventhpointicon img 
{
    position: absolute !important;
         top: 44% !important;
  left: 48px !important;
        width: 90px !important;
}
.seventhpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 12px !important;
  font-weight: 500!important;
  color:#202020 !important;
 top: 53% !important;
  left: 79% !important;
}

.eightpointicon img 
{
   position: absolute !important;
   top: 38%!important;
  right: 45px !important;
  width: 90px !important;
}
.eightpoint h5{
 /*  border: 1px solid #863374;*/
  position :absolute !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color:#202020 !important;
  top: 43% !important;
left: 0% !important;
 width: 90px !important;
}
}

@media (max-width: 500px)
{
.soluiconoddpoints h5{
  font-size: 12px;
        top: 84%;
        left: 75%;
  }
.soluiconevenpoints h5{
  font-size: 12px;
 top: 84%;
   right: 70%;
}
.soluiconeven img
{
    top: 47%;
    right: 10%;
}
.soluiconodd img
{
    top: 58%;
    left: 11%;
}
.oddnumber img
{
    top: 80%;
    left: 58%;
}
.evennumber img
{
    top: 80%;
    right:58%;
}
 
}

 @media (max-width:1200px)
{
  .soluiconoddpoints h5{
  
        top: 84%;
        left: 75%;
  }
.soluiconevenpoints h5{
 
 top: 84%;
   right: 70%;
}
.oddnumber img
{
    top: 80%;
    left: 58%;
}
.evennumber img
{
    top: 80%;
    right:58%;
}
}


@media only screen
  and (min-width: 769px)
  and (max-width: 991px) {
  .soluiconoddpoints h5{
  font-size: 15px;
        top: 84%;
        left: 75%;
  }
.soluiconevenpoints h5{
  font-size: 15px;
 top: 84%;
   right: 70%;
}
.oddnumber img
{
    top: 80%;
    left: 56%;
}
.evennumber img
{
    top: 80%;
    right:55%;
}
}

@media only screen and (device-width: 768px)
{
  .soluiconoddpoints h5{
  font-size: 15px;
        top: 84%;
        left: 65%;
  }
.soluiconevenpoints h5{
  font-size: 15px;
 top: 84%;
   right: 67%;
}
.oddnumber img
{
    top: 80%;
    left: 56%;
}
.evennumber img
{
    top: 80%;
    right:56%;
}

.soluiconeven img
{
    top: 47%;
    right: 25%;
}
.soluiconodd img
{
    top: 58%;
    left: 25%;
}

}


/*--------------------------------------------------------------
# Department Section
--------------------------------------------------------------*/
.department
{
  background: url("../img/department.png");
  background-position: center;
  background-size: cover;
}
.department h3{
font-weight: 700;
font-size: 32px;
 color: #ffffff;
 text-align: center;
}

.department a
{
  font-size:18px;
  color: #ffffff;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: transform 250ms,
    opacity 400ms;
}
.department a:hover{
  transform: scale(1.2);
}

.department span
{
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
}

.jobs
{
  padding-top: 30px;
}
/*****************/
/*****************/
/*bxcx*/
.talk
{
  height: 100%;
  display: flex;
  align-items: center;
}

.talk .contactdetails {
   flex: 1;
}

.talk .contactdetails h5 {
font-weight: 700;
font-size: 26px;
line-height: 52px;
color:#212121;
text-align: left;
}

.talk .contactdetails h3 {
font-weight: 700;
font-size: 30px;
}

.talk .contactdetails a {
font-weight: 400;
font-size: 20px;
text-decoration: underline;
color:#0000FF;
}

.just h5 
{
font-weight: 300;
font-size: 28px;
text-align: center;
padding: 15px 0px 0px 0px;
}
.bxcx img, .bxcx iframe{
   display: block;
  margin-left: auto;
  margin-right: auto;
}
/*****************/

/*****************/
/*globalexhibitions*/
/*****************/
.globalexhibitions
{
  height: 100%;
  display: flex;
  align-items: center;
}

.globalexhibitions .marketing {
   flex: 1;
}

.globalexhibitions .marketing h3{
  font-size: 42px;
  font-weight: 300;
  line-height: 64px;
}

.globalexhibitions  img{
   display: block;
  margin-left: auto;
  margin-right: auto;
}

.globalexhibitionsheading h3
{
 font-weight: 600;
font-size: 36px;
}

.globalexhibitionsheading h5
{
font-weight: 600;
font-size: 24px;
text-align: left;
}
.globalexhibitionsheading p
{
font-weight: 400;
font-size: 18px;
color:#212121;
}

.brand img
{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.brand h5{
  color:#5c00b2;
  font-weight: 600;
 font-size: 24px;
}

.brand ol 
{
font-weight: 500;
font-size: 16px;
line-height: 26px;
/* text-align: justify; */
color:#212121;
}


@media (max-width: 768px) {
    .globalexhibitions .marketing h3{
      font-size: 22px;
      line-height: 27px;
    }

    .globalexhibitions img{
      width: 50%;
    }

    /* .brand img {
     width: 50%;
} */
.developemnt .firsttitle h3
{
  font-size: 24px;
}
.developemnt .firstdescr p
{
  font-size: 17px;
}
.developemntsolution .experience h3
{
    font-size: 24px;
}
.developemntsolution .firstdescr p 
{
  font-size: 17px;
  padding : 0px;
}
.developemntsolution .seconddescr p 
{
  font-size: 17px;
  padding : 0px;
}
.contact .finalsec h2
{
  font-size: 35px !important;
  line-height: 34px !important;
      padding-right: 0px !important;
}
}

@media (max-width: 500px) {
  .contact .finalsec h2
    {
      font-size: 26px !important;
      line-height: 34px !important;
        padding-right: 0px !important
  }
  .contact .brandstartegy h3
  {
     font-size: 21px !important;
     padding :0px 10px !important;
  }
  .contact .brandstartegy h4
  {
     font-size: 25px !important;
       text-align: center !important;
  }
    .contact .brandstartegy h5
  {
     font-size: 23px !important;
     text-align: center !important;
  }
  .talk .contactdetails h3
  {
    text-align: center !important;
  } 
   .talk .contactdetails a
   {
        display: flex;
    align-items: center;
    justify-content: center;
   }
   .contact .brandstartegy p
   {
    text-align: center !important;
   }
   .globalexhibitionsheading h3 
   {
    text-align: center !important;
   }
   .jobdetails h5
   {
    font-size:15px !important;
   }
}
/*****************/
/*TAX 360*/

.taxthreesixty h3
{
   font-weight: 700;
   font-size: 44px;

}
.taxthreesixty img
{
   display: block;
  margin-left: auto;
  margin-right: auto;
  /* width: 60%; */
}

@media (max-width: 768px) {
    .taxthreesixty h3{
      font-size: 22px;
    }

    /* .taxthreesixty img{
      width: 50%;
    } */

}

.desktop360 img
{
  margin-block:-25px;
}

@media (max-width: 1199px) {
  .desktop360
  {
    display: none;
  }
}

.mobil360 {
  display: block; /* default it will show in mobile devices. */
}

.mobil360 span&gt;img 
{
  width: 101px;
}
@media only screen and (min-width: 1199px) {
.mobil360 {
  display: none; /* it will hide larger than 1199px eg: laptop and desktop */
}
}


/********/


/*************
vault360
***********/

.vault .vaulthead h3 
{
font-weight: 700;
font-size: 38px;
color:#000000;
text-align: center;
}

.vault .valutthreesixty h3 
{
font-weight: 700;
font-size: 28px;
line-height: 36px;
color:#000000;
}

.vault .valutthreesixty p
{
font-weight: 400;
font-size: 20px;
line-height: 28px;
color:#000000;
}
.vault .desktop360 h3 
{
font-weight: 700;
font-size: 32px;
color:#E34400;
}
.vault p 
{
font-weight: 400;
font-size: 22px;
color: #000000;
}
.vault .desktop360 img{
 margin-block: -25px;
/* margin-left: 36px; */
}

.people .desktop360 img
{
   margin-block: -25px;
  /* margin-left: 30px; */
}

@media (max-width: 768px) {
  .vault .vaulthead h3 
{
font-size: 23px;
}
   .vault .valutthreesixty p
{
font-size: 18px;
}
.vault p 
{
font-size: 18px;
}
.vault .valutthreesixty h3 
{
font-size: 22px;
}
.vault .mobil360 h3 
{
font-size: 22px;
color:#E34400;
}
.vault .mobil360 span&gt;img {
width: 101px;
}
}

@media screen and (max-width: 500px) {
  .vault .agr360 .mobil360 h3
{
font-size: 18px;
color:#E34400;
}
.vault .agr360 .mobil360 span&gt;img {
width: 87px;
}
}

@media screen and (max-width: 375px) {
  .vault .agr360 .mobil360 h3
{
font-size: 17px;
color:#E34400;
}
.vault .agr360 .mobil360 span&gt;img {
width: 87px;
}
}

@media screen and (max-width: 320px) {
.vault .agr360 .mobil360 h3
{
font-size: 17px;
color:#E34400;
}
.vault .agr360 .mobil360 span&gt;img {
width: 87px;
}

}


/***********
agrement360
****************/
.agrement .aghead h3{
font-weight: 700;
font-size: 38px;
color:#000000;
text-align: center;
}

.agrement .aghead p{
font-weight: 400;
font-size: 20px;
line-height: 28px;
text-align: center;
}

.agrement .agdesc p{
font-weight: 400;
font-size: 24px;
line-height: 28px;
text-align: center;
}

.agrement .agrdesc p{
font-weight: 700;
font-size: 24px;
line-height: 28px;
text-align: center;
}

.agrement .agdescwp p{
font-weight: 400;
font-size: 24px;
line-height: 28px;
text-align: center;
padding:0px 160px;
}

.agrement .agdescwp p&gt;span{
font-weight: 700;
font-size: 24px;
line-height: 28px;
}

.agrement .aghousehead h3{
font-weight: 700;
font-size: 38px;
line-height: 55px;
color:#000000;
}
.agrement .aghousehead h5{
font-weight: 700;
font-size: 24px;
color:#000000;
}
.agrement .aghousehead p{
font-weight: 400;
font-size: 24px;
color:#000000;
}
.agrement .aghousehead ul{
font-weight: 400;
font-size: 24px;
line-height: 28px;
color:#000000;
}
.agrement .commercial p{
  font-weight: 400;
font-size: 24px;
line-height: 28px;
}
.agrement .commercial p&gt;span{
font-weight: 700;
font-size: 24px;
line-height: 28px;
}

.agrement .agpresent p{
font-weight: 600;
font-size: 24px;
font-style: italic;
line-height: 28px;
text-align: center;
}
.agrement .mattershead h3{
font-weight: 700;
font-size: 32px;
}

.agrement .mattershead p{
font-weight: 400;
font-size: 24px;
line-height: 20px;
}

.agrement .connectdescwp p{
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    padding: 0px 69px;
}

.agrement .agconhead h3{
font-weight: 600;
font-size: 28px;
text-align: center;
color:#000000;
}
.agrement .agconhead h4{
font-weight: 700;
font-size: 28px;
color:#000000;
}

.agrement .agconhead p{
font-weight: 400;
font-size: 18px;
color:#000000;
}

.agrement .agconhead ul{
font-weight: 400;
font-size: 18px;
color:#000000;
}

.agrement .agconhead ul&gt;li&gt;a{
font-weight: 400;
font-size: 18px;
color:#000000;
text-decoration: none;
} 

.agrement .agform
{
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
border-radius: 12px;
padding-top:50px;
}

@media only screen and (max-width: 768px)
{
  .agrement .aghead h3
  {
    font-size: 25px;
  }
  .agrement .agdescwp p,
  .agrement .agdesc p,
  .agrement .aghousehead p,
  .agrement .aghousehead ul,
  .agrement .commercial p,
  .agrement .agpresent p,
  .agrement .connectdescwp p
  {
    font-size: 20px;
    padding: 0px 30px;
  }
  .agrement .agdescwp p&gt;span,
  .agrement .commercial p&gt;span,
  .agrement .mattershead p 
  {
    font-size: 20px;
  }
  .agrement .aghousehead h3,
  .agrement .mattershead h3
  {
    font-size: 28px;
  }
  .agrement .mattershead h3
  {
    font-size: 26px;
  }
}

@media only screen and (max-width: 500px)
{
.agrement .aghead h3
  {
    font-size: 21px;
  }
   .agrement .agdescwp p,
   .agrement .aghead p,
  .agrement .agdesc p,
  .agrement .aghousehead p,
  .agrement .aghousehead ul,
  .agrement .commercial p,
  .agrement .agpresent p,
  .agrement .connectdescwp p,
  .agrement .agconhead p,
  .agrement .agconhead p&gt;a
  {
    font-size: 17px;
    padding: 0px 15px;
  }
  .agrement .agdescwp p&gt;span,
  .agrement .commercial p&gt;span,
  .agrement .mattershead p 
  {
    font-size: 17px;
  }

  .agrement .aghousehead h3,
  .agrement .mattershead h3,
  .agrement .agconhead h4 
  {
    font-size: 22px;
  }
  .agrement .mattershead h3
  {
    font-size: 22px;
  }
   .agrement .aghousehead h5
   {
      font-size: 20px;
   }
   .agrement .agconhead ul,
   .agrement .agconhead ul&gt;li&gt;a
   {
    font-size: 15px;
   }
}

/*****************/
/**************
lms 360
/************/
.buildlms
{
  border: 1px solid #E2E2E2;
  padding: 20px;
  border-radius: 34px 0px;
}
.buildlms ul
{
font-weight: 400;
font-size: 18px;
line-height: 32px;
}

.desktop360 .buildlms ul
{
font-weight: 400;
font-size: 20px;
line-height: 32px;
}

.about .bm p 
{
font-weight: 400;
font-size: 18px;
color: #212121;
}

.about .bm h3{
font-weight: 600;
font-size: 42px;
text-align: center;
padding: 0px;
}

 
.about .creative h3{
font-weight: 600;
font-size: 42px;
text-align: center;
}

.about .bm ol
{
font-weight: 400;
font-size: 20px;
color: #212121;
}

.about .desktop360 h3 
{
font-weight: 700;
font-size: 32px;
}
.about .lmshead h3 {
  font-size: 32px;
  font-weight: 700;

}
.about .lmshead h5 {
  font-size: 22px;
  font-weight: 400;
  text-align: left;

}

.about .lmsheader h3 
{
font-weight: 700;
font-size: 44px;
text-align: center;
padding: 0px 300px;
}

.about .lmssecheader h3 
{
font-weight: 700;
font-size: 46px;
text-align: center;
padding: 0px 172px;
}

.about .career h3 
{
font-weight: 700;
font-size: 44px;
text-align: center;
}

.about .career p
{
font-weight: 400;
font-size: 18px;
text-align: center;
color:#323232;
}


.lms
{
  background-color: #292A29;
  width: 100%;
  padding: 0;
}

 .lmspoints
  {
padding:15px 0px 2px 0px;
  }

  .lmspoints .painpoints p{
             color:#ffffff;
font-weight: 400;
font-size: 18px;
text-align: center;

}

.lmspoints .painpoints span{
    vertical-align: text-bottom;
    padding-right: 5px;
}

@media (max-width: 768px) {
    .lmspoints .painpoints p{
             text-align: left;
             color:#ffffff;
             font-size: 15px !important;
    }
    .about .lmshead h3 {
  font-size:22px;
  font-weight: 700;
    }
  .about .lmsheader h3 
{
font-size:22px;
  font-weight: 700;
text-align: center;
padding: 0px;
}

  .about .lmssecheader h3 
{
font-size:22px;
  font-weight: 700;
text-align: center;
padding: 0px;
}

.about .bm ol
{
font-size: 16px !important;
}

}


/******************/

/**Ticket360**/

@media (max-width: 768px) {
   .tab h3{
            font-size:22px !important;
    }
    .tab h5 {
 font-size:20px !important;
}


.tab {
  float: right;
  /* width: 40%; */
  height: auto;
}

.tab button
{
  font-size:18px !important;
}
}

.tab h3{
font-weight: 700;
font-size: 40px;
line-height: 46px;
margin-left: 20px;
}

.tab h5{
font-weight: 700;
font-size: 26px;
line-height: 46px;
margin-left: 20px;
}

.tab button {
  display: block;
  background-color: #fff;
  color: #656565;
  padding: 7px 10px;
  width: 90%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
  margin: 5%;
  border-radius: 4px;
  font-weight: 500;
}

.tab button:hover {
  background-color: #F6F6F6;;
}

.tab button.active {
 background-color: #F6F6F6;
 color:#000000;
}

.tab button.active:before {
  font-family: "FontAwesome";
   content: "\f060";
   display: inline-block;
   padding-right: 3px;
   vertical-align: middle;
}

.tabcontent {
  float: right;
  padding: 30px;
  /* width: 60%; */
  height: auto;
  background-color: #F6F6F6;
  border-radius: 26px;
}

.tabcontent img
{
  display: block;
    margin-left: auto;
    margin-right: auto;
}



/**************/


/*******************************/

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1 solid color-mix(in srgb, var(--default-color), transparent 85%);
  /* padding: 80px 20px; */
  transition: all ease-in-out 0.3s;
  height:222px ;
  /* width:383px ; */
  box-shadow: 0px 0px 12.4px rgba(0, 81, 255, 0.1);
border-radius: 8px;
}


.services .inovations{
  background-color: var(--surface-color);
  text-align: center;
  border: 1 solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 10px 20px;
  transition: all ease-in-out 0.3s;
  height:269px ;
  /* width:387px ; */
  box-shadow: 0px 0px 12.4px rgba(0, 81, 255, 0.1);
border-radius: 8px;
}


.services .lmsservice{
  background-color: var(--surface-color);
  text-align: center;
  border: 1 solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 10px 10px;
  transition: all ease-in-out 0.3s;
  height:242px ;
  width:auto;
  box-shadow: 0px 0px 12.4px rgba(0, 81, 255, 0.1);
border-radius: 12px;
}


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

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

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services h3 {
  font-size:40px;
  font-weight: 700;
  padding: 0px 232px;
  margin-bottom: 14px;
}

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


.services .service-item h5 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 18px;
  color:#E37B25;
}

.services p{
  font-weight: 400;
font-size: 20px;
color:#575757;
}

.services .innvo p{
  font-weight: 400;
font-size: 22px;
color:#8E8E8E;
} 
.services .service-item p {
  line-height: 100%;
  margin-bottom: 0;
  font-weight: 500;
font-size: 20px;
 color:#000000;
}

.services .service-des p {
  font-weight: 500;
font-size: 20px;
text-align: center;
 color:#000000;
    /* width: 383px; */
}

.services .lmsservicedes h5 {
  margin-top:10px;
font-weight: 700;
font-size: 16px;
text-align: center;
color:#E34400;
   width:auto;
}

.services .lmsservicedes p {
font-weight: 500;
font-size: 12px;
text-align: center;
color:#555555;
    width:auto;
}

.services .service-des a {
font-weight: 700;
font-size: 16px;
text-decoration: underline;
background: linear-gradient(#E37B25,#E57529,#EC6637,#F15C41);
-webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*
.services .service-item:hover {
   background-color: #df741d12;
 background: var(--accent-color);
  border-color: var(--accent-color);
}
*/
.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
 /* color: var(--contrast-color);*/
 color:#000000;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
/* .clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
} */

/* .clients .swiper-slide img {
  border-radius: 10px;
}  */


.clients .swiper
{ 
  height: auto;
}

.clients .swiper-slide
{
    display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.clients .swiper-slide img
{
  height: 300px !important;
  object-fit: inherit;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: 300px !important;
}

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

@media only screen and (max-width: 1024px){
  .clients .swiper-slide img {
    height: 200px !important;
  }
}

@media only screen and (max-width: 768px){
  .clients .swiper-slide img {
    height: 200px !important;
  }
}

 
@media only screen and (max-width: 500px){
  .clients .swiper-slide img {
    height: 200px !important;
  }
  .clients .swiper-wrapper {
  height: 245px !important;
}
.clients .swiper-pagination
{
       margin-top: 0px !important;
}
}




/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

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

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

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.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(--accent-color), transparent 50%);
  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: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.skills .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

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

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: 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: 0px 35px 5px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  color: #909090;
 border-bottom: 1px solid  #909090;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #000000;
  border-bottom: 1px solid #E7702D;
}

.portfolio .portfolio-filters svg&gt;path:hover,
.portfolio .portfolio-filters svg&gt;path.icon {
   fill: #000000;

}


/* .inline-svg:hover {
            fill: green;
        } */

/* .portfolio .portfolio-filters svg:hover,
.portfolio .portfolio-filters svg.inline-svg
{
 fill: #e37b25 !important;
} */

/* .portfolio .portfolio-filters span svg.filter-active &gt; path{
  fill: black;
  transition: all ease 0.3s;
} */

/* .portfolio .portfolio-filters li.filter-active &gt; :active {
  fill: blue;
}  */

/* .portfolio svg:hover {
    fill: #fce57e;
}

.portfolio svg:active path{
    fill: #fce57e;
} */

/* .suchicon:hover {
    fill: #000000;
} */

.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 5px;
  }
}

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

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

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

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

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

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

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

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

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

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

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

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

.team .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
#blogtable {
  font-family: var(--default-font);
  border-collapse: collapse;
  width: auto;
  display: block;
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: none;
}

#blogtable td, #blogtable th
 {
  border: 5px solid #fff;
  padding: 12px;
  font-weight: 400;
   font-size: 15px;
}

#blogtable td&gt;ul
{
  font-weight: 400;
   font-size: 15px;
}

#blogtable td{
color: black;
text-align: left
}

#blogtable tr {background-color: #EDEDED;}

#blogtable th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #E37B25;
  color: white;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
}


.blog-posts {
  padding-top: 30px;
}

.blog-posts article {
  background-color: #FFFFFF;
 box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
  padding: 30px;
  height: 100%;
  position: relative;
  border-radius: 4px;
}
.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding-top: 12px;
  padding-bottom: 24px;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  padding-bottom: 24px;
}

/* .blog-posts .content .read-more {
   text-align: right; 
} */

.blog-posts .applynow ,
.blog-posts .read-more {
    position: absolute;
      bottom: 24px;
      /* right: 15px; */
}


.blog-posts .applynow a 
{
    background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
  color: var(--contrast-color);
  display: inline-block;
  padding: 2px 10px;
  transition: 0.3s;
  font-size: 18px;
  border-radius: 4px;
  text-decoration: none;
  font-family: "Cormorant Upright", serif;
}
.blog-posts .location {
    position: absolute;
      top: 20px;
      right: 50px;
}
.blog-posts .content .read-more a {
  /* background: var(--accent-color); */
  /* background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%); */
  display: inline-block;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%) border-box;
  border: 1px solid transparent;
  border-radius: 4px;
}
@media (max-width:500px) {
  .blog-posts .location svg 
  {
        width: 13px;
    height: 13px;
  }

   .blog-posts .location span
  {
font-size: 13px;
  }
}
/* .blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%); 
  background:linear-gradient(90deg, #E37B25 0%, #E57529 35%, #EC6637 78%, #F15C41 100%);
} */

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/

.blogpage-breadcrumb-date .blogbreadcrumb a{
    font-weight: 700;
    font-size: 16px;
    color: #E37B25;
    text-decoration: none;
    margin-bottom: 1rem;
}

.blogpage-breadcrumb-date .blogbreadcrumb span a{
    font-weight: 700;
    font-size: 14px;
    color: #000000;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogbreadcrumb span{
        padding: 0px 5px 0px 5px;
    color:  color-mix(in srgb, var(--default-color), transparent 70%);
}

@media screen and (max-width:500px){
  .blogpage-breadcrumb-date .blogbreadcrumb a
  {
     font-size: 13px;
  }
}

.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 0 30px 30px 30px;
  /*box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);*/
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 600;
  padding: 0;
  /*margin: 30px 0;*/
  text-align: center;
}

.blog-details .subject {
  color: var(--heading-color);
font-weight: 500;
font-size: 18px;
text-align: center;
}


.blog-details .content {
  margin-top: 20px;
}

.blog-posts .category {
padding: 5px 0px 8px 8px;
}

.blog-posts .category p {
font-weight: 400;
font-size: 13px;
color:#FFFFFF;
text-align:center;

} 
.blog-details .content p{
font-weight: 400;
font-size: 20px;
line-height: 28px;
}

.blog-details .content p&gt;b&gt;a {
font-weight: 600;
font-size: 20px;
line-height: 28px;
}

.blog-details .content ol,
.blog-details .content ul {
  font-weight: 400;
font-size: 20px;
}

.blog-details .content h6&gt;ol{
  font-size: 20px;
  font-weight: 500;
  font-family:'Montserrat';
  color:#222222;
  padding-left: 19px;
  list-style-type: disclosure-closed;
  line-height: 30px;
}


.blog-details .content h3 {
  font-size: 24px;
  margin-top: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-details .content ul&gt;li&gt;h5,
.blog-details .content ol&gt;li&gt;h5 {
  font-size: 20px;
  margin-top: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-details .content h6 {
  font-size: 16px;
  word-spacing: 3px;
}

.blog-condetails img{
  display: block;
    margin-left: auto;
    margin-right: auto;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blogdownload
{
display: flex;
justify-content: center;
}

.blogdownload .artbutton{
 background: #3436BA;
box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.12);
border-radius: 5px;
color:#fff;
padding: 15px 48px;
text-align: center;
}

.blogdownload .artbutton a
{
  color:#fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .blog-details .title
  {
    font-size: 28px;
  }
  .blog-details .content h3
  {
    font-size: 16px;
  }

  .blog-details .content ul&gt;li&gt;h5,
  .blog-details .content ol&gt;li&gt;h5
   {
  font-size: 15px;
 
}
.blog-details .subject 
{
  font-size: 16px;
}
.blog-details .content h6 {
  font-size: 14px;
}

.blog-details .content p,
.blog-details .content p&gt;b&gt;a {
font-size: 13px;
}
.blog-details .content h6&gt;ol{
  font-size: 13px;
}

.blog-details .content ol,
.blog-details .content ul {
font-size: 13px;
}

.page-title .breadcrumbs ol li+li{
  max-width: 200px; /* Adjust to fit your layout */
}


}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.jobapply
{
  background-image: url("../img/carrer.png");
  background-repeat:no-repeat;
  box-shadow: inset 0 0 0 2000px #e37a25db;
  background-size: cover;
  padding: 120px 0px;
}

.jobapply form
{
  display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    /* background-color:#ffffffab; */
    border-radius: 20px;
     backdrop-filter: blur(2px) saturate(100%);
    background-color: rgba(255, 255, 255, 0.329);
    /* border-radius: 12px; */
    /* border: 1px solid rgba(209, 213, 219, 0.3); */
  
}

.jobapply h2
{
  display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    font-weight: 800;
}

.jobdetails h2
{
   display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    font-weight: 800;
}

.jobdetails .content p{
  line-height: 1.7em;
}

.jobdetails h5
{
  font-size: 18px;
  padding-bottom: 24px;
  font-weight: 700;
      color: #EC6637;
}


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

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 22px !important;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p, 
.contact .info-item p &gt;a {
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}

.contact .php-email-form {
 /*background-color: var(--surface-color);*/
  height: 100%;
  padding: 30px;
 /*box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);*/
}

.contact .connecthead h2 
{
font-weight: 700;
font-size: 44px;
}

.contact .connecthead p
{
font-weight: 400;
font-size: 18px;
color:#212121;
}

.contact .connecthead h5
{
font-weight: 700;
font-size: 26px;
}

.contact .finalsec h2{
font-weight: 700;
font-size: 50px;
line-height: 60px;
color:#212121;
padding-right: 100px;
}

.contact .brandstartegy h3{
font-weight: 600;
font-size: 40px;
text-align: center;
padding: 0px 117px;
color:#212121;
}

.contact .brandstartegy h4{
font-weight: 700;
font-size: 40px;
color:#E86D30;
}

.contact .brandstartegy h5{
font-weight: 500;
font-size: 30px;
color:#E86D30;
}

.contact .brandstartegy p{
font-weight: 400;
font-size: 18px;
color:#202020;
}


@media (max-width: 768px)
{
  .contact .connecthead h2 
{
font-size: 22px !important;
text-align: center;
}
.contact .connecthead p
{
font-size: 15px !important;
}
.services h3 {
  font-size:25px;
  padding: 0px 10px;
}
.contact .connecthead h5
{
font-size: 20px !important;
}

.contact .info-item h3 {
  font-size: 20px !important;
}
.contact .info-item p, 
.contact .info-item p &gt;a {
  font-size: 15px !important;
}


}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=number],
.contact .php-email-form select,
.contact .php-email-form input[type=file],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 14px 16px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: #D2D2D2;

}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=number]:focus,
.contact .php-email-form input[type=file]:focus,
.contact .php-email-form select: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 input[type=number]::placeholder,
.contact .php-email-form input[type=file]::placeholder,
.contact .php-email-form select::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 16px;
  color: #767676;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  /*background: var(--accent-color);*/
  background-color: #000000;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
  float: left;
font-weight: 600;
font-size: 20px;
font-family: "Cormorant Upright", serif;
}

.contact .php-email-form button[type=submit]:hover {
  background-color: #000000;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 30px 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;
}

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

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
}

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

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

.categories-widget ul a {
  color: #909090;
  transition: 0.3s;
  text-decoration: none;
  font-size: 17px;
      border-width: 2px;
    border-color: #909090;
    border-bottom-style: solid;
    padding: 5px 30px;
}

@media screen and (max-width: 768px) {
  .categories-widget ul a {
   font-size: 15px;
  }
}


@media screen and (max-width: 425px) {
  .categories-widget ul&gt;li&gt;a {
   font-size: 12px;
   text-align: left;
  }
  .spacediv
  {
    margin:25px 0px 0px 0px;
  }
  .categories-widget ul li
  {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 375px) {
  .categories-widget ul&gt;li&gt;a {
   font-size: 11px;
  }
}

@media screen and (max-width: 320px) {
  .categories-widget ul&gt;li&gt;a {
   font-size: 10px;
  }
}


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

 .categories-widget ul a.active
  {
     color: #323232;
     /* background-color: var(--accent-color); */
     border-color: #E37B25;
  }

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

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

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

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

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

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

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

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

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

/*laptop screen*/

@media (min-width: 1024px) and (max-width: 1440px) {
 .contact .connecthead h2,
.hero .carousel-item h2,
.about .experience h3,
.about h3,
.services h3,
.taxthreesixty h3,
.vault .vaulthead h3,
.tab h3,
.contact .brandstartegy h3,
.contact .brandstartegy h4,
.agrement .aghead h3,
.agrement .aghousehead h3
{
 font-size: 30px !important;
}
.brand h5,
.about .lmshead h5
{
   font-size: 20px !important;
}
p
{
  font-size: 16px !important;
}
.connetbutton button
{
  font-size: 20px !important;
}
.services h3{
  padding:0px 103px;
}
.connetbtn button{
   font-size: 20px !important;
}
.aboutcare button
{
   font-size: 20px !important;
}
.about .lmshead h3{
  font-size: 21px !important;
}
.about .trust h5
{
   font-size: 25px !important;
}
.about h4,
.tab h5
{
  font-size: 22px !important;
}
.btn-get-started
{
  font-size:16px !important
}
.talk .contactdetails h5
{
  font-size:22px !important
}
.just h5 
{
  font-size: 22px !important;
}
.talk .contactdetails h3{
  font-size: 20px !important;
}
.footer .prefooter-newsletter h4
{
  font-size: 25px;
}
.career a
{
  font-size: 16px !important;
}
.mobil360{
  display: none;
}
.desktop360{
display: block;
}
.desktop360 .buildlms ul
{
   font-size: 17px !important;
}
.tab button 
{
  margin: 2%;
  font-size: 16px !important;
}
.jobdetails .read-more a{
  font-size: 16px !important;
  width: auto; 
  height: auto;
}
.services .service-item 
{
  width: auto;
}
.services .service-des p
{
   width: auto;
}
.services .inovations
{
  width: auto;
}
.homebg
{
  background-size: 75%;
}
  .soluiconoddpoints h5{
  font-size: 15px;
       
  }
.soluiconevenpoints h5{
  font-size: 15px;
}
.globalexhibitions .marketing h3
{
  line-height:37px ;
}
.lmspoints .painpoints p
{
  font-size: 15px !important;
}
.about .bm ol
{
font-size: 17px !important;
}
.globalexhibitionsheading h5
{
  font-size: 22px !important;
}
 .hero .subtitle h4
 {
  font-size: 19px !important;
 }
 .hero .subtitle {
  inset: 400px 64px 64px 64px;
   /* inset: 325px 64px 64px 64px; */
}
.hero img
{
  /* top:120px; */
  top:100px !important;
}
.blog-posts .applynow a
{
   font-size: 16px !important;
}
.about .energy h5
{
  margin:0px !important 
}
.developemntsolution .outerside
{
  padding : 10px 27px 27px 35px;
}
.developemnt .firsttitle h3
{
  font-size: 27px !important;
}
.developemntsolution .experience h3
{
  font-size: 27px !important;
}
.contact .finalsec h2
{
  font-size: 38px !important;
  line-height: unset;
  padding-right:100px !important;
}
.services .lmsservice
{
  height: 180px;
}
.department a
{
  font-size: 15px;
}
.vault .valutthreesixty h3 
{
  font-size:21px !important
}
.agrement .aghousehead ul,
.agrement p
{
  font-size:20px !important
}
.agrement .mattershead h3
{
  font-size: 26px !important;
}
.agrement .agdescwp p
{
  padding: 0px 70px !important;
}
}
/*laptop screen*/</pre></body></html>