/* Fonts */
:root {
  --default-font: "Roboto", sans-serif;
  --heading-font:  "Roboto", sans-serif;
  --nav-font:  "Roboto", sans-serif;
    /* --heading-font:  'Playfire Display', serif; */
    
}

/* Global Colors */
:root { 
  --background-color: #ffffff; 
  --default-color: #26024b; 
  --heading-color: #26024b; 
  --accent-color: #26024b; 
  --contrast-color: #ffffff;
    --bs-primary:#26024b;
    --theme-color:#FF6F0F;
    --title-color:#000000;
    
}

/* Nav Menu Colors */
:root { 
  --nav-color: #000; 
  --nav-hover-color: #26024b; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #26024b;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
.text-primary{color: #26024b !important; }
.text-theme{color:#000 !important;}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #26024b;
    --bs-btn-border-color: #26024b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #26024b;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #26024b;
    --bs-btn-disabled-border-color: #26024b;
}


.default-color{
    color: #ff111f; 
}
ol.innerpage-number, ol.innerpage-number li {
    border: none !important;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {  color: var(--default-color);   background-color: var(--background-color);font-family: var(--default-font); }
a {  color: var(--accent-color);  text-decoration: none;  transition: 0.3s; }
a:hover {  color: color-mix(in srgb, var(--accent-color), transparent 25%);  text-decoration: none; }
h1,h2, h3,h4, h5, h6 {  color: var(--heading-color);  font-family: var(--heading-font); }

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {  color: var(--default-color);   background-color: var(--background-color);   padding: 10px 0;   transition: all 0.5s; z-index: 997; }
.header .logo {  line-height: 1; }
.header .logo img {  max-height: 115px;  margin-right: 8px; }
.samhigh{margin-top:40px;}
.samhigh img{ width:100%;
}
     .vertical-list {
       display: flex;
       flex-direction: column; /*  For vertical layout */
       list-style-type: decimal; /*  Keep numbered list */
     }
.header .logo1 img {  max-height: 115px;  margin-left:15px; }
.header .logo h1 {  font-size: 30px;  margin: 0;  font-weight: 700;  color: var(--heading-color); }
.header .btn-getstarted,
.header .btn-getstarted:focus {  color: var(--contrast-color);  background: var(--accent-color);  font-size: 15px;  padding: 8px 25px;  margin: 0 0 0 30px;  border-radius: 4px;  transition: 0.3s;  font-weight: 500; }
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {  color: var(--contrast-color);  background: color-mix(in srgb, var(--accent-color), transparent 15%); }

@media (max-width: 1200px) {
  .header .logo {  order: 1;}
  .header .btn-getstarted {  order: 2;  margin: 0 15px 0 0;  padding: 6px 15px; }
  .header .navmenu {order: 3; }
}

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

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
.navmenu ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
.navmenu li { position: relative; }
.navmenu a, .navmenu a:focus {color: var(--nav-color);padding: 18px 5px;font-size: 13px; font-family: var(--nav-font); font-weight: 500; display: flex; align-items: center; justify-content: space-between; white-space: nowrap; transition: 0.3s; }
.navmenu a i, .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px;transition: 0.3s;} 
.navmenu li:last-child a { padding-right: 0; }
.navmenu li:hover>a, .navmenu .active, .navmenu .active:focus { color: var(--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 color-mix(in srgb, var(--default-color), transparent 85%); }
.navmenu .dropdown ul li { min-width: 200px; }
.navmenu .dropdown ul a { padding: 10px 20px; font-size: 13px; text-transform: none; color: var(--nav-dropdown-color); }
.navmenu .dropdown ul a i { font-size: 12px; }
.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a { color: var(--nav-dropdown-hover-color); }
.navmenu .dropdown:hover>ul { opacity: 1; top: 100%; visibility: visible; }
.navmenu .dropdown .dropdown ul { top: 0; left: -90%;visibility: hidden; }
.navmenu .dropdown .dropdown:hover>ul { opacity: 1; top: 0; left: -84%; visibility: visible; }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle { color: var(--nav-color); font-size: 28px; line-height: 0; margin-right: 10px; cursor: pointer; transition: color 0.3s; }
    .navmenu { padding: 0; z-index: 9997; }
    .navmenu ul {display: none;position: absolute; inset: 60px 20px 20px 20px; padding: 10px 0; margin: 0; border-radius: 6px; background-color: var(--nav-dropdown-background-color); overflow-y: auto; transition: 0.3s; z-index: 9998; box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);}
    .navmenu a,
    .navmenu a:focus { color: var(--nav-dropdown-color); padding: 10px 20px; font-family: var(--nav-font); font-size: 17px; font-weight: 500; display: flex;align-items: center; justify-content: space-between; white-space: nowrap; transition: 0.3s;}
    .navmenu a i,
    .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; background-color: color-mix(in srgb, var(--accent-color), transparent 90%);}
    .navmenu a i:hover,
    .navmenu a:focus i:hover { background-color: var(--accent-color); color: var(--contrast-color); }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus { color: var(--nav-dropdown-hover-color); }
    .navmenu .active i,
    .navmenu .active:focus i { background-color: var(--accent-color); color: var(--contrast-color); transform: rotate(180deg); }
    .navmenu .dropdown ul { position: static; display: none; z-index: 99; padding: 10px 0; margin: 10px 20px; background-color: var(--nav-dropdown-background-color); border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); box-shadow: none; transition: all 0.5s ease-in-out; }
    .navmenu .dropdown ul ul { background-color: rgba(33, 37, 41, 0.1); }
    .navmenu .dropdown>.dropdown-active { display: block; background-color: rgba(33, 37, 41, 0.03); }
    .mobile-nav-active { overflow: hidden; }
    .mobile-nav-active .mobile-nav-toggle { color: #fff; position: absolute; font-size: 32px; top: 15px; right: 15px; margin-right: 0; z-index: 9999; }
    .mobile-nav-active .navmenu { position: fixed; overflow: hidden; inset: 0; background: rgba(33, 37, 41, 0.8); transition: 0.3s; }
    .mobile-nav-active .navmenu>ul { display: block; }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
    .navmenu .listing-dropdown {position: static;}
    .navmenu .listing-dropdown ul {margin: 0; padding: 10px; background: var(--nav-dropdown-background-color); box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%); position: absolute; top: 130%; left: 0; right: 0; visibility: hidden; opacity: 0; display: flex; transition: 0.3s; border-radius: 4px; z-index: 99; }
    .navmenu .listing-dropdown ul li { flex: 1; }
    .navmenu .listing-dropdown ul li a,
    .navmenu .listing-dropdown ul li:hover>a {padding: 10px 20px; font-size: 15px; color: var(--nav-dropdown-color); background-color: var(--nav-dropdown-background-color); }
    .navmenu .listing-dropdown ul li a:hover,
    .navmenu .listing-dropdown ul li .active,
    .navmenu .listing-dropdown ul li .active:hover { color: var(--nav-dropdown-hover-color); background-color: var(--nav-dropdown-background-color); }
    .navmenu .listing-dropdown:hover>ul { opacity: 1; top: 100%; visibility: visible; }
    header#header {   top: 0;        border-bottom: 1px solid var(--accent-color); }
    body.index-page.scrolled header#header {   top: 0;}
}
/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
.navmenu .listing-dropdown ul { position: static; display: none; z-index: 99; padding: 10px 0; margin: 10px 20px; background-color: var(--nav-dropdown-background-color); border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); box-shadow: none; transition: all 0.5s ease-in-out; }
.navmenu .listing-dropdown ul ul { background-color: rgba(33, 37, 41, 0.1); }
.navmenu .listing-dropdown>.dropdown-active { display: block; background-color: rgba(33, 37, 41, 0.03); }
}

.pre-header {    background: var(--accent-color);    color: #fff;   text-align: center;    padding: 10px 10px;}
.pre-header a { background: #fff; padding: 2px 17px; border-radius: 2px; text-transform: none; font-weight: bold; }


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

.bg-accent{background: #145A86;}
.footer {  color: #fff;  background-color: #bf77f6;  font-size: 16px;  padding-bottom: 0;position: relative; }
.footer .footer-top {  padding-top: 50px; }
.footer .social-links a { display: flex;  align-items: center;  justify-content: center;  width: 40px;  height: 40px;  border-radius: 4px;  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);  font-size: 16px;  color: #fff;  margin-right: 10px;  transition: 0.3s; }
.footer .social-links a:hover {     color: var(--accent-color) !important;
    background-color: #fff; }
.footer h4 {  font-size: 16px;  font-weight: bold;  position: relative;  padding-bottom: 12px;    color: #fff; }
.footer .footer-links {  margin-bottom: 30px;     color: #fff; }
.footer .footer-links ul {  list-style: none;  padding: 0;  margin: 0; }
.footer .footer-links ul i {  margin-right: 3px;  font-size: 12px;  line-height: 0;     color: #000; }
.footer .footer-links ul li {  padding: 10px 0;  display: flex; align-items: center;    transition: all 0.5s; }
.footer .footer-links ul li:first-child {padding-top: 0; }
.footer .footer-links ul a {  display: inline-block;  color: color-mix(in srgb, var(--default-color), transparent 20%);  line-height: 1;    color: #000; }
.footer .footer-links ul a:hover {  color: #fff; }
.footer .footer-about a {  color: #fff;  font-size: 24px;   font-weight: 600;   font-family: var(--heading-font); }
.footer .footer-contact p {  margin-bottom: 5px; }
.footer .copyright {  padding-top: 25px;  padding-bottom: 25px; border-top: 1px solid color-mix(in srgb, var(--background-color), transparent 90%); }
.footer .copyright p {  margin-bottom: 0; }
.footer .credits {  margin-top: 6px; font-size: 13px; }
.footer .footer-links ul li:hover {   padding-left: 10px;}
.footer .footer-links ul li:hover a {   color: var(--theme-color);}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {  position: fixed;  visibility: hidden;  opacity: 0;  right: 15px;  bottom: 15px;  z-index: 99999;  background-color: var(--accent-color);  width: 40px;  height: 40px;  border-radius: 4px;  transition: all 0.4s; }
.scroll-top i {  font-size: 24px;  color: var(--contrast-color);  line-height: 0; }
.scroll-top:hover {  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);  color: var(--contrast-color); }
.scroll-top.active {  visibility: visible;opacity: 1;}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {  color: var(--default-color);  background-color: var(--background-color);position: relative; }
.page-title .heading {  padding: 80px 0;  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); }
.page-title .heading h1 {  font-size: 38px;  font-weight: 700; }
.page-title nav {  background-color: color-mix(in srgb, var(--default-color), transparent 95%);  padding: 20px 0; }
.page-title nav ol {  display: flex;  flex-wrap: wrap;  list-style: none;  margin: 0;  font-size: 16px;  font-weight: 600; }
.page-title nav ol li+li {  padding-left: 10px; }
.page-title nav ol li+li::before {  content: "/";  display: inline-block;  padding-right: 10px;   color: color-mix(in srgb, var(--default-color), transparent 70%); }

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

@media (max-width: 1199px) {

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

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

.section-title h2 {  font-size: 13px;  letter-spacing: 1px;  font-weight: 700;  padding: 8px 20px;  margin: 0;  background: color-mix(in srgb, var(--accent-color), transparent 90%);  color: var(--accent-color); display: inline-block;  text-transform: uppercase;  border-radius: 50px;font-family: var(--default-font); }
.section-title p {  color: var(--heading-color);  margin: 10px 0 0 0;  font-size: 32px;  font-weight: 700;  font-family: var(--heading-font); }
.section-title p .description-title {  color: var(--accent-color); }

section.aboutnew.section.innerpage-content ol.innerpage-number li {
    color: var(--default-color);
    font-size: 15px!important;
}

section.aboutnew.section.innerpage-content ol.innerpage-list-new {
    align-items: center;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 150px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
    background: rgb(225,183,143);
background: radial-gradient(circle, rgba(225,183,143,1) 0%, rgba(238,198,162,1) 100%);    padding-bottom: 0;


}

.hero h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 77px;
    max-width: 523px;
}

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

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 80%);    margin-top: 50px;
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

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

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

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

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

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.form-header {
    position: absolute;
    top: 0;
    max-width: 400px;
    right: 0;
    background: rgb(30 90 134 / 50%);
    padding: 15px 15px;
}
.form-header textarea.form-control {
    min-height: inherit;
    height: auto;
}
.form-header .form-control {
    height: 46px;
    border-radius: 0;
    border: 2px solid var(--accent-color);
}
.hero .form-header button.btn-get-started {
    padding: 6px 23px;
    box-shadow: none !important;
    border: none;
    margin: 0 auto;
    border: 2px solid #2c5f84;
}
.form-header select.form-control
{
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");    background-repeat: no-repeat;
    background-size: 13px;
    background-position: right 10px center;
}


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

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

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {  background-color: transparent;  padding: 40px; }
.about .content h3 {    font-size: 45px;    font-weight: 800;    color: #26024b;    text-transform: none;     }
.about .content h2 {  font-size: 24px;  font-weight: 700; }
.about .content p {    margin: 15px 0 30px 0;    line-height: 24px;    font-size: 14px;    line-height: 30px;    font-style: italic; }
.about .content .btn-read-more {  color: var(--contrast-color);  background: var(--accent-color);  line-height: 0;  padding: 15px 40px;  border-radius: 4px;  transition: 0.5s;  box-shadow: 0px 5px 25px color-mix(in srgb, var(--accent-color), transparent 90%); }
.about .content .btn-read-more span {  font-family: var(--default-font);  font-weight: 600;  font-size: 16px;  letter-spacing: 1px; }
.about .content .btn-read-more i {  margin-left: 5px;  font-size: 18px;  transition: 0.3s; }
.about .content .btn-read-more:hover i {transform: translateX(5px); }
  span.style-color {    color: var(--e-global-color-primary);   background-color: transparent;    background-image: linear-gradient(180deg, #ECECEC00 58%, #FF6F0F 60%); }

.aboutus-img:before {  content: ''; display: block; position: absolute;transition: .3s; transition-timing-function: ease-in-out; z-index: 1; width: 95%; background-color: #FF6F0F; height: 95%; right: -30px; bottom: -30px; }
.aboutus-img { position: relative;  }
.aboutus-img:hover:before { transform: translate3d(-5px, -5px, 5px); }
.aboutus-img:hover img {transform: translate3d(5px, 5px, -5px); }
.aboutus-img img { position: relative; transition: .3s; transition-timing-function: ease-in-out; z-index: 2; height: auto; max-width: 100%; border: none; border-radius: 0; box-shadow: none; }


/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {  box-shadow: 0px 2px 20px color-mix(in srgb, var(--default-color), transparent 92%);  transition: 0.3s; }
.recent-posts .post-item .post-img img {  transition: 0.5s; }
.recent-posts .post-item .post-date {  position: absolute;  right: 0;  bottom: 0;  background-color: var(--accent-color);  color: var(--contrast-color);  text-transform: uppercase;  font-size: 13px;  padding: 6px 12px;  font-weight: 500; }
.recent-posts .post-item .post-content {  padding: 30px; }
.recent-posts .post-item .post-title {  color: var(--heading-color);  font-size: 20px;  font-weight: 700;  transition: 0.3s;  margin-bottom: 15px;}
.recent-posts .post-item .meta i {  font-size: 16px;  color: var(--accent-color); }
.recent-posts .post-item .meta span {  font-size: 15px;  color: color-mix(in srgb, var(--default-color), transparent 50%); }
.recent-posts .post-item hr {  color: color-mix(in srgb, var(--default-color), transparent 80%);  margin: 20px 0; }
.recent-posts .post-item .readmore {  display: flex;  align-items: center;  font-weight: 600;  line-height: 1;  transition: 0.3s;  color: color-mix(in srgb, var(--default-color), transparent 40%); }
.recent-posts .post-item .readmore i {  line-height: 0;  margin-left: 6px;  font-size: 16px; }
.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {  color: var(--accent-color); }
.recent-posts .post-item:hover .post-img img { transform: scale(1.1); }


@media(max-width:1200px){
    .job-list_cont ul{    gap: 1rem;}
    .job_listing_left_fullwidth {
    padding: 20px 15px;
    }
}

@media(max-width:991px){
    .form-header {
        position: relative;
        background: rgb(30 90 134 / 90%);        margin: 0 auto;
    }
    .hero-img > img.img-fluid.animated {
    display: none;
}
    .hero-con {
    justify-content: center !important;
    align-items: center;text-align: center;
}
  /*  .header .logo h1 {
    display: none;
} */
    header#header {
    border-bottom: 1px solid #cccc;
}
    .header .btn-getstarted {
    display: none;
}
}

@media(max-width:575px){
    .job_listing_left_fullwidth > .d-flex.align-items-center {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
}
    .job_listing_left_fullwidth {
    border-radius: 20px;
}
    .job-list_cont {
    padding: 10px 0;
}
    .footer .footer-links {
    margin-bottom: 10px;

    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {  box-shadow: 0px 0 20px color-mix(in srgb, var(--default-color), transparent 90%);  box-sizing: content-box;  padding: 30px;  margin: 40px 30px;  min-height: 320px;  display: flex;  flex-direction: column;  text-align: center; transition: 0.3s;}
.testimonials .testimonial-item .stars {  margin-bottom: 15px;}
.testimonials .testimonial-item .stars i {  color: #ffc107;  margin: 0 1px;}
.testimonials .testimonial-item .testimonial-img {  width: 90px;  border-radius: 50%;  border: 4px solid var(--background-color);  margin: 0 auto; }
.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 40%);  margin: 0; }
.testimonials .testimonial-item p {  font-style: italic;  margin: 0 auto 15px auto; }
.testimonials .swiper-wrapper {  height: auto; }
.testimonials .swiper-pagination {  margin-top: 20px;  position: relative; }
.testimonials .swiper-pagination .swiper-pagination-bullet {  width: 12px;  height: 12px;  background-color: color-mix(in srgb, var(--default-color), transparent 85%);  opacity: 1; }
.testimonials .swiper-pagination .swiper-pagination-bullet-active {  background-color: var(--accent-color); }
.testimonials .swiper-slide {  opacity: 0.3;}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {  opacity: 1;}
  .testimonials .swiper-pagination {  margin-top: 0;}
  .testimonials .testimonial-item {  margin: 40px 20px;}
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {  opacity: 1;    transform: scale(1.12);}
}
/******
====================================================================
		Video Section
====================================================================

***/

.video-section{
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 120px 0 140px;
	background-attachment:fixed;
}

.video-section:before{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgb(247,0,104);
	background: -moz-linear-gradient(to left, rgba(247,0,104,1) 0%, rgba(68,16,102,1) 100%);
	background: -webkit-linear-gradient(to left, rgba(247,0,104,1) 0%, rgba(68,16,102,1) 100%);
	background: linear-gradient(to left, rgba(247,0,104) 0%,rgba(68,16,102,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F70068', endColorstr='#441066',GradientType=1 );
	opacity: .70;
	content: "";
}

.video-section .content-box{
	position: relative;
	text-align: center;    padding: 0 100px;
}

.video-section .content-box .text{
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 26px;
	color: #ffbc00;
    color: var(--theme-color);
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.video-section .content-box h2{
	display: block;
	font-size: 28px;
    line-height: 1.5em;
	color: #ffffff;
	font-weight: 700;
}

.video-section .play-now{
    position: relative;
    display: inline-block;
    margin-top: 50px;
        color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 15px;
    padding: 15px 24px;
    margin: 50px 0 0 0;
    border-radius: 25px;
    transition: 0.3s;
    font-weight: 500;
}

.video-section .play-now .icon{
	height: 100px;
	width: 100px;
	line-height: 100px;
	background-color: #ffbc00;
	padding-left: 0;
	font-size: 50px;
}

.play-now {
	position: relative;
	display: block;
	z-index: 9;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.play-now .icon{
	position: relative;
	display: inline-block;
	height: 80px;
	width: 80px;
	text-align: center;
	line-height: 80px;
	background-color: #000000;
	color: #ffffff;
	z-index: 1;
	padding-left: 5px;
	font-size: 24px;
	display: block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 25px;
	-webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	-moz-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	-ms-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	-o-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
	box-shadow: 0  0px 10px 0 rgba(255, 255, 255, .3);
	-webkit-transform-origin:center; 
	-moz-transform-origin:center; 
	-ms-transform-origin:center; 
	-o-transform-origin:center; 
	transform-origin:center; 
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 52px;
	width: 163px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 25px;
	-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	-moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	-ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	-o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
	-webkit-animation: ripple 3s infinite;
	-moz-animation: ripple 3s infinite;
	-ms-animation: ripple 3s infinite;
	-o-animation: ripple 3s infinite;
	animation: ripple 3s infinite;
}

.play-now .ripple:before {
	-webkit-animation-delay: .9s;
	-moz-animation-delay: .9s;
	-ms-animation-delay: .9s;
	-o-animation-delay: .9s;
	animation-delay: .9s;
	content: "";
	position: absolute;
}

.play-now .ripple:after {
	-webkit-animation-delay: .6s;
	-moz-animation-delay: .6s;
	-ms-animation-delay: .6s;
	-o-animation-delay: .6s;
	animation-delay: .6s;
	content: "";
	position: absolute;
}

@-webkit-keyframes ripple {
	70% {box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);}
	100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

@keyframes ripple {
	70% {box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);}
	100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

/*********** media sec *********/

.section-title-new h2 {    margin-bottom: 25px;    font-weight: 800;    font-size: 2.5rem;  }
section.media .swiper-button-next:after, section.media .swiper-button-prev:after {    font-size: 24px;    color: #000; }
section.media .swiper-button-next {    top: 28px; }
section.media .swiper.mysepcpom {    padding-top: 75px;    margin-top: -82px;    font-size: 24px; }
section.media .swiper-button-prev {    top: 28px;    left: auto;right: 32px; }
section.media  .swiper-wrapper {   padding-top: 20px; }
.swiper-inner {overflow: hidden;border-radius: 10px;}
.swiper-inner img {  border-radius: 10px;
    transition: all 0.9s ease-in-out;
    -webkit-transition: all 0.9s ease-in-out;
    -moz-transition: all 0.9s ease-in-out;
    -ms-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;}
.swiper-inner:hover img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
}


/********* service sec ************/

.service-section .left-content .inner-box .text, .service-section .right-content .single-item .link a:hover, .video-new .content-box a:hover{background: var(--theme-color);}

.sec-title {    position: relative;    display: block;   padding-bottom: 30px;}
.sec-title h2 {    position: relative;    display: block;    font-size: 80px;    line-height: 88px;    font-weight: 500;}
.sec-title.light h2 {    color: #fff;}
.sec-title h2 span {    display: block;   opacity: 0.4;}
.sec-title:before {    position: absolute;    content: '';    background-image: url(../img/shape-10.png);    width: 261px;    height: 23px;    left: 0px;    bottom: 0px;   background-repeat: no-repeat;}


@-webkit-keyframes bounceSlide {
    0%,20%,50%,80%,100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounceSlide {
    0%,20%,50%,80%,100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce-slide {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: bounceSlide;
    animation-name: bounceSlide;
}




/** video-section **/

.video-new{position: relative; height: 790px; overflow: hidden; padding: 452px 100px 100px 100px; }
.video-new .content-box{position: relative;display: block;float: right; width: 575px; background: #e2b890; padding: 31px 37px 40px 45px; }
.video-new .content-box h2{ font-size: 46px; line-height: 55px;/* font-family: 'Playfire Display', serif; */ font-weight: 500; margin-bottom: 28px; }
.video-new .content-box > span{ position: relative; display: inline-block; font-size: 16px; line-height: 28px; font-weight: 500; color: var(--title-color);text-transform: uppercase;  border-bottom: solid;  border-width: 1px;border-color: var(--secondary-color); }
.video-new .content-box a{  position: absolute;  display: inline-block;  width: 61px;  height: 61px;  line-height: 63px;  background: #fff;  text-align: center;  border-radius: 50%;  font-size: 20px;  color: var(--title-color);  right: 37px;   bottom: 34px; }
.video-new .content-box a:hover{color: #fff; }
.parallax-bg {    position: absolute;    left: 0px;    top: -30%;    width: 100%;    height: calc(100% + 30%);    background-size: cover;    background-repeat: no-repeat;    background-position: center;}

.video-btn {
    position: relative;
    display: block;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.video-btn .ripple, .video-btn .ripple:before, .video-btn .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 61px;
    width: 61px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 0 0 rgb(237 109 51 / 60%);
    -moz-box-shadow: 0 0 0 0 rgb(237 109 51 / 60%);
    -ms-box-shadow: 0 0 0 0 rgb(237 109 51 / 60%);
    -o-box-shadow: 0 0 0 0 rgb(237 109 51 / 60%);
    box-shadow: 0 0 0 0 rgb(237 109 51 / 60%);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

/******* quotes *******/

section.media.media-quotes .section-title-new h3 {    font-size: 20px;    font-weight: bold;    text-transform: uppercase;   opacity: 0.9; }
p.section-title-con {    margin-top: -19px;    font-size: 21px;    font-style: italic;        opacity: 0.8; }
section.media.media-quotes .swiper.mySwiper1.mysepcpom {    margin-top: -52px;   padding-top: 54px; }





.testimonial_section {  background-size: cover;  background-repeat: no-repeat;  background-position: center center;     color: #D0D0D0;    background-color: #1A1A1A; background: #fff}
.testimonial_section.bg_gray {  background-color: #F7F7F7;}
.testimonial_section .overlay {  background-color: rgba(255, 82, 82, 0.9);}
.testimonial_tab .nav {  width: 467px;  height: 448px;  position: relative;  background-size: 100%;  background-repeat: no-repeat;  background-position: center center;}
.testimonial_tab .nav li {  position: absolute;}
.testimonial_tab .nav li:nth-child(1) {  top: -27px;  left: 94px;}
.testimonial_tab .nav li:nth-child(2) {  top: 104px;  right: 18px;}
.testimonial_tab .nav li:nth-child(7) {  top: 186px;  left: 107px;}
.testimonial_tab .nav li:nth-child(4) {  top: 192px;  right: 124px;}
.testimonial_tab .nav li:nth-child(5) {  top: 221px;  right: -12px;}
.testimonial_tab .nav li:nth-child(3) {  left: 24px;  bottom: 104px;}
.testimonial_tab .nav li:nth-child(6) {  right: 64px;  bottom: 82px;}
.testimonial_tab .nav button {  overflow: hidden;  border-radius: 100%;}
.testimonial_tab .nav button:hover, .testimonial_tab .nav button.active {  -webkit-box-shadow: 5px 5px 40px 0 #FF6F0F;          box-shadow:0px 0px 40px 0 #ff6f0f73;}
.testimonial_tab .tab-content {  padding-right: 40px; }
.testimonial_tab .nav button img {    max-width: 130px;   height: 130px; }
.testimonial_tab .nav li:nth-child(2) button  {   width: 68px;   height: 68px;}
.testimonial_tab .nav li:nth-child(3) button  {   width: 70px;   height: 70px;}
.testimonial_tab .nav li:nth-child(4) button  {   width: 90px;   height: 90px;}
.testimonial_tab .nav li:nth-child(5) button  {   width: 34px;   height: 34px;}
.testimonial_tab .nav li:nth-child(6) button  {   width: 60px;   height: 60px;}
.testimonial_tab .nav li:nth-child(7) button  {   width: 86px;   height: 86px;}

.testimonial_item_1.style_2 .quote_icon {  margin-bottom: 70px; }
.testimonial_item_1.style_2 p {    color: #d3d3d3;    font-size: 24px;    font-weight: 300;    line-height: 33px;    margin-bottom: 40px;    letter-spacing: 1px;     color: var(--accent-color);}
.testimonial_item_1.style_2 h3 {  color: #727685;  font-size: 18px;  font-weight: 400;  letter-spacing: -0.06em;     color: var(--accent-color);}
.testimonial_item_1.style_2 h3 span {  display: block;  color: #d0d0d0;  font-size: 26px;  font-weight: 700;letter-spacing: -0.04em;     color: var(--accent-color);}
.testimonial_item_1.style_2 .quote_icon path {   fill: var(--theme-color);}

@keyframes animatedBackground {
  from {
    background-position: 0 50%;    background-size: 95%;
  }
  to {
    background-position: 100% 0;    background-size: 100%;
  }
}
.testimonial_tab .nav{ animation: animatedBackground 10s linear infinite alternate;}



/*-------------------------
    11. Gallery Area CSS
--------------------------*/
.gallery__menu {
	margin-bottom: 30px;
}
.gallery__menu button {
	background: transparent none repeat scroll 0 0;
	border: 0 none;
	color: #333333;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	margin: 0 16px 16px;
	padding: 0;
	text-transform: uppercase;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}
.gallery__menu button.is-checked,
.gallery__menu button:hover {
	border-bottom: 1px solid #caa169;
	color: #caa169;
	outline: medium none;
}
.portfoloi {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	position: relative;
}
.portfoloi:before,
.portfoloi:after,
.portfoloi .portfoloi-content:before,
.portfoloi .portfoloi-content:after {
	content: "";
	width: 50%;
	height: 50%;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.portfoloi:after {
	top: 50%;
}
.portfoloi:hover:after {
	top: 0;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.portfoloi:hover:before {
	left: 50%;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.portfoloi .portfoloi-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	z-index: 1;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.portfoloi:hover .portfoloi-content {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.portfoloi .portfoloi-content:before,
.portfoloi .portfoloi-content:after {
	top: 0;
	left: 50%;
	z-index: -1;
}
.portfoloi:hover .portfoloi-content:before {
	top: 50%;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.portfoloi .portfoloi-content:after {
	top: 50%;
}
.portfoloi:hover .portfoloi-content:after {
	left: 0;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.portfoloi__inner {
	bottom: 0;
	left: 0;
	padding-bottom: 50px;
	padding-left: 30px;
	padding-right: 30px;
	position: absolute;
	text-align: left;
}
.portfoloi__inner h2 {
	margin-bottom: 7px;
}
.portfoloi__inner h2 a {
	color: #ffffff;
	font-size: 24px;
	font-weight: 400;
}
.portfoloi__inner p {
	color: #ffffff;
	font-size: 18px;
	font-weight: 400;
}
.portfoloi img {
	width: 100%;
	height: auto;
}






/**
 * Photo Section
 */
.g-photo-topside {
  margin-left: -15px;
  margin-right: -15px;
}
.g-photo-topside.slick-dotted {
  margin-bottom: 0;
}

.g-photo-topside-single {
  vertical-align: middle;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 10px;
}

.g-photo-image {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.g-photo-image img {
  width: 100%;
}

.g-photo-thumbs {
  margin: 0;
  overflow: hidden;
}
.g-photo-thumbs .slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
.g-photo-thumbs .slick-slide {
  cursor: pointer;
}
.g-photo-thumbs .slick-slide > [class*=col-] {
  vertical-align: middle;
}
.g-photo-thumbs .slick-slide.slick-active.slick-center {
  display: none;
}

.g-photo-content {
  text-align: right;
}
.g-photo-content h5 a {
  color: #eab454;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .g-photo-content {
    padding-top: 40px;
    text-align: left;
  }
  .g-photo-content span.vertical-bar {
    display: none;
  }
  .g-photo-content .readmore-button, .g-photo-content .readmore-button:visited, .g-photo-content .readmore-button:link {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .g-photo-content {
    padding-top: 40px;
    text-align: left;
  }
  .g-photo-content span.vertical-bar {
    display: none;
  }
  .g-photo-content .readmore-button, .g-photo-content .readmore-button:visited, .g-photo-content .readmore-button:link {
    margin-top: 0;
  }
}

.g-photo-bottomside {
  margin-top: 30px;
}

.g-photo-triggers .vertical-bar {
  margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .g-photo-triggers .vertical-bar {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .g-photo-triggers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g-photo-triggers .readmore-button, .g-photo-triggers .g-photo-arrows, .g-photo-triggers .g-photo-pagination {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    margin-top: 20px;
  }
  .g-photo-triggers .g-photo-arrows {
    text-align: center;
  }
  .g-photo-triggers .g-photo-arrows button:last-child {
    margin-right: 0;
  }
  .g-photo-triggers .g-photo-pagination {
    text-align: right;
  }
  .g-photo-triggers .vertical-bar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .g-photo-triggers .vertical-bar {
    display: none;
  }
}

.g-photo-arrows {
  margin-top: 20px;
}
.g-photo-arrows button {
  height: 40px;
  width: 40px;
  color: #333333;
  border: 1px solid #333333;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  margin-right: 10px;
}
.g-photo-arrows button:last-child {
  margin-left: 0;
}
.g-photo-arrows button i {
  line-height: 36px;
}
.g-photo-arrows button:hover {
  background: #eab454;
  color: #ffffff;
  border-color: #eab454;
}

.g-photo-pagination {
  margin-top: 15px;
}
.g-photo-pagination ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.g-photo-pagination ul li {
  display: inline-block;
  font-size: 24px;
  text-align: right;
  height: auto;
  width: auto;
  padding: 0;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 20px;
}
.g-photo-pagination ul li::after {
  content: "/";
  padding: 0 7px;
}
.g-photo-pagination ul li:last-child::after {
  display: none;
}
.g-photo-pagination ul li button {
  border: none;
  outline: none;
  padding: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  color: #333333;
}
.g-photo-pagination ul li button::before {
  content: "0";
}
.g-photo-pagination ul li.slick-active button, .g-photo-pagination ul li:hover button {
  color: #eab454;
}
.mySwiper2 .swiper-button-prev {       bottom: 60px;
    top: auto;
    border: 1px solid var(--accent-color);
    width: 38px;    color: var(--accent-color);    color: #fff;
    border-color: #fff;
    left: 0;}
.mySwiper2 {    padding-bottom: 120px;}
.mySwiper2 .swiper-button-next {
    bottom: 60px;
    top: auto;
    left: 55px;
    right: auto;
    border: 1px solid var(--accent-color);
    width: 38px;    color: var(--accent-color);    color: #fff;
    border-color: #fff;
}
.mySwiper2 .swiper-button-next:after, .mySwiper2 .swiper-button-prev:after {font-size: 24px;   }

.mySwiper2 .swiper-pagination {
    width: auto;
}
.mySwiper2 .swiper-pagination span.swiper-pagination-bullet {
    background: #28124b;
    font-size: 18px;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    padding: 0px;
    font-weight: bold;
    text-align: center;
    opacity: 1;
        background: #fff;
    color: var(--accent-color);
}
.mySwiper2 .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--theme-color);
}
.g-photo-triggers {
    margin-top: 128px;
    font-size: 21px;
}
.g-photo-bottomside {
    margin-top: -100px;
}
.mySwiper2 .swiper-button-next:hover, .mySwiper2 .swiper-button-prev:hover {
    background: var(--theme-color);
    color: #fff;
}
.mySwiper3 {
      height: 190px;
      box-sizing: border-box;
      padding: 10px 0;
    }

    .mySwiper3 .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4;
    }

    .mySwiper3 .swiper-slide-active {
      opacity: 1;
    }
  .mySwiper3  .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.g-photo-topside-single {
    background: #fff;background: var(--accent-color);
}
section#portfolio-area {
    background: var(--accent-color);
}
.g-photo-content.textblock, .g-photo-content.textblock a, .g-photo-content.textblock h2 {
    color: #fff;
}
.g-photo-triggers a.readmore-button {
    color: #fff;
}
.g-photo-content.textblock h5 a {
    color: var(--theme-color);
}
.g-photo-triggers a.readmore-button:hover {
    color: var(--theme-color);
}
.g-photo-content.textblock a {
    color: var(--theme-color);
}


 /* slider for image and clickable content */
   .hero .image-container {
      display: grid;
      width: 100%;
      max-width: 200%; /* Responsive width */
      height: 600px;
      grid-template-columns: 1fr 1fr 1fr; /* 3 columns */
      grid-template-rows: 1fr 1fr 1fr; /* 3 rows */
      position: relative;
      background-image: url('../img/round-grid-image.png');
      background-size: contain;
      background-position: center;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
       background-repeat: no-repeat;
    }

    /* Styling for the clickable links */
  .hero  .link {
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
      text-decoration: none; /* Remove underline */
      cursor: pointer;
      padding: 10px;
      transition: transform 0.3s ease; /* Hover effect */
    }

    /* Hover effect */
   .hero .link:hover {  transform: scale(1.1); /* Enlarge on hover */ color: #fff; text-shadow: 2px 2px 2px var(--bs-primary);  }

    /* Positioning links at different places on the grid */
   .hero .link1 { grid-column: 2 / 2;  grid-row: 1 / 1;}
  .hero  .link2 {    grid-column: 2 / 3; grid-row: 2 / 3; }
   .hero .link3 {     grid-column: 2 / 3;  grid-row: 3 / 4; }
   .hero .link4 {    grid-column: 1 / 2;   grid-row: 3 / 4; }
  .hero  .link5 {    grid-column: 3 / 4;   grid-row: 3 / 4;}
  .hero  .link6 {     grid-column: 2 / 3;   grid-row: 4 / 5; }
  .hero  .link7 {    grid-column: 2 / 3;    grid-row: 5 / 6; }

.hero .carousel-control-next, .hero .carousel-control-prev {
    width: 53px;
}

@media(min-width:992px){
    .hero-img-com {
    height: calc(100vh - 300px);
}
}
@media(max-width:1200px){
    section#hero {   min-height: 70vh;}
}
@media(max-width:991px){
   section.service-section {
    padding: 30px 0;
}
    .parallax-bg {
    position: relative;
    top: 0;
    height: 500px;
    width: 100%;
    background-position: left top;        transform: none !important;
}
    section.video-new {
    padding: 0;height: auto;
}
    .video-new .content-box {
    max-width: 100%;
    width: 100%;
    padding: 20px;
}
    .video-new .content-box h2 {
    font-size: 30px;
    line-height: inherit;
}
    .section-title-new h2 {
    font-size: 2rem;
}
    section.media.media-quotes {
    padding: 30px 0;
}
    p.section-title-con {
    font-size: 18px;
    line-height: inherit;
}
    
.video-section .content-box {
    padding: 0;
}
    section.video-section {
    padding: 50px 0;
}
    .video-section .content-box h2 {
    font-size: 20px;
    line-height: inherit;
}
    .g-photo-bottomside {
    margin-top: 0;
}
    .g-photo-triggers {
    display: none;
}
    .testimonial_tab .nav {
    margin-top: 100px;
}
    .testimonial_item_1.style_2 .quote_icon {
    margin-bottom: 30px;
}
    .testimonial_item_1.style_2 .quote_icon svg {
    width: 50px;
    }
    .testimonial_item_1.style_2 .quote_icon {
    margin-bottom: 0;
}
    .testimonial_item_1.style_2 p {
    font-size: 18px;
    line-height: inherit;margin-bottom: 20px;
}
    .testimonial_item_1.style_2 h3 span {
    font-size: 24px;
    margin-bottom: 10px;
}
    section.testimonial_section.section_space {
    padding: 30px 0;
}
    .testimonial_tab .nav {
    max-width: 100%;
}
}
@media(max-width:767px){
.hero .image-container {   height: 400px;}
.about .content {padding: 40px 0; }
.about .content h3 {font-size: 30px;}
.about .content p {font-size: 16px;line-height: inherit;}
.hero .btn-get-started {margin-top: 15px;}
section#about {       padding-top: 10px;}
.sec-title h2 { font-size: 40px; line-height: inherit; }
.service-section .left-content .text-box p { font-size: 16px; line-height: inherit; }
.service-section .left-content .inner-box .text { width: 250px; height: 250px; padding: 0; justify-content: center; }
.service-section .left-content .inner-box .text h3 { line-height: inherit; }
.service-section .left-content .inner-box .link a, .service-section .left-content .inner-box .link a:before { width: 70px; height: 70px; line-height: 70px; font-size: 30px; }
.service-section .left-content .inner-box .link {  right: 42px;}
 
    

    
}



/** new about us sec***/

section.aboutnew.section .content {    }
section.aboutnew.section p {
    margin-top: .75rem;
    margin-bottom: .75rem;
    color: rgba(0, 0, 0, 0.6);
    font-size: clamp(0.7rem, 0.34vw + 0.91rem, 0.9rem)!important;
    font-weight: 400;
    line-height: 1.5em;
}
section.aboutnew.section ul li,section.aboutnew.section ol li,section.aboutnew.section  a {
  
    color: rgba(0, 0, 0, 0.6);
    font-size: clamp(0.7rem, 0.34vw + 0.91rem, 0.9rem)!important;
    font-weight: 400;
  
}
section.aboutnew.section h4 {
    margin-top: .75rem;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.6);
    font-size: clamp(1rem, 0.34vw + 0.91rem, 1.25rem);
    font-weight: 400;
    line-height: 1.5em;
}
section.aboutnew.section h2 {
    font-size: clamp(1.5rem, 1vw + 1.25rem, 2.5rem);
    margin-bottom: 2.5rem;
    color: #000;
}
.aboutimg {
    
    margin-left: auto;
    margin-right: auto;
}

.aboutimg img.img-fluid {
    border-radius: 1rem;
}

@media(max-width:991px){
    section.aboutnew.section h2 {
    margin-bottom: 0;
}
    section.aboutnew.section h4 {
    margin-bottom: 0.51rem;
}
    
    .aboutimg {
    margin-top: 1rem;
}
}




header#header {        background: #fff;}

:root {
--color-black: 0, 0, 0;
--color-black-1: 35, 35, 37;
--color-black-2: 48, 49, 52;
--color-white: 255, 255, 255;
--color-white-1: 246, 246, 247;
--color-white-2: 218, 219, 223;
--color-primary: var(--color-white);
--color-contrast: var(--color-black);
--font-size-sm: clamp(0.875rem, 0.17vw + 0.76rem, 1rem);
}
.theme--dark {
--color-primary: var(--color-black);
--color-primary-1: var(--color-black-1);
--color-primary-2: var(--color-black-2);
--color-contrast: var(--color-white);
--color-contrast-1: var(--color-white-1);
--color-contrast-2: var(--color-white-2);
--tw-bg-opacity: 1;
--tw-text-opacity: 1;
}
.absolute { position: absolute; }
.p-10 { padding: 2.5rem; }
.relative { position: relative; }
.bg-primary-1 { --tw-bg-opacity: 1; background: rgba(35, 35, 37); }
.videoabosulte { inset: 0; position: absolute; top: 0; left: 0; z-index: 2; background: linear-gradient(in hsl, rgba(35, 35, 37, 0.1), rgba(35, 35, 37, 1)); }
.rounded-2xl { border-radius: 1rem; }
.baner-new video { left: 0; top: 0; -o-object-fit: cover; object-fit: cover; inset: 0; max-width: 100%; height: auto; display: block; vertical-align: middle;background-color: hsla(0, 0%, 100%, .1);    z-index: 1; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
button.cursor-pointer, a.cursor-pointer { background-color: hsla(0, 0%, 100%, .2); border: none;      z-index: 3; }
.aspect-video{    aspect-ratio: 16 / 9;}
.prose h2.h2-large { color: #fff; font-size: clamp(3rem, 3vw + 2rem, 3rem); font-weight: bold; margin-top: 1.2rem; margin-bottom: 1.2rem; line-height: 1.2em; letter-spacing: -.05em; }
.prose { color: #fff; }
.rounded-full { border-radius: 9999px; }
.w-2 { width: .5rem; }
.h-2 { height: .5rem; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.absolute.design-border-1 { background-color: #000; }
.absolute.design-border.bg-primary-1 { width: 5rem; height: 5rem; top: 0; transform: translate(-50%, -50%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.absolute.design-border-1 { background: #fe8f56; width: 5rem; height: 5rem; transform: translate(50%, -50%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); border-radius: 9999px; }
.absolute.design-border-2 { background: #f81e12; width: 5rem; height: 5rem; transform: translate(-50%, 50%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); border-radius: 9999px; }
.img-ov {
right: 0;
top: 0;
z-index: 99; bottom: 0; height: 100%;
--tw-translate-x: 0; --tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1.1; --tw-scale-y: 1.1; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.zeroimg {    float: left;    max-height: 106px;    margin-right: 14px;   margin-top: -18px; }
.zeroimg img{ display:block;margin:auto;text-align:center; }
.zeroimg span{ display:block;margin:auto;text-align:center; }

@media (min-width: 768px) {
    .md\:px-8 {padding-left: 2rem; padding-right: 2rem; }
    .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
    .duration-500 { transition-duration: .5s; }
    .backdrop-blur { --tw-backdrop-blur: blur(8px); }
    .backdrop-blur, .backdrop-blur-xl {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    }
    .tracking-wide { letter-spacing: .025em; }
    .rounded-full { border-radius: 9999px; }
    .md\:text-sm { font-size: var(--font-size-sm); }
    .baner-new{margin-top:95px}
    .bane-con {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-rotate: 0;
    width: 50%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    top: 50%;z-index: 99;
    }
}

@media(min-width:992px){
    .baner-new{margin-top:75px}
}

@media(max-width:767px){
    .sec-ban-2  { flex-wrap: wrap; flex-direction: column; }
    .bane-con { position: relative; }
    .baner-new{margin-top:75px}
    .aspect-square { aspect-ratio: 1 / 1; }
    .scale-110, .scale-95 {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.4;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }
    .vide-mob{margin-top:5rem !important;         position: relative;}
    .vide-mob img { position: relative; margin-top: -100px; }
    .mob-val { height: 1.25rem; grid-template-columns: repeat(5, minmax(0, 1fr)); width: 100%; background-color: rgba(35, 35, 37);        z-index: 99; }
    .col-span-2 { grid-column: span 2 / span 2; }
    .rounded-r-full.bg-black.mob-val-1 { border-top-right-radius: 9999px; border-bottom-right-radius: 9999px; }
    .rounded-l-full.bg-black.mob-val-1.col-span-2 {border-top-left-radius: 9999px; border-bottom-left-radius: 9999px; }
    .img-hover-mob { border-bottom-right-radius: 1rem; border-bottom-left-radius: 1rem; top: 50%; background: linear-gradient(in hsl, rgba(35, 35, 37, 0.1), rgba(35, 35, 37, 1)); bottom: 0; left: 0; width: 100%; }
    .videoabosulte { background: linear-gradient(in hsl, rgba(35, 35, 37, 1), rgba(35, 35, 37, 0.1)); }
    button.cursor-pointer, a.cursor-pointer { padding: .75rem 1.25rem; }
    .vide-mob img { position: relative; margin-top: -100px; height: auto; max-height: 100%; margin-left: -3rem; }

}
.container-sam{
  border-bottom:1px solid #dfdfdf;
}
.sambackg{
  background:#bf77f6;
}

.content span{
    color:#ff111f;
}
  .layouss ul {
    min-height: 167px!important;
  } 
  .layouss h5 {
  padding:5px;
  } 

.banner-hover-logo img {   max-width: 300px; }
.banner-hover-logo {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 50%;
    right: 0;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

a.btn.btn-download-ppt {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 80%);
    margin-top: 50px;
    max-width: 250px;
}
a.btn.btn-download-file {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 0px;
    transition: 0.5s;
    box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 80%);
    margin-top: 10px;
   
}
.bdrleft{
  border-left:  20px solid ;
   border-bottom:  20px solid ;
  border-color: #fe8f56;
}
.bdrright{
  border-right:  20px solid ;
   border-bottom:  20px solid ;
  border-color: #fe8f56;
}

.bdrleft.bdrleft-red {
    border-color: #f81e12;
}

.orange{
    color:#fe8f56!important;
    
 font-weight:bold;
}
.red{
 color:#f81e12!important;

 font-weight:bold;
}
.layouss h5{
   color:#fe8f56;  
   font-weight:bold;
}
.orangesam{
    color:#fe8f56;
     font-size: clamp(1rem, 0.34vw + 0.91rem, 1.25rem)!important;
 font-weight:bold;
}
.redsam{
 color:#f81e12;
  font-size: clamp(1rem, 0.34vw + 0.91rem, 1.25rem)!important;
 font-weight:bold;
}
.formatsam ol{
    padding-left:0;
}
.formatsam ol li{
    margin-left:40px;
    margin-bottom:8px;
     font-size: clamp(1rem, 0.34vw + 0.91rem, 0.9rem)!important;
}
ul li,ol li,.content p{
    font-size: clamp(1rem, 0.34vw + 0.91rem, 0.9rem)!important; 
}
span.zeroimg > span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #000;
}


span.zeroimg {
    position: relative;
}

a.logo.logo1 {
    margin-left: auto !important;
    margin-right: 0 !important;
}
.layouss{
  border: 8px solid #FF6F0F;
    border-radius: 2px;
}


.zeroimg> img, .ppt> img {
    display: none;
}





span.zeroimg.zeroimg-level {
    position: relative;
    top: auto;
    transform: none;
    background: #feca36;
    color: #ef5d50;
    font-size: 3rem;
    font-weight: bold;
    border: 1px solid #b6cac6;
    border-radius: 50%;
    height: 105px;
    width: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 1px 3px 3px rgba(255, 255, 2);
    flex-direction:column;
}
span.zeroimg.zeroimg-level > span.zeroimg-block {
    color: #ef5d50;
    font-size: 3rem;
}
span.zeroimg.zeroimg-level > span.orange, span.zeroimg.zeroimg-level > span.zeroimg-block {
    position: relative;
    top: auto;
    transform:none;
        line-height: 32px;
}
.redimage{
        border: 5px solid #f81e12!important;
}
.orangeimage{
        border: 5px solid #fe8f56!important;
}
a.btn.btn-download-ppt:hover{color: var(--contrast-color);
    background: 
color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px 
color-mix(in srgb, var(-}

  a.btn.btn-download-file:hover{color: var(--contrast-color);
    background: 
color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px 
color-mix(in srgb, var(-}



@media(max-width:992px){
    .banner-hover-logo{display: none !important;}

}



.page-title-new h3 { color: #000; font-weight: 500; font-size: clamp(1.75rem, 1.5vw + 1.5rem, 3.5rem);    margin-top: 1.2rem;    margin-bottom: 1.2rem;    line-height: 1em;   letter-spacing: -.05em; } 

.page-title-new {    max-width: 700px;    margin: 0 auto;   text-align: center;}
section.aboutnew.section p ol li{
  font-size:0.9rem!important;
}
.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid #dededf;
    height: 100%;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid #dededf;
    background-color: #eceff1;
    color: #000000;
    padding: 5px;
}

.table_component td {
    border: 1px solid #dededf;
    background-color: #ffffff;
    color: #000000;
    padding: 5px;
}
section.aboutnew.section .hun-new-content p {font-size: clamp(1rem, 0.34vw + 0.91rem, 1.25rem)!important; color: #000!important; opacity: 0.6!important; font-weight: 400!important; line-height: 1.5em!important; margin-bottom: .75rem!important;}