
 {
  box-sizing: border-box;
}

:root {
	--background-color: black;
  --text-color: hsl(0, 0%, 100%);
  --thepro-primary-color: #ffffff;
  --thepro-secondary-color: #101010;
  --nav-menu-bg-color: #ffffff; /* #191919 */
  --nav-bar-bg-color: rgb(255 255 255 / 80%); /* rgb(0 0 0 / 80%) */
  --bg-lines-color: rgb(0 0 0 / 8%); /* rgb(255 255 255 / 8%); */
  --blocks-bg-color: #ffffff;
}

:focus {
  outline: 0;
}
::-moz-focus-inner {
  border: 0;
}


a {
  text-decoration: none;
  transition: all 0.85s ease-in-out;
}
a:focus,
a:hover {
  text-decoration: none;
}



html {
  background-color: transparent !important;
}

html, body {
  background-color: var(--thepro-primary-color); /* #111 */
  color: #777777;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.95;
  position: relative;
  overflow-x: hidden;

}






/* 
  ==========
    NAVBAR
  ==========
*/

.navbar {
  background-color: transparent;
  padding: 23px 0 !important;
  transition: all .2s ease;
}
.navbar * li {
  list-style: none;
}
.navbar-scrolled {
  padding: 17px 0;
  background-color: var(--nav-bar-bg-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 8%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -ms-backdrop-filter: blur(10px);
}
.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
  filter: none;
}
.navbar .navbar-brand span {
  color: var(--thepro-secondary-color);
  text-transform: uppercase;
}
.navbar .navbar-brand img {
  width: 110px;
}
.navbar .navbar-menu {
  display: none;
}
.navbar .navbar-nav .nav-link {
  color: var(--thepro-secondary-color);
  opacity: .7;
  font-size: 15px;
  padding: 0.5rem 0.3rem;
}
.navbar .navbar-nav .nav-link:hover {
  opacity: 1;
}
.navbar .navbar-nav .nav-item .nav-link {
  margin: 0 16px;
}

/* NAVBAR: Dropdown Menu */
.navbar .dropdown:hover > .dropdown-menu {
	display: block; /* this makes the dropdown menu stay open while hovering it */
	min-width: auto;
	animation: fadeDropdown 0.5s; /* required for the fade animation */
}
@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.navbar .dropdown-toggle:focus { /* removes dropdown outline on focus  */
	outline: 0;
}
.navbar .dropdown-menu {
	margin-top: 0;
	border: none;
	border-radius: 0;
	background-color: var(--nav-menu-bg-color);
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
  width: 10rem;
}
.navbar .dropdown-menu::before {
  content: '';
  position: absolute;
  left: 10px;
  top: -12px;
  border: 6px solid transparent;
  border-bottom: 6px solid var(--nav-menu-bg-color);
}
.navbar .dropdown-item {
	color: var(--thepro-secondary-color);
  opacity: .7;
	text-decoration: none;
  font-size: 14px;
}
.navbar .dropdown-item:hover {
	background-color: transparent;
  color: var(--thepro-secondary-color);
  opacity: 1;
}
/* NAVBAR: End Dropdown Menu */

@media (max-width: 767.98px) {
  .navbar .navbar-brand img {
      width: 90px;
  }
  .navbar .navbar-menu {
      -ms-flex-direction: column;
      -ms-flex-pack: justify;
      cursor: pointer;
      display: -ms-flexbox;
      display: flex;
      flex-direction: column;
      height: 19px;
      justify-content: space-between;
      position: relative;
      width: 30px;
  }
  .navbar .navbar-menu .btn-line,
  .navbar .navbar-menu:after,
  .navbar .navbar-menu:before {
      -ms-flex-item-align: end;
      align-self: flex-end;
      background-color: gray;
      height: 3px;
      width: 100%;
  }
  .navbar .navbar-menu:before {
      content: "";
      width: 85%;
  }
  .navbar .navbar-menu:after {
      content: "";
  }
  .navbar .navbar-menu .btn-line {
      width: 55%;
  }
  .navbar .navbar-menu .btn-line,
  .navbar .navbar-menu:after,
  .navbar .navbar-menu:before {
      background-color: var(--thepro-secondary-color);
  }
  .navbar .navbar-collapse .navbar-nav {
      background-color: var(--nav-menu-bg-color);
      box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
      padding: 8px 20px;
      position: relative;
      top: 8px;
      z-index: 2;
  }
  .navbar .navbar-collapse .navbar-nav-scrolled {
      background-color: transparent;
      padding: 8px 0;
      box-shadow: none;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link {
      opacity: 1;
      font-size: 14px;
      letter-spacing: 0.35px;
      padding: 7px 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link:focus,
  .navbar .navbar-collapse .navbar-nav .nav-link:hover {
      color: var(--thepro-secondary-color);
  }
  /* Dropdown Menu */
  .navbar .dropdown-menu {
    background-color: transparent;
    box-shadow: none;
  }
  .navbar .dropdown-menu::before {
    display: none;
  }
  .navbar .dropdown-item {
    opacity: 1;
  }
}



.header {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E7E7E7;
  
  
	background-image: url("../images/header-me.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
 
}

@media (max-width: 767px) {
  .header {
    height: 100%;
    display: block;
    padding-top: 8rem;
  }
}

/* HEADER: TYPEWRITER */
.header .typed-cursor {
  font-weight: 400;
}

/* HEADER: Button */
.header .button-header {
  background-color: #009e66;
  border: 1px solid #009e66;
  color: #ffffff;
  border-radius: 0;
  padding: 10px 30px;
  font-size: 18px;
  text-decoration: none;
}
.header .button-header:hover {
  background-color: #005235;
  border: 1px solid #005235;
}
.header .button-header:focus {
  box-shadow: none !important;
}
@media (max-width: 500px) {
  .header .button-header {
    font-size: 16px;
  }
}


/* HEADER: CONTACT INFO */
.header .contact-info {
  position: absolute;
  bottom: 1rem;
}
.header .contact-info ul {
  display: inline-block;
  position: relative;
  width: 100%;
}
.header .contact-info ul li {
  width: auto;
  float: left;
  border-left-width: 1px;
  border-left-style: solid;
  border-color: var(--thepro-secondary-color);
  padding: 0 2.5rem;
}
.header .contact-info ul li:first-child {
  padding-left: 0;
  border-left-width: 0;
}
.header .contact-info .label-info {
  font-size: 19px;
  margin-bottom: 6px;
  
}


.contact-info-footer {
  
}

.contact-info-footer ul {
  display: inline-block;
  position: relative;
  width: 100%;
}

.contact-info-footer ul li {
  width: auto;
  float: left;
  border-left-width: 1px;
  border-left-style: solid;
  border-color: var(--thepro-secondary-color);
  padding: 0 2.5rem;
}

.contact-info-footer ul li:first-child {
  padding-left: 0;
  border-left-width: 0;
}

.contact-info-footer .label-info {
  font-size: 19px;
  margin-bottom: 6px;
  
}

.value-info {
  color: #777777;
}

.value-info a {
  color: #777777;
  text-decoration: none;
}

.value-info a:hover {
  color: #777777;
  text-decoration: none;
}

.titleText {
  font-size: 30px;
  font-weight: bold;
}

.itemTitle {
  font-size: 1.8rem;
}

.itemDetails {
  color: #7A7A7A;
  font-size: 1.5rem;
  font-weight: normal;
}

.itemDescription {
  color: #7A7A7A;
  font-size: 1.5rem;
  font-weight: normal;
}

.areaItem {
  border-left: 2px solid #009e66;
  padding: 32px 48px;
  position: relative;
}

.right-arrow {
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

.right-arrow {
  border-left: 25px solid #009e66;
}

.right-arrow{
      width: 0;
      height: 0;
      margin: 5px;
      left: 0px;
      position: absolute;
   }

@media (max-width: 767px) {
  .header .contact-info {
    position: initial;
    margin-top: 3rem;
  }
  .header .contact-info ul {
    display: block;
  }
  .header .contact-info ul li {
    float: none;
    padding: 0 2rem;
    margin-bottom: 2rem;
  }
  .header .contact-info ul li:first-child {
    padding-left: 2rem;
    border-left-width: 1px;
  }
}
@media (min-width: 767px) {
  .header .contact-info ul li:last-child {
    padding-right: 0;
    border-right: none;
  }
}



.logoText {
	
	font-family: "Oswald", sans-serif;
	font-size: 2.4rem;
	font-weight: bold;
   background: -webkit-linear-gradient(rgb(0, 0, 0), rgb(192, 192, 192));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	
}

.secondLine {
	
	font-family: "Oswald", sans-serif;
	font-size: 1.0rem;
	font-weight: bold;
   background: -webkit-linear-gradient(rgb(0, 0, 0), rgb(192, 192, 192));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	
	
}

.intro {
  display: grid;
  place-content: center;
  background-color: var(--background-color);
  min-height: 100vh;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 1rem + 18vw, 15rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-color);
  
  
}

.intro > div {
  grid-area: 1/1/-1/-1;
}
.top {
  clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
}
.bottom {
  clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
  color: transparent;
  background: -webkit-linear-gradient(177deg, black 53%, var(--text-color) 65%);
  background: linear-gradient(177deg, black 53%, var(--text-color) 65%);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(-0.02em);
}



.preloader{
	background-color:#0e0e0e;
	height:100%;
	position:fixed;
	top:0;
	width:100%;
	z-index:99999;
}

.loader-bar{
	content:'';
	position:absolute;
	display:block;
	top:80%;
	left:33.3%;
	width:33.3%;
	height:1px;
	background-color:#fff;
	z-index:99999;
	transform-origin:left;
	transform:scaleX(0);
	animation:loaderbar 2s infinite alternate
	}

@keyframes loaderbar{
	0%{transform:translateX(0) scaleX(0);transform-origin:left;left:33.3%;right:auto}
	45%{transform:translateX(0) scaleX(1);transform-origin:left;left:33.3%;right:auto}
	50%{transform:translateX(0) scaleX(1);transform-origin:right;left:auto;right:33.3%}
	100%{transform:translateX(0) scaleX(0);transform-origin:right;left:auto;right:33.3%}
}

/* 
  ===================
    HEADING SECTION
  ===================
*/
.section-heading > .section-title {
  display: inline-block;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 9;
}
.section-heading > .section-title .title-bg {
  position: absolute;
  left: -6px;
  color: transparent;
  font-size: 110px;
  font-weight: 900;
  opacity: .2;
  line-height: 1;
  max-width: 100%;
  white-space: nowrap;
  -webkit-text-stroke: 1px var(--thepro-secondary-color);
  -webkit-user-select: none;
  bottom: -30px;
  z-index: -1;
  text-transform: uppercase;
}
.section-heading.page-heading {
  text-align: center;
}
.section-heading.page-heading > .section-title {
  font-size: 46px;
  margin-bottom: 37px;
}
.section-heading.page-heading > .animated-bar {
  background-color: var(--thepro-secondary-color);
  content: "";
  display: block;
  height: 4px;
  left: 0;
  margin: 0 auto 0 auto;
  position: relative;
  right: 0;
  width: 75px;
  overflow: hidden;
}
.section-heading.page-heading > .animated-bar:after,
.section-heading.page-heading > .animated-bar:before {
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: barAnimation;
  -webkit-animation-timing-function: linear;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: barAnimation;
  animation-timing-function: linear;
  background-color: var(--thepro-primary-color);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 4px;
}
.section-heading.page-heading > .animated-bar:before {
  left: 8px;
}
.section-heading.page-heading > .animated-bar:after {
  left: 0;
}
@-webkit-keyframes barAnimation {
  from {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
  to {
      -webkit-transform: translateX(75px);
      transform: translateX(75px);
  }
}
@keyframes barAnimation {
  from {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
  to {
      -webkit-transform: translateX(75px);
      transform: translateX(75px);
  }
}
.section-heading > .section-description {
  font-size: 15px;
  margin-bottom: 17px;
}
@media (max-width: 991.98px) {
  .single-section:not(:last-child) {
      margin-bottom: 100px;
  }
  .section-heading > .section-title {
      font-size: 36px;
  }
  .section-heading > .section-description {
      font-size: 14px;
  }
  .section-heading.page-heading > .section-title {
      font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .section-heading > .section-description {
      font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .section-heading > .section-title {
      font-size: 34px;
  }
  .section-heading.page-heading > .section-title {
      font-size: 36px;
  }
}

/* HEADING SECTION: PAGES */
.section-heading.page-heading {
  margin-top: 8rem;
  margin-bottom: 6rem;
}

/* HEADING SECTION: SINGLE PAGES */
.single .section-heading.page-heading .section-post-info {
  font-size: 15px;
  margin-bottom: 22px;
  color: var(--thepro-secondary-color);
}
.single .section-heading.page-heading .section-post-info a {
  color: var(--thepro-secondary-color);
}
.single .section-heading.page-heading .section-post-info .icon {
  margin-right: .5rem;
  margin-left: 20px;
  font-size: 16px;
}
.single .section-heading.page-heading .section-post-info a {
  color: var(--thepro-secondary-color);
}
.single .section-heading.page-heading > .section-title {
  margin-bottom: 33px;
}

