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

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

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

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

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

a {
  color:#38C8A1;
  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: "Inter", sans-serif;
}

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

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

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

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

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

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

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

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

.header .logo img {
  
}

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #414141;
  font-size: 14px;
 
  border-radius: 4px;
  transition: 0.3s;
 
}
.btn-getstarted a {
    color: #414141;
    margin: 0px 0px 0px 4px;
}
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #38C8A1;
 
}

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

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Index Page Header
------------------------------*/
.index-page .header { background:none!important
}
 .header { background:none!important
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
 background-color:#fff!important;
}
.index-page.scrolled .logo img {
    width: 60%;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #321644; font-size: 16px; font-family: Inter; font-weight: 400; text-transform: uppercase; line-height: 24px;
    padding: 18px 15px;
    
    
   
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color:#38C8A1;
  }

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

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color:#38C8A1;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

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

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

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

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

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

.footer .footer-about .logo img {
  max-height: 100px;
  margin-right: 6px;
}

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

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

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

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

.footer .footer-links {
  margin-top: 40px;
}

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

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

.footer .footer-links ul li {
 float: left; margin-right:9px;
}

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

.footer .footer-links ul a {
  color: #fff;
  display: inline-block;
  line-height: 1; margin-right:12px;
}

.footer .footer-links ul a:hover {
  color:#38C8A1;
}

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

.footer .footer-newsletter .newsletter-form {
  
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s; height:60px; background: white; box-shadow: 0px 2px 15px rgba(33, 36, 41, 0.10); border-radius: 25px
}

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

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

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
    font-size: 16px;
    background: url(../img/input.svg) left top no-repeat;
    width: 28.04px;
    height: 24px;
    text-indent: -999px;
    margin: 12px 16px 0px 0px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  
}

.footer .copyright {
    padding: 16px 0px;
}

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

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

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

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

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

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

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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

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

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

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

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

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

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

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

.hero:before {
 
}

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

.hero h2 {
 color: #321644;
    font-size: 64px;
    font-family: Inter;
    font-weight: 700;
    line-height: 76.80px;
    margin-top: 100px; padding-left:20px;
}

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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



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
















.btn-getstarted ul{ margin:0px; padding:0px;}
.btn-getstarted ul li{ list-style:none}
.btn-getstarted a{ color:#414141;}


.btnfind{height: 60px;
    background: #38C8A1;
    border-radius: 8px;
    background: #38C8A1;
    color: white;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    padding: 0px 59px;
    margin-top: 40px; margin-left:20px;}
.btnfind a{ color:#fff; line-height:60px;}

.right-slide img{position: static;}

.formarea{height: 764px;
    background: white;
    box-shadow: -2px 2px 30px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    margin-top: 21px; padding: 120px;}
.formarea h2{text-align: center; color: #321644; font-size: 42px; font-family: Inter; font-weight: 700; line-height: 50.40px; margin-top:120px;}	
.formarea select{ border:0px; width:100%;height: 80px; background: #F6F6F6; border-radius: 10px;color: #8A8787; font-size: 18px; font-family: Inter; font-weight: 700; line-height: 20px; padding:0px 20px}
.formarea input[type="text"]{ border:0px; width:100%;height: 80px; background: #F6F6F6; border-radius: 10px;color: #8A8787; font-size: 18px; font-family: Inter; font-weight: 700; line-height: 20px;padding:0px 20px}
.popover-rea{ position:relative}
.serch-bozx{position: absolute;
    right: 40px;
    top: 26px;}
	
.btnlogin a{ display:block;height: 80px; background: #F6F6F6; border-radius: 16px; list-style:80px;  text-align:center;color: #321644; font-size: 18px; font-family: Inter; font-weight: 700; line-height: 78px;}
.btnlogin a:hover{background:#A0FFE5;}

.custom-select::after {
   content: '\F282';
    position: absolute;
    top: 50%;
    right: 31px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 33px;
    color: #38C8A1;
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
}
.video-area{    height: 496px;
    background: #F6F6F6;
    border-radius: 10px; overflow:hidden;}
.diescobe{ margin:30px 30px 0px 30px}
.diescobe p{ padding-top:10px; color: #515151; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; width:100%; overflow:hidden; }
.diescobe span{ float:left;text-align: center; color: #321644; font-size: 42px; font-family: Inter; font-weight: 700; line-height: 50.40px;}
.diescobe small{ float:right;text-align: right; color: #321644; font-size: 20px; font-family: Inter; font-weight: 700; line-height: 24px;}
.images-pro{ width: 100%;
    text-align: center;
    margin-bottom: 20px;
    height: 150px;}
select{
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none; /* Remove default arrow in WebKit browsers */
    -moz-appearance: none; /* Remove default arrow in Firefox */
   
}
.option-ares{ margin:120px 0px}
.option-ares h2{text-align: center; color: #321644; font-size: 42px; font-family: Inter; font-weight: 700; line-height: 50.40px; margin-bottom:50px;}
.sliderbox{ width:93%}
.candidate{ margin-bottom:120px}
.sliderbox h3{ text-align: center; color: #321644; font-size: 24px; font-family: Inter; font-weight: 700; line-height: 24px; }
.sliderbox h4{ text-align: center; color: #545353; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; }
.sliderbox ul{ margin:0px; padding:0px}
.sliderbox ul li{ height: 40px; background: #F3F3F3; border-radius: 8px; list-style:none; padding:10px 20px; margin:0px 0px 8px 0px;  text-align:center; line-height:40px; display:block;}
.sliderbox ul li span{text-align: center; color: #626262; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; float:left}
.sliderbox ul li small{text-align: center; color: #321644; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; float:right}
.sidebare{background: white;
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    margin: 20px 0px;
   padding: 20px 20px 20px 20px;
    margin: 10px 10px;
    width: 100%;}
.sidebare input[type="text"] {
    border: 0px;
    width: 100%;
    height: 60px;
    background: #F6F6F6;
    border-radius: 10px;
    color: #8A8787;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px; width:100%; padding:0px 20px}
	.sidebare .serch-bozx {
    position: absolute;
    right: 19px;
    top: 17px;
}
    .sidebare h3{color: #4F4D4D; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; }	
.link-area{ text-align:center}
.link-area a{ text-align:center;text-align: center; color: #38C8A1; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; margin-top:15px; display:block;}

.option-ares .container{  position:relative;}
.swiper-container{ overflow:hidden; padding:30px 0px}
.swiper-button-prev{ background:url(../img/slider-arrowleft.svg) left top no-repeat; width:100px; height:100px; font-size:0px; text-indent:-9999px; left:-16px;}
.swiper-button-next{ background:url(../img/slider-arrowright.svg) left top no-repeat; width:100px; height:100px;font-size:0px;text-indent:-9999px;right:-57px;}
.sliderbox{ background: white; box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.15); border-radius: 24px; margin:20px 0px; padding:40px 50px 20px 50px; margin:10px 10px}
.alljob{ text-align:center;text-align: center; color: #321644; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; }
.professions{ margin:80px 0px 90px 0px; text-align:center;}
.professions h2{text-align: center; color: #321644; font-size: 42px; font-family: Inter; font-weight: 700; line-height: 50.40px; margin-bottom:50px;}
.alljob a{ color: #321644; text-decoration:underline}


.iner-show{text-align: center;
    background: white;
    box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    padding: 34px 0px;
    margin-bottom: 20px;}
.iner-show span{ display: block; text-align:center;text-align: center; color: #321644; /*font-size: 24px;*/ font-size: 18px;font-family: Inter; font-weight: 700; line-height: 24px; margin-top:20px;}

.professions .alljob{ margin-top:30px;}




.jobs-location{ padding:90px 0px}
.jobs-location h2{text-align: center; color: #321644; font-size: 42px; font-family: Inter; font-weight: 700; line-height: 50.40px; margin-bottom:50px;}
.cont-box{
    height: 100px;
    background: #F6F6F6;
    border-radius: 16px;
    margin: 0px 0px 0px 22px;
    padding: 40px 20px;
    line-height: 60px;
    display: block; margin-bottom:30px;
    }



.cont-box span{color: #321644;font-size: 15px;font-weight: 700;line-height: 24px;float:left;/* line-height: 90px; */}
.cont-box span img{float:left;margin-right: 9px;}
.cont-box small{color: #321644;font-size: 15px;font-weight: 700;line-height: 24px;float: right;}

.diescobe span{ text-align:left}
.who-we-area{ padding:60px 0px 0px 70px}
.who-we-area h2{color: #321644; font-size: 42px; font-family: Inter; font-weight: 700; line-height: 50.40px;}
.who-we-area p{color: black; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 30px;}
.who-we-area ul{ margin:0px 0px 0px 20px; padding:0px}
.who-we-area ul li{color: black; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 30px; margin:0px; padding:0px;}
.faq { margin:110px 0px 120px 0px}
.faq h2{color: #321644; font-size: 42px; font-family: Inter; font-weight: 700; line-height: 50.40px; margin-bottom:50px;}
#clients{ margin-top:80px;}


.panel-default>.panel-heading {
  color: #333;
  background-color: #fff;
  border-color: #e4e5e7;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.panel-default>.panel-heading a {
  display: block;
  padding: 10px 15px;
}

.panel-default>.panel-heading a:after {
  content: "";
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right;
  transition: transform .25s linear;
  -webkit-transition: -webkit-transform .25s linear;
}
.accordion-header {
   margin: 0px !important;
    overflow: hidden;
    border-radius: 16px 16px 0px 0px;
}
.panel-default>.panel-heading a[aria-expanded="true"] {
  background-color: #eee;
}

.panel-default>.panel-heading a[aria-expanded="true"]:after {
  content: "\2212";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.panel-default>.panel-heading a[aria-expanded="false"]:after {
  content: "\002b";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion-option {
  width: 100%;
  float: left;
  clear: both;
  margin: 15px 0;
}

.accordion-option .title {
  font-size: 20px;
  font-weight: bold;
  float: left;
  padding: 0;
  margin: 0;
}

.accordion-option .toggle-accordion {
  float: right;
  font-size: 16px;
  color: #6a6c6f;
}

.accordion-option .toggle-accordion:before {
  content: "Expand All";
}

.accordion-option .toggle-accordion.active:before {
  content: "Collapse All";
}
.accordion-item{ border:0px;}
.accordion-button{color: #212121;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px;
    background: #F6F6F6;
    border-radius: 16px;
    border: 0px;
    min-height: 79px;}
.accordion-body{color: #515151; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px;}
.accordion-button:not(.collapsed){border-radius: 16px 16px 0px 0px;}
.accordion-button:not(.collapsed){background: #F6F6F6 !important;
    box-shadow: 0px 0px 0px !important;
    padding-bottom: 0px;}
.show{background: #F6F6F6;
    border-radius: 0px 0px 16px 16px;}

.accordion-item {
    border: 0px;
    margin-bottom: 16px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{border-radius: 16px!important;}

.vodro-rae{ margin:0px 0px 120px 0px}

.copyright{ text-align:center; background:#1A1A1A; text-align:center;}
#footer{ position: relative;}
#footer:before{ background:url(../img/shadow1.png) left top no-repeat; position:absolute; left:0px; top:-45px; content:""; width:100%; height:100%; background-size: contain;}
#footer:after{background: url(../img/shadow2.png) right top no-repeat;
    position: absolute;
    right: 0px;
    top: -53px;
    content: "";
    width: 100%;
    height: 100%;
    background-size: contain;}


.innerpage{ margin:120px 0px 0px 0px; position:relative; margin-bottom:80px;}
.caption{ text-align:center; position:absolute; left:0px; right:0px; margin:0 auto; top:100px} 
.caption h3{color: white; font-size: 64px; font-family: Inter; font-weight: 700; line-height: 76.80px; }
.caption p{color: #E9E9E9; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; }
.heading-area{}
.heading-area span{color: #838383; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; margin-bottom:10px;}
.heading-area h2{color: #321644; font-size: 45px; font-family: Inter; font-weight: 700; line-height: 57.60px; margin-bottom:15px; }
.heading-area p{color: #565656; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px;}
.inner-blog-about{ padding:80px 0px 0px 90px; text-align:left}
ul.teck{ margin:0px; padding:0px;}
ul.teck li{ list-style:none; margin-bottom:10px;}
ul.teck li img{ margin-right:5px;}
.inner-blog-about h4{    color: #3A3A3A;
    font-size: 18px;
    font-family: Inter;
    font-weight: 600;
    line-height: 24px;
    margin-top: 21px;}
	
.process-area{ margin:0px 0px 90px 0px}	
.process-area .heading-area{ text-align:center; margin-bottom:60px;}
.process-show{ background: white; box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.15); border-radius: 24px; text-align:center;  margin-bottom:30px; padding:30px 30px 30px 30px}
.process-show h3{color: #4A4A4A; font-size: 24px; font-family: Inter; font-weight: 600; line-height: 14px; display:block; margin-bottom:20px; display:block }
.process-show p{text-align: center; color: black; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; padding:0px 19px }
.process-show img{ margin-bottom:60px; margin-top:30px;}
.people-how .container{/* background:url(../img/Testimonial.jpg) center top no-repeat;*/background-size: cover; overflow:hidden;}

.meet-our{ text-align:center; margin-top:90px; margin-bottom:130px;}
.heading-area{ text-align:center; margin-bottom:60px;}
.meet-team{ background: white; box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.15); border-radius: 24px; padding:40px 30px 30px 30px}
.meet-team h4{color: #321644; font-size: 24px; font-family: Inter; font-weight: 700; line-height: 24px; margin-top:30px}
.meet-team span{color: #2D2D2D; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; display:block;}
.meet-team a{color: #6A6666; font-size: 16px; font-family: Inter; font-weight: 400; line-height: 24px; margin-top:80px; display:block}


.slider1{text-align: center;
   
    margin: 0 auto;
    }
.slider1 img{ margin-bottom:20px}	
.slider1 span{ display:block; font-weight:bold}
.slider1 small{ display:block;}
img{ max-width:100%; height:auto;}



.accordion {
  
}

.accordion ul {
 
  margin: 0;
  padding: 0;
}

.accordion .pagenav {
  position: relative;
  margin-bottom: 10px;
  list-style: none;
}

.accordion .pagenav a {
  text-decoration: none;
  color: #323232;
}

.accordion .pagenav ul {
  margin: 0;
}

.accordion .pagenav li {
 margin-bottom: 3px;
    list-style: none;
    line-height: 26px;
}

.accordion .pagenav h4 {
  color: #313030; font-size: 20px; font-family: Inter; font-weight: 600; line-height: 24px; border-bottom:2px solid #CACACA ; padding-bottom:10px;
}
.accordion .pagenav li input[type="checkbox"]{height: 26px;
    float: left;
    width: 20px;
    margin-right: 8px;}
.accordion .pagenav h4 i {
  font-size: 55px;
    position: absolute;
    right: -11px;
    line-height: 20px;
    transition: .2s;
    -webkit-transition: .2s;
    -ms-transition: .2s;
    top: -13px;
}

.accordion .pagenav.open h4 i {

}

.accordion a:hover, .accordion .pagenav li.current_page_item a {
  text-decoration: underline;
}

.similar-cand{ margin-bottom:90px;}


.toppresiuse{     overflow: hidden;
   
    float: right;
    width: 91%;}

.toppresiuse .backto{ float:left}
.toppresiuse .backto a{height: 42px;
    background: #F6F6F6;
    border-radius: 8px;
    color: #555454;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px;
    display: inline-block;
    line-height: 41px;
    padding: 0px 21px; }
	
	
	
	
.toppresiuse .previous{ float: right}

.toppresiuse .previous .pre{     float: left;
    margin-right: 13px;}
.toppresiuse .previous .pre a{height: 42px;
    background: #F6F6F6;
    border-radius: 8px;
    color: #555454;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px;
    display: inline-block;
    line-height: 41px;
    padding: 0px 21px;}
.toppresiuse .backto a:hover{ background:#38C8A1; color:#fff}	
.toppresiuse .previous .pre a:hover{ background:#38C8A1; color:#fff}	
.toppresiuse .previous .next{ float:left;}

.toppresiuse .previous .next a{height: 42px;
    background: #F6F6F6;
    border-radius: 8px;
    color: #555454;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px;
    display: inline-block;
    line-height: 41px;
    padding: 0px 21px;}



.toppresiuse .previous .next a:hover{ background:#38C8A1; color:#fff}	


ul.list-info{margin: 20px 0px 0px 0px;
    padding: 0px;
    float: right;
    width: 91%;}
ul.list-info li{ list-style:none;height: 80px; background: #F6F6F6; border-radius: 16px; overflow:hidden; margin-bottom:10px;color: #321644; font-size: 18px; font-family: Inter; font-weight: 700; line-height: 20px; }
ul.list-info li span{     background: #A0FFE5;
    display: block;
    height: 80px;
    width: 246px;
    height: 80px;
    text-align: left;
    color: #321644;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px;
    line-height: 81px;
    padding: 0px 29px; float: left}


ul.list-info li small{    
    
    height: 80px;
    width: 246px;
    height: 80px;
    text-align: left;
    color: #321644;
    font-size: 18px;
    font-family: Inter;
    font-weight: 700;
    line-height: 20px;
    line-height: 81px;
    padding: 0px 29px;}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
    font-size: 1.25em;
    font-weight: 700;
    color: white;
    background-color: black;
    display: inline-block;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background-color: red;
}

.inputfile + label {
	cursor: pointer; /* "hand" cursor */
}
.inputfile:focus + label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 80%;
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;color: #555454; font-size: 18px; font-family: Inter; font-weight: 700; line-height: 20px;
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}


/* style 1 */

.inputfile-1 + label {
       width: 224px;
    height: 60px;
    background: #F6F6F6;
    border-radius: 8px;
    line-height: 39px;
    text-align: center; margin-top:30px;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
    background-color: #e8e6e6;
}


/* style 2 */

.inputfile-2 + label {
    color: #d3394c;
    border: 2px solid currentColor;
}

.inputfile-2:focus + label,
.inputfile-2.has-focus + label,
.inputfile-2 + label:hover {
    color: #722040;
}


/* style 3 */

.inputfile-3 + label {
    color: #d3394c;
}

.inputfile-3:focus + label,
.inputfile-3.has-focus + label,
.inputfile-3 + label:hover {
    color: #722040;
}


/* style 4 */

.inputfile-4 + label {
    color: #d3394c;
}

.inputfile-4:focus + label,
.inputfile-4.has-focus + label,
.inputfile-4 + label:hover {
    color: #722040;
}

.inputfile-4 + label figure {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d3394c;
    display: block;
    padding: 20px;
    margin: 0 auto 10px;
}

.inputfile-4:focus + label figure,
.inputfile-4.has-focus + label figure,
.inputfile-4 + label:hover figure {
    background-color: #722040;
}

.inputfile-4 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}


/* style 5 */

.inputfile-5 + label {
    color: #d3394c;
}

.inputfile-5:focus + label,
.inputfile-5.has-focus + label,
.inputfile-5 + label:hover {
    color: #722040;
}

.inputfile-5 + label figure {
    width: 100px;
    height: 135px;
    background-color: #d3394c;
    display: block;
    position: relative;
    padding: 30px;
    margin: 0 auto 10px;
}

.inputfile-5:focus + label figure,
.inputfile-5.has-focus + label figure,
.inputfile-5 + label:hover figure {
    background-color: #722040;
}

.inputfile-5 + label figure::before,
.inputfile-5 + label figure::after {
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
}

.inputfile-5 + label figure::before {
    border-top: 20px solid #dfc8ca;
    border-left: 20px solid transparent;
}

.inputfile-5 + label figure::after {
    border-bottom: 20px solid #722040;
    border-right: 20px solid transparent;
}

.inputfile-5:focus + label figure::after,
.inputfile-5.has-focus + label figure::after,
.inputfile-5 + label:hover figure::after {
    border-bottom-color: #d3394c;
}

.inputfile-5 + label svg {
    width: 100%;
    height: 100%;
    fill: #f1e5e6;
}


/* style 6 */

.inputfile-6 + label {
    color: #d3394c;
}

.inputfile-6 + label {
    border: 1px solid #d3394c;
    background-color: #f1e5e6;
    padding: 0;
}

.inputfile-6:focus + label,
.inputfile-6.has-focus + label,
.inputfile-6 + label:hover {
    border-color: #722040;
}

.inputfile-6 + label span,
.inputfile-6 + label strong {
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.inputfile-6 + label span {
    width: 200px;
    min-height: 2em;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
}

.inputfile-6 + label strong {
    height: 100%;
    color: #f1e5e6;
    background-color: #d3394c;
    display: inline-block;
}

.inputfile-6:focus + label strong,
.inputfile-6.has-focus + label strong,
.inputfile-6 + label:hover strong {
    background-color: #722040;
}

.date-over{ position: absolute;
    top: 55px;
    left: 0px;
    position: absolute;
    background: #38C8A1;
    border-radius: 4px;
    transform: rotate(-90deg);
    transform-origin: 0 0;
    color: white;
    font-size: 14px;
    font-family: Inter;
    font-weight: 400;
    line-height: 14px;
    padding: 2px 7px;}
.process-show{ position:relative}
.btn-getstarted a:hover{ color:#38C8A1}
@media screen and (max-width: 50em) {
	.inputfile-6 + label strong {
		display: block;
	}
}


@media (max-width: 767px) {
.btn-getstarted a{font-size: 13px;}
ul.list-info{ width:100%; float:none}
.toppresiuse{ width:100%; float:none;}
ul.list-info li span{width: 146px;font-size: 14px;}
ul.list-info li small{font-size: 14px;}
  .hero h2 {
   font-size: 40px;
        line-height: 49px;margin-top: 0px;
  }
.header .logo img {
    width: 51%;
}
  .hero p {
    font-size: 18px;
  }
  .formarea{ height:auto;  padding:20px;margin: 10px 10px;
        padding: 20px 30px;
        width: 95%;}
  .btnlogin{ margin-bottom:20px;}
  .formarea h2{margin-top: 50px;font-size: 26px;}
  .popover-rea {
    position: relative;
    margin-top: 20px !important;
}
.option-ares h2{font-size: 26px;line-height: 43.4px;
    margin-bottom: 0px;}
	.jobs-location h2{font-size: 26px;}
	.cont-box{margin: 0px 0px 30px 0px;}
	.who-we-area{padding: 60px 0px 0px 0px!important;}
	.who-we-area h2{font-size: 26px;}
	.faq h2{font-size: 26px;margin-top: 80px;}
	.flagemar{margin-top: 19px;}
	.cont-box span{ font-size:12px;}
	.cont-box small{ font-size:12px;}
	.mobile-nav-toggle{ color:#38C8A1}
	.swiper-button-prev{ left:12px; display:none}
	.swiper-button-next{ right:-30px; display:none}
	.diescobe span{ font-size:20px;line-height: 29.4px;}
	.diescobe small{ font-size:15px}
	#clients{ margin:0px 20px}
	.diescobe{ margin:30px 0px 0px 0px}
	.option-ares {
    margin: 0px 0px;
}
.professions h2{ font-size:26px;}
.right-slide{ margin-top:20px;}
	.innerpage {
    margin: 69px 0px 0px 0px;
    position: relative;
    margin-bottom: 30px;
}
.caption {
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 25px;
}
.caption h3 {
    color: white;
    font-size: 15px;
    font-family: Inter;
    font-weight: 700;
    line-height: 0px;
}
.sidebare{ margin:0px;}
.sliderbox{margin: 10px 10px;
        padding: 20px 30px;
        width: 95%;}
.inner-blog-about{padding: 10px 0px 0px 0px;}
.toppresiuse .backto a{ font-size:12px;}
.toppresiuse .previous .pre a{font-size: 12px;}
.box{margin-bottom: 30px;}
.toppresiuse .previous .next a{font-size: 12px;}
.heading-area h2{font-size: 26px;line-height: 29.6px;

   }
   .meet-team{ margin-bottom:20px}
   .faq {
    margin: 110px 0px 40px 0px;
}
.vodro-rae {
    margin: 0px 0px 50px 0px;
}
.hero{background: no-repeat;}
}




@media (min-width:768px) and (max-width:1024px){
  
  
  ul.list-info{ width:100%; float:none}
.toppresiuse{ width:100%; float:none;}
ul.list-info li span{width: 146px;font-size: 14px;}
ul.list-info li small{font-size: 14px;}
  .hero h2 {
   font-size: 40px;
        line-height: 49px;margin-top: 0px;
  }
.header .logo img {
    width: 51%;
}
  .hero p {
    font-size: 18px;
  }
  .formarea{ height:auto;  padding:20px;margin: 10px 10px;
        padding: 20px 30px;
        width: 95%;}
  .btnlogin{ margin-bottom:20px;}
  .formarea h2{margin-top: 50px;font-size: 26px;}
  .popover-rea {
    position: relative;
    margin-top: 20px !important;
}
.option-ares h2{font-size: 26px;line-height: 43.4px;
    margin-bottom: 0px;}
	.jobs-location h2{font-size: 26px;}
	.cont-box{margin: 0px 0px 30px 0px;}
	.who-we-area{padding: 60px 0px 0px 0px!important;}
	.who-we-area h2{font-size: 26px;}
	.faq h2{font-size: 26px;margin-top: 80px;}
	.flagemar{margin-top: 19px;}
	.cont-box span{ font-size:12px;}
	.cont-box small{ font-size:12px;}
	.mobile-nav-toggle{ color:#38C8A1}
	.swiper-button-prev{ left:12px; display:none}
	.swiper-button-next{ right:-30px; display:none}
	.diescobe span{ font-size:20px;line-height: 29.4px;}
	.diescobe small{ font-size:15px}
	#clients{ margin:0px 20px}
	.diescobe{ margin:30px 0px 0px 0px}
	.option-ares {
    margin: 0px 0px;
}
.professions h2{ font-size:26px;}
.right-slide{ margin-top:20px;}
	.innerpage {
    margin: 69px 0px 0px 0px;
    position: relative;
    margin-bottom: 30px;
}
.caption {
  text-align: center;
        position: absolute;
        left: 0px;
        right: 0px;
        margin: 0 auto;
        top: 45px;
}
.caption h3 {
    color: white;
        font-size: 41px;
        font-family: Inter;
        font-weight: 700;
        line-height: 30px;
}
.meet-team{padding: 40px 10px 30px 10px;}
.process-show{padding: 30px 10px 30px 10px;}
.sidebare{ margin:0px;}
.sliderbox{margin: 10px 10px;
        padding: 20px 10px;
        width: 95%;}
.inner-blog-about{padding: 10px 0px 0px 0px;}
.toppresiuse .backto a{ font-size:12px;}
.toppresiuse .previous .pre a{font-size: 12px;}
.box{margin-bottom: 30px;}
.sliderbox h3{font-size: 21px;}
.toppresiuse .previous .next a{font-size: 12px;}
.heading-area h2{font-size: 26px;line-height: 29.6px;

   }
   .meet-team{ margin-bottom:20px}
   .faq {
    margin: 110px 0px 40px 0px;
}
.vodro-rae {
    margin: 0px 0px 50px 0px;
}
.hero{background: no-repeat;}
  .header .logo img {
    width: 58%;
}
.mobile-nav-toggle{ color:#38C8A1!important}
.hero {
    width: 100%;
    min-height: 40vh;
    position: relative;
    padding: 90px 0 0px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 20px;
    padding-bottom: 50px;
    border: 0px;background: no-repeat;
}
.heading-area {
    text-align: center;
    margin-bottom: 10px;
}
}






.pagination{    margin: 70px 0px 0px 0px;
    /* display: flex; */
    gap: 6px;
    text-align: center;
    display: block;}
	
.serch-bozx button{ border:0px;}	
.page-numbers{  background: #000;
    color: #fff;
    padding: 8px 16px 8px 13px;
    border-radius: 6px;
    font-size: 14px;}	
.current{    background: #38C8A1;
    color: #fff;
    padding: 8px 16px 8px 13px;
    border-radius: 6px;
    font-size: 14px;}	
	
.next{ background:none; color:#38C8A1}	


body.rtl {
    font-family: "Cairo", sans-serif !important;
}

body.rtl .navmenu a,
body.rtl .navmenu a:focus,
body.rtl .hero h2,
body.rtl .btnfind,
body.rtl .sliderbox h3,
body.rtl .footer .footer-contact p,
body.rtl .heading-area h2,
body.rtl .heading-area span,
body.rtl .heading-area p,
body.rtl .caption h3,
body.rtl .caption p,
body.rtl ul.list-info li small,
body.rtl ul.list-info li span,
body.rtl .footer .copyright,
body.rtl .who-we-area h2,
body.rtl .who-we-area ul li,
body.rtl .who-we-area p,
body.rtl .faq h2,
body.rtl .accordion-button,
body.rtl .accordion-body,
body.rtl .alljob,
body.rtl .diescobe span,
body.rtl .diescobe small,
body.rtl .toppresiuse .previous .next a,
body.rtl .toppresiuse .previous .pre a,
body.rtl .inputfile-1 + label,
body.rtl .diescobe p,
body.rtl .formarea h2,
body.rtl .btnlogin a,
body.rtl .formarea input[type="text"],
body.rtl .formarea select,
body.rtl .professions h2,
body.rtl .jobs-location h2,
body.rtl .toppresiuse .backto a,
body.rtl .process-show h3,
body.rtl .inner-blog-about h4,
body.rtl .option-ares h2,
body.rtl .iner-show span,
body.rtl .footer .copyright p,
body.rtl .footer .footer-contact p,
body.rtl .date-over,
body.rtl .process-show p,
body.rtl .link-area a,
body.rtl .accordion input[type="submit"],
body.rtl .sliderbox h4,
body.rtl .meet-team h4,
body.rtl .meet-team span,
body.rtl .sidebare input[type="text"] {
    font-family: "Cairo", sans-serif !important;
}

body.rtl .sliderbox ul li small {
    float: left; font-family: "Cairo", sans-serif !important;
}

body.rtl .sliderbox ul li span {
    float: right; font-family: "Cairo", sans-serif !important;
}
body.rtl ul.list-info li span{ float: right;
    text-align: right;}
body.rtl ul.list-info li small{float: right;
    text-align: right;}
body.rtl .accordion .pagenav h4 {
    padding-right: 0px; font-family: "Cairo", sans-serif !important;
}

body.rtl .footer .footer-links ul li{float: right;}
body.rtl .diescobe span{ text-align:right;}
body.rtl .accordion .pagenav li {
    margin-bottom: 3px;
    list-style: none;
    line-height: 26px;
    display: flex;
    gap: 13px;
}

body.rtl .formarea input[type="text"],
body.rtl .formarea select {
    text-align: right;
}

body.rtl .serch-bozx {
 position: absolute;
    left: 21px !important;
    top: 16px;
    right: auto;
    background: no-repeat;
}

body.rtl .custom-select::after{ left:21px!important; right: auto;}
body.rtl .accordion-button:not(.collapsed)::after {
    position: absolute;
    left: 21px;
}

body.rtl .accordion-button::after {
    transition: none;
    position: absolute;
    left: 21px;
}

body.rtl .inner-blog-about {
    padding: 80px 90px 0px 0px;
    text-align: right;
}

body.rtl .accordion .pagenav h4 i {
   left: -11px !important;
    right: auto;

}
body.rtl .cont-box span img {
    float: right;
    margin-left: 9px;
}


body.rtl .sidebare input[type="text"] {
   
    font-family: "Cairo", sans-serif !important;
}
body.rtl .btn-getstarted{margin-left: 7px;}

body.rtl .toppresiuse .backto {
    float: right;
}
body.rtl .process-show{min-height: 334px;}



body.rtl .cont-box span{ float:right}
body.rtl .cont-box small{ float:left}

/* Container Styles */
#user-registration {
  
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    margin-bottom: 60px;padding-top: 48px;
}

#ur-frontend-form {
    padding: 20px;
}

.user-registration-form {
    display: flex;
    flex-direction: column;
}

/* Form Row Styles */
.ur-form-row {
    margin-bottom: 15px;
}

/* Grid Styles */
.ur-form-grid {
    display: flex;
    flex-direction: column;
}

/* Input and Label Styles */
.user-registration-form-row {
    margin-bottom: 10px;
}

.user-registration-form-row--wide {
    width: 100%;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

input.user-registration-Input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Password Group Styles */
.password-input-group {
    display: flex;
    align-items: center;
}

.password-input-group input {
    flex: 1;
}

/* reCAPTCHA Styles */
#ur-recaptcha-node {
    margin-bottom: 15px;
}

/* Button Styles */
.user-registration-Button {
    width: 100%;
    padding: 10px;
    background-color: #38C8A1;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease; margin-bottom:20px;
}

.user-registration-Button:hover {
    background-color: #005f8d;
}

/* Checkbox Styles */
.user-registration-form__label-for-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;gap: 12px;
}

.user-registration-form__input-checkbox {
    margin-right: 10px;
}

/* Link Styles */
.user-registration-LostPassword,
.user-registration-register {
    text-align: center;
    margin-top: 10px; padding-bottom:0px;
}

.user-registration-LostPassword a,
.user-registration-register a {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.user-registration-LostPassword a:hover,
.user-registration-register a:hover {
    color: #005f8d;
}



.ur-frontend-form {
    /* margin-bottom: 30px; */
    /* border: 1px solid #e1e1e1; */
    /* padding: 20px; */
    /* box-sizing: border-box; */
    padding: 0px !important;
}


.ur-frontend-form input[type="submit"]{float: none;
    background: #38C8A1 !important;
    color: #FFF!important;
    border-radius: 5px !important;}
	
.cssProgress .cssProgress-label{ color:#fff;}	





/* General styles for the navigation */
.user-registration-MyAccount-navigation {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
}

.user-registration-MyAccount-navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.user-registration-MyAccount-navigation-link {
    margin-bottom: 10px;
}

.user-registration-MyAccount-navigation-link a {
    color: #0073aa;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.user-registration-MyAccount-navigation-link a:hover {
    background-color: #0073aa;
    color: #fff;
}

/* Styles for the active navigation link */
.user-registration-MyAccount-navigation-link.is-active a {
    background-color: #0073aa;
    color: #fff;
}

/* Specific styles for each link type */
.user-registration-MyAccount-navigation-link--dashboard a::before {
    content: "\F57F "; /* Adding an icon before the Dashboard link */font-family: "bootstrap-icons";position: relative;
    top: 3px;
    left: -5px;
}


.user-registration-MyAccount-navigation-link--edit-password a::before {
    content: "\F44F "; /* Adding an icon before the Edit Password link */font-family: "bootstrap-icons";position: relative;
    top: 3px;
    right:5px;
}


.user-registration-MyAccount-navigation-link--Thetranslationofuser-logouttoArabicis a::before {
    content: "\F1C2 "; /* Adding an icon before the Logout link */font-family: "bootstrap-icons";position: relative;
    top: 3px;
    left: -5px;
}





.user-registration-MyAccount-navigation-link a{ color:#000!important}

.user-registration-MyAccount-navigation-link a:hover {
    background-color: #38C8A1;
    color: #fff !important;
}
#user-registration.vertical .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link.is-active a{border-color: #38C8A1;}
#user-registration .user-registration-MyAccount-navigation ul .user-registration-MyAccount-navigation-link{margin-bottom: 4px;}

.ur-frontend-form{ border:0px;}

.login {max-width: 400px;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 20px !important;}
	
	.people-how .heading-area h2{font-size: 23px;line-height: 35.6px;}
	
	.images-pro img{border-radius: 50%;}
	
	
	.innerpage img{ width:100%}
	body.rtl .toppresiuse .previous .next{margin-right: 13px;}
	
	
 .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: 0px;
    right: auto;
}

.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: -59px;
}

.wpml-ls-menu-item .wpml-ls-flag{border-radius: 3px;width: 25px;}






.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
  height: 100%;
 
}

.carousel-caption{padding-bottom:80px;}

h2{font-size: 60px;}
p{padding:10px}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    opacity:0.6;
}




/**
 * Button
 */
.btn-transparent {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-transparent:hover {
  background-color: #fff;
}

.btn-rounded {
  border-radius: 70px;
}

.btn-large {
  padding: 11px 45px;
  font-size: 18px;
}

/**
 * Change animation duration
 */
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}




.scroll-top.active{ display:none!important}

.swiper-container3{ overflow:hidden;}


.user-registration-page .wpcf7-form p{ padding-bottom:0px;}
.user-registration-page .wpcf7-form input[type="text"]{margin-bottom: 0px!important;}
.user-registration-page .wpcf7-form input[type="email"]{margin-bottom: 0px!important}
.user-registration-page .wpcf7-form input[type="tel"]{margin-bottom: 0px!important;}
.user-registration-page .wpcf7 form{margin-bottom: 80px;}

.wpcf7 form input[type="submit"]{background-color: #38c8a1!important;}

.user-registration-page textarea {
    resize: vertical;
    margin-bottom: 0px !important;
}

.user-registration-pag input[type="file"] {
    cursor: pointer;  margin-bottom: 0px !important;
}
body.rtl .wpcf7 form label{ text-align:right}
body.rtl .wpcf7 form input[type="submit"]{float: right;}

body.rtl .hero h2{ font-size:50px;}

.btn-primary{ background:#38C8A1!important}


.login {margin: 0 auto !important;}
