
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
  --main-color:#FFE7D0;
  --color-gray:#504C4D;
  --color-orange:#F68712;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  line-height: 28px;
  color: #676767;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: var(--main-color);
  color: #fff;
}

::-moz-selection {
  background: var(--main-color);
  color: #fff;
}

.section {

}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 20px 0;
  line-height: 44px;
}

.section-heading h2 em {
  color: var(--main-color);
  font-style: normal;
}

.section-heading h6 {
  color: var(--main-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}


.main-button a:hover {
  background-color: var(--main-color);
  color: #fff;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color:white;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: var(--main-color);
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: var(--main-color);
  border-radius: 50%;
}



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

.background-header {
  background-color: white !important;
  border-radius: 0px 0px 25px 25px;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  position: absolute;
  background-color: transparent;
  top: 66px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  background: transparent;
  display: flex;
  align-items: center;
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

.header-area .main-nav .logo h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.background-header .main-nav .logo,
.background-header .main-nav #search {

}

.header-area .main-nav #search {
  position: relative;
}

.header-area .main-nav #search input {
  background-color: rgba(255, 255, 255, 0.10);
  height: 44px;
  width: 250px;
  border-radius: 23px;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  padding: 0px 20px 0px;
}

.header-area .main-nav #search input::placeholder {
  color: rgba(250, 250, 250, 0.75);
}

.header-area .main-nav #search i {
  position: absolute;
  color: #fff;
  right: 20px;
  top: 15px;
  font-size: 16px;
}

.header-area .main-nav ul.nav {
  border-radius: 0px 0px 25px 25px;
  flex-basis: 100%;
  margin-right: 0px;
  justify-content: start;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  padding-left: 5px;
  padding-right: 5px;
  height: 40px;
  line-height: 40px;
}

.header-area .main-nav .nav li a {
  display: block;
  padding-left: 10px;
  padding-right: 18px;
  border-radius: 20px;
  font-weight: 400;
  font-size: 14px;
  
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: var(--color-gray);
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}



.background-header .main-nav .nav li {

}

.header-area .main-nav .nav li:hover a {
  opacity: 0.8;
}
.header-area .main-nav .nav li a.active {

}

.background-header .main-nav .nav li:hover a {
  opacity: 0.8;
}
.background-header .main-nav .nav li a.active {

}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 26px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--color-orange);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: var(--color-orange);
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: white
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: var(--color-orange);
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: white;
}
.row-flex{
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.background-header .main-nav .menu-trigger.active span:after {
  background-color: var(--color-orange);
}

.header-area.header-sticky .nav li a.active {

}

.visible{
  display:inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 2px;
    padding-right: 2px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .needs-validation{
    max-width: 100% !important;
  }
  .needs-validation{
    margin-bottom: 50px;
  }
  .contact img {
    left: -10px;
}
.after-map iframe{
  height: 500px;
}
.maps-ok{
  top: -40px !important;

  left: 290px !important;
}
.maps-ok i {
  transform: rotate(89deg);
}
.after-map:before{
  content: "";
  width: 475px !important;
  height: 4px !important;
  background: var(--color-orange);
  position: absolute;
  left: 98px !important;
  top: -2px !important;
  border-radius: 3px;
}
}

@media (max-width: 890px) {
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {

  }
  .lang-auto{
    /* margin:0 auto */
  }
  .network{
    margin-top: 200px !important;
  }

  .header-area .main-nav .nav li a{
    transition: none !important;
  }
  .header-area .main-nav .logo{
    display: inline-block;
  }
  .header-area .main-nav .nav{
    transition: none !important;
  }
  .header-area{
    top: 20px;
  }
  .contact{
    margin: 20px auto;
  }
  .contact a{
    background: transparent !important;
  }
  .header-area .main-nav ul.nav{
    display: none;
  }
  .header-area .main-nav {
    background: transparent;
    display: block;
    align-items: center;
}
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 500;
    font-size: 16px;
    color: white;
     border-radius: 0px;
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    height: 50px;
    border-radius: 0px;
  }
  .background-header .main-nav .nav li:last-child,
  .header-area .main-nav .nav li:last-child {
    border-radius: 0px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {

  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
    font-weight: 500;
    font-size: 16px;
  }
  .header-area {
    background-color: transparent;
    padding: 26px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-sticky{
    padding: 22px;
    /* display: flex;
    align-items: center; */
  }
  .header-area .container {
    max-width: 720px !important;
}
  .header-area .container {
    padding: 0px;

  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }

  .header-area .main-nav {
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {

  }
  .header-area.header-sticky .nav {
    margin-top: 67px !important;
    padding-bottom: 5px;
  }
  .background-header.header-sticky .nav {
    margin-top: 63px !important;

  }
  .header-area .main-nav .nav li {
    width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background:#FAF4EB;
  padding: 280px 0px 90px 0px;
}

.main-banner .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 25px;
}

.main-banner .item span.category {
  background-color: var(--main-color);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 50px;
}

.main-banner .item h2 {
  font-size: 50px;
  font-weight: bold;
  color: var(--color-orange);
  letter-spacing: -1.25px;
  line-height: 60px;
  width: 100%;
  max-width: 550px;
  margin-bottom: 18px;
}

.main-banner .item p {
  color: #676767;
  max-width: 354px;
  width: 100%;
  font-weight: 300;
}

.main-banner .item .buttons {
  display: flex;
  margin-top: 50px;
}

.main-banner .item .buttons .main-button {
  margin-right: 30px;
}

.main-banner .item .buttons .main-button a {
  font-size: 16px;
  color: var(--main-color);
  background-color: var(--color-orange);
  border: 2px solid #FFC689;
  max-width: 195px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 18px 28px;
  border-radius: 25px;
  font-weight: 500;
  transition: all .3s;
}
.main-banner .item .buttons .main-button a:hover{
  background:#FAF4EB ;
  color: #FFC689;
  transition: all .3s;
}
.main-banner .item .buttons .icon-button i {
  color: var(--main-color);
  background-color: #fff;
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
}

.main-banner .item .buttons .icon-button a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.main-banner .owl-nav {
  position: absolute;
  top: 128px;
  left: -70px;
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 40px;
  height: 40px;
  line-height: 36px;
  font-size: 18px;
  display: inline-block;
  color: #504C4D;
  border: 2px solid #504C4D;
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}
.slider-before{
  position: relative;
}
#slider-before:before{
  content: url(../images/slider.png);
  width: 1063px;
  height: 739px;
  position: absolute;
  right: -280px;
  top: -40px;
  z-index: 3;
}
.slider-before:before{
  content: url(../images/n.svg);
  width: 612px;
  height: 418px;
  position: absolute;
  right: 200px;
  z-index: 0;
  bottom: 130px;
}
.main-banner .owl-nav .owl-prev i {
  position: absolute;
  bottom: 50px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}


/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services .service-item:hover .icon img {
  margin-top: -10px;
}

.services .service-item {
  position: relative;
  margin-top: 95px;
}

.services .service-item .icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  left: 23px;
  top: -50px;
  border-radius: 16px;
}

.services .service-item .icon img {
  max-width: 56px;
  transition: all .2s;
}

.services .service-item .main-content {
  box-shadow: 0px 6px 12px #0000000F;
  border: 2px solid #EBEBEB;
  border-radius: 16px;
  padding: 57px 10px 23px 23px;
  transition: all .4s;
  height: 210px;
  max-width: 240px;
  margin-right: 10px;
  background:#FFFFFF;
}

.services .service-item h4 {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-gray);
  transition: all .4s;
  margin-bottom: 10px;
}

.services .service-item p {
  color: #676767;
  margin-bottom: 0px;
  font-weight: 400;
  line-height: 22px;
}
.service-flex{
  display: flex;
  transform: translate(0px, -13px);
  position: relative;
  z-index: 3;
}
.logo img{
  max-width: 209px;
  padding-right: 10px;
  border-right: 1px solid #504c4d14;
  margin-right: 10px;
}
@media (min-width: 1400px){
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1178px;
}
}

/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/

.about-us {
  position: relative;
  padding: 0px;
  margin-top: 130px;
}

.about-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 84%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  background-color: var(--main-color);
  border-radius: 40px;
  padding: 80px 50px 50px 50px;
}

.accordion-item {
  background-color: #fff;
  border-radius: 40px !important;
  margin-bottom: 30px;
  border: none;
}

.accordion-item .accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 40px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--main-color);
  background-color: #fff;
}

h2.accordion-header button {
  padding: 15px 25px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+';
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  padding: 0px 25px 30px 25px;
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

.about-us .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

.about-us .section-heading .main-button {
  margin-top: 50px;
}


/* 
---------------------------------------------
Courses Style
--------------------------------------------- 
*/

.courses {
  margin-top: 160px;
}

.event_filter {
  text-align: center;
}

.event_filter {
  background-color: #f1f0fe;
  border-radius: 50px;
  padding: 15px 40px;
  list-style: none;
  margin: 0 auto 70px;
  max-width: max-content;
}

.event_filter li {
  display: inline-block;
  margin: 0px 20px;
}

.event_filter li a {
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  transition: all .3s;
}

.event_filter li

.event_filter li a.is_active,
.event_filter li a:hover {
  color: var(--main-color);
}

.events_item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.events_item .thumb img {
  margin-bottom: -5px;
}

.events_item .thumb span.category {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--main-color);
  background-color: rgba(250, 250, 250, 0.95);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
}

.events_item .thumb span.price {
  position: absolute;
  right: -30px;
  top: -50px;
  background-color: rgba(122, 106, 216, 0.95);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: inline-block;
  transition: all .3s;
}

.events_item .thumb span.price h6 {
  margin-top: 72px;
  margin-left: 22px;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

.events_item .thumb span.price em {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  vertical-align: top;
}

.events_item {
  background-color: #f1f0fe;
  border-radius: 25px;
  margin-bottom: 30px;
  position: relative;
  justify-content: center;
  align-items: center;
} 

.events_item .down-content {
  padding: 20px 30px 25px 30px;
}

.events_item .down-content span.author {
  color: var(--main-color);
  font-size: 15px;
  display: inline-block;
  margin-bottom: 6px;
}

.events_item .down-content h4 {
  font-size: 22px;
  font-weight: 600;
  transition: all .3s;
}

.events_item:hover .down-content h4 {
  color: var(--main-color);
}

.events_item:hover .thumb span.price {
  transform: scale(1.2);
}


/* 
---------------------------------------------
Facts Style
--------------------------------------------- 
*/

.fun-facts {
  position: relative;
  padding: 120px 0px 80px 0px;
  overflow: hidden;
}

.fun-facts:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 95%;
  height: 100%;
  background-color: var(--main-color);
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.fun-facts:after {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 15%;
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.fun-facts .counter {
  text-align: center;
  margin-bottom: 40px;
}

.fun-facts h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.fun-facts h2::after {
  content: '+';
  margin-left: 5px;
}

.fun-facts p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
}


/* 
---------------------------------------------
Team Style
--------------------------------------------- 
*/

.team {
  margin-top: 100px;
    padding-top: 140px;
}

.team-member {
  position: relative;
}

.team-member:hover img {
  top: -120px;
}

.team-member img {
  max-width: 220px;
  border-radius: 50%;
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-110px);
  transition: all .3s;
}

.team-member .main-content {
  border-radius: 25px;
  padding: 140px 30px 40px 30px;
  background-color: #f1f0fe;
  text-align: center;
}

.team-member .main-content span.category {
  color: var(--main-color);
  font-size: 15px;
}

.team-member .main-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 15px;
}

.team-member .main-content ul li {
  display: inline-block;
  margin: 0px 2px;
}

.team-member .main-content ul li a {
  background-color: #fff;
  color: var(--main-color);
  display: inline-block;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all .3s;
}

.team-member .main-content ul li a:hover {
  background-color: var(--main-color);
  color: #fff;
}


/* 
---------------------------------------------
Testimonials Style
--------------------------------------------- 
*/

.testimonials {
  position: relative;
  padding: 80px 0px;
  margin-top: 150px;
}

.testimonials:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.testimonials .section-heading {
  margin-bottom: 0px;
  margin-left: 60px;
  vertical-align: middle;
}

.testimonials .section-heading p {
  margin-top: 50px;
}

.testimonials .item {
  background-color: var(--main-color);
  border-radius: 25px;
  padding: 80px;
}

.testimonials .item p {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 40px;
}

.testimonials .item img {
  border-radius: 50%;
  max-width: 100px;
  float: left;
  margin-right: 25px;
}

.testimonials .item span {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  color: #fff;
}

.testimonials .item h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
}

.testimonials .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-5px);
  right: -25px;
  text-align: right;
}

.testimonials .owl-nav .owl-prev i,
.testimonials .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: var(--main-color);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  opacity: 1;
  transition: all .3s;
}

.testimonials .owl-nav .owl-prev i {
  position: absolute;
  bottom: 65px;
}

.testimonials .owl-nav .owl-prev i:hover,
.testimonials .owl-nav .owl-next i:hover {
  opacity: 1;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}


/* 
---------------------------------------------
Events Style
--------------------------------------------- 
*/

.events .section-heading {
  margin-bottom: 100px;
}

.events .item {
  background-color: #f1f0fe;
  border-radius: 25px;
  position: relative;
  padding: 40px;
  margin-bottom: 96px;
}

.events .item .image {
  position: relative;
}

.events .item .image img {
  position: absolute;
  border-radius: 25px;
  max-width: 260px;
  left: 0;
  top: -70px;
}

.events .item ul li {
  display: inline-block;
  width: 17.5%;
  vertical-align: middle;
}

.events .item ul li:first-child {
  width: 35%;
}

.events .item ul li:nth-of-type(2) {
  width: 28%;
}

.events .item ul li span.category {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--main-color);
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

.events .item ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.events .item ul li span {
  display: inline-block;
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 10px;
}

.events .item ul li h6 {
  font-size: 16px;
  color: var(--main-color);
  font-weight: 600;
}

.events .item a {
  position: absolute;
  right: 0;
  top: 22px;
  background-color: var(--main-color);
  width: 60px;
  height: 120px;
  display: inline-block;
  text-align: center;
  line-height: 120px;
  font-size: 18px;
  z-index: 1;
  color: #fff;
  border-radius: 60px 0px 0px 60px;
}


/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  margin-top: 80px;
  position: relative;
  padding: 50px 0px;
}

.contact-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}


.contact-us  .section-heading {
  margin-right: 110px;
  margin-bottom: 0px;
}

.contact-us  .section-heading p {
  margin-top: 50px;
}

.contact-us .special-offer {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 25px;
  padding: 30px 120px;
  display: inline-block;
  position: relative;
}

.contact-us .special-offer span.offer {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-color);
  width: 80px;
  padding: 30px 8px;
  line-height: 25px;
  height: 120px;
  border-radius: 15px 60px 60px 15px; 
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
}

.contact-us .special-offer span.offer em {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
}

.contact-us .special-offer h6 {
  font-size: 15px;
  color: #4a4a4a;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-us .special-offer h6 em {
  font-style: normal;
  color: var(--main-color);
  font-weight: 600;
}

.contact-us .special-offer h4 {
  font-size: 22px;
  font-weight: 600;
}

.contact-us .special-offer h4 em {
  font-style: normal;
  color: var(--main-color);
}

.contact-us .special-offer a {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
}

.contact-us .contact-us-content {
  border-radius: 25px;
  padding: 80px;
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
}

.contact-us .contact-us-content::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 50%;
  transform: translateX(-149px);
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: '';
  z-index: 2;
}

.contact-us .contact-us-content::after {
  background: url(../images/contact-dec-02.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 183px;
  height: 149px;
  content: '';
  z-index: 2;
}

#contact-form input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 0px 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form input::placeholder {
  color: #fff;
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form textarea::placeholder {
  color: #fff;
}

#contact-form button {
  border: none;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  padding: 0px 25px;
  border-radius: 25px;
  color: var(--main-color);
  transition: all .4s;
  position: relative;
  z-index: 3;
}

#contact-form button:hover {
  opacity: 0.8;
}

.contact-us-content .more-info {
  text-align: center;
  background: rgb(85,0,227);
  background: linear-gradient(90deg, rgba(85,0,227,1) 0%, rgba(198,61,255,1) 100%);
  border-radius: 0px 0px 23px 23px;
  padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/
.footer-details img{
  max-width: 200px;
}
.footer-details{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 280px;
}
footer {
  background: #FAFAFA;

}
.social{
  display: flex;
  align-items: center;
}
.social img{
width: 100%;
max-width: 17px;
height: 15px;
}
.social  a{
  margin-right: 10px !important;
}
.footer{
  display: flex;
}
.footer-details ul li a{
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 400;
  margin-right: 30px;
}
.copy{
  background: #E2E2E2;
}
.copy p{
  text-align: center;
  color:#919191;
  font-size: 16px;
  padding: 10px;
}
/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/
@media (max-width: 767px){
  .container, .container-sm {
    max-width: 900px;
}
}

body {
  overflow-x: hidden;
  background: #FAFAFA;
}

@media (max-width: 767px) {
  .header-area {
    top: 0px;
  }
  .logo img{
    max-width: 180px;
  }
  .header-area .main-nav .logo h1 {
    border-right: none;
  }
  .main-banner .owl-nav {
    left: 30px !important;
  }
  .event_filter  {
    padding: 15px 20px;
  }
  .event_filter li {
    display: inline-block;
    margin: 0px 10px;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav #search input,
  .header-area .main-nav #search i {
    display: none;
  }

  .footer-info-text{
    padding-left: 0px !important;
  }
  #opportunity-before:after{
    content:url(../images/mobile-car-500.png) !important;
    position: absolute;
    right: -65px !important;
    top: -139px !important;
    z-index: 3;
  }
  .opportunity .owl-nav {
    bottom: -60px !important;
}
  .lang h6 {
    margin-left: 5px !important;
    font-size: 13px !important;
}
  .footer-global i {
    margin-left: 20px !important;
    font-size: 20px !important;
}
  .header-area .main-nav .logo h1 {
    font-size: 34px;
  }
  .header-area .main-nav .logo {
    border-right: none;
    margin: 0 auto;
    width: 100%;
  }
  .main-banner {
    padding-top: 200px;
    padding-bottom: 300px;
  }
  .main-banner .item {
    margin-left: 0px;
    text-align: center;
  }
  .main-banner .item h2,
  .main-banner .item p {
    width: 100%;
    text-align: left;
    line-height: 22px;
  }
  .main-banner .item h2 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.6px;
    text-align: left;
    margin-bottom: 10px;
  }
  .main-banner .item .buttons {
    display: flex;
    text-align: center;
    margin-top: 17px;
  }
  .main-banner .item .buttons .main-button {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .main-banner .owl-nav {
    left: 20px !important;
    bottom: -20px;
  }
  .main-banner .owl-nav .owl-prev i {
    bottom: 0px;
  }
  .main-banner .owl-nav .owl-next i {
    bottom: 0px;
    position: absolute;
    left: 50px;
  }
  .services {
    margin-top: 80px;
  }
  .about-us {
    margin-top: 100px;
  }
  .accordion {
    padding: 40px 25px 10px 25px;
  }
  .about-us .section-heading {
    margin-left: 0px;
    margin-top: 120px;
  }
  .about-us::before,
  .testimonials::before,
  .contact-us::before {
    display: none;
  }
  .about-us .section-heading p,
  .testimonials .section-heading p,
  .contact-us .section-heading p {
    margin-top: 30px;
  }
  .about-us .section-heading .main-button {
    margin-top: 30px;
  }
  .about-us .main-button a {
    background-color: var(--main-color);
    color: #fff;
  }
  .courses {
    margin-top: 100px;
  }
  .event_filter ul li {
    display: block;
    margin: 12px 5px;
  }
  .fun-facts {
    margin-top: 70px;
  }
  .fun-facts::before {
    width: 95%;
  }
  .team {
    margin-top: 160px;
  }
  .team-member {
    margin-bottom: 140px;
  }
  .testimonials {
    margin-top: -50px;
    padding: 0px;
  }
  .testimonials .section-heading {
    margin-left: 0px;
    margin-top: 40px;
  }
  .testimonials .item {
    padding: 40px 40px 60px 40px;
  }
  .testimonials .item h4 {
    font-size: 17px;
  }
  .testimonials .item img {
    margin-right: 15px;
  }
  .testimonials .owl-nav {
    display: none;
  }
  .events {
    margin-top: 80px;
  }
  .events .item {
    margin-bottom: 66px;
  }
  .events .item .image img {
    position: relative;
    max-width: 100%;
  }
  .events .item ul {
    margin-top: -40px;
  }
  .events .item ul li:first-child {
    width: 100% !important;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }
  .events .item ul li:nth-child(2) {
    width: 40% !important;
  }
  .events .item ul li {
    display: inline-block;
    width: 28% !important;
  }
  .events .item ul li:last-child {
    text-align: right;
  }
  .events .item a {
    bottom: 150px;
    top: auto;
  }
  .events .item ul li h6 {
    font-size: 14px;
  }
  .contact-us {
    padding-top: 20px;
  }
  .contact-us .section-heading {
    margin-right: 0px;
  }
  .contact-us .special-offer {
    background-color: #f1f0fe;
    margin-bottom: 60px;
    padding: 34px 30px 34px 100px;
    width: 100%;
  }
  .contact-us .special-offer h4 {
    font-size: 17px;
  }
  .contact-us .special-offer a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 15px;
    right: 15px;
  }
  .contact-us .contact-us-content {
    padding: 30px;
  }
  footer {
    margin-top: 30px;
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav #search input {
    width: 200px;
  }
  .header-area .main-nav .nav li.has-sub:after {
    right: 15px;
  }
  .fun-facts:before {
    width: 95%;
  }
}
.professional-service{
  margin-top: 155px !important;
  max-width: 1170px;
  margin: 0 auto;
}
.professional-service h1{
  font-size: 34px;
  letter-spacing: -0.85px;
  color: var(--color-gray);
  font-weight: bold;
  margin-bottom: 18px;
}

.professional-service p{
  font-size: 16px;
  color: #676767;
  max-width: 500px;
}
.professional-title{
  margin-bottom: 60px;
}
.professional-content{
  display: flex;
  align-items: center;
  box-shadow: 0px 6px 12px #0000000F;
  border: 2px solid #EBEBEB;
  border-radius: 16px;
  background: white;
  padding: 34px;
  height: 145px;
  max-width: 335px;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  margin-left: 30px;
}
.professional-img{
  border-radius: 16px;
  background: var(--color-orange);
  position: absolute;
  left: -30px;
  max-width: 100px;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.professional-content:hover .professional-img svg{
  margin-top: -10px;
  transition: all .3s;
}
.professional-img svg{
  transition: all .3s;
}
.pr-details{
  margin-left: 53px;
}
.pr-details h2{
  color: #676767;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -0.55px;
  margin-bottom: 3px;
}
.pr-details p{
  color: #ACACAC;
  font-weight: 400;
  line-height: 22px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow:hidden;
}
.opportunity{
  background: #404040;
  max-width: 1170px;
  margin: 0 auto;
  border-radius: 50px;
  padding-left: 60px;
  height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 200px;
  margin-bottom: 200px;
}
.opportunity h3{
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
}
.opportunity h2{
  font-size: 38px;
  font-weight: bold;
  letter-spacing: -0.95px;
  color: var(--color-orange);
}
.opportunity  p{
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 350px;
}

.opportunity .owl-nav button{
  border: 2px solid #FFFFFF !important;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border-radius: 50%;
 
}
.opportunity .owl-nav button i{
  color: white;
}
.opportunity .owl-nav{
  position: absolute;
  bottom: -80px;
}
#opportunity-before:after{
  content: url(../images/cars.png);
  position: absolute;
  right: -65px;
  top: -120px;
  z-index: 3;
}
.cars{
  position: relative;
}
.cars:after{
  content: url(../images/cars2.png);
  position: absolute;
  left: -169px;
  top: -135px;
  z-index: 4;
}
.network{
  background:var(--color-orange) ;
  margin-top: 330px;
  transition: all .3s;
}
.footer-info{
  position: relative;
}
.footer-info:before{
  content: url(../images/afterr.svg);
  position: absolute;
  left: -70px;
  height: 416px;
}
.footer-info{
  background: url(../images/footer-info.png);
  height: 416px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;

}
.footer-info h3{
  font-size: 16px;
  font-weight: 400;
  color: var(--color-orange);
}
.footer-info h1{
  font-size: 38px;
  letter-spacing: -0.95px;
  font-weight: bold;
  line-height: 45px;
  max-width: 500px;
  width: 100%;
}
.footer-info-text{
  position: relative;
  z-index: 1;
  padding-left: 120px;
}
.footer-info p{
  max-width: 350px;
  line-height: 22px;
  margin-top: 8px;
}
.footer-info-text:after{
  content: url(../images/text.svg);
  position: absolute;
  left: 62px;
  bottom: -144px;
}
.network-content{
  padding-top: 116px;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 116px;

}
.network-content h1{
  font-size: 34px;
  color: white;
  letter-spacing: -0.85px;
  font-weight: bold;
  margin-bottom: 15px;
}
.network-content p{
  font-size: 16px;
  max-width: 500px;
  width: 100%;
  color: white;
  font-weight: 400;
  margin-bottom: 27px;
  line-height: 22px;
}
.map-main {
  position: relative;
}
.map-main .maps-1{
  max-width: 1170px;
  width: 100%;
  height: 500px;
  z-index: 1;
  opacity: 1;
  transition: all 0.3s;
}
.maps-2 {
  opacity: 0;
  transition: all 0.2s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s;
  transform: scaleY(1.1);
}
.map-control-body-item.show .map-more {
  color: #8B8B8B;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.maps-2 {
  opacity: 0;
  transition: all 0.2s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s;
  transform: scaleY(1.1);
}
.maps-2 path {
  display: none;
  opacity: 0;
  transition: all 0.3s;
}
.maps-2 path:after {
  content: "asd";
  display: block;
}
.maps-2.active {
  opacity: 1;
  transform: scaleY(1.1);
  z-index: 2;
}
.maps-2.active path.active {
  display: block;
  opacity: 1;
  stroke: white;
}
.maps-2 .bigmap {
  opacity: 0.5;
}
.maps-2 .bigmap[code="1"] {
  transform: scale(1.5) translate(-363.794px, -204.695px);
}
.maps-2 .bigmap[code="2"] {
  transform: scale(1.5) translate(-466.559px, -207.967px);
}
.maps-2 .bigmap[code="3"] {
  transform: scale(1.5) translate(-166.492px, -154.15px);
}
.maps-2 .bigmap[code="4"] {
  transform: scale(1.5) translate(-662.345px, -114.33px);
}
.maps-2 .bigmap[code="5"] {
  transform: scale(1.5) translate(-372.127px, -60.174px);
}
.maps-2 .bigmap[code="6"] {
  transform: scale(1.5) translate(-217.542px, -80.461px);
}
.maps-2 .bigmap[code="7"] {
  transform: scale(1.5) translate(-159.425px, -243.077px);
}
.maps-2 .bigmap[code="8"] {
  transform: scale(1.5) translate(-610.48px, -37.085px);
}
.maps-2 .bigmap[code="9"] {
  transform: scale(1.5) translate(-63.694px, -210.166px);
}
.maps-2 .bigmap[code="10"] {
  transform: scale(1.5) translate(-51.451px, -90.797px);
}
.maps-2 .bigmap[code="11"] {
  transform: scale(1.5) translate(-162.577px, -91.056px);
}
.maps-2 .bigmap[code="12"] {
  transform: scale(1.5) translate(-566.985px, -140.947px);
}
.maps-2 .bigmap[code="13"] {
  transform: scale(1.5) translate(-629.731px, -165.643px);
}
.maps-2 .bigmap[code="14"] {
  transform: scale(1.5) translate(-202.287px, -60.506px);
}
.maps-2 .bigmap[code="15"] {
  transform: scale(1.5) translate(-150.017px, -223.113px);
}
.maps-2 .bigmap[code="16"] {
  transform: scale(1.5) translate(-102.634px, -84.803px);
}
.maps-2 .bigmap[code="17"] {
  transform: scale(1.5) translate(-1.239px, -81.33px);
}
.maps-2 .bigmap[code="18"] {
  transform: scale(1.5) translate(-278.728px, -59.211px);
}
.maps-2 .bigmap[code="19"] {
  transform: scale(1.5) translate(-330.107px, -49.995px);
}
.maps-2 .bigmap[code="20"] {
  transform: scale(1.5) translate(-120.255px, -198.244px);
}
.maps-2 .bigmap[code="21"] {
  transform: scale(1.5) translate(-537.255px, -185.244px);
}
.maps-2 .bigmap[code="22"] {
  transform: scale(1.5) translate(-14.172px, -14.347px);
}
.maps-2 .bigmap[code="23"] {
  transform: scale(1.5) translate(-509.389px, -160.554px);
}
.maps-2 .bigmap[code="24"] {
  transform: scale(1.5) translate(-501.632px, -113.517px);
}
.maps-2 .bigmap[code="25"] {
  transform: scale(1.5) translate(-579.46px, -73.615px);
}
.maps-2 .bigmap[code="26"] {
  transform: scale(1.5) translate(-179.99px, -108.076px);
}
.maps-2 .bigmap[code="27"] {
  transform: scale(1.5) translate(-431.003px, -239.703px);
}
.maps-2 .bigmap[code="28"] {
  transform: scale(1.5) translate(-486.23px, -61.938px);
}
.maps-2 .bigmap[code="29"] {
  transform: scale(1.5) translate(-519.12px, -74.537px);
}
.maps-2 .bigmap[code="30"] {
  transform: scale(1.5) translate(-703.769px, -224.161px);
}
.maps-2 .bigmap[code="31"] {
  transform: scale(1.5) translate(-401.498px, -264.77px);
}
.maps-2 .bigmap[code="32"] {
  transform: scale(1.5) translate(-183px, -193.408px);
}
.maps-2 .bigmap[code="33"] {
  transform: scale(1.5) translate(-283.1px, -246.633px);
}
.maps-2 .bigmap[code="34"] {
  transform: scale(1.5) translate(-95.674px, -34.224px);
}
.maps-2 .bigmap[code="35"] {
  transform: scale(1.5) translate(-34.733px, -155.98px);
}
.maps-2 .bigmap[code="36"] {
  transform: scale(1.5) translate(-652.163px, -63.951px);
}
.maps-2 .bigmap[code="37"] {
  transform: scale(1.5) translate(-283.762px, -12.256px);
}
.maps-2 .bigmap[code="38"] {
  transform: scale(1.5) translate(-368.199px, -155.385px);
}
.maps-2 .bigmap[code="39"] {
  transform: scale(1.5) translate(-51.527px, -7.246px);
}
.maps-2 .bigmap[code="40"] {
  transform: scale(1.5) translate(-309.711px, -127.028px);
}
.maps-2 .bigmap[code="41"] {
  transform: scale(1.5) translate(-148.757px, -51.472px);
}
.maps-2 .bigmap[code="42"] {
  transform: scale(1.5) translate(-227.019px, -165.429px);
}
.maps-2 .bigmap[code="43"] {
  transform: scale(1.5) translate(-126.771px, -124.73px);
}
.maps-2 .bigmap[code="44"] {
  transform: scale(1.5) translate(-460.692px, -162.307px);
}
.maps-2 .bigmap[code="45"] {
  transform: scale(1.5) translate(-68.554px, -147.944px);
}
.maps-2 .bigmap[code="46"] {
  transform: scale(1.5) translate(-419.062px, -194.007px);
}
.maps-2 .bigmap[code="47"] {
  transform: scale(1.5) translate(-561.505px, -228.826px);
}
.maps-2 .bigmap[code="48"] {
  transform: scale(1.5) translate(-76.281px, -236.529px);
}
.maps-2 .bigmap[code="49"] {
  transform: scale(1.5) translate(-607.558px, -143.983px);
}
.maps-2 .bigmap[code="50"] {
  transform: scale(1.5) translate(-339.99px, -150.721px);
}
.maps-2 .bigmap[code="51"] {
  transform: scale(1.5) translate(-332.841px, -199.435px);
}
.maps-2 .bigmap[code="52"] {
  transform: scale(1.5) translate(-438.126px, -54.521px);
}
.maps-2 .bigmap[code="53"] {
  transform: scale(1.5) translate(-576.793px, -47.996px);
}
.maps-2 .bigmap[code="54"] {
  transform: scale(1.5) translate(-175.818px, -53.029px);
}
.maps-2 .bigmap[code="55"] {
  transform: scale(1.5) translate(-372.495px, -28.627px);
}
.maps-2 .bigmap[code="56"] {
  transform: scale(1.5) translate(-621.843px, -200.284px);
}
.maps-2 .bigmap[code="57"] {
  transform: scale(1.5) translate(-343.954px, -9.239px);
}
.maps-2 .bigmap[code="58"] {
  transform: scale(1.5) translate(-411.587px, -94.788px);
}
.maps-2 .bigmap[code="59"] {
  transform: scale(1.5) translate(-48.258px, -32.892px);
}
.maps-2 .bigmap[code="60"] {
  transform: scale(1.5) translate(-392.596px, -70.799px);
}
.maps-2 .bigmap[code="61"] {
  transform: scale(1.5) translate(-533.743px, -55.873px);
}
.maps-2 .bigmap[code="62"] {
  transform: scale(1.5) translate(-518.151px, -137.197px);
}
.maps-2 .bigmap[code="63"] {
  transform: scale(1.5) translate(-488.204px, -218.611px);
}
.maps-2 .bigmap[code="64"] {
  transform: scale(1.5) translate(-124.702px, -170.358px);
}
.maps-2 .bigmap[code="65"] {
  transform: scale(1.5) translate(-677.993px, -153.616px);
}
.maps-2 .bigmap[code="66"] {
  transform: scale(1.5) translate(-341.512px, -106.003px);
}
.maps-2 .bigmap[code="67"] {
  transform: scale(1.5) translate(-224.013px, -31.632px);
}
.maps-2 .bigmap[code="68"] {
  transform: scale(1.5) translate(-301.122px, -167.008px);
}
.maps-2 .bigmap[code="69"] {
  transform: scale(1.5) translate(-552.528px, -85.052px);
}
.maps-2 .bigmap[code="70"] {
  transform: scale(1.5) translate(-274.323px, -238.373px);
}
.maps-2 .bigmap[code="71"] {
  transform: scale(1.5) translate(-301.492px, -100.561px);
}
.maps-2 .bigmap[code="72"] {
  transform: scale(1.5) translate(-602.482px, -193.985px);
}
.maps-2 .bigmap[code="73"] {
  transform: scale(1.5) translate(-632.731px, -225.79px);
}
.maps-2 .bigmap[code="74"] {
  transform: scale(1.5) translate(-257.108px, -17.861px);
}
.maps-2 .bigmap[code="75"] {
  transform: scale(1.5) translate(-656.79px, -34.315px);
}
.maps-2 .bigmap[code="76"] {
  transform: scale(1.5) translate(-702.769px, -108px);
}
.maps-2 .bigmap[code="77"] {
  transform: scale(1.5) translate(-126.953px, -74.398px);
}
.maps-2 .bigmap[code="78"] {
  transform: scale(1.5) translate(-251.556px, -32.448px);
}
.maps-2 .bigmap[code="79"] {
  transform: scale(1.5) translate(-434.57px, -261.734px);
}
.maps-2 .bigmap[code="80"] {
  transform: scale(1.5) translate(-402.216px, -230.862px);
}
.maps-2 .bigmap[code="81"] {
  transform: scale(1.5) translate(-204.801px, -54.546px);
}
.maps-2 text {
  display: none;
}
.maps-2 text[code="58"] {
  transform: translate(348px, 115px);
}
.maps-2 text[code="28"] {
  transform: scale(0.6) translate(640px, 101px);
}
.maps-2 text[code="60"] {
  transform: scale(0.6) translate(552px, 121px);
}
.maps-2 text[code="63"] {
  transform: scale(0.6) translate(668px, 342px);
}
.maps-2 text[code="39"] {
  transform: scale(0.6) translate(69px, 33px);
}
.maps-2 text[code="77"] {
  transform: scale(0.6) translate(163px, 128px);
}
.maps-2 text[code="81"] {
  transform: scale(0.6) translate(270px, 89px);
}
.maps-2 text[code="1"] {
  transform: scale(0.6) translate(487px, 330px);
}
.maps-2 text[code="48"] {
  transform: scale(0.6) translate(91px, 340px);
}
.maps-2 text[code="20"] {
  transform: scale(0.6) translate(156px, 308px);
}
.maps-2 text[code="9"] {
  transform: scale(0.6) translate(102px, 300px);
}
.maps-2 text[code="64"] {
  transform: scale(0.6) translate(175px, 247px);
}

.maps-1 {
  z-index: 1;
  opacity: 1;
  transition: all 0.3s;
}
.maps-1.hide {
  opacity: 0.5;
  transform: scale(0.9);
}

.map-detail {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #8B8B8B;
}
.map-detail .block {
  max-width: 300px;
  height: 100px;
  width: 100%;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.map-detail .block h3 {
  font-size: 16px;
  font-weight: bold;
  color: white;
}
.map-detail .block-main {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.map-detail .block-main img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}
.map-detail .block-main p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.btn-network{
  display: flex;
}
.btn-network a{
  margin-right: 10px;
  padding: 12px 28px;
}
.btn-network a:nth-child(1){
  color:var(--color-orange);
  background: white;
  border: 2px solid #FFC689;
  border-radius: 25px;
  max-width: 350px;
  width: 100%;
  text-align: center;
}
.btn-network a:nth-child(2){
  border: 2px solid #FFFFFF;
  border-radius: 25px;
  color: white;
  max-width: 200px;
  width: 100%;
  text-align: center;
}
.map-control-body{
  margin-top: 75px;
}
.maps-2 text[code="34"] {
  transform: scale(0.6) translate(174px, 42px)
}
.call-center h2{
  color: white;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.6px;
  border-bottom: 1px solid #ffffff5e;
  line-height: 55px;
}
.call-center a{
  font-size: 34px;
  color:white;
  font-weight: bold;
  letter-spacing: -0.85px;
}
.call-center {
  max-width: 210px;
  width: 100%;
  transition: all .3s;
}
.contact{
  border: 2px solid #FFC689;
  border-radius: 25px !important;
  background: var(--color-orange) !important;
  color: white;
  display: flex;
  align-items: center;
  max-width: 200px;
  width: 100%;
  position: relative;
  height: 50px !important;
}
.contact img{
  width: 22px;
  z-index: 2;
  position: relative;

}
.header-area .main-nav .nav .contact:hover a{
  opacity: 1 !important;
}
.contact:after{
  content: url(../images/phone.svg);
  position: absolute;
  right: 2px;
  width: 65px;
  height: 45px;
  top: 2px;
}
.contact{
  transition: all .3s;
}
.contact a{
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  color: white !important;
  font-size: 16px;
  font-weight: bold;
}
.contact:hover{
 background: #ff9c33 !important;
 transition: all .3s;
}
.footer-global{
  display: flex;
  align-items: center;
}
.footer-global i{
  color: var(--color-orange);
  margin-left: 30px;
  font-size: 30px;
}
.lang{
  display: flex;
  align-items: center;
}
.lang h6{
  margin-left: 10px;
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 400;
}


@media(max-width:550px){

  #opportunity-before:after {
    content: url(../images/mobile-car-500.png) !important;
    position: absolute;
    right: -93px !important;
    top: 51px !important;
    z-index: 3;
}

.footer-global {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.mr-mb{
  margin-right: 0px !important;
}

.maps-ok i {
  transform: rotate(89deg);
}

.about{
  margin-top: 100px !important;
}
.announcements::before {
  content: url(../images/mobile-banner.svg) !important;
  position: absolute;
  border-radius: 15px !important;
  left: 0px;
  background-size: cover !important;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
.announcements h3{
font-size: 12px !important;
}
.announcements h1{
font-size: 16px !important;
}
.announcements p{
font-size: 14px !important;
}
.announcements{
  background: url(../images/about-mobile.png) !important;
  padding: 23px !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  border-radius: 15px !important;
  height: 254px;
  margin-bottom: 20px;
  display: flex;
  align-content: flex-end;
  align-items: flex-end;
}
.tab_content{
  background: white;
}

.about h4{
  font-size: 16px !important;
}
.tabs_item img{
  border-radius: 10px !important;
  height: 155px;
  object-fit: cover;
}
.about p{
  font-size: 14px !important;
}
.breadcrumb li {
  font-size: 12px !important;
}
.breadcrumb li a {
  font-size: 12px !important;
}
#slider-before:before{
  display: none !important;
}
.main-banner {
  padding-bottom: 70px;
}
#opportunity-before:after{
  content: none ;
}
#opportunity-before{
  background: url(../images/mobile-car-500.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 300px;
  transform: scale(1.1) translateY(100px);
}
/* #opportunity-before{
    right: auto !important;
    top: 130px !important;
    transform: scale(1.2);
    left: 50%;
    transform: translate(-50%, -11%);
}  */
#slider-before {
  background: url(../images/mobile-500.png);
  width: 100%;
  height: 290px;
  z-index: 3;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(80px);
}
#hamburger {
  margin: 23px 0px !important;
}
.header-sticky{
  padding: 0px 15px;
}

.info-section .mt-5 {
  margin-top: 20px!important;
}
.contact-page {
  margin-top: 100px !important;
}
#slider-before:before{
  content: url(../images/mobile-500.png);
  right: auto;
  top: 63px;
  width: auto;
  height: auto;
}
.slider-before:before{
  content: none;
}
  .services .service-item .main-content{
    max-width: 100%;
    padding: 58px 4px 4px 4px;
  }
  .service-flex {
    transform: translate(0px);
    flex-direction: row;
    flex-wrap: wrap;
}
.services .service-item h4 {
  font-size: 16px;
  letter-spacing: -0.4px;
  color: #676767;
  text-align: center;
}
.services .service-item .icon{
  left: 26%;
}
.services .service-item p{
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.professional-service h1 {
  font-size: 16px;
  letter-spacing: -0.4px;
}
.professional-service p{
  font-size: 14px;
  line-height: 20px;

}
.professional-img {
  position: relative;
  left: auto;
}
.professional-content{
  padding: 15px;
  margin-bottom: 10px;
  margin-left: 0px;
  border-radius: 28px;
  width: 100%;
  max-width: 100%;
}
.pr-details {
  margin-left: 20px;
}
.pr-details h2{
  font-size: 16px;
  color: #676767;
}
.pr-details p{
  font-size: 14px;
  color: #ACACAC;
}
.professional-title{
  margin-bottom: 43px;
}

.cars:after{
  content: none ;
}
.opportunity{
  margin-top: 77px;
  display: block;
  padding: 31px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 28px;
  height: 100%;
}
.opportunity h3{
  font-size: 14px;
}
.opportunity h2{
  font-size: 24px;
  line-height: 32px;
}

.opportunity .owl-nav {
  bottom: -30px;
}
.network{
  margin-top: 100px;
}
.network-content{
  padding: 37px;
}
.network-content h1{
  font-size: 16px;
}
.network-content p{
  font-size: 14px;
  line-height: 20px;
}
.btn-network a:nth-child(1){
  font-size: 13px;
  padding: 12px;
}
.map-main .maps-1{
  height: auto;
}
.call-center h2{
  font-size: 15px;
  border-bottom: 1px solid transparent;
  line-height: 31px;
  border-right: 1px solid rgba(255, 255, 255, 0.375);
  padding-right: 40px;

}
.call-center a{
  font-size: 16px;
}
.map-detail .block h3{
  font-size: 14px;
}
.map-detail .block-main p{
  font-size: 14px;
}
.map-detail{
  margin-top: 30px;
}
.call-center{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}
.call-center svg{
  width: 18px;
}
.map-control-body {
  margin-top: 30px;
}
.footer-info:before{
  content: none!important;
  left: 0px;
}
.footer-info{
  background: url(../images/before-footer.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-info-text {
  padding-left: initial;
}
.footer-info h3{
  font-size: 14px;
}
.footer-info h1{
  font-size: 16px;
  letter-spacing: -0.4px;
  line-height: 22px;
}
.footer-info p{
  font-size: 14px;
  margin-top: 0px;
  line-height: 20px;
}
.footer-info-text:after{
  content: url(../images/text-mobile.svg);
  left: auto;
    bottom: -165px;
}
.footer-details{
  height: auto;
  flex-direction: column-reverse;
  padding-top: 30px;
}
.footer {
  flex-direction: column;
  align-items: center;
}

.footer-details img{
  max-width: 170px;
  margin: 39px;
}
.footer-details .social img {
  margin: 0px;
}
.footer-details ul li a{
  line-height: 40px;
  margin-right:0px
}
.header-area .main-nav .logo{

}

.contact img {
  left: -20px;
}
.contact a{
  background-color: transparent !important;
  padding-left: 20px;
}
.header-area .main-nav {
  height: 80px !important;
}
.header-area .main-nav ul.nav{
  display: none;
}
.services .service-item{
  width: 50%;
}
}
@media(min-width:891px){
  .mobil{
    display: none;
  }
  .lang-mobile{
    display: none !important;
  }
  #hamburger{
    display: none;
  }
}
@media(min-width:768px) and (max-width:992px){
  .logo img{
    max-width: 140px;
  }
  .contact{
    height: 40px !important;
  }
  .contact:after{
    display: none
  }
  .header-area .main-nav .nav li a{
    font-size: 12px;
  }
  .contact{
    max-width: 160px;
  }
  .header-area .container{
    max-width: 990px;
  }
  .header-area .main-nav .nav li a {
    font-size: 12px !important;
  }
  .header-area .main-nav .nav li a {
    font-size: 12px !important;
  }
  #slider-before:before{
    content: url(../images/1260.png);
    right: 0px;
    width: 800px;
    top: -120px;
    bottom: 0px;
    left: -60px;
    z-index: 1;
  }
  .slider-before:before{
    content: none;
  }
  .main-banner .item .buttons {
    margin-top: 20px;
  }
  .service-flex {
    transform: translate(0px, 10px);
    flex-direction: row;
    flex-wrap: wrap;
  }
  .services .service-item .main-content{
    max-width: 100%;
  }
  .services .service-item{
    width: 50%;
  }
  .professional-content{
    margin-left: 0px;
  }
  .professional-img{
    left: 0px;
    position: relative;
  }
  .professional-content{
    padding: 15px;
  }
  .pr-details {
    margin-left: 20px;
}
.cars:after{
  content: none !important;
}
.opportunity:after{
  content: none !important;
}
footer .container{
  max-width: 990px;
}
.footer-details ul li a{
  font-size: 13px;
}

.footer-details img{
  max-width: 120px;
}
.header-area .main-nav ul.nav {
  justify-content: space-between;
}
}
@media(min-width:992px) and (max-width:1100px){
  .header-area .main-nav .nav li a{
    font-size: 13px;
  }

  .footer-info-text{
    padding-left: 0px;
  }
  .footer-details ul li a{
    margin-right: 0px;
    line-height: 30px;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  #opportunity-before:after{
    content: url(../images/mobile-car.png);
  right: 0px;
  top: -66px;
  }
  .contact{
    max-width: 170px;
  }
  .logo img{
    max-width: 170px;
  }
  .slider-before:before{
    content: none;
  }
  #slider-before:before{
    content: url(../images/1260.png);
    right: 0px;
    width: 800px;
    top: -90px;
  }
  .main-banner .item h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 6px;
    }
    .main-banner .item p{
      line-height: 22px;
    }
    .service-flex {
      transform: translate(0px, 57px);
    }
    .services .service-item .main-content{
      max-width: 100%;
      height: 230px;
    }
    .professional-img{
      left: 0px;
      position: relative;
    }
    .professional-content{
      padding: 15px;
      margin-left: 0px;
    }
    .pr-details {
      margin-left: 20px;
  }
  .pr-details h2{
    font-size: 16px;
  }
  .pr-details p{
    font-size: 14px;
  }
  .main-banner .owl-nav {
    position: absolute;
    top: auto;
    left: 0px;
    bottom: -60px;
}
.main-banner .owl-nav .owl-prev i {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.main-banner .owl-nav .owl-next i {
  position: absolute;
  bottom: 0px;
  left: 50px;
}
}
@media(min-width:1100px) and (max-width:1200px){
  #slider-before:before{
    content: url(../images/1260.png);
    width: 800px;
    height: 600px;
    position: absolute;
    right: -60px;
    top: -86px;
    z-index: 3;
  }
  .footer-info-text{
    padding-left: 0px;
  }
  #opportunity-before:after{
    content: url(../images/mobile-car.png);
  right: -90px;
  top: -66px;
  }
  .main-banner .item h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 6px;
    }

    .main-banner .item p{
      line-height: 22px;
    }
    .main-banner .item .buttons {
      margin-top: 20px;
    }
    .slider-before:before {
      content: none;
    }
    .service-flex {
      transform: translate(0px, 57px);
    }
    .services .service-item .main-content{
      max-width: 100%;
      height: 230px;
    }
    .services .service-item{
      width: 25%;
    }
    .professional-img{
      left: 0px;
      position: relative;
    }
    .professional-content{
      padding: 15px;
      margin-left: 0px;
    }
    .pr-details {
      margin-left: 20px;
  }
  .pr-details h2{
    font-size: 16px;
  }
  .pr-details p{
    font-size: 14px;
  }
  .opportunity:after {
    right: 0px;
    top: 75px;
}
#opportunity-before:after {
  content: url(../images/mobile-car.png);
  right: -90px;
  top: -66px;
}
.main-banner {
  padding: 280px 0px 130px 0px;
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-details ul li a{
  line-height: 39px;
  margin-right: 0px
}
.logo img{
  max-width: 170px;
}
.header-area .main-nav .nav li:last-child {
  max-width: 170px;
}
.header-area .main-nav .nav li a{
  font-size: 13px;
}
}
@media(min-width:1440px){
  .contact-page .container{
    max-width: 1410px;
  }
}
@media (min-width:1200px) and (max-width:1380px){
  .slider-before:before{
right: 0px;
  }
  .footer-info-text{
    padding-left: 0px;
  }
  .services .service-item{
    width: 25%;
  }
  .services .service-item .main-content{
    max-width: 100%;
  }
  .service-flex{
    transform: translate(0px, 20px);
  }
  .header-area .main-nav .nav li a{
    padding-left: 5px;
  }
  .contact{
    max-width: 180px;
  }
  .main-banner .owl-nav {
    left: -47px;
}
}
@media(min-width:1380px) and (max-width:1400px){
  .slider-before:before {
   content: none;
}
.services .service-item{
  width: 25%;
}
.header-area .main-nav ul.nav{
  justify-content: space-between;
}
.service-flex {
    transform: translate(0px, 90px);
}
.services .service-item .main-content{
  max-width: 100%;
}
.contact{
  max-width: 180px;
}
.header-area .main-nav .nav li a{
  padding-left: 10px;
  padding-right: 10px;
}
.logo img{
  max-width: 180px;
}
}
@media(min-width:1400px) and (max-width:1590px){
  .service-flex {
    transform: translate(0px, 69px);

}
.services .service-item .main-content{
  max-width: 100%;
}
.services .service-item{
  width: 25%;
}
.slider-before:before{
  top: 260px;
}
.main-banner .owl-nav {
  top: auto;
  left: 0px;
  bottom: -160px;
}
.main-banner .owl-nav .owl-prev i {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.main-banner .owl-nav .owl-next i {
  bottom: 0px;
  left: 50px;
  position: relative;
}

}

.lang-mobile i{
  color: var(--color-orange);
  font-size: 27px;
}
.botao {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  cursor: pointer;
}

#bg-menu-mobile {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  background-color: #4E62F7;
  background-color: var(--color-orange);

  will-change: transform;
}

#hamburger ul {
  width: 100%;
  position: fixed;
  top: 100px;
  left:0; 
  /*left: 0;*/
  list-style: none;
  color: #fff;
  z-index:3;
}
#menu-mobile{
  margin-top: 100px;
  display: none;
}
.openmenu{
  display: block !important;
}

.ham-menu li {
  font-weight:300;
  font-size: 20px;
  position: relative;
  margin-bottom: 10px;
  left:100%;
  cursor: pointer;
  will-change: transform;
  padding-left: 70px
}

.ham-menu li a{
color: white;
}

.ham-menu li:hover {
  color: #111;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

/* hang burger */

#hamburger {
  width: 30px;
  height: 27px;
  position: relative;
  margin: 30px 0px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 30px;
  background-color: transparent;
}




#hamburger span {
  z-index: 3;
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-orange);
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .20s ease-in-out;
  -moz-transition: .20s ease-in-out;
  -o-transition: .20s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2) {
  top: 12px;
}

#hamburger span:nth-child(3) {
  top: 25px;
}

#hamburger.open span:nth-child(1) {
  top: 14px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  background-color: #fff;
}

#hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
  -webkit-transition: .16s ease-in-out;
  -moz-transition: .16s ease-in-out;
  -o-transition: .16s ease-in-out;
  transition: .16s ease-in-out;
}

#hamburger.open span:nth-child(3) {
  top: 14px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  background-color: #fff;
}
@media(min-width:550px) and (max-width:768px){
  .service-flex {
    transform: translate(0px, 0px);
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-info-text{
    padding-left: 0px;
  }
  .main-banner {
    padding-top: 200px;
    padding-bottom: 0px !important;
    height: 819px;
}
  #slider-before{
    background: url(../images/mobile-sliderr.png);
    width: 100%;
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  #slider-before:before{
    content:  none !important;
    right: auto;
    top: -110px;
    height: auto;
    width: auto;
    left: 50%;
    transform: translate(-50%, -11%);
  }
  .cars:after{
    content: none;
  }
  .pr-details{
    margin-left: 20px;
  }
  .opportunity{
    height: 500px;
    align-items: flex-start;
    padding: 30px;
  }
  #opportunity-before:after {
    right: -36px !important;
    top: 33px!important;
}
  .professional-content{
    max-width: 100%;
    margin-left:0px;
    padding: 15px;
  }
  .footer-details {
    height: auto;
    flex-direction: column-reverse;
  }
  .network{
    margin-top: 200px;
  }
  .footer-info-text{
    padding-left: 0px;
  }
  .footer-details ul li a {
    line-height: 40px;
    margin-right: 0px;
  }
  .social img{
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .footer-details img {
    max-width: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
}
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .professional-img{
    left: 0px;
    position: relative;
  }
  .slider-before:before{
    content: none;

  }
  .services .service-item{
    width: 50%;
  }
  .services .service-item .main-content{
    max-width: 100%;
  }
}
@media (max-width:450px){
  .main-banner {
    padding-top: 150px;
    padding-bottom: 0px;
}
.logo img {
  margin-right: 40px;
}
.professional-service{
  margin-top: 50px !important; 
}
#opportunity-before:after{
  right: auto !important;
  top: 130px !important;
  transform: scale(1.2);
  left: 50%;
  transform: translate(-50%, -11%)
}
.opportunity{
  padding-bottom: 300px !important;
}
#slider-before{
  background: url(../images/mobile-500.png);
  width: 100%;
  height: 290px;
  z-index: 3;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(80px);
}
#slider-before:before{
  content: none !important;
}
}
.after-map:before{
  content: "";
  width: 4px;
  height: 475px;
  background: var(--color-orange);
  position: absolute;
  left: 8px;
  top: 150px;
  border-radius: 3px;
}
.contact-page{
  margin-top: 200px;
  padding-bottom: 100px;
}
.maps-ok i{
  font-size: 30px;
}
.maps-ok{
  position: absolute;
  top: 37%;
  color: white;
  background: var(--color-orange);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  left: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-section h3 {
  font-size: 30px;
  font-weight: bold;
  color: #2E2E2E;
  letter-spacing: -0.75px;
}
.needs-validation{
  max-width: 560px;
  width: 100%;
}
.info-section p {
  letter-spacing: -0.4px;
  color: #888888;
  font-size: 16px;
  font-weight: 400;
}
.contact-info i {
  color:var(--color-orange);
  font-size: 20px;
  margin-right: 20px;
  width: 30px;
}
.contact-info b {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--p-font);
  color: #3B3B3B;
}
.contact-info a {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--p-font);
  color: #3B3B3B;
}
.form-control {
  background: #F7F7F7;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 17px 15px;
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: .875em;
  color: var(--bs-form-invalid-color);
}
.form-kvkk {
  direction: rtl;
  overflow: auto;
}
.form-kvkk {
  height: 60px;
  overflow-y: scroll;
  padding-left: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 9px;
    color: #888888;
}
.form-kvkk label{
  direction:ltr;
}
.main-form  ::-webkit-scrollbar {
  width: 3px;
  }
  .form-check-label{
    font-size: 12px;
    color: #888888;
  }
  /* Track */
  .main-form  ::-webkit-scrollbar-track {
  
      -webkit-border-radius: 5px;
      background: #8888889d;
      border-radius: 5px;
      width: 5px;
      padding: 20px
  }
  
  /* Handle */
  .main-form  ::-webkit-scrollbar-thumb {
      -webkit-border-radius: 5px;
      background:var(--color-orange);
      width: 6px;
  
  
  }
  .main-form  :-webkit-scrollbar-thumb:window-inactive {
      background:var(--color-orange)
  }
  .ml-12{
    margin-left: 12px;
  }
  .contact-info svg{
    width: 28px;
  }
  .info-section .mb-3{
    margin-bottom: 27px !important;
  }
  .form-control::placeholder{
    color: #C9C9C9;
  }
  .form-control:focus{
    border: 1px solid var(--color-orange);
  }
  .form-control:focus{
    box-shadow: 0 0 0 -0.75rem var(--color-orange)
  }

  .form-check-input:checked {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
    cursor: pointer;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e);
}
.form-check-input:focus {
  border-color: var(--color-orange);
  outline: 0;
  box-shadow: none !important;

}
.white-button button{
  background: var(--color-orange);
  max-width: 200px;
  padding: 13px;
  text-align: center;
  color: white;
  border: 1px solid var(--color-orange);
  border-radius: 23px;
}
@media(max-width:767px){
  #opportunity-before{
    background: none;
    height: auto;
    transform: none;
  }
  .opportunity {
    padding-bottom: 300px !important;
    margin: 15px;
}
#opportunity-before:after {
  right: auto !important;
  top: 130px !important;
  transform: scale(1.2);
  left: 50%;
  transform: translate(-50%, -11%);
}

}
@media(min-width:767px) and (max-width:992px){

  #opportunity-before:after{
    content: url(../images/800.png) !important; 
    top: -9px !important;
  }
  .opportunity{
    height: 660px;
    display: block;
    padding: 30px;
    margin: 1.5rem;
  }
}


.about{
  margin-top: 180px;
}


.tab {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.tabs {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
}
.tabs li {
  float: left;
  line-height: 38px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.tabs a {
  color: #504C4D;
  font-weight: 400;
  display: block;
  letter-spacing: -0.45px;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-family: 'Nunito', sans-serif;
  transition: all .3s;
}
.tabs_item {
  display: none;
}
.tabs a i{
  margin-right: 5px;
  display: none;
}
.active .current a i{
  display: inline-block;
}
.tabs_item img {
  border-radius: 15px;
  width: 100%;
  margin-bottom: 17px;
}
.tabs_item:first-child {
  display: block;
}
.current a {
  color: var(--color-orange);
  font-weight: bold;
  font-family: 'Nunito', sans-serif;
  transition: all .3s;
}
.tab_content{
  border: 2px solid #EBEBEB;
  border-radius: 30px;
  padding: 18px 22px;
}
.breadcrumb li a{
  color: #B7B7B7;
  font-size: 14px;
}
.breadcrumb li{
  color: #B7B7B7;
  font-size: 14px;
}
.breadcrumb {
  margin-bottom: 15px;
}
.about h4{
  font-size: 32px;
  color: #676767;
  font-weight: bold;
  margin-bottom: 10px;
}
.announcements::before{
  content: url(../images/banner-about.svg);
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
.announcements{
  margin-top: 20px;
  background: url(../images/banner-a.png);
  padding: 51px 22px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  position: relative;
  height: 254px;
}
.announcements .container{
  position: relative;
  z-index: 1;
}
.announcements h3{
  font-size: 16px;
  color: white;
  margin-bottom: 10px;
}
.announcements h1{
  font-size: 32px;
  color: white;
  letter-spacing: -0.8px;
  font-family: 'Nunito', sans-serif;
  max-width: 400px;
  width: 100%;
}
.announcements p{
  color: white;
  max-width: 300px;
  width: 100%;
}
@media(min-width:992px){
  .mobile-drop{
    display: none !important;
  }
  .mr-20{
    margin-right: 20px;
  }
}
@media(max-width:991px){
  .tabs-desktop{
    display: none !important;
  }
  .selectbox {
    position:relative; 
    height: auto; 
    width: 100%; 
    }
  .select {
    position:relative;
    z-index:1;
    padding:0 5px;
    border: 1px solid #E2E2E2;
    border-radius: 15px;
    background: white;
    }
    .options{
      padding:0px 16px;
      padding-bottom: 16px;
    }
  .select.active {

    z-index:2;
    
    background: white;
    border: 1px solid #E2E2E2;
    }
  .select.hidden {
    display:block;
  }
  .select div {display:none;}
  .select.active div {display:block;}
  .select .header {
    position:relative;
    display:block;
    cursor:pointer;
    padding: 16px 31px;
    }
  .select .selected {
    display:block;
    color: #F68712;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -0.35px;
    }
    .menu{
      position: absolute;
      right: 16px;
      top: 27px;
      font-size: 8px;
      color: #A5A5A5;
      letter-spacing: -0.2px;
  }
  .menu:after{
    content: "...";
    color: #A5A5A5;
    top: -45px;
    position: absolute;
    font-size: 39px;
    left: -2px;
  }

  .select i {
    position: absolute;
    left: 14px;
    top: 19px;
    color: var(--color-orange);
    width: 14px;
    height: 6px;
    }
  .select.active i {background-position:0 -18px;}
  .select .options {max-height:100%; overflow:auto;}
  .options i {display:none;}
  .select ul {list-style-type:none;}
  .select ul li {
    position:relative;
    display:block;
    width:100%;
    margin-top:5px;
    border: 1px solid #F7F7F7;
    border-radius: 10px;
    padding: 0px 10px;
    }
    .tab_content{
      margin-top: 20px;
    }
  .select ul li span {
    display:inline-block;
    line-height:1;
    color:#808080;
    letter-spacing: -0.35px;
    cursor:pointer;
    position:relative;
    }
  .select ul li span:hover, .select ul li span.active {color:orange;left:3px;}
  .select ul li span.active {font-weight:bold;}
  .select li ul {margin-left:10px;}
  
}
#lottieP{
  max-width: 300px;
}
iframe{
  border-radius: 10px;
}

@media(min-width:992px) and (max-width:1199px){
  .after-map:before {
      left: 218px !important;
 }
 .maps-ok {
  left: 420px !important;
}
}

.lang-drop{
  padding: 5px 10px;
  background: white;
  border-radius: 3px;
  width: 150px;
  position: absolute;
  display: none;
}
.lang-drop a{
  color: var(--color-orange);
  font-weight: 500;
  line-height: 40px
}
.lang-mobile:hover .lang-drop{
  display: block;
}
.lang-mobile{
 cursor: pointer;
}
.lang-mobile .fa-angle-down{
  font-size: 10px;
  top: -5px;
  position: relative;
}
@media(max-width:600px){
  .after-map:before {
    width:100% !important;
    left: 0px !important;
  }
  .maps-ok {
    top: -40px !important;
    left: 230px !important;
}
.mb-p{
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 0px !important;
}
.after-map iframe{
  border: 0;
  transform: translateY(-54px);
  z-index: 1;
  position: relative;
}
.maps-ok{
  position: relative;
  left: auto !important;
  top: -30px !important;
  width: 57px;
  height: 57px;
  margin: 0 auto;
  z-index: 2;
 }
 .maps-ok i {
  font-size: 18px !important;
}
.info-section h3{
  font-size: 20px;
  text-align: center;
}
.contact-info{
  max-width: 300px;
  margin: 0 auto;
}
.contact-info a{
  font-size: 14px !important;
}
.contact-info b{
  font-size: 11px !important;
}
 .white-button button{
  max-width: 100% !important;
  margin-bottom: 20px !important;
 }
}
@media(min-width:768px){
  .mw-a{
    max-width: 90% !important;
  }
}
.brosur__images{
  font-size: 16px;
  color: var(--main-color);
  background-color: var(--color-orange);
  border: 2px solid #FFC689;
  max-width: 195px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 18px 28px;
  border-radius: 25px;
  font-weight: 500;
  transition: all .3s;
  justify-content: center;
}
.brosur__images:hover {
  background: #FAF4EB;
  color: #FFC689;
  transition: all .3s;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.logo__vision{
  max-width: 200px !important;
  border-right: 1px solid transparent !important
}
.flex--logo{
  display: flex !important;
  align-items: center;
  position: relative;
  justify-content: center;

}
.flex--logo--footer{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex--logo--footer .vision-logo{
  margin-top: 12px;
  max-width: 140px !important;
}
.policy{
  margin-top: 200px;
}
.policy h2{
  font-size: 20px;
}
.policy ul li{
  line-height: 28px;
  color: #676767;
  list-style: disc;
  font-size: 16px;
}
.policy ul{
  list-style: disc;
  font-size: 16px;
}
.policy div{
  color: #676767;
}