.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    border-bottom-left-radius: var(--div-radius);
    border-bottom-right-radius: var(--div-radius);
    padding: 0;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
header ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

header ul li a {
    font-weight: 500;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px; 
  z-index: 100;
	    display: flex;
    justify-content: center;
    align-items: center;
} 

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  text-decoration: none;
}
a.whatsapp-float img {
    width: 30px;
}
.my-float {
  margin-top: 16px;
}
.second-header .container {
    margin: 0 auto;
    width: 100%;
    max-width: 1700px;
  }
  .second-header .inner .container {
    margin: 0 auto;
    width: 100%;
    max-width: 1555px;
  }
  .top-header .container {
    margin: 0 auto;
    width: 90%;
    max-width: 1600px; 
}
.menu-logo {
    width: 35%;
    display: none;
}
.home .header {
    background-color: transparent;
}
.homes .logo {
    display: none;
}
.homes .header.bgcolor .logo {
    display: block;
    width: 10%;
}
.homes .header.bgcolor ul li a {
    color: #000;
    opacity: 0.8;
}
.homes .header.bgcolor nav {
    width: 80%;
}
.homes .header.bgcolor nav ul {
    justify-content: flex-end;
}
.homes .header.bgcolor header nav ul li a.border {
    border: 1px solid #D0D0D0;
    border-radius: 5px;
}
.homes .header.bgcolor header nav ul li a.border:hover {
       background-color: #000;
    color: #fff;
}

.logo svg {
    max-width: 110px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px 0;
    height: inherit;
}
/*.inner .header header nav ul li a.border:hover{
    background-color: #000;
    color: #fff;
}*/
.logo a {
    display: block;
}


header {

padding: 20px  0;

width: 100%;

display: flex;

flex-wrap: wrap;

justify-content: space-between;

align-items: center;

align-content: center;

-webkit-transition: all 0.3s ease-in-out;

-moz-transition: all 0.3s ease-in-out;

-o-transition: all 0.3s ease-in-out;

-ms-transition: all 0.3s ease-in-out;

transition: all 0.3s ease-in-out;
}
.header header nav ul li a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  background: var(--bg-color);
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.header-btn a:hover {
    color:#000;
}
.header header nav ul li a:hover:after { 
  width: 100%; 
  left: 0; 
}
/*.header header nav ul li a:hover {
    color: var(--commoncolor);
}*/
.bgcolor .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 30px;
    left: 40px;
    width: 50px;
    height: 39px;
    cursor: pointer;
    z-index: 1;
    transition: 0.5s;
}

.menu-logo{
    width: 35%;
}
.menu-logo img{
    width: 35%;
}
header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    width: 65%;
    justify-content: flex-start;
    align-items: center;
}
/*.inner header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    width: 30%;
    justify-content: flex-start;
    align-items: center;
}*/
header nav ul li {
    list-style: none;
    position: relative;
 
}
li.subnav::after {
    content: '';
    position: absolute;
    width: 0;       
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000;
    bottom: 0;
    top: 17px;
    right: 0;
}
.header.bgcolor li.subnav::after {
    border-top: 6px solid #fff;
}
.subnav-content {
  background-color: var(--white);
  width: 400px;
  z-index: 999;
  padding: 0 0;
  display: none;
  position: absolute;
  left: -25px;
  right: 0;
  top: 60px;
  transition: .2s height;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.header header nav ul li a {
    padding: 0 20px 0 0;
    color:  var(--secondmaincolor);
    text-decoration: none;
    display: block;
    font-size: 1.1em;
    font-family: var(--font-one);
    white-space: nowrap;
    font-weight: 500;
    position: relative;
    margin: 0 0 0 0;
}

.header header nav li:hover > ul {
  display: block;
    position: absolute;
    top: 100%;
    left: -20px;
    width: 290px;
    text-align: left;
   
}

.header header nav li > ul {
    list-style-type: none;
    display: none;
}

.header header nav li ul li a {
    padding: 15px;
    color: #fff;
}
a.btn.outline-black:hover {
    background-color: #000;
    color: #fff;
}
a.btn.fill-black:hover{
    color: #000;
    border: 1px solid #bcb5b5;
    background-color: transparent;
}
.header header nav li ul li:nth-child(odd) a {
    background: var(--commoncolor);
}
.header header nav li ul li:nth-child(even) a {
    background: var(--maintext);
    
}
.header header nav li ul li a::after {
    display: none;
}

header nav .contact-sec {
    display: none
}

.menu-toggle {
    color: #FFF;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;

}
.header.bgcolor .logo {

     -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header.bgcolor .logo svg {
    max-width: 70px;
   -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px 0;
    height: inherit;
}
.header.bgcolor .logo svg path.white {
    fill: var(--maincolor);
} 
.header.bgcolor nav ul li a {
    color: var(--basecolor);
}
.header.bgcolor .header-btn a {
    color: var(--basecolor);
} 
.header.bgcolor {
    background-color: #ffffff;
    padding: 15px 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 50px #00000015;
}
.header.bgcolor header {
    padding: 0 16px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}



#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
    background-color: var(--maincolor);
}
#menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    left: 0;
    transform: rotate(90deg);
    background-color: var(--maincolor);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 30px;
    left: 40px;
    width: 50px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    margin: 0 0 10px 0;
    height: 3px;
    background-color: #616161;
    transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 0;
}

.menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: var(--basecolor);
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    transition-duration: .25s;
}

.menu__item {
  display: block;
  padding: 12px 24px;

  color: #333;

  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;

  text-decoration: none;

  transition-duration: .25s;
}
/*.menu__item:hover {
  background-color: #CFD8DC;
}*/

.header header nav .menu__box li a {
    padding: 0;
    color: var(--offwhite);
    text-decoration: none;
    display: block;
    font-size: 4.5em;
    font-family: var(--font-one);
    white-space: nowrap;
    font-weight: 500;
    position: relative;
    margin: 0 125px;
    text-align: left;
    line-height: 1;
}
.header header nav .menu__box li .menu-active {
    color: var(--maincolor);
}
.phone li .ph-txt p{
    font-size: 1em;
    color: var(--offwhite);
}
.location{
    margin: 300px 0;
}
.location .phone .ph-txt {
    font-size: 1em;
    margin: 0 10px;
}
.location .phone {
    margin: 0 0 0 85px;
}
.location .phone .ph-txt img{
    font-size: 1em;
    margin: 0 10px;
    color: var(--maincolor);
}
.location .phone .ph-txt b{
    font-size: 1.3em;
    font-weight: 500;
}

.location .social-media li .size{
    font-size: 1.2em;
    margin: 0 4px;
}
.location .social-media .border{
    border: 1px solid var(--basecolor);
    width: 50px;
}
header nav ul .social-media{
    display: flex;
    justify-content: center;
}
.location .phone .ph-txt img {
    width: 28px;
    height: 24px;
}

.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: var(--basecolor);
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
    overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}


.title {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}
.title2{
    color: #fff;
}
.address, .contact, .footer-links {
    margin: 30px 0;
}

.phone {
    font-size: 1em;
    display: flex;
    align-items: center;
    color: var(--maincolor);
}
.contact .phone img{
    width: 30px ;
    height: 28px;
}

.footer-links {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin: 0 0.3rem;
}

@media (max-width: 1279px) {
    .header header nav ul li a {
    padding: 20px 0.5em;
    
}
    
}
@media (max-width: 1024px) {
    header {
        padding: 0;
    }

    .menu-toggle {
        display: block;
    }

    header nav {
        position: absolute;
        width: 100%;
        height: calc(100vh);
        background: #000;
        top: 0;
        left: -100%;
        transition: 0.5s;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 0 0 0;
    }

    header nav.active {
        left: 0;
    }

    header nav ul {
        display: block;
        text-align: center;
        width: 100%;
    }

    header nav ul li a:hover,
    header nav ul li a.active {
        color: #fff;
    }



}
.header header nav ul li a.hover {
    position: relative;
}
.header header nav ul li a.hover::after {
    content: '';
    position: absolute;
    width:0; 
    height:0;
  border-top: 6px solid #fff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
    top: 45%;
    right: 0%;
}
.top-header {
    background-color: var(--secondcolor);
     -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header.bgcolor .top-header {
 
      -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.call a {
   display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}
.map-sec span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
  display: block;
    padding: 0 10px 0 0;
    opacity: 0.8;
}
.map-sec ul li a img {
    padding: 0 0 0 8px;
}
.top-sec {
    display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-sec {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.map-sec ul {
    display: flex;
}
.logo {
    width: 100%;
    margin:170px auto 50px auto;
      /*margin: 200px auto 50px auto;*/
}
.logo img{
    max-width: 480px;
      /*max-width: 780px;*/
}

nav {
    width: 100%;
    text-align: center;
    display: flex;
/*    justify-content: space-between;*/
    align-items: center;
}
.header-btn {
     width: 35%;
    display: flex;
    justify-content: flex-end;
}

/*hamburger section*/
.hamburger-two{
    margin-top: 16px;
}
.hamburger-two img{
    width: 65px;
    height: 65px;
}
.bgcolor .hamburger-two img {
    width: 50px;
    height: 50px;
    transition: 0.5s;
}


@media screen and (min-width:200px) and (max-width:683px) {
    .second-header .container {
        margin: 0 auto;
        max-width: 1600px;
      }
      .hamburger .line {
        width: 20px;
        height: 2px;
        background-color: var(--basecolor);
        display: block;
        margin: 4px 0;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .hide{
    display: block;
}
.header.bgcolor {
    background-color: #ffffffed;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 50px #00000015;
}
    header nav .contact-sec {
        display: block;
    }

    header nav {
      flex-wrap: wrap;
        align-items: center;
        padding: 0 0 0 0;
        justify-content: center;
    }

  

      .header header nav li ul li a {
        padding: 5px;
        font-size: 1.1em;
         
          font-size: 1.1em;
    color: #000;
    font-weight: 500;
    }

.header header nav ul li a {
    padding: 5px 0;
    margin: 0 5px;
    color:  var(--maincolor);
    text-decoration: none;
    display: block;
    font-size: 2.3em;
    white-space: nowrap;
    border-radius: 0;
    font-weight: normal;
    text-align: center;
}

	.header header nav li ul li a {
		background: transparent;
		color: #fff;
	}
.hamburger span.line:nth-child(2) {
    width: 15px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active .line {
    background-color: #fff;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {

    -webkit-transform: translateY(2px) rotate(45deg);
    -ms-transform: translateY(2px) rotate(45deg);
    -o-transform: translateY(2px) rotate(45deg);
    transform: translateY(-3px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    -o-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-15px) rotate(-45deg);
}

.hamburger.is-active span.line:nth-child(2) {
    opacity: 0;
}
.header.bgcolor .logo img {
    max-width: 60px;
}
.header header nav li > ul {
    display: block;
	padding: 0 0 10px 0;
}
	.header header nav li:hover > ul {
    display: block;
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
}
.header header nav .mobile-only ul li a {
    font-size: 1.4em;
    font-weight: 500;
    background-color: var(--main-color);
    border-radius: var(--btnradius);
    text-align: center;
    padding: 10px 25px;
    color: var(--text-color);
    display: inline-flex;
    white-space: nowrap;
    width: 100%;
}
.header header nav .mobile-only ul li a span {
    color: #fff;
    font-weight: 600;
    font-size: 1.4em;
    margin: 0 10px 0 0;
}

.header{
    width: 100%;
}
.hamburger-menu{
    display: none;
}
}
@media screen and (min-width:684px) and (max-width:1024px) {
    .header header nav li:hover > ul {
        display: block;
        position: relative;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 300px;
    }
    .header{
        width: 100%;
    }
    .hamburger .line {
        width: 20px;
        height: 2px;
        background-color: #fff;
        display: block;
        margin: 4px 0;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .hide{
    display: block;
}

    header nav .contact-sec {
        display: block;
    }

    header nav {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 80px 0 0 60px;
        justify-content: flex-start;
    }
    .header header nav .mobile-only ul li a {
        font-size: 1.8em;
        font-weight: 500;
        background-color: var(--main-color);
        border-radius: var(--btnradius);
        text-align: center;
        padding: 10px 25px;
        color: var(--text-color);
        display: inline-flex;
        white-space: nowrap;
        width: 100%;
        align-items: center;
    }
    .header header nav .mobile-only ul li a span {
        color: #fff;
        font-weight: 600;
        font-size: 1.8em;
        margin: 0 10px 0 0;
    }
    .header header nav ul li a {
        padding: 15px 0;
        margin: 0 5px;
        color: #fff;
        text-decoration: none;
        display: block;
        font-size: 1.8em;
        white-space: nowrap;
        border-radius: 0;
        font-weight: normal;
        text-align: left;
    }

    /*
    .header header nav li > ul {
        padding: 0 0 0 20px;
    }
*/

    .hamburger span.line:nth-child(2) {
        width: 15px;
    }

    .hamburger:hover {
        cursor: pointer;
    }

    .hamburger.is-active .line {
        background-color: #fff;
    }

    #hamburger-1.is-active .line:nth-child(2) {
        opacity: 0;
    }

    #hamburger-1.is-active .line:nth-child(1) {
        -webkit-transform: translateY(2px) rotate(45deg);
        -ms-transform: translateY(2px) rotate(45deg);
        -o-transform: translateY(2px) rotate(45deg);
        transform: translateY(-4px) rotate(45deg);
    }

    #hamburger-1.is-active .line:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-16px) rotate(-45deg);
    }

    .hamburger.is-active span.line:nth-child(2) {
        opacity: 0;
    }
   
    .menu-toggle {
        color: #000;
        width: 20px;
    }
  }

.header-btn a {
    color: var(--secondmaincolor);
    text-decoration: none;
    display: block;
    font-size: 1em;
    font-family: var(--font-one);
    white-space: nowrap;
    font-weight: 500;
    padding: 14px 35px;
    border-radius: var(--btnradius);
    border: 1px solid var(--basecolor);
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.header-btn a:hover img {
    transform: translateX(10px);
     -webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.header-btn a img {
     -webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}


