/*
 Theme Name: Twenty Nineteen Child
 Theme URI: https://www.element8.ae
 Author: Element8
 Author URI: https://www.element8.ae
 Template: twentynineteen
 Description: Child theme for Twenty Seventeen.
 Version: 0.1
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags:
 Text Domain: twentynineteen-child
 */

@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-Light.woff2') format('woff2'),
        url('assets/fonts/OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-Regular.woff2') format('woff2'),
        url('assets/fonts/OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-Medium.woff2') format('woff2'),
        url('assets/fonts/OpenSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-SemiBold.woff2') format('woff2'),
        url('assets/fonts/OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-Bold.woff2') format('woff2'),
        url('assets/fonts/OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bellota Text';
    src: url('assets/fonts/BellotaText-Regular.woff2') format('woff2'),
        url('assets/fonts/BellotaText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bellota Text';
    src: url('assets/fonts/BellotaText-Light.woff2') format('woff2'),
        url('assets/fonts/BellotaText-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bellota Text';
    src: url('assets/fonts/BellotaText-Bold.woff2') format('woff2'),
        url('assets/fonts/BellotaText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}






:root {
  --primary:#666666;
  --white:#fff;
  --font-primary:'Open Sans';
  --font-secondary: 'Bellota Text';
  --transition: all 0.3s ease-in-out;
}


::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;background: rgba(255, 255, 255, 1); 
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(255, 255, 255, 1); 

}
::-webkit-scrollbar-thumb {
  background: #212121; 
  border-radius: 10px;
  width: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #111; 
}

body {
  background-color:#fff;
  font-size: 16px;
  line-height:24px;
  font-family:var(--font-primary);
  font-weight:normal;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

* h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:var(--font-primary);
  font-weight:300;
  color:#000000;
  text-transform: uppercase;
  margin-bottom:20px;
}

.heading-1{
  font-size:90px;
  line-height:90px;
}
.heading-2{
  font-size:56px;
  line-height:56px;
}
.heading-3{
  font-size:50px;
  line-height:50px;
}
.heading-4
{
  font-size:34px;
  line-height:34px;
}

h5,
.heading-5{
  font-size:22px;
  line-height:normal;
}

h6,
.heading-6{
  font-size: 20px;
  line-height: 22px;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

p{
  font-size:18px;
  line-height:30px;
  font-family:var(--font-secondary);
  font-weight:normal;
  color:var(--primary);
  margin-bottom:30px;
}
p:last-child{
  margin-bottom:0px;
}

ul {
  margin-bottom: 0px;
}
ul li {
  list-style: none;
}

a {
  font-size:16px;
  text-decoration: none;
  font-family:var(--font-primary);
  font-weight:500;
  line-height:1;
  color:#000;
  transition:var(--transition);
  text-transform: uppercase;
}

a:hover {
  text-decoration: none !important;
  color: #1A1C1E;
}

input,
textarea,
select {
  background: none;
  outline: none;
  font-size:1rem;
  color: var(--black);
  border: 1px solid;
  font-family:var(--font-primary);
}

img {
  outline: none;
  max-width: 100%;
  height: auto;
  border: 0px none;
}

input[type='submit'] {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

:focus {
  outline: none;
}

.container {
  max-width:1430px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 15px;
}

/*-----------------Header--------------*/
.header{
  background: rgba(255,255,255,70%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  width: 100%;
  z-index:111;
  padding:20px 50px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position:fixed;
  top: 0px;
  border-bottom: 1px solid rgba(69, 69, 69, 0.3);
}
.sticky{
  padding:10px 50px;
  background: #fff;
}

.header_inner{
  width: 100%;
  max-width: 1500px;
  margin:auto;
  display: flex;
  align-items:center;
}
.header-logo-area a{
  display: flex;
  align-items: center;
}
.header-logo-area a img{
  transition: var(--transition);
}
.sticky .header-logo-area a img{
  max-width:120px;
}

.menu-area-wrap{
  margin-left:auto;
}
.header-main-menu{
  display: flex;
  align-items: center;
  gap:25px;
}
.header-main-menu li{
  line-height: 1;
}
.header-main-menu li a{
  display:inline-block;
  position: relative;
  font-weight: 600;
}
.header-main-menu li a::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left:0px;
  width:100%;
  transition: transform 250ms ease-in-out;
  border-bottom:1px solid #000;
  transform: scaleX(0);
}
.header-main-menu li a:hover::after,
.header-main-menu li.current-menu-item a::after{
    transform: scaleX(1);
    border-color:#000;
}
.home .header-main-menu li.current-menu-item a::after{
  transform: scaleX(0);
}

/*----mobile menu----*/
.animated-icon1 {
  width: 24px;
  height:19px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.animated-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  opacity: 1;
  left:50%;
  -webkit-transform:translateX(-50%) rotate(0deg);
  -moz-transform:translateX(-50%) rotate(0deg);
  -o-transform:translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.animated-icon1 span {
  background:#000;
}
.animated-icon1 span:nth-child(1) {
  top: 0px;
}
.animated-icon1 span:nth-child(2) {
  top: 8px;
}
.animated-icon1 span:nth-child(3) {
  top: 16px;
}
.animated-icon1.open span{
  left:0px;
}
.animated-icon1.open span:nth-child(1) {
  top:9px;
  width:100%;
  -webkit-transform:translateX(0px) rotate(135deg);
  -moz-transform:translateX(0px) rotate(135deg);
  -o-transform:translateX(0px) rotate(135deg);
  transform: translateX(0px) rotate(135deg);
}
.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.animated-icon1.open span:nth-child(3) {
  top: 9px;
  width:100%;
  -webkit-transform:translateX(0px) rotate(-135deg);
  -moz-transform:translateX(0px) rotate(-135deg);
  -o-transform:translateX(0px) rotate(-135deg);
  transform: translateX(0px) rotate(-135deg);
}
.menu-button{
  width:44px;
  height:44px;
  border-radius:50%;
  border: 1px solid #000;
  display: none;
  z-index: 1;
  align-items: center;
  justify-content:center;
  cursor: pointer;
}
.mob-header-menu-area{
  display: none;
  position: fixed;
  padding:70px 50px;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background: #00517E;
  z-index: 111;
}
.menu-button.close {
  display: flex;
  border: 0px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.menu-button.close img {
  max-width: 24px;
  -webkit-filter: invert(100%);
  filter: invert(100%);
}
.header-mob-menu li a{
  font-size:18px;
  line-height:18px;
  color:#fff;
  display:inline-block;
  position: relative;
  padding:15px 0px;
}
.header-mob-menu li a::after{
  content: "";
  position: absolute;
  bottom:-1px;
  left: 0px;
  width: 100%;
  transition: transform 250ms ease-in-out;
  border-bottom: 1px solid #fff;
  transform: scaleX(0);
}
.header-mob-menu li a:hover:after,
.header-mob-menu li.current-menu-item > a:after,
.header-mob-menu li.current-menu-parent > a:after{
  transform: scaleX(1);
}

/*------footer-----*/
.footer{
  width:100%;
  background:#000;
  padding:25px 0px;
}
.copy-right-block{
  display: flex;
  align-items: center;
}
.copy-right-block p{
  font-family:var(--font-secondary);
  margin-bottom: 0px;
  color:rgba(255,255,255,1);
  font-size: 16px;
  line-height:16px;
}
.copy-right-block ul{
  margin-left: auto;
  display: flex;
}
.copy-right-block ul li{
  line-height:1;
}
.copy-right-block ul li a{
  color:rgba(255,255,255,1);
  font-size:16px;
  line-height:16px;
  font-family: var(--font-secondary);
  position: relative;
  padding-right:12px;
  margin-right:12px;
  text-transform: capitalize;
  font-weight: normal;
}
.copy-right-block ul li a::after{
  content: '|';
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  right:0px;
  width:1px;
}
.copy-right-block ul li:last-child a{
  margin-right: 0px;
  padding-right: 0px;
}
.copy-right-block ul li:last-child a::after{
  content:none;
}
/*----end----*/
.p-space-tb{
  padding:110px 0px;
}
.p-space-tb-2{
  padding:75px 0px;
}
.pt-100{
  padding-top: 100px;
}
.pb-100{
  padding-bottom: 100px;
}
.pt-50{
  padding-top: 50px;
}
.pb-50{
  padding-bottom: 50px;
}
.wpcf7 form .wpcf7-not-valid-tip{
  font-size: 13px;
}
.wpcf7 form .wpcf7-response-output {
  width:100%;
  margin: 3em 0px 0px;
  border: 1px solid #D8000C !important;
  color: #D8000C;
  font-size: 13px;
  background: #FFBABA;
  padding: 5px 10px;
  text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #46b450;
  background: #fff;
  border: 1px solid #6f9b41 !important;
}

