/*
========================
Header area start
========================
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {	
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #191919;	
}

a {
  display: inline-block;
}

a:visited,
a:hover,
a:active {
  text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0,0,0,.5);   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {   
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

/* hamburger-area */
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none!important;
}

.hamburger:hover {
    opacity: 0.7; 
}

.hamburger.is-active:hover {
    opacity: 0.7; 
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
     
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
    
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    outline: none;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
    outline: none; 
}

.hamburger-inner::before {
    top: -10px; 
}

.hamburger-inner::after {
    bottom: -10px; 
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    outline: none;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s 
    cubic-bezier(0.33333, 0.66667, 0.66667, 1), 
    opacity 0.1s linear; 
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s 
    cubic-bezier(0.33333, 0.66667, 0.66667, 1), 
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    outline: none;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s 
    cubic-bezier(0.33333, 0, 0.66667, 0.33333), 
    opacity 0.1s 0.22s linear; 
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s
    cubic-bezier(0.33333, 0, 0.66667, 0.33333), 
    transform 0.13s 0.25s 
    cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.header-area {
    background-image: url(images/header.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
}

.overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50.05%, #FFFFFF 99.27%);
    padding: 15px 0;
}

.menu-area {
    transition: 0.3s all ease;
}

.headerfixed {
    position: fixed;
    top: 0;
    width: 100%;
    display: block;
    z-index: 9999999;
    padding: 10px 0;
    background: #FFF;
    box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    max-width: 260px;
}

.navbar-nav li {
    padding: 10px 15px;
}

.navbar-nav li a,
.navbar-nav li button {
    font-weight: 500;
    font-size: 16px;
    color: #0081A7;
    display: inline-block;
    padding: 4px 0;
    transition: 0.2s all ease;
    border: none;
    background: none;
    outline: none;
}

.navbar-nav li a:hover,
.navbar-nav li button:hover {
    opacity: 0.8;
}

.navbar-nav li .talk {
    font-family: 'DM Serif Text', serif;
    font-weight: normal;
    font-size: 16px;
    text-align: center;
    color: #FDFCDC;
    background: #0081A7;
    display: inline-block;
    padding: 4px 40px;
    border-radius: 30px;
}

.navbar-nav .dropdown-menu {
    left: -90px!important;
    top: 36px!important;
}

.navbar-nav .dropdown-menu a {
    padding: 5px 16px;
}

.hero-part {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 0 60px;
}

.hero-part h2 {
    font-family: 'DM Serif Text', serif;
    font-weight: normal;
    font-size: 40px;
    color: #003F51;
}

.hero-part p {
    font-weight: 500;
    font-size: 16px;
    color: #5F5F5F;
    margin: 20px 0 35px;
}

.hero-part a {
    font-family: 'DM Serif Text', serif;
    font-weight: normal;
    font-size: 24px;
    color: #FDFCDC;
    background: #0081A7;
    display: inline-block;
    text-align: center;
    padding: 8px 100px;
    border-radius: 32px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.hero-part a:hover {
    opacity: 0.8;
}

.hero-part img {
    max-width: 250px;
    display: block;
    margin-left: auto;
}

/*=== about-area start ===*/
.about-area {
    background: #FFF;
    padding: 150px 0 20px;
    overflow: hidden;
}

.about-upper h2 {
    font-family: 'DM Serif Text', serif;
    font-weight: normal;
    font-size: 56px;
    color: #003F51;
    text-align: center;
    position: relative;
    margin-left: 280px;
}

.about-upper h2::before {
    content: "";
    display: block;
    width: 10000%;
    height: 1px;
    background: #003F51;
    position: absolute;
    right: 65%;
    bottom: 8px;
}

.about-main {
    padding: 75px 0 0;
}

.about-left {
    width: 100%;
}

.about-left img {
    width: 100%;
}

.about-right p {
    font-weight: normal;
    font-size: 18px;
    color: #5F5F5F;
    margin-bottom: 20px;
}

.about-right {
    padding-top: 52px;
    padding-right: calc(100% - 1140px / 2);
    margin-right: 80px;
    
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {

    .about-right {
        padding-top: 20px;
    }

}

/*=== product-area start ===*/
.product-area {
    overflow: hidden;
    padding: 185px 0 150px;
}

.product-area .container {
    max-width: 1000px;
}

.prod-upper h2 {
    font-family: 'DM Serif Text', serif;
    font-weight: normal;
    font-size: 56px;
    color: #003F51;
    position: relative;
}

.prod-upper h2::after {
    content: "";
    display: block;
    width: 10000%;
    height: 1px;
    background: #003F51;
    position: absolute;
    left: 35%;
    bottom: 8px;
}

.prd-item {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    box-shadow: 0px 16px 16px -13px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-height: 390px;
}

.prd1 img {
    max-width: 134px;
}

.prd2 img {
    max-width: 68px;
}

.prd3 img {
    max-width: 36px;
}

.prd-uper {
    width: 100%;
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #F2F2F2;
}

.prd-cnt {
    padding: 16px 20px;
}

.prd-cnt h4 {
    font-family: 'DM Serif Text', serif;
    font-weight: normal;
    font-size: 24px;
    color: #003F51;
}

.prd-cnt p {
    font-weight: normal;
    font-size: 16px;
    color: #5F5F5F;
    margin-top: 18px;
}

.prd-cnt a {
    font-weight: 500;
    font-size: 16px;
    text-align: right;
    color: #0081A7;
    display: inline-block;
}

.prd-cnt a i {
    font-size: 17px;
    display: inline-block;
    margin-left: 5px;
}

.prd2 h4 small {
    font-size: 16px;
    color: #828282;
}

.prd3 h4 {
    color: #828282;
}

.product-main {
    padding: 100px 0 50px;
}

.prd-btm p {
    font-style: italic;
    font-weight: 300;
    font-size: 24px;
    text-align: center;
    color: #828282;
}

/*=== contact-area start ===*/
.contact-area {
    background: #003F51;
    padding: 65px 0;
 }

.contact-left img {
    max-width: 100%;
}

.contact-right h4 {
    font-family: 'DM Serif Text', serif;
    font-weight: normal;
    font-size: 56px;
    color: #FDFCDC;
}

.contact-right p {
    font-weight: normal;
    font-size: 18px;
    color: #FFFFFF;
    margin: 20px 0 40px;
}

.contact-right a {
    font-weight: normal;
    font-size: 24px;
    text-align: center;
    color: #0081A7;
    background: #FFFFFF;
    display: inline-block;
    padding: 8px 100px;
    border-radius: 32px;
    transition: 0.2s all ease;
}

.contact-right a:hover {
    opacity: 0.8;
}

/*=== footer-area start ===*/
.footer-area {
    background: #F2F2F2;
    padding: 30px 0;
}

.footer-left img {
    max-width: 245px;
}

.footer-right p {
    font-weight: normal;
    font-size: 12px;
    color: #5F5F5F;
    margin-bottom: 0;
}
