body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #212529;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: auto;
    box-sizing: border-box;
}

img {
    width: auto;
    max-width: 100%;
}
* {
    transition: all 0.3s ease-in;
}
a {
    text-decoration: none;
    color: #212529;
}
a:hover {
    color: #03a9f4;
}
ul {
    list-style: none;
    padding: 0;
}
header {
   position: fixed;
   width: 100%;
   top: 0;
   background-color: #fff;
   box-shadow: 1px 6px 20px 3px rgb(0 0 0 / 16%);
}

header .h_content {
    display: flex;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    align-items: center;
}
header .navmenu {
    width: 20%;
    display: inline-block;
}

header .navmenu ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

header .navmenu ul li {
    padding: 10px 20px;
}
header .navmenu ul li a {
    font-weight: 700;
}
header .navmenu ul li a.active, 
header .navmenu ul li a:hover {
    color: #03a9f4;
}

header .navmenu ul li:first-child {
    padding-left: 0;
}
header .navmenu ul li:last-child {
    padding-right: 0;
}

.logo {
    width: 60%;
    display: inline-block;
}
.logo img {
    width: 160px;
}
.hmenu {
    width: 20%;
    display: inline-block;
}


.banner {
    background: url(./../images/hero-bg.jpg) no-repeat top center;
    width: 100%;
    height: 600px;
    background-size: cover;
    padding: 60px 0;
}

h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 30px;
}
section {
    padding: 60px 0;
}

p {
    font-size: 16px;
    line-height: 24px;
}
.about {
    text-align: center;
    background-color: #f5f5f5;
}

.about p {
    margin-bottom: 20px;
}

.about .container {
    max-width: 550px;
}

.learn_more{
    color: #03a9f4;
    font-weight: 700;
    margin-top: 20px;
    display: block;
}


.contact h2 {
    text-align: center;
}

.contact .container {
    max-width: 550px;
}

form {
    padding-bottom: 40px;
    display: block;
}

form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 20px;
    height: 50px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
}

form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 20px;
    height: 100px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.gotop {
    /*
    border-radius: 4px;
    background: #03a9f4;
    padding: 10px;
    box-sizing: border-box;
    */
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    
}
/*
.submit {
    background: #03a9f4;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #03a9f4;
    border-radius: 4px;
    
}
*/

/** Form Submit style **/

button[type="submit"] {
    width: 200px;
    height: 50px;
    background: transparent;
    border-radius: 10px;
    will-change: transform;
    transition: all 0.2s ease;
    border: 2px solid #ff5126;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    color: #ff5126;
    outline: none;
    text-align: center;
}
button[type="submit"]:hover {
    background: #ff5126;
    color: #fff;
}
button[type="submit"]:active {
    font-size: 15px;
    transform: translateY(1px);
}
button[type="submit"].active {
    font-size: 0;
    border-radius: 25px;
    width: 50px;
    background: transparent;
}
button[type="submit"].ctaloader {
    border-right: 2px solid #fff;
    animation: loader 0.4s linear infinite;
}
button[type="submit"].success {
    background: #3bb873;
    border-color: #3bb873;
    font-size: 14px;
    color: #fff;
}
@keyframes ctaloader {
    0% {
        transform: rotateZ(0);
   }
    100% {
        transform: rotateZ(360deg);
   }
}

.text-center {
    text-align: right;
}


.hmenu {
    display: none;
}

.body-wrap {
    display: none;
}


footer {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ccc;
}
footer p {
    font-size: 12px;
}
@media only screen and (max-width:767px) {
    header .navmenu ul li a {
        font-weight: 700;
        position: absolute;
        width: 100%;
        left: 0;
        height: 32px;
    }
    .hmenu {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
        width: 35px;
    }

  
    header .h_content {
        display: block;
        text-align: center;
        width: 100%;
        padding: 10px 0;
        align-items: center;
        position: relative;
    }
    header .navmenu {
        width: 100%;
        height: 0;
        position: ABSOLUTE;
        left: 0;
        background: #fff;
        top: 92px;
        overflow: hidden;
    }
    header .navmenu.active {
        height: 130px;
    }
    header .navmenu ul {
        display: block;
        justify-content: space-between;
        flex-wrap: inherit;
        width: 100%;
        text-align: CENTER;
        margin: 0;
    }
    header .navmenu ul li:first-child {
        padding-left: 20px;
    }
    header .navmenu ul li:last-child {
        padding-right: 20px;
    }
    header .navmenu ul li {
        border-bottom: 1px solid #ccc;
        position: relative;
        width: 100%;
        height: 44px;
        box-sizing: border-box;
        overflow: hidden;
    }
    header .container {
        padding: 0;
    }
    .logo {
        width: 100%;
        display: block;
    }
    .logo img {
        width: 150px;
        padding: 10px 0;
    }
    .banner {
        background: url(./../images/hero-bg.jpg) no-repeat 40% 0%;
        /* max-height: 600px; */
        width: 100%;
        height: 370px;
        margin-top: 60px;
        background-size: cover;
    }
}

/** loader **/
.loader {
    display: inline-block;
    position: absolute;
    width: 64px;
    top: 42vh;
    height: 64px;
    margin: auto;
    right: 0;
    left: 0;
}
.loader div {
    animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}
.loader div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #03a9f4;
    margin: -3px 0 0 -3px;
}
.loader div:nth-child(1) {
    animation-delay: -36ms;
}
.loader div:nth-child(1):after {
    top: 50px;
    left: 50px;
}
.loader div:nth-child(2) {
    animation-delay: -72ms;
}
.loader div:nth-child(2):after {
    top: 54px;
    left: 45px;
}
.loader div:nth-child(3) {
    animation-delay: -108ms;
}
.loader div:nth-child(3):after {
    top: 57px;
    left: 39px;
}
.loader div:nth-child(4) {
    animation-delay: -144ms;
}
.loader div:nth-child(4):after {
    top: 58px;
    left: 32px;
}
.loader div:nth-child(5) {
    animation-delay: -0.18s;
}
.loader div:nth-child(5):after {
    top: 57px;
    left: 25px;
}
.loader div:nth-child(6) {
    animation-delay: -216ms;
}
.loader div:nth-child(6):after {
    top: 54px;
    left: 19px;
}
.loader div:nth-child(7) {
    animation-delay: -252ms;
}
.loader div:nth-child(7):after {
    top: 50px;
    left: 14px;
}
.loader div:nth-child(8) {
    animation-delay: -288ms;
}
.loader div:nth-child(8):after {
    top: 45px;
    left: 10px;
}
@keyframes loader {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}



/** h-menu style **/
* {
    margin: 0;
    padding: 0; 
  }
  
  /* Icon 1 */
  
   #nav-icon3 {
    width: 45px;
    height: 45px;
    position: relative;
    margin: auto;
    -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;
  }
  
   #nav-icon3 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #222;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: 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;
  }
  
  /* Icon 3 */
  
  #nav-icon3 span:nth-child(1) {
    top: 0px;
  }
  
  #nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: 12px;
  }
  
  #nav-icon3 span:nth-child(4) {
    top: 24px;
  }
  
  #nav-icon3.open span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%;
  }
  
  #nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  #nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  