/**
Common style
**/

@font-face {
    font-family: Signika-Bold;
    src: url("../fonts/Signika-Bold.ttf") format("opentype");
}

@font-face {
    font-family: Signika-Light;
    src: url("../fonts/Signika-Light.ttf") format("opentype");
}

@font-face {
    font-family: Signika-Regular;
    src: url("../fonts/Signika-Regular.ttf") format("opentype");
}

@font-face {
    font-family: Signika-SemiBold;
    src: url("../fonts/Signika-SemiBold.ttf") format("opentype");
}

@font-face {
    font-family: Helvetica;
    src: url("../fonts/Helvetica.ttc") format("opentype");
}

*{
  outline:0;
}

body{
  margin: 0px;
}

a{
  color: inherit; /* blue colors for links too */
  text-decoration:none;
  outline: none;
}

.container{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
}

.container-fluid{
  width: 100%;
}

@media screen and (min-width: 980px) {
  .container{
    width: 980px;
  }
}

.background-image-cover{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.background-image-contain{
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.flex{
  display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-row{
  flex-direction: row;
}

.flex-column{
  flex-direction: column;
}

.space-between{
  justify-content: space-between;
}

.space-around{
  justify-content: space-around;
}

.flex-start{
  justify-content: flex-start;
}

.flex-end{
  justify-content: flex-end;
}

.flex-wrap{
  flex-wrap: wrap;
}

.hidden{
  display: none !important;
}

.flex-left{
  align-items: flex-start;
}

/**
Customize style
**/

nav{
  font-family: Signika-Regular;
  color: #707070;
  font-size: 20px;
  height: 120px;
  justify-content: space-between !important;
}

nav .logo{
  display: block;
  height: 60.68px;
  width: 350.75px;
  background-image: url('../images/web/Logo.svg');
}

nav .menu{
  width: 540px;
}

.menu-icon, .login-icon{
  display: none;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#mobile-nav {
  background-color: #D2EDF3;
  padding: 37.50px 0px 0px 33px;
  height: 100vh;
  position: relative;
  -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

#mobile-nav > img{
  margin-bottom: 40.62px;
}

#mobile-nav > a{
  display: block;
  width: 100%;
  font-size: 11px;
  color: #707070;
  font-family: Signika-Bold;
  margin-bottom: 35px;
}

#mobile-nav div.social{
  position: absolute;
  bottom: 32px;
}

#mobile-nav div.social a:nth-child(1){
  margin-right: 23.64px;
}

@media screen and (max-width: 979px) {
  nav{
    height:48px;
    justify-content: space-between !important;
  }

  nav .logo{
    height: 26.05px;
    width: 173.31px;
  }

  nav .menu{
    display: none;
  }

  .menu-icon, .login-icon{
    display: block;
    width: 16px;
    height: 16px;
  }

  .menu-icon{
    background-image: url('../images/web/Mobile_Icon_Menu.svg');
    margin-left: 16px;
  }

  .login-icon{
    background-image: url('../images/web/Mobile_Icon_Login.svg');
    margin-right: 16px;
  }
}

.cover-fluid{
  background-color: #0074A2;
  height: 50.2vw;
}

.cover{
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-image: url('../images/web/Background@2x.png');
  padding: 1px 0;
  position: relative;
}

.cover-messsage{
  color: #0074A2;
  font-family: Signika-Bold;
  text-shadow: 0 3px 5px #bfbfbf;
  height: 216px;
  margin-top: 15vw;
}

.cover-messsage span:nth-child(1){
  font-size: 48px;
  margin-bottom: 6px;
}

.cover-messsage span:nth-child(2){
  font-size: 6vw;
  margin-bottom: 22px;
}

.cover-messsage span:nth-child(3){
  font-size: 22px;
  font-family: Helvetica;
}

.scroll-icon{
  position: absolute;
  left: 50%;
  bottom: 30px;
}

.scroll-icon div{
  position: relative;
  left: -50%;
  width: 58.81px;
  height: 38.17px;
  background-image: url('../images/web/Icon_ScrollArrow.svg');
}

@media screen and (min-width: 1920px) {
  .cover{
    width: 1920px;
  }

  .cover-fluid{
    height: 963.499969482px;
  }

  .cover-messsage{
    margin-top: 312.87px;
  }

  .cover-messsage span:nth-child(2){
    font-size: 94px;
  }
}

@media screen and (max-width: 979px) {
  .cover-fluid{
    height: 165vw;
  }

  .cover{
    background-image: url('../images/web/Background_vertical@2x.png');
  }

  .cover-messsage{
    margin-top: 43vw;
  }

  .cover-messsage span:nth-child(1){
    font-size: 19px;
  }

  .cover-messsage span:nth-child(2){
    font-size: 38px;
  }

  .cover-messsage span:nth-child(3){
    font-size: 8px;
  }

  .scroll-icon{
    bottom: 19.58px;
  }

  .scroll-icon div{
    width: 19.19px;
    height: 12.45px;
  }
}


.container .title{
  height: 67px;
  margin-bottom: 29px;
  font-size: 54px;
  color: #707070;
  font-family: Signika-SemiBold;
}

.container .line{
  width: 120px;
  height: 3px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  background-color: #707070;
}

@media screen and (max-width: 979px) {
  .container .title{
    height: 25px;
    font-size: 20px;
    margin-bottom: 9px;
  }

  .container .line{
    width: 36px;
    height: 1px;
    margin-bottom: 15px;
  }
}

#about-us{
  background-color: #F7F7F7;
  padding-bottom: 70px;
  padding-top: 38px;
}

.about-us-content{
  font-size: 16px;
  font-family: Helvetica;
  color: #242424;
  line-height: 30px;
}

@media screen and (max-width: 979px) {
  .about-us-content{
    font-size: 12px;
    min-width: 301.69px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 24px;
  }
}

#products{
  padding-top: 38px;
}

#products-area{
  background-color: #F4FBFC;
}

#products-area .container{
    position: relative;
}

@media screen and (min-width: 1152px) {
  #products-area .container{
    width: 1152px;
  }
}

@media screen and (max-width: 979px) {
  #products{
    padding-top: 25px;
  }
}

.product-category{
  width: 240px;
  height: 850px;
  font-size: 28px;
  font-family: Signika-Bold;
}

.product-category a{
  width: 240px;
  height: 205px;
  background-color: #D2EDF3;
  color: #707070;
}

.product-category-hover{
  background-color: #0074A2 !important;
  color: #FFFFFF !important;
}

.product-category a span{
  height: 52px;
  line-height: 52px;
}

.product-category a div{
  width: 100%;
  height: 118px;
}

.product-category a:nth-child(1) div{
  background-image: url('../images/web/Icon_Denture_White.svg');
}

.product-category a:nth-child(2) div{
  background-image: url('../images/web/Icon_Crown_Bridge_Grey.svg');
}

.product-category a:nth-child(3) div{
  background-image: url('../images/web/Icon_Orthodontic_Grey.svg');
}

.product-category a:nth-child(4) div{
  background-image: url('../images/web/Icon_Implant_Grey.svg');
}

.view-toggle{
  display: none;
  background-color: #EAEBEE;
  width: 100%;
  height: 40px;
  padding-right: 37px;
  box-sizing: border-box;
}


.view-toggle a{
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid #707070;
}

@media screen and (max-width: 979px) {
  #products-area .container{
    flex-direction: column;
    justify-content: flex-start;
  }

  .product-category{
    flex-direction: row;
    width: 100%;
    height: auto;
    background-color: #fff;
    font-size: 11px;
  }

  .view-toggle{
    display: flex;
  }
}

.product-content{
  height: 740px;
  padding-top: 57px;
  padding-bottom: 53px;
  padding: 57px 49px 53px 49px;
  color: #242424;
  font-family: Helvetica;
  font-size: 22px;
}

@media screen and (max-width: 1151px) {
  .product-content{
    padding-left: 0px;
    padding-right: 0px;
  }
}

.product-content a{
  width: 33.3333%;
  font-family: Helvetica;
  font-size: 18px;
}

.product-content2 a{
  width: 25%;
}

.product-content:not(.implant) a div{
  border-radius: 50%;
  height: 181px;
  width: 181px;
  border: 1px solid #707070;
  margin-bottom: 9px;
}

.product-impact-image{
  border-radius: 50%;
  height: 250px;
  width: 250px;
  border: 1px solid #707070;
}

@media screen and (max-width: 1151px) {
  .product-impact-image{
    height: 200px;
    width: 200px;
  }
}

.products-impact-message, .products-impact-message-2{
  width: 537px;
  height: 143px;
  line-height: 30px;
  font-size: 16px;
}

.products-impact-message{
  margin-top: 74.41px;
  margin-bottom: 30px;
  padding-bottom: 29.86px;
  border-bottom: 2px solid #707070;
}

@media screen and (max-width: 979px) {
  .product-content{
    padding: 18px 15px 0px 15px;
    justify-content: space-between;
    height: auto;
  }

  .product-content:not(.implant) a{
    margin-bottom: 30.39px;
    align-items: flex-start;
    font-size: 11px;
  }

  .product-content:not(.implant) a div{
    border-radius: 0px;
    height: 100%;
    width: 100%;
    border: 0px;
    margin-bottom: 15.61px;
  }

  .products-impact-message, .products-impact-message-2{
    width: 100%;
    font-size: 12px;
  }

  #cat-4 {
    width: 100%;
  }

  #cat-4 a{
    width: 30%;
    height: 100px;
  }

  .product-impact-image{
    width: 100%;
    height: 100%;
  }

}

#materials{
  padding-top: 55px;
}

.materials-area{
  font-size: 14px;
  color: #707070;
  text-align: left;
  font-family: Helvetica;
  border: 1px solid #DCDDE1;
}

.materials-area a{
  width: 100%;
}

.materials-area a:nth-of-type(2n+1){
  background-color: #D2EDF3;
}

.materials-area a:nth-of-type(2n){
  background-color: #D2F3D8;
}

.materials-area span{
  font-weight: bold;
  line-height: 50px;
  margin-left: 20px;
  font-size: 16px;
}

.materials-area table{
  border-collapse: collapse;
  border-style: hidden;
  background-color: #fff;
  width: 100%;
  color: #707070;
  display: none;
}

.materials-area table td, .materials-area table th{
  border: 1px solid #DCDDE1;
  padding: 11px 0px 11px 20px;
}

.materials-area table tr th{
  width: 40%;
}

.materials-area table tr td{
  width: 30%
}

.materials-area table tr td:nth-of-type(1){
  background-color: #FCFDFD;
}

.materials-area table:nth-child(1){
  height: 60px;
  font-size: 22px;
  font-family: Signika-SemiBold;
  display: table;
  color: #242424;
}

.materials-area table:nth-child(1) th, .materials-area table:nth-child(1) td{
  background-color: #DCDDE1 !important;
}

@media screen and (max-width: 979px) {
  .materials-area span{
    line-height: 35px;
    font-size: 11px;
    margin-left: 19px;
  }

  .materials-area table{
    font-size: 12px;
  }

  .materials-area table th{
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: #F0F3F4;
    padding-left: 19px;
  }

  .materials-area table td{
    padding: 0px 0px 0px 19px;
    line-height: 24px;
    border: 0px solid #DCDDE1;
    border-left: 1px solid #DCDDE1;
  }

  .materials-area table:nth-child(1){
    height: 42px;
    font-size: 15px;
  }
}

.drop-down{
  width: 15.41px;
  height: 10px;
  background-image: url('../images/web/Icon_PulldownMenu.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 19.25px;
}

@media screen and (max-width: 979px) {
  .drop-down{
    width: 10.88px;
    height: 7.06px;
    margin-right: 29.88px;
  }
}

.rotated{
  -webkit-transform: rotate(180deg);  /* Chrome, Safari 3.1+ */
    -moz-transform: rotate(180deg);  /* Firefox 3.5-15 */
    -ms-transform: rotate(180deg);  /* IE 9 */
    -o-transform: rotate(180deg);  /* Opera 10.50-12.00 */
    transform: rotate(180deg);  /* Firefox 16+, IE 10+, Opera 12.10+ */
}

#contact-us{
  padding-top: 39px;
}

.open-hours{
  font-size: 22px;
  font-family: Helvetica;
  margin-bottom: 46px;
  line-height: 42px;
}

.open-hours div:nth-child(1){
  color: #242424;
  font-weight: bold;
  text-align: right;
  margin-right: 6px;
}

.open-hours div:nth-child(2){
  color: #707070;
  text-align: left;
}

@media screen and (max-width: 979px) {
  .open-hours{
    font-size: 11px;
    line-height: 21px;
    margin-bottom: 31.62px;
  }

  .open-hours div:nth-child(1){
    margin-right: 4px;
  }
}

#location{
  color: #FFFFFF;
  background-color: #0074A2;
  font-family: Helvetica;
  font-size: 22px;
}

#location .container{
  height: 200px;
}

#location .container table{
  width: 100%;
  border-collapse: collapse;
  border-style: hidden;
  text-align: left;
}

#location .container table td{
  background-position: left;
  background-size: contain;
  background-repeat: no-repeat;
  height: 52px;
  padding-left: 69px;
}

#location .container table .row-space{
  height: 31px;
}

.mobile-email{
  display: none;
}

#map{
  height: 699px;
}

@media screen and (max-width: 979px) {
  #location{
    font-size: 11px;
  }

  #location .container{
    height: 147px;
    text-align: left;
  }

  #location .container table{
    width: 300px;
  }

  #location .container table td{
    height: 24px;
    padding-left: 41px;
  }

  #location .container table .row-space{
    height: 7px;
  }

  .mobile-email{
    display: block;
  }

  .web-email{
    display: none;
  }

  #map{
    height: 180px;
  }
}

footer{
  height: 119px;
}

footer .container{
  color: #242424;
  font-family: Helvetica;
  font-size: 16px;
  height: 100%;
}

footer .container a:nth-child(1){
  margin-right: 14.54px;
}

@media screen and (max-width: 979px) {
  footer{
    height: 45px;
  }

  footer .container a img{
    width: 20px;
    height: 20px;
  }

  footer .container{
    padding-left: 36px;
    padding-right: 37px;
    font-size: 12px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 365px) {
  footer .container{
    padding-left: 10px;
    padding-right: 10px;
  }

  footer .container a:nth-child(1){
    margin-right: 5px;
  }
}

.go-up{
  display: none;
  position: fixed;
  right: 15px;
  bottom: 33px;
  width: 24px;
  height: 24px;
  background-image: url('../images/web/Mobile_Icon_Back to top.svg');
  z-index: 30;
}
/**
Slider
**/

.exit-icon{
  display: none;
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 20;
  background-image: url('../images/web/Icon_Exit.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 40.5px;
  height: 40.5px;
}

#slider-1, #slider-2, #slider-3, #slider-4{
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 90px;
  background-color: #F4FBFC;
}

.slick-list, .slick-track, .slider-area{
  height: 100%;
}

.slider-area > div:nth-child(1){
  height: 560px;
  width: 50%;
}

.slider-content{
  width: 45%;
  height: 540px;
  text-align: left;
  padding-top: 20px;
}

.slider-content div:nth-child(1){
  font-family: Signika-Bold;
  font-size: 28px;
  color: #0074A2;
  margin-bottom: 30px;
}

.slider-content div:nth-child(2){
  display: none;
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
}

.slider-content div:nth-child(3), .slider-content div:nth-child(4){
  color: #242424;
  font-size: 16px;
  line-height: 30px;
  font-family: Helvetica;
}

.slider-content div:nth-child(4){
  border-top: 2px solid #707070;
  padding-top: 30.5px;
  margin-top: 53.5px;
}

.slick-prev, .slick-next{
  background-image: url('../images/web/Icon_Arrow_Left.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.slick-next{
  background-image: url('../images/web/Icon_Arrow_Right.svg');
}

@media screen and (max-width: 979px) {
  #slider-1, #slider-2, #slider-3, #slider-4{
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
  }

  .slider-area > div:nth-child(1){
    display: none;
  }

  .slider-content{
    height: auto;
    width: 100%;
    padding-bottom: 29px;
    padding-left: 37px;
    padding-right: 37px;
  }

  .slider-content div:nth-child(1){
    color: #242424;
    font-size: 20px;
  }

  .slider-content div:nth-child(2){
    display: block;
  }

  .slider-content div:nth-child(3), .slider-content div:nth-child(4){
  font-size: 12px;
    line-height: 24px;
  }

  .slider-content div:nth-child(4){
    padding-top: 10.5px;
    margin-top: 10.5px;
  }
}
