/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --nav-font: "NeueHaasDisplayRoman",  sans-serif;
}


:root { 
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #000000;
  --accent-color: #6431dc;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}


:root {
  --nav-color: #000000;
  --nav-hover-color: #6431dc;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #000000;
  --nav-dropdown-hover-color: #6431dc;
}

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

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

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


@font-face {
    font-family: 'NeueHaasDisplayRoman';
    src: url('../fonts/NeueHaasDisplayRoman.eot');
    src: url('../fonts/NeueHaasDisplayRoman.eot') format('embedded-opentype'),
         url('../fonts/NeueHaasDisplayRoman.woff2') format('woff2'),
         url('../fonts/NeueHaasDisplayRoman.woff') format('woff'),
         url('../fonts/NeueHaasDisplayRoman.ttf') format('truetype'),
         url('../fonts/NeueHaasDisplayRoman.svg#NeueHaasDisplayRoman') format('svg');
}

@font-face {
    font-family: 'MontagaRegular';
    src: url('../fonts/MontagaRegular.eot');
    src: url('../fonts/MontagaRegular.eot') format('embedded-opentype'),
         url('../fonts/MontagaRegular.woff2') format('woff2'),
         url('../fonts/MontagaRegular.woff') format('woff'),
         url('../fonts/MontagaRegular.ttf') format('truetype'),
         url('../fonts/MontagaRegular.svg#MontagaRegular') format('svg');
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Montserrat", sans-serif;
}

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: "Montserrat", sans-serif;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  background: transparent;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  width: 100%;
  top: 0;
}

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

.header .logo img {
  max-height: auto;
  margin-right: 8px;
  width: 165px;
}

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

.contacLinks {display:none;}

.contacLinks .tel .icon {
  font-size: 16px;    
}

.contacLinks p i {
  font-size: 18px;    
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-weight:600;
    display: block;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
	text-align:center;
	text-transform:uppercase;
	/* font-family: 'NeueHaasDisplayRoman'; */
	font-family: "Montserrat", sans-serif;
  }

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

  /* .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  } */

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: -20px;
    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: 6px 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: #9747ff;
	background:#f2e7ff;
	border-radius:6px;
  }

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

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

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

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

  .navmenu {
    padding: 0;
    z-index: 9997;
	padding-top: 80px;
	position: fixed;
	top: 0px;
	width: 100%;
	left: 0;
	z-index: 999;
	height: 100vh;
	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: relative;
    inset: 60px 20px 20px 20px;
    padding: 0px 15px;
    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;
	top: 0px;
    left: 0;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    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);
	display: none;
  }

  .navmenu .dropdown ul {
    position: static;
    display: block;
    z-index: 99;
    padding: 0px 0;
    margin: 0px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }
  
  .navmenu .dropdown ul a{
	  font-size: 16px !important;
	  padding: 0px 0px 12px;
	  color: #606060;
  }

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

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color:transparent;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #000;
    position: absolute;
    font-size: 28px;
    top: 15px;
    right: 0px;
    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;
	
	background-color: #ffffff;
	height: 100vh;
	padding-top: 80px;
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
  }
  
  .header .btn-getstarted{
	  display: inline-block;
        padding: 0px 0px;
        background: transparent;
        color: #000;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  
  
  .contacLinks {
        margin-top: 25px;
        display: block;
        padding: 10px 20px 15px;
    }
	.contactLin .link p {
        position: relative;
        margin-bottom:5px;
    }
	
	.contactLin .link p span {
        padding-left: 8px;
    }
	.contactLin .link p a {
        display: inline-block;
        vertical-align: middle;
        color: #606060;
        font-size: 16px !important;
		font-weight: 500;
		padding: 5px 0px;
    }
	
	.social_links {
        display: inline-block;
    }
	.social_links ul{display: block;padding: 0;}
	.social_links ul li {
        display: inline-block;
    }
	.social_links ul li:not(:last-child) {
        margin-right: 4px;
    }
	.social_links, .Whts {
        display: inline-block;
        vertical-align: middle;
        margin-top: 0px;
    }
	.Whts {
        display: inline-block;
        margin-right: 6px;
    }
	.Whts a {
        padding: 6px 10px;
        border: 1px solid #666;
        display: inline-block;
        color: #666;
        font-size: 14px;
        transition: 0.5s ease;
        border-radius: 3px;
    }
	.Whts a img, .Whts a span {
        display: inline-block;
        vertical-align: middle;
    }
  
  
}




/*--------------Tooltip----------------*/

.tooltips {
  position: relative;
  display: inline-block !important;
  font-weight: 700;
   /* color: #000000 !important;
   font-size:14px !important;
   font-weight: 700 !important;
   font-style: normal !important; */
    border-bottom: 1px dashed #6431dc;
}

.tooltips span {
 font-size:12px !important;
  position: absolute;
  color: #000000 !important;
  background: #E0D7F7;
  padding:5px 10px;
  width:240px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  line-height: 18px;
  border-radius:8px;
  filter: alpha(opacity=0);
  transition: transform .3s, opacity .6s, margin-left .2s, margin-top .2s;
}

.tooltips > span img{max-width:140px;}

.tooltips[tooltip-position="top"] span{
  margin-left:10px;
  /* -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg); */
}

.tooltips span:after {
  content: '';
  position: absolute;
  width: 0; height: 0;
}

.tooltips[tooltip-position="top"] span:after{
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-top: 8px solid #E0D7F7;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.tooltips:hover span {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  filter: alpha(opacity=100);
}

.tooltips[tooltip-position="top"]:hover span{
  bottom: 30px;
  left: 50%;
  margin-left: -120px;
  font-style: normal !important;
}

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

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer h4 img{width:190px;}

.footer .address p {
  margin-bottom: 0px;
  font-size: 16px;
}

.footer .social-links a {
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #606060;
  margin-right: 12px;
  transition: 0.3s;
}

.footer .social-links a:last-child {margin-right:0px;}

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

.footer .border-top{
  padding-top:25px;
  border-top: 1px solid #ccc;
}

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

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

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


.policy_area{
	
}

.policy_area h2{
	font-weight: 600;
    color: #4f81bd;
    font-size: 27px;
    width: 100%;
}

.policy_area h3{
	font-weight: 500 !important;
    color: #4f81bd !important;
    font-size: 24px !important;
    width: 100% !important;
	text-transform: none !important;
}

.policy_area h3:after{
	height: 0px !important;
    position: relative !important;
}

.policy_area h4{
	font-weight: 500;
    color: #4f81bd;
    font-size: 22px;
    width: 100%;
	margin-bottom: 20px;
}

.policy_area h5{
	font-weight: 600;
    color: #000000;
    font-size:20px;
    width: 100%;
	padding-bottom: 5px;
	margin: 0px;
}

.policy_area h6{
	font-weight: 500;
    color: #4f81bd;
    font-size:18px;
    width: 100%;
}

.policy_area p{
	font-size: 16px;
    color: #000000;
    font-weight:400;
	margin: 0px;
    padding-bottom: 20px;
}


.policy_area ul{}
.policy_area ul li{
	font-size: 16px;
    color: #000000;
    font-weight:400;
	padding-bottom: 16px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  background: #ffffff url(../img/mLogo.gif) no-repeat center center;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  background-size:100px;
}

#preloader img{
	width:100px;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  /* border: 4px solid var(--accent-color); */
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
} 

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color:transparent;
  padding: 110px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

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

.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: transparent;
  padding: 60px 0;
  scroll-margin-top: 92px;
  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;
    z-index: 9;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 48px;
  font-weight: 500;
  font-family: var(--heading-font);
}

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

.topbanner-bg {
  background: url(../img/hero-bg.png) no-repeat center top;
  background-size: 100%;
}  
.ProjetcPhiX-bg {
  background: url(../img/backgrounds-06.jpeg) no-repeat center top;
  background-size: 100%;
}

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

.hero h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
  padding-bottom: 54px;
  max-width: 750px;
  width:100%;
  margin:0 auto;
}

.hero h1 span{
	color:#6432dc;
}

.hero h2{
  margin: 0;
  font-size: 45px;
  font-weight: 600;
  padding-bottom: 54px;
  max-width: 750px;
  width:100%;
  margin:0 auto;
}

.hero h2 span{
	color:#6432dc;
}

/* .hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
} */


.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 48px);
  }
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end; */
}

.hero .topspace{padding-top: 0px;}

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


.hero .slide_second{
	padding: 0px 0px;
}

.hero .slide_second:after{
	content:"";
	background: url(../img/banner-slide2a.png) no-repeat top right;
    background-size: 60%;
    position: absolute;
    right: 0px;
    width: 224px;
    height: 186px;
    top: 0px;
}

.hero .slide_second:before{
	content:"";
	background: url(../img/banner-slide2b.png) no-repeat bottom left;
    background-size: 60%;
    position: absolute;
    left: -115px;
    width: 363px;
    height: 453px;
    bottom: -85px;
}

.hero .slide_second h2{
	/* margin: 0;
  font-size: 45px;
  font-weight:600;
  padding-bottom: 0px;
  max-width: 750px;
  width:100%;
  margin:0 auto; */
}

.hero .slide_second h2 span{
	/* color:#6432dc;
	display:block; */
}

.hero .slide_third{
	position:relative;
	max-width: 925px;
	margin: 0 auto;
	width:100%;
}
.hero .slide_third:before{
	content: "";
    background: url(../img/Infographic.png) no-repeat top center;
    background-size: 100%;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 341px;
    top: 0px;
}
.hero .slide_third h2{
	margin: 0;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 20px;
}
.hero .slide_third h2.blue{color: #6432dc;}
.hero .slide_third h2.green{color: #bbc640;}
.hero .slide_third .icons{
	display: inline-block;
    border: 18px solid #efefef;
    border-radius: 100%;
    height: 220px;
    width: 220px;
	padding: 35px 0px;
}

.hero .slide_third .icons img{
	width:100px;
}

.hero .slide_third p {
  color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 60px 24px 0px;
	margin-bottom: 0;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 600;
  font-size: 18px;
  /* letter-spacing: 1px; */
  display: inline-block;
  padding: 10px 50px 12px 50px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

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


.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
  display: none;
}

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

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: #E0D7F7;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: #6432DC;
}



.hero .swiper-slide {
      text-align: center;
      font-size: 18px;
      justify-content: center;
      align-items: center;
    }

.hero .swiper-slide img {
     /*  display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; */
    }
	
	
.swiper-pagination1 {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.hero .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      color: #E0D7F7;
      opacity: 1;
      background: #E0D7F7;
    }

.hero .swiper-pagination-bullet-active {
      color: #fff;
      background: #6432DC;
    }

.hero .swiper-horizontal>.swiper-pagination-bullets, .hero .swiper-pagination-bullets.swiper-pagination-horizontal, .hero .swiper-pagination-custom, .hero .swiper-pagination-fraction{
	bottom: -90px;
}


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

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

@media (max-width: 640px) {
  .hero h1 {
    font-size: 24px;
    line-height: 30px;
	padding-bottom: 30px;
  }
  
  .hero h2 {
    font-size: 24px;
    line-height: 30px;
	padding-bottom: 30px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
	.hero .btn-get-started{
		max-width: 290px;
		width:100%;
	}
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 16px;
	
  }
  .hero .topspace {
		padding-top: 30px;
	}
}

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

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


/*--------------------------------------------------------------
# Bottom slide
--------------------------------------------------------------*/
.bottom_slide {display:block;background: #e9e3f9;}
.bottom_slide .slide_third{
	position:relative;
	max-width: 1480px;
	margin: 0 auto;
	width:100%;
	text-align: center;
}
.bottom_slide .slide_third:before{
	content: "";
    /* background: url(../img/Infographic.png) no-repeat top center; */
    background-size: 100%;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 341px;
    top: 0px;
}
.bottom_slide .card_box{
	background-color: var(--surface-color);
    padding: 30px 25px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    height: 100%;
}
.bottom_slide .slide_third h2{
	margin: 0;
  font-size: 30px;
  font-weight: 700;
  padding-top: 20px;
}
.bottom_slide .slide_third h2.blue{color: #6432dc;}
.bottom_slide .slide_third h2.green{color: #bbc640;}
.bottom_slide .slide_third .icons{
	display: inline-block;
    border: 0px solid #efefef;
    border-radius: 100%;
    height: 220px;
    width: 220px;
	padding: 35px 0px;
	background: #5437b7;
}
.bottom_slide .slide_third .icons i {
    width: 205px;
    height: 205px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: #ffffff;
    padding: 1px 3px 8px 3px;
    position: relative;
	top: -35px;
}

.uppside{display:none;}

.bottom_slide .card_box:hover .icons i {
    background-color: #ffffff;
    color: var(--contrast-color);
    padding: 8px 3px 1px 3px;
	top: -20px;
}

.bottom_slide .slide_third .icons img{
	width:100px;
}

.bottom_slide .slide_third p {
  color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 30px 10px 30px;
	margin-bottom: 0;
}




/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about{
	background: url(../img/about-us-bg.png) no-repeat center left;
    background-size:120px;
}
.about .bor-line{
	border-right:0px solid #ccc;
}
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.lft-ttl{
	font-size: 60px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 60px;
	padding-left:55px;
	position:relative;
}

.lft-ttl:after{
	content:"";
	position:absolute;
	right:0px;
	top:0px;
	height:140px;
	border-right:1px solid #b2b2b2;
}

.lft-ttl span{display:block;
	color:#6432dc;
}

.about .book-a-table {
  text-align: center;
  border: 4px solid color-mix(in srgb, var(--default-color), transparent 30%);
  padding: 22px;
}

.about .lft-ttl h3 {
  font-family: var(--default-font);
  margin: 0 0 0 0;
  font-size: 24px;
}

.about .contents p {
  color: #000000;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
}

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

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

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 16px;
  margin-bottom: 30px;
  border-radius: 0px;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.why-us .icon-box a{
	border:2px solid #6432dc;
    padding: 10px 40px;
    border-radius: 50px;
    display: inline-block;
	font-size: 14px;
	font-weight: 600;
}

.why-us .icon-box a:hover{
	background:#6432dc;
	color:#fff;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px 0;
  font-family: var(--default-font);
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.glancebox{
	background: #e9e3f9;
    padding: 125px 0px 50px;
    position: relative;
    top: -80px;	
}
.glancebox h2{
	font-size: 48px;
    line-height: 60px;
    text-align: left;
    font-weight: 700;
    color: #6233d7;
    padding-left: 18px;
	margin-bottom: 0px;
	background: linear-gradient(to right, #6432dc 0%, #3f1f8a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.glancebox h2 span{display:block;}
.glancebox p{
	font-size: 22px;
    line-height: 28px;
    text-align: right;
    border-right: 1px solid #a39eae;
    padding-right:50px;
    font-weight: 500;
	margin-bottom: 0px;
}
.glancebox p span{color: #6233d7;}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 0px 0;
}

.stats img {
  position: relative;
  inset: 0;
  display: block;
  width: 100%;
}

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

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

.stats .stats-item {
  padding: 0px;
  width: 100%;
  margin-bottom: 70px;
}

.stats .stats-item .mono-logo img{
	width:130px;
}

.stats .stats-item span {
  font-size: 50px;
  color: #6331d9;
  font-weight: 700;
  padding-left: 30px;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-size:40px;
  font-weight:700;
  color: #000000;
}

.slide-sample{
	display:none;
}

.agency{
	padding:60px 0px 60px;
}
.agency h3{
    line-height: 30px;
    font-weight: 600;
    color: #ffffff;
    padding: 18px;
    margin-bottom: 70px;
	background:#6432dc;
	border-radius:15px;
	text-align:center;
	font-size: 28px;
}
.agency .country_icons{
    margin: 0 auto;
    width: 100%;
}
.agency .country_icons ul{padding:0px; margin:0px;}
.agency .country_icons ul li{
	list-style: none;
    width: 32.33%;
    display: inline-block;
	font-size:20px;
	Color:#000;
	font-weight:600;
	margin-bottom:35px;
	padding-left: 60px;
}
.agency .country_icons ul li img{
	width:110px; 
	padding-right:30px;
}

.agency .country_icons  .txt{
	list-style: none;
    display: block;
	font-size:20px;
	Color:#000;
	font-weight:600;
	/* margin-bottom:35px;
	padding-left: 60px; */
	padding-bottom:50px;
}
.agency .country_icons img{
	width:110px; 
	padding-right:30px;
}


/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  background-color: var(--background-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 15px;
  padding: 10px 5px;
  transition: 0.3s;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--default-font);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
}

.menu .tab-content .menu-item {
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  font-family: var(--default-font);
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
	background-color:#6432dc;
	padding: 80px 0 80px;
	position:relative;
	overflow:hidden;
	background-image: url(../img/Group-152.png), url(../img/testimoial-pt-bottom.png);
	background-position: left top, bottom right;
	background-repeat:no-repeat;
	background-size: 318px 386px, 362px 628px;
}

.testimonials:before {
	/* content:"";
	position:absolute;
	left: -280px;
    top: -180px;
    border: 1px solid #7054f6;
    height: 550px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 550px; */
}

.testimonials:after {
	/* content:"";
	position:absolute;
	right: -240px;
    bottom: -150px;
    border: 1px solid #7054f6;
    height: 550px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 550px; */
}

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

.testimonials h2 {
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: 600;
    padding: 15px 25px;
    margin: 0;
    color: #6a3add;
    display: inline-block;
    text-transform:none;
	background: #e9e3f9;
    border-radius: 50px;
}
.testimonials h4 {
    color: #fff;
    margin: 15px 0 22px 0;
    font-size:30px;
    font-weight: 800;
	/* font-family: "Nunito", sans-serif; */
	font-family: "Montserrat", sans-serif;
}

.testimonials .testimonial-item .testimonial-content {
  /* border-left: 3px solid var(--accent-color);
  padding-left: 30px; */
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight:400;
  margin: 10px 0 5px 0;
  color:#fff;
  /* font-family: 'MontagaRegular'; */
  font-family: "Montserrat", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 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: 36px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: block;
  position: relative;
  color: #fff;
}

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

.testimonials .testimonial-item p {
  color:#fff;
  font-size: 18px;
  /* line-height: 28px; */
  /* font-family: 'MontagaRegular'; */
  margin-bottom: 36px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000000;
}

.testimonials .swiper-button-next, .testimonials .swiper-button-prev{
	background: #fff;
    width: 45px;
    height: 45px;
    font-size: 12px;
    border-radius: 50px;
	top: 70px;
}

.testimonials .swiper-button-next{
	right: 7%;
}
.testimonials .swiper-button-prev{
	left: 7%;
}

.testimonials .swiper-button-next, .testimonials .swiper-button-prev {
	top: 40px;
}

.testimonials .swiper-button-next:after, .testimonials .swiper-button-prev:after{
	font-size: 16px;
	color:#6432dc;
	font-weight:600;
}


/*---------------------
# events Section
-----------------------*/
.events{padding-top:0px;}

.events h1{
	font-size:50px;
	font-weight: 800;
	color: #000000;
	text-align: left;
	margin-bottom: 30px;
	position:relative;
	text-transform: uppercase;
}

.events h1:after{
	content: "";
    position: absolute;
    right: -80px;
    height: 1px;
    background: #c0c0c0;
    width: 85%;
    top: 50%;
    overflow: hidden;
}

.events h3{
	font-size:50px;
	font-weight: 800;
	color: #000000;
	text-align: left;
	margin-bottom: 30px;
	position:relative;
	text-transform: uppercase;
}

.events h3:after{
	content: "";
    position: absolute;
    right: -80px;
    height: 1px;
    background: #c0c0c0;
    width: 85%;
    top: 50%;
    overflow: hidden;
}

.events .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding:18px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
  border-radius: 30px;
}

.events .card img {
  padding: 20px 20px;
  transition: 0.5s;
  transform: scale(1.05);
  width: 100%;
}

.events .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.events .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.2);
}

.events .card:hover img {
  transform: scale(1.08);
}
.events .rmbtn{text-align:right;}
.events .rmbtn .read-more {
    display: inline-block;
    padding: 8px 40px 10px 40px;
    border-radius: 50px;
    color: var(--accent-color);
    transition: none;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--accent-color);
}

.events .rmbtn .read-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}


/*---------------------
# press release Section
-----------------------*/
.press{padding-top:0px;}

.press h1{
	font-size:50px;
	font-weight:800;
	color: #000000;
	text-align: left;
	margin-bottom:30px;
	position:relative;
	text-transform: uppercase;
}

.press h1:after{
	content: "";
    position: absolute;
    right: -80px;
    height: 1px;
    background: #bcbcbc;
    width: 68%;
    top: 50%;
    overflow: hidden;
}

.press h3{
	font-size:50px;
	font-weight:800;
	color: #000000;
	text-align: left;
	margin-bottom:30px;
	position:relative;
	text-transform: uppercase;
}

.press h3:after{
	content: "";
    position: absolute;
    right: -80px;
    height: 1px;
    background: #bcbcbc;
    width: 68%;
    top: 50%;
    overflow: hidden;
}

.press .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding:30px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
  border-radius: 30px;
}

.press .card img {
  padding: 30px 30px;
  transition: 0.5s;
  transform: scale(1.1);
  border-radius: 50px;
  overflow: hidden;
}

.press .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.press .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.2);
}

.press .card:hover img {
  transform: scale(1.08);
}
.press .rmbtn{text-align:right; margin-top:30px;}
.press .rmbtn .read-more {
    display: inline-block;
    padding: 8px 40px 10px 40px;
    border-radius: 50px;
    color: var(--accent-color);
    transition: none;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--accent-color);
}

.press .rmbtn .read-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# HUMINT Section
--------------------------------------------------------------*/
.content_bx{
	background-image: linear-gradient(to right, #6130D6, #371C7A);
}

.content_bx h1{
	font-size: 50px;
    font-weight: 700;
    color: #ffffff;
	text-align: left;
	padding-bottom: 15px;
	position:relative;
	margin-bottom: 50px;
}

.content_bx h1:after{
	content: "";
    position: absolute;
    left: 0px;
    height: 5px;
    background: #ffffff;
    width: 142px;
    bottom:0;
    overflow: hidden;
}

.humint_area{
    padding: 10px 0px;
}

.humint_area .lft_head{
	padding: 40px 0px 10px;
}

.humint_area .lft_head h2{
	color: #ffffff;
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 30px;
}
.humint_area .lft_head p{
	color: #ffffff;
    text-align: left;
    font-size: 19px;
    font-weight: 500;
    padding-bottom: 20px;
}
.humint_area .rgt_txt{
	padding: 0px 0px;
}
.humint_area .rgt_txt p{
	color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    padding-bottom: 20px;
}




.empowering_box{
	padding: 80px 0px;
    text-align: center;
    border-radius: 0px;
    margin-bottom: 50px;
    background-image: linear-gradient(to right, #684FFF, #B871FE);
    transition: 0.3s;
}

.empowering_box h1{
	font-size: 34px;
    font-weight: 700;
    color: #ffffff;
	text-align: left;
	padding-right: 40px;
	position:relative;
}
.empowering_box h1 span{
	font-size: 40px;
}
.empowering_box h1:after {
    content: "";
    position: absolute;
    right: 8px;
    top: 0px;
    height: 175px;
    border-right: 1px solid #ffffff;
}

.empowering_box h4{
	font-size: 34px;
    font-weight: 700;
    color: #ffffff;
	text-align: left;
	padding-right: 40px;
	position:relative;
}
.empowering_box h4 span{
	font-size: 40px;
}
.empowering_box h4:after {
    content: "";
    position: absolute;
    right: 8px;
    top: 0px;
    height: 175px;
    border-right: 1px solid #ffffff;
}

.empowering_box p{
	color: #ffffff;
    text-align: left;
    font-size: 23px;
    font-weight: 400;
    padding-bottom: 0px;
	margin: 0;
}

.humint_area .commercial{
	
}

.humint_area .commercial h2{
	font-size: 40px;
    font-weight: 700;
    color: #000000;
	text-align: left;
	margin-bottom: 30px;
	position:relative;
	padding: 40px 80px 0px 40px;
}

.humint_area .commercial h2:before{
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	background: url(../img/cut-line.svg) no-repeat center top;
	width:127px;
	height:150px;
}




.humint_area .commercial .card_box{
	background-color: #ffffff;
   /*  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1); */
    height: 100%;
    padding: 45px 18px;
    text-align: left;
    transition: 0.3s;
    border-radius: 20px;
	border: 20px solid rgb(231 225 248 / 21%);
    overflow: hidden;
    min-height: 250px;
}

.humint_area .commercial .card_box.bg-lights{background-color: #684FFF;}
.humint_area .commercial .card_box.bg-darks{background-color: #5C41FE;}
.humint_area .commercial .card_box.bg-purple{background-color: #824EFD;}

.humint_area .commercial .card_box .icon {
    font-size: 36px;
    padding: 0px;
    border-radius: 100%;
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 0;
    transition: 0.3s;
}

.humint_area .commercial .card_box .icon img {
    width: 75px;
}

.humint_area .commercial .card_box p {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 0rem;
	text-align: left;
}
.humint_area .commercial .card_box h4{
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 5px;
    color: #6432DC;
	text-align:left;
}

.our_approach{padding:100px 0px;}

.our_approach h2{
	font-size: 40px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 35px;
}
.our_approach .approach_circle{
	
}

.our_approach .approach_circle img{
	position: absolute;
    right: 0;
    max-width: 400px;
	width:100%;
    top:30px;
}

.our_approach ul{}

.our_approach ul li{
	color: #000000;
    text-align: left;
	list-style:none;
    font-weight: 400;
    padding-bottom:40px;
	position:relative;
}
.our_approach ul li:before{
	content: "";
    position: absolute;
    left: -23px;
    height: 85px;
    background: #6431dc;
    width: 5px;
    top: 0px;
    overflow: hidden;
}
.our_approach ul li h4{
	font-size: 18px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 12px;
}
.our_approach ul li p{
	font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 0rem;
	
}



/*--------------------------------------------------------------
# three_zero Section
--------------------------------------------------------------*/
.three_zero{padding-bottom: 0;}
.three_zero .content_bx{
	background-image: linear-gradient(to right, #6130D6, #371C7A);
	border-radius: 30px;
}

.three_zero .content_bx .zero_area {
    padding: 20px 60px;
}

.three_zero .content_bx .lft_head h1{
	font-size: 50px;
    font-weight: 700;
    color: #ffffff;
	text-align: left;
	padding-bottom: 15px;
	position:relative;
	margin-bottom: 50px;
}

.three_zero .content_bx .lft_head h1:after{
	content: "";
    position: absolute;
    left: 0px;
    height: 5px;
    background: #ffffff;
    width: 142px;
    bottom:0;
    overflow: hidden;
}

.three_zero .content_bx .zero_area .lft_head h2 {
    color: #ffffff;
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 30px;
}

.three_zero .content_bx .zero_area .lft_head p {
    color: #ffffff;
    text-align: left;
    font-size: 19px;
    font-weight: 400;
    padding-bottom: 20px;
}

.three_zero .content_bx .zero_area .rgt_txt img{
	width: 100%;
    position: relative;
    left: -60px;
}


canvas#spiders {
  height:100%; 
  width:100%;
  position: absolute;
  top:0; 
  bottom:0;
  left:0;
  right:0;
  
  z-index: 9;

pointer-events: none;
}



/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.three-zero-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

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

.three-zero-services .service-item .icon {
  margin-bottom: 30px;
}

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

.three-zero-services .service-item .icon i svg{
	width: 80px;
    vertical-align: bottom;
}

.three-zero-services .service-item:hover .icon i svg path {
    fill: #ffffff;
}

.three-zero-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.three-zero-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.three-zero-services .service-item p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.three-zero-services .service-item:hover h4,
.three-zero-services .service-item:hover .icon i,
.three-zero-services .service-item:hover p {
  color: var(--contrast-color);
}

.three-zero-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 30px;
}



.three-zero-section {padding-top:0px;}

.three-zero-section .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.three-zero-section .service-item .icon {
  font-size: 32px;
  border-radius: 50px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.three-zero-section .service-item .icon img{width:90%;}

.three-zero-section h2 {
    font-size: 50px;
    color: #6432DC;
    font-weight: 700;
    margin-bottom:25px;
}
.three-zero-section p{
	color: #000000;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 20px;
}

.three-zero-section .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.three-zero-section .service-item p {
  margin-bottom: 0;
  color: #000000;
  transition: 0.3s;
  text-align: left;
  font-size: 16px;
  padding-bottom: 0 !important;
}

.three-zero-section .service-item h3{
	color: #6432DC;
    transition: ease-in-out 0.3s;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: left;
}

.three-zero-section .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.three-zero-section .service-item .read-more i {
  margin-left: 10px;
}

.three-zero-section .service-item.item-cyan .icon {
  color: #000;
  border: 0px solid #000;
}



.three-zero-section .service-item.item-orange .icon {
  color: #000;
  border: 0px solid #000;
}

.three-zero-section .service-item.item-teal .icon {
  color: #000;
  border: 0px solid #000;
}

.three-zero-section .service-item.item-red .icon {
  color: #000;
  border: 0px solid #000;
}

.three-zero-section .service-item.item-indigo .icon {
  color: #000;
  border: 0px solid #000;
}

.three-zero-section .service-item.item-pink .icon {
  color: #000;
  border: 0px solid #000;
}

.three-zero-section .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.three-zero-section .service-item:hover h3 {
  color: var(--heading-color);
}

.three-zero-section .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}



/*--------------------------------------------------------------
# our_approach Section
--------------------------------------------------------------*/
.our_approach_area {
	padding:0px 0px 60px;
}
.our_approach_area h2{
	font-size: 50px;
    color: #6432DC;
    font-weight: 700;
    margin-bottom: 65px;
}
.our_approach_area .service-item {
  background-color: var(--surface-color);
  /* box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1); */
  padding: 50px 20px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

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

.our_approach_area .service-item .icon {
  margin-bottom: 35px;
    text-align: center;
    display: block;
}

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

.our_approach_area .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.our_approach_area .service-item h4{
  color: #6432DC;
  transition: ease-in-out 0.3s;
}

.our_approach_area .service-item p {
  font-size: 16px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.our_approach_area .service-item:hover h4,
.our_approach_area .service-item:hover .icon i,
.our_approach_area .service-item:hover p {
  color: var(--contrast-color);
}

.our_approach_area .service-item:hover .icon i svg path{
	fill: #ffffff;
}

.our_approach_area .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
  top: -40px;
  border-radius: 20px 20px 0px 0px;
}




/*--------------------------------------------------------------
# industry Section
--------------------------------------------------------------*/
.industry {
  padding: 20px 0;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.industry h3{
	font-weight: 700;
	color: var(--accent-color);
	font-size: 27px;
    text-align: center;
    max-width: 925px;
    width: 100%;
    margin: 0 auto;
	padding-bottom: 80px;
}

.industry .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.industry .client-logo img {
  padding: 0px 0px;
  max-width: 100%;
  transition: 0.3s;
  opacity: 1;
  /* filter: grayscale(100); */
}

.industry .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .industry .client-logo img {
    padding: 0px;
  }
}


/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
  position: relative;
}

.events .event-item .price {
  color: #ffffff;
  border-bottom: 2px solid var(--accent-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

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

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

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

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



/*--------------------------------------------------------------
# confrence_area Section
--------------------------------------------------------------*/
.confrence_area {padding-bottom: 10px;}
.confrence_area h2{
  font-size: 40px;
  font-weight: 700;
  background:#6432dc;
  border-radius:20px;
  color:#ffffff;
  padding:15px;
  text-align:center;
  margin-bottom:85px;
}
	
.confrence_area .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.confrence_area .content h2 {
  font-weight: 700;
}

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

.confrence_area .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.confrence_area .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.confrence_area .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.confrence_area .content .read-more:hover i {
  margin-left: 10px;
}

.confrence_area .icon-box {
  background-color: var(--surface-color);
  padding: 20px 15px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  text-align: center;
  height: 100%;
  max-height: 330px;
}

.confrence_area .icon-box i {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: #5437b7;
  padding:1px 3px 8px 3px;
  position: relative;
    top: -60px;
}
.confrence_area .icon-box i img{
	border-radius: 50%;
	width:100%;
}

.confrence_area .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.confrence_area .icon-box p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
  font-weight:500;
  position: relative;
    top: -60px;
}

.confrence_area .icon-box p span{font-style:italic;}

.confrence_area .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding:8px 3px 1px 3px;
}

.confrence_area .icon-boxes .col-md-6:nth-child(2) .icon-box,
.confrence_area .icon-boxes .col-md-6:nth-child(4) .icon-box {
  /* margin-top: -40px; */
}

@media (max-width: 768px) {

  .confrence_area .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .confrence_area .icon-boxes .col-md-6:nth-child(4) .icon-box {
    /* margin-top: 0; */
  }
}


/*--------------------------------------------------------------
# code_conduct Section
--------------------------------------------------------------*/
.conduct-cd h3{position: relative;}
.conduct-cd  h3:after {
    content: "";
    position: absolute;
    right: -80px;
    height: 1px;
    background: #bcbcbc;
    width: 63%;
    top: 50%;
    overflow: hidden;
}


.code_conduct .team-member {
  box-shadow: 3px 4px 10px rgb(0 0 0 / 24%);
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
  background: #ffffff;
  border-radius: 20px;
}

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

.code_conduct .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.code_conduct .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.code_conduct .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.code_conduct .team-member .social a:hover {
  color: var(--default-color);
}

.code_conduct .team-member .social i {
  font-size: 18px;
}

.code_conduct .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.code_conduct .team-member .member-info h4 {
  font-weight: 700;
  margin: 30px -15px 20px -15px;
  font-size:18px;
  background: #6432DC;
  color: #fff;
  padding: 15px;
  margin-top: 25px;
}

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

.code_conduct .team-member .member-info p {
  font-size: 16px;
  padding-top: 15px;
  line-height: 24px;
  color: #000000;
  font-weight: 600;
  padding-bottom: 20px;
  position:relative;
}

.code_conduct .team-member:hover {
  transform: scale(1.05);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.code_conduct .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# diffrence Section
--------------------------------------------------------------*/
.diffrence{background:#ffffff;}
.diffrence h2{
  color: #000000;
  font-weight:600;
  font-size: 50px;
  margin-bottom:80px;
  text-align:center;
  text-transform:uppercase;
}

.diffrence h2 span img{width:145px;}

.diffrence .do-circle {
  border-radius: 50%;
}

.diffrence .do-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.diffrence .do-item-circle {
  max-width: 280px;
    margin: 0 auto;
    height: 280px;
    background: #6432DC;
}


.diffrence .do-info-wrap {
  position: absolute;
  top: 25px;
  left: 12px;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  transition: all 0.4s ease-in-out;
  perspective: 800px;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 3px rgba(115, 114, 115, 0.2);
  opacity: 0;
}

.diffrence .do-info {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  transform-style: preserve-3d;
  opacity: 0;
}

.diffrence .do-info > div {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.diffrence .do-info .do-info-back {
  display: inline-block;
  transform: rotate3d(0, 1, 0, 180deg);
  -webkit-transform: rotate3d(0, 1, 0, -180deg);
	-ms-transform: rotate3d(0, 1, 0, -180deg);
	-moz-transform: rotate3d(0, 1, 0, -180deg);
	-o-transform: rotate3d(0, 1, 0, -180deg);
  background: #ffffff;

}

.diffrence .do-info h3 {
  color: #000000;
  font-weight:700;
  font-size: 18px;
  margin: 0 15px;
  padding: 0px 0 0 0;
  /*height: 90px;
   text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.3); */
}

.diffrence .do-info-back {
  text-align: center;
}

.diffrence .do-info-back > div {
  color: #000000;
  padding: 40px 5px 25px;
  margin: 0 30px;
}

.diffrence .do-info-back > div img{
	width:100px;
}

.diffrence .do-item .do-info-wrap {
  opacity:1;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), inset 0 0 3px rgba(255, 255, 255, 0.8);
}

.diffrence .do-item .do-info {
  opacity:1;
  display: block;
  transform: rotate3d(0, 1, 0, -180deg);
  -webkit-transform: rotate3d(0, 1, 0, -180deg);
-ms-transform: rotate3d(0, 1, 0, -180deg);
-moz-transform: rotate3d(0, 1, 0, -180deg);
-o-transform: rotate3d(0, 1, 0, -180deg);
}

.diffrence .do-info-wrap:hover{
	top: 0px;
	transition: all 0.4s ease-in-out;
}



/*--------------------------------------------------------------
# white pater Section
--------------------------------------------------------------*/
.white_pater{padding-top: 0px;}
.white_pater h1 {
    font-size: 50px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}
.white_pater h3 {
    font-size: 50px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
}

.white_pater p{
	font-size: 18px;
    color: #000000;
    line-height: 24px;
    max-width:740px;
    margin: 0 auto;
	font-family: "Nunito", sans-serif;
}

.white_pater .post-item {
  background: #F9F9F9;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius:30px;
  padding: 30px;
}

.white_pater .post-item .post-img img {
  transition: 0.5s;
}

.white_pater .post-item .post-date {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  padding: 10px 25px;
  font-weight: 600;
  border-radius:50px;
  display:none;
}

.white_pater .post-item .post-content {
  padding: 30px 0px;
}

.white_pater .post-item .post-title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 800;
  transition: 0.3s;
  margin-bottom: 15px;
  font-family: "Nunito", sans-serif;
}

.white_pater .post-item p{
	 font-size: 18px;
    color: #000000;
    margin-bottom: 0;
	font-weight: 400;
	font-family: "Nunito", sans-serif;
}

.white_pater .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.white_pater .post-item .meta span {
  font-size: 15px;
  color: #000000;
  font-family: "Nunito", sans-serif;
}

.white_pater .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

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

.white_pater .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.white_pater .post-item:hover .post-title,
.white_pater .post-item:hover .readmore {
  color: var(--accent-color);
}

.white_pater .post-item:hover .post-img img {
  /* transform: scale(1.1); */
}


/*--------------------------------------------------------------
# Offring Section
--------------------------------------------------------------*/
.offring .service-item {
  background-color: #6432dc;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding:45px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius:20px;
  overflow: hidden;
  min-height: 250px;
}

.offring .service-item .img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #E0D9F7;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.offring .service-item:hover .img-overlay {
  height: 100%;
}

.offring .service-item .img-overlay .rotate {
    position: absolute;
    top: 15px;
    right: 15px;
}

.offring .service-item .img-overlay .rotate img {
  transition: 0.5s;
  width:35px;
}

.rotateions {
  animation: rotateions 8s infinite linear;
}

@keyframes rotateions {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.offring .service-item .img-overlay .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width:100%;
  padding: 15px 25px;
}
.offring .service-item .img-overlay .text h2{
	font-size:18px;
	font-weight:700;
	padding-bottom: 5px;
}
.offring .service-item .img-overlay .text p{
  color: #000000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 20px;
}

.offring .service-item .img-overlay .text p:last-child{
	padding-bottom: 0px;
}

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

.offring .service-item .icon img{width:55px;border-radius: 100%;}

.offring .service-item .rotate {
  position: absolute;
  top: 20px;
  right: 20px;
}
.offring .service-item  .rotate img {
  transition: 0.5s;
  width:35px;
}

.rotateion {
  animation: rotateion 8s infinite linear;
}

@keyframes rotateion {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}

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

.offring .service-item p {
	font-size: 20px;
    color: #ffffff;
    font-weight: 600;
	margin-bottom: 0rem;
}

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

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

.offring .service-item.item-cyan {
  border-bottom: 0px solid #0dcaf0;
}

.offring .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: #ffffff;
}

.offring .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.offring .service-item.item-cyan:hover {
  background: #371c79;
}

.offring .service-item.item-orange {
  border-bottom: 0px solid #fd7e14;
}

.offring .service-item.item-orange .icon {
  color: #fd7e14;
  background: #ffffff;
}

.offring .service-item.item-orange .read-more {
  color: #fd7e14;
}

.offring .service-item.item-orange:hover {
  background: #371c79;
}

.offring .service-item.item-teal {
  border-bottom: 0px solid #20c997;
}

.offring .service-item.item-teal .icon {
  color: #20c997;
  background: #ffffff;
}

.offring .service-item.item-teal .read-more {
  color: #20c997;
}

.offring .service-item.item-teal:hover {
  background: #371c79;
}

.offring .service-item.item-red {
  border-bottom: 0px solid #df1529;
}

.offring .service-item.item-red .icon {
  color: #df1529;
  background: #ffffff;
}

.offring .service-item.item-red .read-more {
  color: #df1529;
}

.offring .service-item.item-red:hover {
  background: #371c79;
}

.offring .service-item.item-indigo {
  border-bottom: 0px solid #6610f2;
}

.offring .service-item.item-indigo .icon {
  color: #6610f2;
  background: #ffffff;
}

.offring .service-item.item-indigo .read-more {
  color: #6610f2;
}

.offring .service-item.item-indigo:hover {
  background: #371c79;
}

.offring .service-item.item-pink {
  border-bottom: 0px solid #f3268c;
}

.offring .service-item.item-pink .icon {
  color: #f3268c;
  background: #ffffff;
}

.offring .service-item.item-pink .read-more {
  color: #f3268c;
}

.offring .service-item.item-pink:hover {
  background: #f3268c;
}

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

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


.conduct_box{
	background-image: linear-gradient(136deg, #684FFF, #B871FE);
	padding: 85px 80px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
	
}
.conduct_box::before{
	content:"";
	background-image: url(../img/conduct-slide-bg.png);
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	width:100%;
	background-size: 100%;
}

.conduct_box h2{
	font-size:32px;
	font-weight:800;
	color:#fff;
}

.conduct_box .swiper-button-next, .conduct_box .swiper-button-prev{
	background: #fff;
    width: 45px;
    height: 45px;
    font-size: 12px;
    border-radius: 50px;
	top: auto;
    bottom: 20px;
	right: auto;
}
.conduct_box .swiper-button-next{
	left: 75px;
	 -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.conduct_box .swiper-button-next:after, .conduct_box .swiper-button-prev:after {
    font-size: 16px;
    color: #000;
    font-weight: 600;
	content: "\f12a";
}
.conduct_box .swiper-button-next:after, .conduct_box .swiper-button-prev:after{
	font-family: bootstrap-icons !important;
}

.conduct_box .item-content{
    padding: 24px 20px;
    border-bottom: 0px solid #ccc;
    position: relative;
	height:100%;
}
.conduct_box .item-content p{
	font-size:14px;
	color:#fff;
	margin: 0px;
	font-weight:500;
}
.conduct_box .item-content p span{
	font-size:12px;
	font-style:italic;
}
.conduct_box  .bgbox{
	padding: 30px 40px;
	background: rgb(234 227 250 / 43%);
	border-radius:25px;
	min-height: 380px;
	justify-content: center;
    align-items: center;
    display: flex;
}


.conduct_box .brand-item {
    position: relative;
    border-right: 1px solid #F8F8F8;
    min-height: 118px;
}

.conduct_box .brand-item:first-of-type, .conduct_box .brand-item:nth-of-type(2), .conduct_box .brand-item:nth-of-type(3), .conduct_box .brand-item:nth-of-type(4), .conduct_box .brand-item:nth-of-type(5) {
  border-bottom: 1px solid #F8F8F8;
}
.conduct_box .brand-item:first-of-type::before, .conduct_box .brand-item:nth-of-type(3)::before{
  content: "\F309";
  font-family: bootstrap-icons !important;
  color: #ba9bfd;
  position: absolute;
    bottom: -44px;
    right: -46px;
    z-index: 3;
    font-size: 90px;
    line-height: 1;
}
@media only screen and (max-width: 767px) {
  .conduct_box .brand-item:first-of-type::before, .conduct_box .brand-item:nth-of-type(2)::before, .conduct_box .brand-item:nth-of-type(3)::before, .conduct_box .brand-item:nth-of-type(4)::before, .conduct_box .brand-item:nth-of-type(5)::before {
    display: none;
  }
}
.conduct_box .brand-item:nth-of-type(5)::before {
  display: none;
}
.conduct_box .brand-item:last-of-type, .conduct_box .brand-item:nth-of-type(2) {
  border-right: 0;
}
.conduct_box .brand-item:last-of-type, .conduct_box .brand-item:nth-of-type(4) {
  border-right: 0;
}
.conduct_box .brand-item:last-of-type, .conduct_box .brand-item:nth-of-type(5) {
  border-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .conduct_box .brand-item:last-of-type, .conduct_box .brand-item:nth-of-type(5) {
    border-right: 1px solid #F8F8F8;
  }
  .conduct_box .brand-item:last-of-type, .conduct_box .brand-item:nth-of-type(5) {
    border-right: 1px solid #F8F8F8;
  }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
    padding: 0px 0 60px;
}
.team .team-title{
	background:#6331da;
	padding:40px 100px;
	text-align:center;
    border-radius: 30px;
	margin-bottom: 30px;
	background-image: linear-gradient(to right, #6331da , #361b77);
	transition: 0.3s;
}
.team .team-title:hover{
	background-image: linear-gradient(to right, #361b77 , #6331da);
	transition: 0.3s;
}
.team .team-title h1{
	color: #fff;
    margin: 0px 0 0px 0;
    font-size:46px;
    font-weight: 700;
	text-align: left;
	position:relative;
}
.team .team-title h1:after {
    content: "";
    position: absolute;
    right: 0px;
    top: -7px;
    height: 130px;
    border-right: 1px solid #ffffff;
}
.team .team-title h2{
	color: #fff;
    margin: 0px 0 0px 0;
    font-size:46px;
    font-weight: 700;
	text-align: left;
	position:relative;
}
.team .team-title h2:after {
    content: "";
    position: absolute;
    right: 0px;
    top: -7px;
    height: 130px;
    border-right: 1px solid #ffffff;
}
.team .team-title h3{
	font-size: 20px;
	line-height:30px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    color: #fff;
    display:block;
	text-align: left;
	padding-bottom: 10px;
	padding-left: 28px;
	position:relative;
}
.team .team-title h3:before {
    content: "\f0a9";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 140px;
	font-family: "Font Awesome 6 Pro";
}
.team .team-title h3:last-child{
	padding-bottom: 0px;
}

.team .team-title ul{}
.team .team-title ul li{
	font-size: 20px;
	line-height:30px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    color: #fff;
    display:block;
	text-align: left;
	padding-bottom: 10px;
	padding-left: 25px;
}
.team .team-title ul li:last-child{
	padding-bottom: 0px;
}

.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
  transition: 0.5s;
}

.team .member:hover .member-img img {
  transform: scale(1.1);
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

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

.team .member .member-info {
  margin-top: 30px;
}

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

.team .member .member-info span {
  display: block;
  font-size: 17px;
  color: #000;
  margin-bottom: 15px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
  color: #007bb6;
}

.team .member .member-info p i{
	color: #fff;
    background: #007bb6;
	line-height: 30px;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.team .member .member-info p a{
	color:#6432dc;
	text-decoration: underline;
}
.team .member .member-info p a:hover{
	color:#361b77;
	text-decoration: none;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
}

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

.chefs .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.chefs .team-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  z-index: 2;
}

.chefs .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .team-member .social a:hover {
  color: var(--default-color);
}

.chefs .team-member .social i {
  font-size: 18px;
}

.chefs .team-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  font-family: var(--default-font);
}

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

.chefs .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.chefs .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.chefs .team-member:hover .social {
  right: 8px;
  opacity: 1;
}


/*--------------------------------------------------------------
# mail_call_action Section
--------------------------------------------------------------*/
.mail_call_action {
  padding: 10px 0;
}

.mail_call_action .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  border-radius: 25px;
}

.mail_call_action .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.mail_call_action .features-item i img{
	width: 50px;
}

.mail_call_action .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.mail_call_action .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
  padding-left: 30px;
    font-size: 16px;
    font-weight:400;
}

.mail_call_action .features-item:hover {
  border-color: var(--accent-color);
}

.mail_call_action .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Get In Touch Section
--------------------------------------------------------------*/
.get-in-touch{
	padding-top: 0px;
}
.get-in-touch:after{
	content: "";
    position: absolute;
    top: 170px;
    right: 0px;
    background: url(../img/background-Patterns.svg) no-repeat right top 0px;
    background-size: 60%;
    width: 380px;
    height: 1307px;
    z-index: 1;
	display:none;
}
.get-in-touch h1{
    font-size: 46px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}
.get-in-touch h3 {
    font-size: 46px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.get-in-touch p{
	font-size: 16px;
    color: #242331;
    line-height: 24px;
	padding-bottom: 25px;
	margin-bottom:0px;
}

.get-in-touch p span{display:block;}

.get-in-touch .post-item {
  background: #ffffff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius:30px;
  padding: 50px;
  z-index: 9;
}



.get-in-touch .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-in-touch .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.get-in-touch .php-email-form {
  padding: 50px;
}

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

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

.get-in-touch .php-email-form select {
  /* -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto; */
  background: url(../img/br-down.svg) 96% / 3% no-repeat;
}

.get-in-touch .php-email-form label{
	font-size:16px;
	margin-bottom:5px;
	color:#242331;
}

.get-in-touch .php-email-form textarea.form-control{
	height:auto;
}

.get-in-touch .php-email-form input[type=text]:focus,
.get-in-touch .php-email-form input[type=email]:focus,
.get-in-touch .php-email-form input[type=number]:focus,
.get-in-touch .php-email-form input[type=date]:focus,
.get-in-touch .php-email-form input[type=time]:focus,
.get-in-touch .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

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

.get-in-touch .php-email-form button[type=submit] {
  color:#ffffff;
  background:#5b35c7;
  border: 0;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 50px;
}

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

.get-in-touch .php-email-form .uploadFile {
  width: 30%;
  background-color: #5b35c7;
    border: 1px solid #5b35c7;
    color: #ffffff;
    font-size: 16px;
    line-height: 23px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    padding: 10px 10px 10px 10px;
    position: relative;
    resize: none;
}
.get-in-touch .php-email-form .uploadFile i{
	font-size: 30px;
    vertical-align: middle;
	font-weight: 300;
	padding-right: 11px;
}
.get-in-touch .php-email-form .uploadFile [type=file] {
  cursor: pointer !important;
  display: block;
  font-size: 999px;
  filter: alpha(opacity=0);
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  position: absolute;
  right: 0px;
  text-align: right;
  top: 0px;
  z-index: 1;
}




/*--------------------------------------------------------------
# Download pdf form Section
--------------------------------------------------------------*/
.download .lft-side{
	padding-right:130px;
}

.download .lft-side h2{
	font-size: 34px;
    text-align: left;
    padding-bottom: 15px;
	line-height:45px;
    color: #ffffff;
	font-weight:600;
	font-family: "Encode Sans", sans-serif;
	padding-top: 15px;
}

.download .lft-side .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
}

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

.download .info-item+.info-item {
  margin-top: 30px;
}

.download .info-item i {
  color: #ffffff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
}

.download .info-item img{width:180px;}

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

.download .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
  line-height:28px;
}

.download .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.download .download-form {
  height: 100%;
  /* background:#f8f5f1; */
  padding: 0px 0px 0px 0px;
  border-radius:10px;
}

.download .download-form h3{
	font-size:24px;
	text-align:center;
	padding-bottom:15px;
	color:#413529;
}

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

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

.download .download-form input[type=text]::placeholder,
.download .download-form input[type=email]::placeholder,
.download .download-form input[type=password]::placeholder,
.download .download-form textarea::placeholder {
  color: #A7A7A7;
}

.download .download-form button[type=submit] {
  color: var(--contrast-color);
  background: #000000;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 10px;
    width: 400px;
	height: 60px;
  font-family: "Encode Sans", sans-serif;
}

.download .download-form button[type=submit]:hover {
  background: #ffffff;
  color:#000000;
}

.modal-content{background:#5b35c7;}
.modal-body{
	padding: 0px 40px 50px;
	
}
.modal.fade .modal-dialog{max-width:700px;}
.modal-header{
	border-bottom:0px;
}
.modal-header .btn-close{color:#ffffff;}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

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

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

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

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

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

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

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: var(--default-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .info-item .social-links a:hover {
  color: var(--accent-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@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 textarea {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
}

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

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

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

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

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





@media (min-width: 1600px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
    }
	
	
	.navmenu a, .navmenu a:focus {
        color: var(--nav-color);
        font-size: 16px;
        padding: 0 2px;
        font-weight: 600;
        display: block;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        /* font-family: 'NeueHaasDisplayRoman'; */
        font-family: "Montserrat", sans-serif;
    }
	
	.header .btn-getstarted, .header .btn-getstarted:focus{
		font-size: 16px;
		padding: 13px 34px;
	}
	
	.header .logo img{
		width: 185px;
	}
	.navmenu .dropdown ul a {
        padding: 8px 20px;
        font-size: 14px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
	.hero{
		min-height: 860px;
	}

	.hero h1{
		max-width: 1088px;
		font-size: 60px;
	}
	.hero h2{
		max-width: 970px;
		font-size: 60px;
		padding-top: 0px;
	}
	.hero .slide_second h2{
		/* font-size: 60px;
		padding-top: 0px;
		max-width: 970px; */
	}
	
	.hero .slide_third{
		max-width: 1054px;
	}
	.hero .slide_third p{
		font-size:18px;
		line-height:28px;
	}
	.hero .slide_third .icons{
		height: 258px;
		width: 258px;
		border: 20px solid #efefef;
		padding: 45px 0px;
	}
	.hero .slide_third:before{
		height: 434px;
		/* top: -10px; */
	}
	.lft-ttl{
		font-size: 80px;
		line-height:80px;
		padding-left: 105px;
	}
	.lft-ttl:after{
		right: -15px;
		height: 200px;
	}
	.about{
		background-size: 162px;
	}
	.about .contents p{
		font-size: 25px;
	}
	.hero .slide_third .icons img {
		width: 115px;
	}
	.hero .btn-get-started{
		font-size: 26px;
		max-width: 500px;
		width: 100%;
	}
	.hero .slide_third h2{
		font-size:34px;
	}
	.hero .slide_second:after{
		background-size: 100%;
		position: absolute;
		right: 0px;
         width: 224px;
		height: 186px;
	}
	.hero .slide_second:before{
		left: -85px;
		bottom: -50px;
	}
	.hero .swiper-pagination-bullet{
		width: 14px;
		height: 14px;
	}
	.why-us .icon-box a{
		font-size: 18px;
	}
	.glancebox p{
		font-size: 29px;
		line-height: normal;
	}
	.glancebox h2 {
		font-size: 70px;
		line-height: 70px;
	}
	.stats .stats-item p{
		font-size: 50px;
	}
	.stats .stats-item span {
		font-size: 75px;
	}
	.agency h3{
		font-size: 36px;
		line-height: 36px;		
	}
	.agency .country_icons ul li img {
		width: 121px;
	}
	.agency .country_icons ul li{
		font-size: 26px;
	}
	
	.agency .country_icons  .txt.abhi{width:18%;}
	
	.bottom_slide .slide_third p {
		font-size: 20px;
		line-height:30px;
	}
	
	.testimonials {
		background-size: 370px 450px, 421px 725px;
	}
	.testimonials h2{
		font-size: 16px;
	}
	.testimonials h4{
		font-size: 38px;
	}
	
	.testimonials .testimonial-item .testimonial-content {
		max-width: 980px;
		width: 100%;
		margin: 0 auto;
	}
	
	.testimonials .testimonial-item p{
		font-size: 24px;
	}
	
	.testimonials .testimonial-item h3{
		font-size: 24px;
	}
	.testimonials .swiper-button-next, .testimonials .swiper-button-prev {
		width: 55px;
		height: 55px;
		top: 115px;
	}
	.testimonials .swiper-button-next:after, .testimonials .swiper-button-prev:after {
    font-size: 20px;
	}
	.swiper-button-next, .swiper-button-prev{
		top:80px;
	}

	.testimonials .testimonial-item .last-text{
		font-size: 26px;
	}


	.testimonials .testimonial-item .quote-icon-left{
		font-size: 100px;
		display: block;
		position: relative;
		color: #fff;
		font-family: "Nunito", sans-serif;
		font-weight: 800;
		line-height: 1;
        height: 70px;
	}

	.testimonials .swiper-button-next{
		right: 9%;
	}
	.testimonials .swiper-button-prev{
		left: 9%;
	}
	
	
	
	
	
	.footer .address p {
		font-size: 18px;
	}
	.footer .copyright p{
		font-size: 18px;
	}
	.footer .social-links a{
		font-size: 15px;
	}
	.footer .container{
		max-width:1180px;	
	}
	.footer h4 img {
		width: 230px;
	}
	.header .container{
		max-width:1180px;	
	}
	
	.team .team-title h1{
		font-size: 55px;
	}
	.team .team-title h1:after{
		right: 15px;
		top: 0px;
		height: 130px;
		border-right: 1px solid #ffffff;
	}
	
	.team .team-title h2{
		font-size: 55px;
	}
	.team .team-title h2:after{
		right: 15px;
		top: 0px;
		height: 130px;
		border-right: 1px solid #ffffff;
	}
	.team .team-title h3{
		font-size: 21px;
        line-height: 32px;
	}
	.team .team-title {
		padding: 40px 80px;
	}
	.team .member .member-info h4 {
		font-size: 26px;
	}
	.team .member .member-info span{
		font-size: 20px;
	}
	.team .member .member-info p{
		font-size: 18px;
	}
	.offring .service-item p{
		font-size: 30px;
	}
	.offring .service-item .img-overlay .text p{
		font-size: 18px;
	}
	.offring .service-item .img-overlay .text h2{
		font-size: 25px;
	}
	.offring .service-item .icon img{
		width: 98px;
	}
	.offring .service-item .rotate img{
		width: auto;
	}
	.offring .service-item .img-overlay .rotate img{
		width: auto;
	}
	.offring .service-item{
		min-height: 323px;
	}
	.press h1 {
		font-size: 55px;
	}
	.press h1:after {
		width: 64%;
	}
	.press h3 {
		font-size: 55px;
	}
	.press h3:after {
		width: 62%;
	}
	
	.conduct-cd h1:after {
		width: 60%;
	}
	
	.conduct_box{
		padding: 105px 80px;
	}
	.conduct_box h2 {
		font-size: 42px;
	}
	.conduct_box .item-content p {
		font-size: 20px;
	}
	.conduct_box .item-content p span {
		font-size: 14px;
	}
	.conduct_box .brand-item:first-of-type::before, .conduct_box .brand-item:nth-of-type(3)::before{
		bottom: -44px;
		right: -44px;
	}
	.conduct_box .swiper-button-next, .conduct_box .swiper-button-prev {
		width: 65px;
		height: 65px;
	}
	.conduct_box .swiper-button-next {
		left: 125px;
	}
	.conduct_box .swiper-button-next:after, .conduct_box .swiper-button-prev:after {
		font-size: 30px;
		font-weight: 400;
	}
	.code_conduct .team-member .member-info h4{
		font-size: 22px;
		margin-top: 40px;
		margin: 30px -15px 30px -15px;
	}
	.code_conduct .team-member .member-info p{
		font-size: 20px;
		line-height: 32px;
		font-weight: 500;
	}
	.tooltips span{
		font-size: 16px !important;
	}
	.diffrence h2{
		font-size: 50px;
	}
	.diffrence h2 span img {
		width: 175px;
	}
	.diffrence .container{
		max-width: 1200px;
	}
	.diffrence .do-item-circle{
		max-width: 340px;
		height: 340px;
	}
	.diffrence .do-info h3{
		font-weight: 600;
		font-size: 25px;
	}
	.diffrence .do-info-back > div img {
		width: 130px;
	}
	.diffrence .do-info-back > div{
		padding: 50px 5px 25px;
	}
	.events h1{
		font-size: 55px;
	}
	.events h3{
		font-size: 55px;
	}
	
	.events .rmbtn .read-more{
		font-size: 18px;
	}
	.confrence_area h2 {
		font-size: 45px;
		margin-bottom: 130px;
	}
	.confrence_area .icon-box{
		padding: 20px 25px;
	}
	.confrence_area .icon-box p {
		font-size: 18px;
		line-height: 28px;
		top: -60px;
        position: relative;
	}
	.confrence_area .icon-box i {
		width: 117px;
		height: 117px;
		top: -70px;
        position: relative;
	}
	.industry h3{
		font-size: 36px;
        max-width: 1270px;
        width: 100%;
	}
	
	.industry{
		max-width: 90%;
	}
	.white_pater h1 {
		font-size: 70px;
	}
	.white_pater h3 {
		font-size: 70px;
	}
	.white_pater p{
		font-size: 22px;
        max-width: 860px;
        width: 100%;
        line-height: 34px;
	}
	.white_pater .post-item .post-img img{
		width: 100%;
	}
	.white_pater .post-item .post-date{
		font-size:18px;
	}
	.white_pater .post-item .post-title{
		font-size: 35px;
	}
	.white_pater .post-item p{
		font-size: 20px;
		color: #000000;
		line-height: 30px;
	}
	.white_pater .post-item .meta span{
		font-size: 18px;
	}
	.modal-xl {
        --bs-modal-width: 1240px;
    }
	
	.download .lft-side h2 {
		font-size: 40px;
		line-height: 60px;
	}
	.download .info-item p{
		font-size: 20px;
		line-height: 34px;
	}
	.download .info-item img {
		width: 265px;
	}
	.download .download-form h3{
		font-size: 28px;
	}
	.download .download-form input[type=text], .download .download-form input[type=email], .download .download-form input[type=password], .download .download-form textarea{
		font-size: 16px;
		height: 80px;
	}
	.download .download-form button[type=submit]{
		font-size: 20px;
		padding: 16px 30px;
		height: 80px;
	}
	.download .info-item i{
		font-size: 26px;
	}
	
	.modal.fade .modal-dialog {
		max-width: 930px;
	}
	.modal-body {
		padding: 30px 60px 70px;
	}
	
	.press .rmbtn .read-more{
		font-size: 18px;
	}
	.get-in-touch h1{
		font-size: 60px;
	}
	.get-in-touch h3 {
		font-size: 70px;
	}
	.mail_call_action .features-item h3{
		font-size: 22px;
	}
	.mail_call_action .features-item h3 a{
		font-size: 20px;
	}
	.get-in-touch p {
		font-size: 20px;
		line-height: 30px;
		font-weight: 500;
	}

	.get-in-touch .php-email-form label{
		font-size: 20px;
	}
	.get-in-touch .php-email-form input[type=text], .get-in-touch .php-email-form input[type=email], .get-in-touch .php-email-form input[type=number], .get-in-touch .php-email-form input[type=date], .get-in-touch .php-email-form input[type=time], .get-in-touch .php-email-form textarea, .get-in-touch .php-email-form select {
		font-size: 20px;
		height: 80px;
	}
	.get-in-touch .php-email-form .uploadFile{
		font-size: 20px;
		line-height: 30px;
		font-weight: 700;
		padding: 20px 10px 20px 10px;
	}
	.get-in-touch .php-email-form button[type=submit]{
		font-size: 20px;
		line-height: 30px;
		font-weight: 700;
		padding: 21px 60px;
	}
	
	.humint_area .rgt_txt p{
		font-size: 29px;
	}
	
	.empowering_box h1 {
		font-size: 40px;
		padding-right: 90px;
	}
	.empowering_box h1 span {
		font-size: 50px;
	}
	.empowering_box h1:after{
		right: 28px;
		height: 213px;
	}
	
	.empowering_box h4 {
		font-size: 40px;
		padding-right: 90px;
	}
	.empowering_box h4 span {
		font-size: 50px;
	}
	.empowering_box h4:after{
		right: 28px;
		height: 213px;
	}
	.empowering_box p{
		font-size: 29px;
	}
	.humint_area .commercial h2 {
		font-size: 50px;
	}
	.humint_area .commercial .card_box h4 {
		font-size: 28px;
	}
	.humint_area .commercial .card_box p {
		font-size: 22px;
	}
	
	.our_approach h2 {
		font-size: 40px;
	}
	.content_bx h1 {
		font-size: 50px;
	}
	.content_bx h1:after{
		width: 145px;
	}
	.humint_area .lft_head h2 {
		font-size: 36px;
	}
	.humint_area .lft_head p {
		font-size: 24px;
	}
	
	.our_approach_area h2 {
		font-size: 50px;
	}
	.our_approach_area .service-item h4{
		font-size: 25px;
	}
	.our_approach_area .service-item p{
		font-size: 22px;
	}
	
	
	.three-zero-section .service-item h3 {
		font-size: 28px;
	}
	
	.three_zero .content_bx .lft_head h1 {
        font-size: 50px;
    }

	.three_zero .content_bx .zero_area .lft_head p{
	font-size: 24px;
	}

	.three_zero .content_bx .zero_area .lft_head h2 {
        font-size: 36px;
    }
	
	.three-zero-services .service-item p {
        font-size: 22px;
		line-height: 36px;
    }
	.three-zero-services .service-item h4 {
        font-size: 25px;
    }
	
	.three-zero-section h2 {
        font-size: 50px;
    }
	
	.three-zero-section p{
        font-size: 23px;
    }
	.three-zero-section .service-item h3{
		font-size:25px;
	}
	
	.three-zero-section .service-item p {
		font-size: 22px;
	}
	
	
	
}






@media (min-width: 1920px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1750px;
    }
	
	
	.navmenu a, .navmenu a:focus {
        color: var(--nav-color);
        font-size: 17px;
        padding: 0 2px;
        font-weight: 600;
        display: block;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        /* font-family: 'NeueHaasDisplayRoman'; */
        font-family: "Montserrat", sans-serif;
    }
	
	.header .btn-getstarted, .header .btn-getstarted:focus{
		font-size: 17px;
		padding: 15px 44px;
	}
	
	.header .logo img{
		width: 211px;
	}
	.navmenu .dropdown ul a {
        padding: 8px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
	.hero{
		min-height: 980px;
	}

	.hero h1{
		max-width: 1280px;
		font-size: 70px;
	}
	.hero h2{
		max-width: 1120px;
		font-size: 70px;
	}
	.hero .slide_second h2{
		/* font-size: 70px;
		max-width: 1120px; */
	}
	.hero .slide_third{
		max-width: 1264px;
	}
	.hero .slide_third p{
		font-size:20px;
		line-height:30px;
	}
	.hero .slide_third .icons{
		height: 308px;
		width: 308px;
		border: 20px solid #efefef;
		padding: 50px 0px;
	}
	.hero .slide_third:before{
		height: 434px;
		/* top: -10px; */
	}
	.about{
		background-size: 182px;
	}
	.lft-ttl{
		font-size: 90px;
		line-height:90px;
		right: 24px;
		padding-left: 155px;
		
	}
	.lft-ttl:after{
		height: 180px;
		right: -25px;
	}
	.about .contents p{
		font-size: 30px;
		padding-right: 10px;
	}
	.hero .slide_third .icons img {
		width: 140px;
	}
	.hero .btn-get-started{
		font-size: 30px;
		max-width: 612px;
		width: 100%;
	}
	.hero .btn-get-started.over{
		
	}
	.hero .slide_third h2{
		font-size:40px;
	}
	.hero .slide_second:after{
		background-size: 100%;
		position: absolute;
		right:0px;
        width: 224px;
        height: 186px;
	}
	
	.hero .slide_second:before{
		left: -90px;
		bottom: -50px;
	}
	
	.hero .swiper-pagination-bullet{
		width: 14px;
		height: 14px;
	}
	.why-us .icon-box a{
		font-size: 20px;
	}
	.glancebox p{
		font-size: 32px;
		line-height: 36px;
	}
	.glancebox h2 {
		font-size: 90px;
		line-height: 100px;
	}
	.stats .stats-item p{
		font-size: 60px;
	}
	.stats .stats-item span {
		font-size: 85px;
	}
	.agency h3{
		font-size: 40px;
		line-height: 40px;		
	}
	.agency .country_icons ul li img {
		width: 131px;
	}
	.agency .country_icons ul li{
		font-size: 30px;
	}
	
	.agency .country_icons  .txt{
		font-size:28px;
		padding-bottom: 70px;
	}
	.agency .country_icons  .txt.abhi{width:18%;}
	.agency .country_icons img{
		width:131px; 
		padding-right:30px;
	}
	
	.bottom_slide .slide_third p {
		font-size: 22px;
		font-weight: 500;
		line-height: 30px;
		padding: 32px 24px 30px;
	}
	
	.testimonials {
		background-size: 442px 533px, 502px 869px;
	}
	.testimonials h2{
		font-size: 18px;
		padding: 27px 25px;
	}
	.testimonials h4{
		font-size: 40px;
		margin: 20px 0 22px 0;
	}
	
	.testimonials .testimonial-item .testimonial-content {
        max-width: 1210px;
        width: 100%;
        margin: 0 auto;
    }
	.testimonials .testimonial-item p{
		font-size: 23px;
	}
	.testimonials .testimonial-item .last-text{
		font-size: 23px;
	}
	
	.testimonials .testimonial-item h3{
		font-size:23px;
	}
	.testimonials .swiper-button-next, .testimonials .swiper-button-prev {
		width: 60px;
		height: 60px;
		top: 115px;
	}
	.testimonials .swiper-button-next:after, .testimonials .swiper-button-prev:after {
    font-size: 26px;
	}
	.testimonials .testimonial-item .quote-icon-left{
		font-size: 100px;
		display: block;
		position: relative;
		color: #fff;
		font-family: "Nunito", sans-serif;
		font-weight: 800;
		line-height: 1;
        height: 70px;
	}

	.testimonials .swiper-button-next{
		right: 9%;
	}
	.testimonials .swiper-button-prev{
		left: 9%;
	}
	.footer .address p {
		font-size: 20px;
	}
	.footer .copyright p{
		font-size: 20px;
	}
	.footer .social-links a{
		font-size: 18px;
	}
	.footer .container{
		max-width:1440px;	
	}
	.footer h4 img {
		width: 275px;
	}
	.header .container{
		max-width:1440px;	
	}
	
	.team .team-title h1{
		font-size: 70px;
	}
	.team .team-title h2{
		font-size: 70px;
	}
	.team .team-title h3{
		font-size: 26px;
        line-height: 40px;
        font-weight: 500;
		padding-left: 36px;
	}
	.team .team-title h1:after {
        right: 20px;
        height: 168px;
    }
	 .team .team-title h2:after {
        right: 20px;
        height: 168px;
    }
	.team .member .member-info h4 {
		font-size: 30px;
	}
	.team .member .member-info span{
		font-size: 22px;
	}
	.team .member .member-info p{
		font-size: 18px;
	}
	.team .member .member-info p i{
		line-height: 35px;
		width: 34px;
		height: 34px;
		font-size: 18px;
	}
	.offring .service-item p{
		font-size: 35px;
	}
	.offring .service-item .img-overlay .text p{
		font-size: 20px;
	}
	.offring .service-item .img-overlay .text h2{
		font-size: 25px;
	}
	.offring .service-item .icon img{
		width: 117px;
	}
	.offring .service-item .rotate img{
		width: auto;
	}
	.offring .service-item .img-overlay .rotate img{
		width: auto;
	}
	.offring .service-item{
		min-height: 369px;
	}
	.press h1 {
		font-size: 60px;
	}
	.press h3 {
		font-size: 60px;
	}
	.conduct_box{
		padding: 155px 80px;
	}
	.conduct_box h2 {
		font-size: 50px;
	}
	.conduct_box .item-content p {
		font-size: 25px;
	}
	.conduct_box .item-content p span {
		font-size: 16px;
	}
	.conduct_box .brand-item:first-of-type::before, .conduct_box .brand-item:nth-of-type(3)::before{
		bottom: -44px;
		right: -44px;
	}
	.conduct_box .swiper-button-next, .conduct_box .swiper-button-prev {
		width: 75px;
		height: 75px;
	}
	.conduct_box .swiper-button-next {
		left: 125px;
	}
	.conduct_box .swiper-button-next:after, .conduct_box .swiper-button-prev:after {
		font-size: 35px;
		font-weight: 400;
	}
	.code_conduct .team-member .member-info h4{
		font-size: 25px;
		margin-top: 40px;
		margin: 30px -15px 30px -15px;
	}
	.code_conduct .team-member .member-info p{
		font-size: 24px;
		line-height: 35px;
		font-weight: 500;
	}
	.tooltips span{
		font-size: 16px !important;
	}
	.diffrence h2{
		font-size: 70px;
	}
	.diffrence h2 span img {
		width: 175px;
	}
	.diffrence .container{
		max-width: 1440px;
	}
	.diffrence .do-item-circle{
		max-width: 410px;
		height: 410px;
	}
	.diffrence .do-info h3{
		font-weight: 600;
		font-size: 25px;
	}
	.diffrence .do-info-back > div img {
		width: 140px;
	}
	.diffrence .do-info-back > div{
		padding: 80px 5px 25px;
	}
	.events h1{
		font-size: 60px;
	}
	.events h3{
		font-size: 60px;
	}
	
	.events .rmbtn .read-more{
		font-size: 20px;
	}
	.confrence_area h2 {
		font-size: 50px;
		margin-bottom: 130px;
	}
	.confrence_area .icon-box{
		padding: 20px 25px;
	}
	.confrence_area .icon-box p {
		font-size: 18px;
		line-height: 28px;
		top: -60px;
        position: relative;
	}
	.confrence_area .icon-box i {
		width: 137px;
		height: 137px;
		top: -70px;
        position: relative;
	}
	.industry h3{
		font-size: 45px;
		max-width: 1590px;
		width:100%;
	}
	.white_pater h1{
		font-size: 75px;
	}
	.white_pater h3 {
		font-size: 75px;
	}
	.white_pater p{
		font-size: 25px;
		max-width: 900px;
		width:100%;
		line-height: 38px;
	}
	.white_pater .post-item .post-img img{
		width: 100%;
	}
	.white_pater .post-item .post-date{
		font-size:18px;
	}
	.white_pater .post-item .post-title{
		font-size: 38px;
	}
	.white_pater .post-item p{
		font-size: 22px;
		color: #000000;
	}
	.white_pater .post-item .meta span{
		font-size: 18px;
	}
	.modal-xl {
        --bs-modal-width: 1440px;
    }
	.modal.fade .modal-dialog {
		max-width: 1030px;
	}
	.modal-body {
		padding: 30px 60px 70px;
	}
	.download .lft-side h2 {
		font-size: 44px;
		line-height: 60px;
	}
	.download .info-item p{
		font-size: 22px;
		line-height: 34px;
	}
	.download .info-item img {
		width: 275px;
	}
	.download .download-form h3{
		font-size: 35px;
	}
	.download .download-form input[type=text], .download .download-form input[type=email], .download .download-form input[type=password], .download .download-form textarea{
		font-size: 20px;
		height: 90px;
	}
	.download .download-form button[type=submit]{
		font-size: 23px;
		padding: 16px 30px;
	}
	.download .info-item i{
		font-size: 26px;
	}
	
	.press .rmbtn .read-more{
		font-size: 20px;
	}
	.get-in-touch h1 {
		font-size: 75px;
	}
	.get-in-touch h3 {
		font-size: 75px;
	}
	.mail_call_action .features-item h3{
		font-size: 22px;
	}
	.mail_call_action .features-item h3 a{
		font-size: 20px;
	}
	.get-in-touch p {
		font-size: 20px;
		line-height: 30px;
		font-weight: 500;
	}

	.get-in-touch .php-email-form label{
		font-size: 20px;
	}
	.get-in-touch .php-email-form input[type=text], .get-in-touch .php-email-form input[type=email], .get-in-touch .php-email-form input[type=number], .get-in-touch .php-email-form input[type=date], .get-in-touch .php-email-form input[type=time], .get-in-touch .php-email-form textarea {
		font-size: 20px;
		height: 80px;
	}
	.get-in-touch .php-email-form .uploadFile{
		font-size: 20px;
		line-height: 30px;
		font-weight: 700;
		padding: 20px 10px 20px 10px;
	}
	.get-in-touch .php-email-form button[type=submit]{
		font-size: 20px;
		line-height: 30px;
		font-weight: 700;
		padding: 21px 60px;
	}
	
	.our_approach_area .service-item{
		padding: 50px 51px;
	}
	.humint_area .lft_head{
		padding: 60px 0px;
	}

	.humint_area .lft_head h2{
		font-size: 35px;
	}
	.humint_area .lft_head p {
		font-size: 30px;
	}
	.our_approach_area .service-item h4{
		font-size: 25px;
	}
	.our_approach_area .service-item p{
		font-size: 23px;
		line-height: 30px;
	}
	.humint_area .rgt_txt{
		padding: 51px 0px;
        text-align: right;
	}
	.humint_area .rgt_txt p{
		font-size: 37px;
	}
	.empowering_box {
		padding: 110px 0px;
	}
	.empowering_box h1{
		font-size: 50px;
		padding-right: 90px;
	}
	.empowering_box h1 span {
    font-size: 70px;
	}
	.empowering_box h1:after{
		height: 284px;
		right: 30px;
	}
	.empowering_box h4{
		font-size: 50px;
		padding-right: 90px;
	}
	.empowering_box h4 span {
    font-size: 70px;
	}
	.empowering_box h4:after{
		height: 284px;
		right: 30px;
	}

	.empowering_box p{
		font-size: 40px;
		line-height: normal;
		padding-right: 70px;
	}
	.humint_area .commercial .card_box{
		padding: 50px 50px;
	}
	.humint_area .commercial .card_box p {
		font-size: 25px;
	}
	.humint_area .commercial .card_box h4{
		font-size: 35px;
	}
	.humint_area .commercial h2 {
		font-size: 60px;
		padding: 60px 80px 0px 70px;
	}
	.humint_area ul li h4{
		font-size: 25px;
	}
	.humint_area ul li p{
		font-size: 25px;
	}
	.our_approach h2 {
		font-size: 60px;
	}
	.our_approach ul li h4 {
		font-size: 25px;
	}
	.our_approach ul li p {
		font-size:25px;
	}
	.our_approach .approach_circle img{
		max-width: 510px;
	}
	
	
	.three-zero-section .service-item h3 {
		font-size: 28px;
	}
	
	.three_zero .content_bx .lft_head h1 {
        font-size: 50px;
    }

	.three_zero .content_bx .zero_area .lft_head p{
	font-size: 30px;
	}

	.three_zero .content_bx .zero_area .lft_head h2 {
        font-size: 35px;
    }
	
	.three-zero-services .service-item p {
        font-size: 23px;
		line-height: 36px;
    }
	.three-zero-services .service-item h4 {
        font-size: 25px;
    }
	
	.three-zero-section h2 {
        font-size: 50px;
    }
	
	.three-zero-section p{
        font-size: 23px;
    }
	.three-zero-section .service-item h3{
		font-size:25px;
	}
	
	.three-zero-section .service-item p {
		font-size: 23px;
	}
	
}

	
@media (max-width: 1024px) {
	.hero h1{
		font-size:42px;
	}
	.hero h2{
		font-size:42px;
	}
	.hero .slide_second:after{
		right: -10px;
	}
	
	.glancebox p {
		font-size: 18px;
	}
	.glancebox h2 {
		font-size: 44px;
	}
	.stats .stats-item p {
		font-size: 32px;
	}
	.stats .stats-item span {
		font-size: 40px;
	}
	.agency h3{
		font-size: 24px;
	}
	
	.team .member .member-info p{font-size: 13px;}
	.team .member .member-info span{
		font-size: 14px;
	}
	
	.team .team-title {
		padding: 30px 25px;
	}
	.conduct_box{
		padding: 55px 40px;
	}
	
	.confrence_area .col {
		margin-bottom: 65px;
		width: 33%;
	}
	
	.get-in-touch .col-xl-10.col-md-6{
		width: 100%;
	}
	
	.get-in-touch .php-email-form .uploadFile {
		width: 45%;
	}
	
	.mail_call_action .features-item h3 a {
        display: block;
        padding-left: 0px;
    }
	.mail_call_action .features-item h3 {
        text-align: left;
        line-height: 24px;
    }
	
}


@media (max-width: 991px) {
	.about .contents p{
		text-align: center;
	}
	.lft-ttl{
		text-align: center;
		padding-left: 0px;
	}
	.glancebox p{
		text-align: center;
		padding-right: 0;
		padding-bottom: 30px;
	}
	.glancebox h2{
		text-align: center;
		padding-left: 0px;
	}
	
	.hero h1{
		font-size: 38px;
	}
	.hero h2{
		font-size: 38px;
	}
	
	.slideouter {
        max-width: 710px;
	}
	
}

@media (max-width: 991px) {
	.footer .copyright p{
		text-align: center;
		font-size: 18px;
	}
	.footer .address p{
		font-size: 18px;
	}
	.social-links{
		text-align: center;
	}
	.address{
		text-align: center;
	}
	.get-in-touch .php-email-form button[type=submit]{
		margin-bottom: 25px;
	}
	.get-in-touch .php-email-form .uploadFile{
		width: 60%;
	}
	.get-in-touch p span {
		padding-bottom: 10px;
	}
	
	.mail_call_action .features-item h3{
		text-align: left;
		line-height: 24px;
	}
	.mail_call_action .features-item h3 a{
		display: block;
		padding-left: 0px;
	}
	.get-in-touch:after{
		background-size: 100%;
		width: 320px;
		top: 130px;
	}
	.scroll-top.active{
		bottom: 125px;
	}
	
	.press .card img{
		padding: 5px 5px;
		border-radius: 25px;
	}
	.press h1{
		font-size: 36px;
	}
	.press h1:after{
		right: 0;
		top: auto;
		bottom: -5px;
		width: 100%;
	}
	.press h3 {
		font-size: 36px;
	}
	.press h3:after{
		right: 0;
		top: auto;
		bottom: -5px;
		width: 100%;
	}
	.white_pater h1{
		font-size: 36px;
	}
	.white_pater h3{
		font-size: 36px;
	}
	.white_pater .post-item{
		padding: 18px;
	}
	.modal-body{
		padding: 40px 15px 60px;
	}
	.download .lft-side {
		padding-right: 0px;
		padding-bottom: 25px;
	}
	.download .lft-side h2{
		padding-top: 0;
	}
	.download .download-form h3{
		font-size: 28px;
	}
	.section-title{
		padding-bottom: 40px;
	}
	.white_pater .post-item .post-title{
		font-size: 24px;
	}
	.events h1{
		font-size: 36px;
	}
	.events h1:after{
		right: 0;
		top: auto;
		bottom: -5px;
		width: 100%;
	}
	.events h3{
		font-size: 36px;
	}
	.events h3:after{
		right: 0;
		top: auto;
		bottom: -5px;
		width: 100%;
	}
	.events .card{
		padding: 15px;
	}
	.confrence_area h2 {
		font-size: 30px;
	}
	
	.confrence_area .row-cols-5>* {
		width: 100%;
		margin-bottom: 70px;
	}
	.confrence_area .icon-box{
		max-height: 260px;
	}
	    
	.confrence_area .row-cols-5>*:last-child{
		margin-bottom: 0px;
	}
	.industry h3{
		font-size: 20px;
	}
	.confrence_area .icon-box p {
		font-size: 18px;
		line-height: 28px;
	}
	
	.diffrence h2{
		font-size: 36px;
	}
	.diffrence h2 span{
		display:block;
		padding-bottom: 5px;
	}
	.diffrence .col-sm-4{
		width: 33%;
	}
	.diffrence .do-item-circle{
		max-width: 165px;
		height: 165px;
	}
	.diffrence .do-info-back > div{
		padding: 14px 5px 0px;
		margin: 0 15px;
	}
	.diffrence .do-info-back > div img {
		width: 75px;
	}
	.diffrence .do-info-wrap{
		top: 11px;
		left: 5px;
		width: calc(100% - 10px);
		height: calc(100% - 10px);
	}
	.diffrence .do-info h3{
		font-size: 16px;
		font-weight: 600;
	}
	
	.code_conduct .team-member .member-info h4{
		font-size: 24px;
	}
	.code_conduct .team-member .member-info p {
		font-size: 20px;
		line-height: 30px;
	}
	
	.conduct_box{
		padding: 55px 15px;
	}
	.conduct_box h2{
		font-size: 24px;
		text-align: center;
	}
	.conduct_box .bgbox{
		padding: 20px 25px;
	}
	.conduct_box .brand-item{
		border-right: 1px solid #F8F8F8;
		min-height: auto;
	}
	.conduct_box .brand-item:last-of-type, .conduct_box .brand-item:nth-of-type(5){
		border-right: 1px solid #F8F8F8;
	}
	.conduct_box .brand-item:last-of-type, .conduct_box .brand-item:nth-of-type(6){
		border-right: 0px solid #F8F8F8;
	}
	.conduct_box .item-content{
		padding: 20px 5px;
	}
	.conduct_box .item-content p{
		font-size: 18px;
		text-align: center;
	}
	.conduct_box .item-content p span{
		font-size: 14px;
	}
	.conduct_box{
		border-radius: 30px;
	}
	.conduct_box .item-content{
		border-bottom: 0px solid #F8F8F8 !important;
	}
	.conduct_box .swiper-button-next, .conduct_box .swiper-button-prev{
		bottom:0px;
	}
	.conduct_box .swiper-button-next{
		left: auto;
		right: 10px;
	}
	.offring .service-item{
		padding: 60px 30px;
		min-height: 280px;
	}
	.offring .service-item .img-overlay .text{
		padding: 34px 25px;
	}
	.offring .service-item .img-overlay .text h2{
		font-size: 20px;
	}
	.offring .service-item .img-overlay .text p{
		font-size: 15px;
	}
	
	.team .team-title{
		padding: 40px 25px;
		width: 95%;
	}
	.team .team-title h1{
		font-size: 36px;
		padding-bottom: 20px;
	}
	.team .team-title h1:after{
		border-right: 0px solid #ffffff;
	}
	.team .team-title h2{
		font-size: 36px;
		padding-bottom: 20px;
	}
	.team .team-title h2:after{
		border-right: 0px solid #ffffff;
	}
	.team .team-title h3 {
		font-size: 16px;
		line-height: 24px;
	}
	.page-title{
		padding: 80px 0;
	}
	
	.testimonials{
		padding: 100px 0 90px;
	}
	.testimonials h4 {
		font-size:30px;
	}
	.testimonials .testimonial-item p{
		font-size: 18px;
	}
	.testimonials .testimonial-item h3{
		font-size: 18px;
	}
	.testimonials .swiper-button-next, .testimonials .swiper-button-prev {
		top: auto;
		bottom:0px;
		display: none;
	}
	.agency h3 {
		font-size: 22px;
	}

	.about{
		background-position: top 15px left;
		background-size: 100px;
	}
	.lft-ttl{
		font-size: 45px;
		line-height: 45px;
		padding-bottom: 20px;
	}
	.lft-ttl:after{
		right: 0;
		top: auto;
		height: 1px;
		border-bottom: 1px solid #b2b2b2;
		width: 100%;
		bottom: -5px;
	}
	.why-us .icon-box a{
		font-size: 16px;
	}
	.glancebox p {
		font-size: 22px;
		line-height: 30px;
		border-right: 0px solid #a39eae;
		border-bottom: 1px solid #a39eae;
	}
	.stats .stats-item{
		display: block !important;
	}
	.stats img{display: inline-block;}
	.mono-logo{
		width: 100%;
        text-align: center;
	}
	.stats .stats-item p {
		font-size: 24px;
	}
	.stats .stats-item span{
		padding-left: 0px;
		font-size: 34px;
	}
	.stats .stats-item .mono-logo img {
		width: 100px;
	}
	.glancebox h2 {
        font-size: 42px;
		line-height: 42px;
		padding-top: 20px;
    }
	.agency .country_icons .txt{
		text-align: center;
		font-size: 16px;
	}
	.agency .country_icons .txt span{
		display:block;
		text-align:center;
		padding-top: 10px;
	}
	.agency .country_icons img{
		padding-right: 0px;
		width: 80px;
	}	
	.agency .country_icons .txt.abhi{
		width: 33%;
		
	}
	.hero{min-height: auto;padding: 100px 0;}
	.hero .desktop{display:none;}
	.hero .slide_second h2{
		/* font-size: 28px; */
	}
	.hero .slide_second:after{
		display:none;
	}
	
	.hero .slide_second:before{
		display:none;
	}
	.hero .slide_second {
		padding: 0px 0px;
	}
	.bottom_slide{display:block;}
	.bottom_slide .slide_third p{
		padding: 20px 20px 50px !important;
	}
	
	.bottom_slide .slide_third:before{
		background: none;
	}
	.uppside{display:block;}
	.lowside{display:none;}
	
	/* .abstract {
		overflow-y: scroll;
		width: 100%;
	}
	.abstract img{
		width: 1140px;
	} */
		.abstract {display:none;}
		.slidescroll{display:block;}
		.outer{border: 1px solid;}

		.srcl {
			display: flex;
			margin: auto;
			width: 1100px;
			margin: 10px auto;
			justify-content: space-between;
		}

		.srcl div {
			border: 0px solid #888;
			padding: 5px;
			width: 80px;
			position: relative;
			margin-right:5px;
			/* background:#e1e1e1; */
		}
		
		.srcl div img{width:auto;}

		.slide-sample{
			margin: auto;
			position: relative;
			display: table;
		}

		.slideouter {
			max-width: 740px;
			overflow-x: scroll;
			margin: auto;
			display: flex;
			width: 100%;
		}

		.preSlide {
			left: 0px;
			position: absolute;
			bottom: 2px;
			font-size: 27px;
			color: #5e2fd0;
			z-index:99;
		}

		.nextSlide {
			right: 0px;
			position: absolute;
			bottom: 2px;
			font-size: 27px;
			color: #5e2fd0;
			z-index:99;
		}
		
	
	.m-scroll span{width: 100%; }
	.m-scroll span img{width:1240px; animation: scrollText 20s infinite linear;}

	@keyframes scrollText {
		from {
			transform: translateX(0%);
		}
		to {
			transform: translateX(-50%);
		}
	}
	
	.content_bx h1 {
		font-size: 36px;
		margin-bottom: 30px;
	}
	.content_bx h1:after{
		width: 106px;
	}
	
	.humint_area h4 {
		font-size: 26px;
	}
	.humint_area p{
		font-size: 16px;
	}
	.humint_area ul li {
		font-size: 16px;
	}
	.humint_area {
		padding: 40px 0px;
	}
	.humint_area .lft_head h2{
		font-size: 28px;
	}
	.humint_area .lft_head p{
		font-size: 18px;
	}
	.humint_area .rgt_txt img{
		width:50%;
	}
	.humint_area .lft_head {
		padding: 0px;
	}
	.humint_area .rgt_txt p{
		font-size: 22px;
	}
	.humint_area .rgt_txt {
		padding: 0px 0px;
		text-align: center;
	}
	.humint_area .empowering_box{
		padding: 40px 15px;
	}
	.our_approach .approach_circle img{
		display: none;
	}
	.our_approach_area h2 {
		font-size: 36px;
	}
	.empowering_box p{
		font-size: 18px;
	}
	.empowering_box h1{
		padding-bottom: 20px;
		font-size: 30px;
	}
	.empowering_box h1:after{
		border-right: 0px solid #ffffff;
	}
	.empowering_box h4{
		padding-bottom: 20px;
		font-size: 30px;
	}
	.empowering_box h4:after{
		border-right: 0px solid #ffffff;
	}
	.humint_area .commercial h2 {
		font-size: 36px;
	}
	.download .download-form button[type=submit]{
		width: 100%;
	}
	.get-in-touch h1 {
		font-size: 38px;
	}
	.get-in-touch h3 {
		font-size: 38px;
	}
	
	
	.three_zero .content_bx .zero_area {
		padding:35px 25px;
	}
	.three-zero-section .service-item h3 {
		font-size: 28px;
	}
	
	.three_zero .content_bx .lft_head h1 {
        font-size: 36px;
    }

	.three_zero .content_bx .zero_area .lft_head p{
	font-size: 19px;
	}

	.three_zero .content_bx .zero_area .lft_head h2 {
        font-size: 26px;
    }
	
	.three-zero-services .service-item p {
        font-size: 16px;
		line-height: 24px;
    }
	.three-zero-services .service-item h4 {
        font-size: 20px;
    }
	
	.three-zero-section h2 {
        font-size: 34px;
    }
	
	.three-zero-section p{
        font-size:18px;
    }
	.three-zero-section .service-item h3{
		font-size:20px;
	}
	
	.three-zero-section .service-item p {
		font-size: 16px;
	}
	
	.three-zero-section .service-item{
		display: block;
	}
	.three-zero-section .service-item .icon{
		margin-right: 0px;
		margin-bottom: 25px;
	}
	
	canvas#spiders{display:none;}
	
    .glancebox .col-xl-8.col-md-8{width: 100%;}
	.glancebox .col-xl-4.col-md-4{width: 100%;}
	
	.three_zero .content_bx .zero_area .rgt_txt img {
		width: 40%;
		left: -25px;
	}
	
	.three_zero .content_bx .zero_area .rgt_txt{display:none;}
	
	.get-in-touch .col-xl-10.col-md-6{
		width: 100%;
	}
	
	.confrence_area .col {
        margin-bottom: 70px;
        width: 50%;
    }
	
}


@media (max-width: 576px) {
    .slideouter {
        max-width: 360px;
	}
	.three-zero-section p {
        font-size: 16px;
    }
	
	.team .team-title{
		padding: 40px 15px;
		width: 95%;
	}
	
	.three_zero .content_bx .zero_area {
		padding:35px 15px;
	}
	
	.conduct_box .bgbox{
		padding: 20px 25px;
		min-height:100vh;
	}
	
	.conduct_box .item-content{
		border-bottom: 1px solid #F8F8F8 !important;
	}
	.conduct_box .brand-item{
		border-right: 0px solid #F8F8F8;
		min-height: auto;
	}
	
	.conduct_box .brand-item:last-of-type, .conduct_box .brand-item:nth-of-type(5){
		border-right: 0px solid #F8F8F8;
	}
	
	.conduct_box .item-content{
		padding: 20px 0px;
		height: auto;
	}
	
	.diffrence .col-sm-4{
		width: 50%;
	}
	
	.get-in-touch .php-email-form .uploadFile{
		width: 100%;
	}
	
	.hero h1 {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 30px;
    }
	.hero h2 {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 30px;
    }
	.press h1 {
        font-size: 30px;
    }
	.press h3 {
        font-size: 30px;
    }
	
	.confrence_area .col {
        margin-bottom: 70px;
        width: 100%;
    }
	
	.get-in-touch 1 {
        font-size: 30px;
    }
	.get-in-touch h3 {
        font-size: 30px;
    }
	
}
