/*
 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
 */

 


:root {
  --black:#000000;
  --primary:#088A9A;
  --primary1:#29C6DA;
  --secondary:#000000;
  --white:#fff;
  --font-primary:'Montserrat';
  --font-secondary:'Metropolis';
  --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 {
  font-size: 16px;
  line-height:26px;
  /* font-family:var(--font-primary); */
  font-weight:normal;
}

* h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}






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:1630px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 15px;
}

/*-----------------Header--------------*/

.hide-header {
    opacity: 0;
    margin-top: -150px!important;
  }
.show-header{
    opacity: 1;
    margin-top: 0px!important;
  }
.sticky{
  background:rgba(0,0,0,1);
}
.dark{
  background:rgba(0,0,0,1);
}
.sticky .header-logo-area a{
  padding:12px;
}
.header_inner{
  width: 100%;
  display: flex;
  align-items:center;
  max-width:1600px;
  margin: auto;
}
.header-logo-area img{
    transition: var(--transition);
}
.header-logo-area a{
  display: block;
  width: 100%;
  padding:34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:var(--primary);
  transition: var(--transition);
}
.menu-search-btn-wrap{
  margin-left:auto;
  display: flex;
  align-items: center;
  gap:35px;
}
.header-main-menu{
  display: flex;
  align-items: center;
  gap:20px;
}
.header-main-menu li a{
  color:#fff;
  display:inline-block;
  position: relative;
}
.header-main-menu li a:after,
.footer-menu li a:after{
  content: "";
  position: absolute;
  bottom: 0px;
  left:0px;
  width:100%;
  transition: transform 250ms ease-in-out;
  border-bottom:1px solid #fff;
  transform: scaleX(0);
}
.header-main-menu li a:hover:after,
.header-main-menu li.current-menu-item a:after,
.header.sticky .header-main-menu li a.active:after,
.footer-menu li a:hover:after{
    transform: scaleX(1);
    border-color:#fff;
}
.header.sticky .header-main-menu li a:hover:after,
.header.sticky .header-main-menu li.current-menu-item a:after{
  border-color:#fff;
}
.search-btns-wrap{
  display: flex;
  align-items: center;
  gap:10px;
}
.search-btn{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width:58px;
  height: 58px;
  background:rgba(255, 255, 255, 0.27);
  border-radius:10px;
  transition: var(--transition);
}
.search-btn svg{
  stroke:#fff;
}
.search-btn:hover{
  background:var(--primary);
}

.top-btns-box{
  display: flex;
  align-items: center;
  gap:15px;
}
.top-btns-box li a{
  min-width:138px;
  padding:0px 15px;
  height:58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #fff;
  color:#fff;
  border-radius:10px;
}
.top-btns-box li:last-child a{
  min-width:238px;
  background-color:var(--primary);
  border-color:var(--primary);
}
.top-btns-box li:first-child a:hover{
  background-color:var(--primary);
  border-color: var(--primary);
}
.top-btns-box li:last-child a:hover{
  color:var(--primary);
  background-color:#fff;
  border-color:#fff;
}

/*----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: #fff;
}
.animated-icon1 span:nth-child(1) {
  top: 0px;
  width:15px;
}
.animated-icon1 span:nth-child(2) {
  top: 8px;
}
.animated-icon1 span:nth-child(3) {
  top: 16px;
  width:15px;
}
.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 #fff;
  display: none;
  z-index: 1;
  align-items: center;
  justify-content:center;
  cursor: pointer;
}
/*------footer-----*/

.social-media li a{
  color:rgba(255,255,255,0.90);
  font-size: 28px;
}
.social-media li a:hover{
  color:var(--primary1);
}
.copy-right-wrap{
  display: flex;
  align-items: center;
  gap:70px;
}
.copy-right-wrap p{
  color:rgba(255,255,255,0.90);
  font-size:18px;
  line-height:19px;
  margin-bottom: 0px;
}
.phone-email{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin:auto;
}
.phone-email li:first-child{
  border-right:1px solid #91C0CE;
  padding-right: 10px;
  margin-right:10px;
}
.phone-email li,
.terms-privacy li{
  line-height:18px;
}
.phone-email li a{
  color:rgba(255,255,255,0.90);
  font-size:18px;
  font-weight:400;
}
.phone-email li:last-child{
  width:100%;
  text-align: center;
  margin-top:15px;
}
.phone-email li:last-child a{
  text-decoration: underline;
}
.phone-email li a:hover,
.terms-privacy li a:hover{
  color:var(--primary1);
}
.terms-privacy{
  display: flex;
}
.terms-privacy li a{
  color:rgba(255,255,255,0.90);
  font-size:18px;
  line-height:19px;
  text-decoration: underline;
  font-weight:400;
}
.terms-privacy li:first-child{
  border-right:1px solid rgba(255,255,255,0.90);
  padding-right:7px;
  margin-right:7px;
}
/*----end----*/
/*-----------404----------*/
.banner,
.banner-404{
  width:100%;
  height:350px;
  display: flex;
  align-items: flex-end;
}
.banner-404 h1{
  color:var(--white);
}
.banner-inner{
  padding-bottom: 50px;
}
.error-404 .btn-link{
  display: inline-flex;
  width:220px;
}
/*---------search-----*/

.search-box-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:15px;
}
.close-search{
  width:58px;
  min-width:58px;
  height:58px;
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  cursor: pointer;
  background:rgba(255, 255, 255, 0.27);
  border-radius:10px;
  transition: var(--transition);
}
.close-search:hover{
  background:var(--primary);
}

.sticky .header-search-box{
  padding:15px 0px;
}
.banner .search-banner-inner h1{
  font-size:40px;
  line-height:40px;
  letter-spacing: unset;
}