@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&display=swap');

@font-face {
    font-family: 'WR Tish Kid';
    src: url('../fonts/WRTishKid.eot');
    src: url('../fonts/WRTishKid.eot?#iefix') format('embedded-opentype'),
        url('../fonts/WRTishKid.woff2') format('woff2'),
        url('../fonts/WRTishKid.woff') format('woff'),
        url('../fonts/WRTishKid.ttf') format('truetype'),
        url('../fonts/WRTishKid.svg#WRTishKid') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN Condensed';
    src: url('../fonts/DINCondensed-Bold.eot');
    src: url('../fonts/DINCondensed-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINCondensed-Bold.woff2') format('woff2'),
        url('../fonts/DINCondensed-Bold.woff') format('woff'),
        url('../fonts/DINCondensed-Bold.ttf') format('truetype'),
        url('../fonts/DINCondensed-Bold.svg#DINCondensed-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



 
/*==================================================
    General
==================================================*/

html,body{
  padding: 0;
  margin: 0; 
  height: 100%
}  
body{  
  font-family: 'Montserrat', sans-serif;
  color:#160e0e;
  font-size:24px; 
  font-weight: normal;
  font-style: normal;
  line-height: 1.45;
  margin: 0px;
  padding:0;  
  
  
  position: relative;
  overflow-x: hidden;
}

.pc body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
  image-rendering: -webkit-optimize-contrast;

}

b, strong{
  font-weight: bold; 
  font-family: inherit;
}
h1,h2,h3,h4,h5,h6{   
  margin:0;  
  color:#333333; 
  line-height: 1.4; 
  font-weight: bold;
  font-style: normal;  
}  

.nowrap{ white-space: nowrap; }
 
a{
  color:inherit;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
a:hover{ text-decoration: none; color:inherit; }
 
.star{ color: red }
.form-control{
 -webkit-appearance: none;
  
  border-radius: 0;  
  padding:0 20px;
  
  color: inherit;
  font-weight: 600;
  font-size:inherit;

  height:52px;
  line-height:52px; 
  border-radius: 5px;
  border:1px solid var(--color-gray-normal);  
  background-color: #ffffff;
  font-family: inherit;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}


textarea.form-control{
  height: 150px;
  line-height: normal;
  padding-top: 15px;
}

.radio-group, 
.checkbox-group{ 
  padding-left:0; 
  position:relative;
  list-style-type:none;
  margin:0px;
  padding:0px;
  text-align:center;
  display:inline-block;
  vertical-align:top
}
.radio-group{ display:inline-block; position:relative}
.radio-group.block{display: block; margin-left:0 !important }


.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  /*display: none;*/
  visibility: hidden;
  opacity: 0;
  height: 0;
  position: absolute;
  width: 0;
 
}
.checkbox-group label:before,
.radio-group label:before {
  content: "";
  display: inline-block;

  margin-right: 5px;
  position: absolute;
  left:0;
  top:4px;
  background-color:#fff;
  border:1px solid var(--color-gray-dark);
  width:19px;
  height:19px; 

   -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
          border-radius: 0px;
}

.radio-group label:before { 
  top:4px; 
  width:16px;
  height:16px;
  border:2px solid var(--color-primary);
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
 

.radio-group label,
.checkbox-group label {
  position:relative;
  padding-left:35px;
  padding-right:15px;
  text-align:left;
  margin:1px 0;
  display:block;
  font-weight:400;
  font-size:inherit;
  line-height:inherit;
  cursor:pointer;

  -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.checkbox-group label{color: inherit;}
.checkbox-group label span{ font-size: 12px; font-style: italic; color: #8f8f8f } 
.radio-group label{color: inherit; padding-left: 30px} 

 
.radio-group input[type="radio"]:checked + label:after{
  content: "";
  color: #ea6f21;
  background-color:var(--color-primary); 
  position:absolute;
  left: 3px;
  top: 7px;
  width: 10px;
  height: 10px;

  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.checkbox-group input[type="checkbox"]:checked + label:after,
.checkbox-group input[type="checkbox"]:checked + span + label:after {
    content: "";
    color: #ea6f21;
  background-color:var(--color-blue-medium);
  background-image: url(../img/icons/icon-check-mark-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
 
  position:absolute;

    top: 4px;
    left: 0px;
    width: 19px;
    height: 19px;
    background-size: 12px; 
}
 
.radio-group.no-text,
.checkbox-group.no-text{
  width: 29px;
  height: 29px;
  margin-top:-2px; 
} 
.form-control::-webkit-input-placeholder {
  color: var(--color-gray-primary);
  font-weight: normal;
  opacity:1;
}

.form-control::-moz-placeholder {
  color: var(--color-gray-primary);
  font-weight: normal;
  opacity:1;
}

.form-control:-ms-input-placeholder {
  color: var(--color-gray-primary);
  font-weight: normal;
  opacity:1;
}

.form-control::-ms-input-placeholder {
  color: var(--color-gray-primary);
  font-weight: normal;
  opacity:1;
}

.form-control::placeholder {
  color: var(--color-gray-primary);
  font-weight: normal;
  opacity:1;
}
 
.form-control:focus{
  border-color: #80bdff !important;
  background-color: #ffffff;
}
.form-control:disabled, 
.form-control[readonly] {
  background-color: #e2e2e2;
  border-color: #c7c7c7;
}
.select-hidden { 
  opacity: 0;
  visibility: hidden;
  padding-right: 0;

  width: 100%;
  height: 50px;

  position: relative;
  z-index: 99
}
.select {
  position:relative;
  padding-left:0 !important;
  padding-right: 0;
  cursor:pointer;
  display:block;
  margin-bottom:0; 
  height: 50px; 
  cursor: pointer;
  font-weight: 300;
}



.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; 
  padding:0 30px 0 20px;
  line-height: 50px;
  white-space: nowrap;
  color:var(--color-gray-primary);
  font-weight: normal;
  font-size: inherit;
  border-radius: 5px;
  border:1px solid var(--color-gray-normal);
  background-color: #ffffff;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.has-value .select-styled{ color: rgba(79,79,79,1);}

.select-styled:after {
  content:'';
  position: absolute;
  right: 10px;
  top: 50%;
  width:16px;
  height:16px;
  vertical-align:top;
  margin-left:1px;
  margin-top:-8px;  
  
  background-image: url(../img/icons/icon-arrow-option.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;

   -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
 

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding:5px 0;
  list-style: none;
  background-color: #fff;
  border:1px solid #f1f1f1;
  border-radius: 5px; 
  max-height: 200px;
  overflow-x: auto;
}
.select-options li {
  margin: 0;
  padding: 1px 20px;
  line-height: normal;
  text-indent: 0; 
  font-size: inherit;
  font-weight: inherit;
  color: #333333;
  font-family: inherit;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover {
  background: #f1f1f1;
}
.select-options li[rel="hide"] {
  display: none;
}
 

span.error{
  font-family: inherit;
  font-size: 11px;
  padding-top: 5px;
  color: red;
  display: block;   
  text-align: right; 
}  
.form-control.error,
.custom-select.error{
  border-color: red
}
.form-control.error:focus,
.custom-select.error:focus {
    box-shadow: 0 0 0 .2rem rgba(255,5,5,.25);
}

.select .error + .select-styled{border-color: red}
.select.has-value select{ margin-bottom:0  }
.select.has-value select.error + .error{ display: none; }
.select.has-value .error + .select-styled{border:1px solid #BDBDBD}

.custom-file input.error + span + .custom-file-label{border-color: red}
 
.btn{
  position: relative;
  border:0;
  padding: 0 20px; 
  height:64px;
  line-height: 64px;
  font-family:inherit;
  font-weight: bold; 
  color: #fff; 
  border-radius: 5px;
  overflow: hidden;
  border:0; 
  background-color: var(--color-primary);

  -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;
} 
 
.btn span{
  display:inline-block;
  position: relative;
  z-index: 9;
}
.btn:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity:0;
  background-color: rgba(255,255,255,0.2);
  transition: all 0.3s ease-in-out;
}

.pc .btn:hover:before{ opacity: 1 }

.btn.normal{border-radius: 0;}

.btn-primary{}

.btn-secondary{} 
 
.btn[disabled]{
  border-color: #D4EAEA;
  background-color:#D4EAEA;
  color:#A1C9C9;
  line-height: 56px;
  pointer-events: none;
  opacity: 1;
}
 

.btn svg,
.btn img{
  position: relative;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}
 

.btn-link, 
.btn-link:hover, 
.btn-link:focus, 
.btn-link:active{
  background-color: transparent;
}
 

.btn:focus,.btn:active,
button:focus,button:active,
a:focus,a:active {
   outline: none !important;
   box-shadow: none!important;
} 
.buttons{
  display: block; 
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
} 

.buttons.d-flex{
  -ms-flex-pack: center;
  justify-content: center ;
} 
.buttons.center .btn{
  margin: 0 auto;
}

svg path,
svg rect,
svg line,
svg circle,
svg polygon{ 
  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}
 
/*==================================================
    Icon Setup
==================================================*/  

.icons{
  display:inline-block;
  position:relative;
  vertical-align:middle; 
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center center;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.icons.before:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.pc .btn:hover .icons.before:before{ opacity: 1; }
.inline-black{
  display: inline-block;
  padding: 0 10px
}

/**/

.arrow-left,
.arrow-right,
.arrow-up,
.arrow-down{
  position: absolute;
  left: 0;
  top: 0;
  width:5px;
  height:5px;
  vertical-align:top;

  border-top: 1px solid #676767;
  border-left: 1px solid #676767;

   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.arrow-left{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);  
}

.arrow-right{
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);  
}

.arrow-up{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}
.arrow-down{
   margin-left:1px; 
   -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  
}
 
 
.container{
  max-width:calc(1070px + 200px);
  padding-left:100px;
  padding-right:100px; 
  position: relative;
  z-index: 9; 
}

.container-fluid{
  max-width:calc(1550px + 100px);
  width: 86vw;
  padding-left:50px;
  padding-right:50px;
}
 
@media (max-width: 1680px) {
  body{font-size: 19px}
}

@media (max-width: 1440px) {
  body{font-size: 17px}
  .container-fluid{width: 88vw;}
}

@media (max-width: 1280px) {
  body{font-size: 15px}
}
 
@media (max-width: 1024px) {
  .container-fluid{
    width: auto;
    padding-left: 5vw;
    padding-right:5vw; 
  }
}

@media (max-width: 991.98px) {
  body{font-size: 14px}
  .container-fluid{
    padding-left:50px;
    padding-right:50px;
  }

  .header .container-fluid{
    padding-left: 30px;
    padding-right: 30px 
  }
}

@media (max-width: 767px) { 
  body{font-size: 13px}
  .container,
  .container-fluid{
    padding-left:20px;
    padding-right:20px;
  }
   
}
   
.compensate-for-scrollbar{ margin-right: 0 !important } 
.compensate-for-scrollbar .header{ right: 0 } 
body.fancybox-active{ overflow: visible !important;padding-right: 0 !important  }
 
/*==================================================
    Header Setup
==================================================*/  
.page{
  position: relative; 
  display: block;   
  overflow: hidden;     
}   

:root { 
  --color-primary: #9a1107;      
}
 

.header,
.header .container,
.navbar-brand,
.navbar-main, 
.nav-main li a,
.nav-main li a:before,
.nav-main li a:after,
.nav-main li a span{ 
   -webkit-transition: all 0.4s ease-in-out;
     -moz-transition: all 0.4s ease-in-out;
     -o-transition: all 0.4s ease-in-out;
     -ms-transition: all 0.4s ease-in-out;
     transition: all 0.4s ease-in-out;
}
 
.header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding:0; 
  background-color:transparent;
  z-index: 1010;
}  

.navbar-toggle{
  position: fixed;
  top: 40px;
  right:40px;
  width: 50px;
  height: 50px;
  z-index: 1060 !important;

  opacity: 0;
  transition: all 0.4s ease-in-out;

  cursor: pointer;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  box-shadow:0 0 20px rgba(0,0,0,0.2);

  /*background-image: url(../img/thumb/menu-apple-img.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;*/

  background-color: var(--color-primary);
  border-radius: 50%;
}

.scrolling .navbar-toggle{opacity: 1}

.btn.btn-icon{
  padding: 0 !important;
  border:0 !important;
  background-color: transparent !important;
  display: inline-block;
  vertical-align: middle;
  z-index: 1060; 
  margin: 0 auto;
  border-radius: 0;
  overflow: visible; 
}
.btn.btn-icon:before{display: none;}
.btn.btn-icon{
  height: 19px;
  line-height: 19px;
} 

.btn-icon .group{
  display: block;
  position: relative;
  width: 25px; 
  height:19px;
  margin: 0 auto 0
}
.btn-icon .group span{ 
  height: 2px;
  background:#ffffff;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform-origin: 25px, 1px;
  -ms-transform-origin: 25px, 1px;
  transform-origin: 25px, 1px
}

.btn-icon .group span:nth-child(1) {
    top: 0;
    -webkit-transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}

.btn-icon .group span:nth-child(2) {
    top: 8px;  
    -webkit-transition: -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}

.btn-icon .group span:nth-child(3) {
    top: 16px;
    -webkit-transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}
 

.nav-opened .btn-icon .group span:nth-child(1){
    -webkit-transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: rotate(45deg) translate3d(6px, 6px, 0);
    transform: rotate(45deg) translate3d(6px, 6px, 0)
}
 
.nav-opened .btn-icon .group span:nth-child(2){
    -webkit-transition: -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0)
}
 
.nav-opened .btn-icon .group span:nth-child(3) {
    -webkit-transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: rotate(-45deg) translate3d(5px, -5px, 0);
    transform: rotate(-45deg) translate3d(5px, -5px, 0)
}

   
.page-slideout,
.header-slideout {
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
}
.page-slideout{
    position: relative;
    /*z-index: 1010;*/
    background-color:#ffffff;
    overflow: hidden;
}
.closing .page-slideout,
.nav-opened .page-slideout{z-index: 1040;}
.closing .header-slideout,
.nav-opened .header-slideout{z-index: 1043;}



.page-blocker{
  position: fixed;
  top: 0;
  left: 0; 
  bottom: 0;
  width: 100%;
  background-color:rgba(0,0,0,0);
  z-index: 1050;

  pointer-events: none; 
  transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;

}

.nav-opened .page-slideout,
.nav-opened .header-slideout,
.nav-opened .page-blocker {
  -webkit-transform: translate(-320px, 0);
  -ms-transform: translate(-320px, 0);
  transform: translate(-320px, 0);
  -webkit-transform: translate3d(-320px, 0, 0);
  transform: translate3d(-320px, 0, 0);
}
.nav-opened .page-blocker{ background-color:rgba(0,0,0,0.6);}
.nav-opened .page-blocker{
  pointer-events: auto;
  display: block;
  cursor: pointer;
}
 

.navbar-slideout{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  width: 320px;
  overflow: hidden; 
  padding: 0 20px;

  background-color:#d08781;
  background-image: url(../img/thumb/menu-texture.jpg);
  background-position: center center; 
  border-top: 5px solid var(--color-secondary);
  align-items:normal;
  -ms-flex-align:normal; 

   -webkit-transform: translate(320px, 0);
  -ms-transform: translate(320px, 0);
  transform: translate(320px, 0);
  -webkit-transform: translate3d(320px, 0, 0);
  transform: translate3d(320px, 0, 0);

    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
}

.nav-opened .navbar-slideout{
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.nav-main.slideout{
  padding-top: 50px;
}
.nav-main.slideout li{
  display: block;
  width: 50%;
}
.nav-main.slideout li a{
  width: 150px;
  height: 140px;
  padding: 0;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.nav-main.slideout li a span {
    font-size: 12px;
    padding-top: 20px;
    line-height: 1.4;
    padding-top: 0;
    margin:-7px auto 0;
    pointer-events: none;
}
@media (min-width:0) {
  .nav-mobile{display: none;}
  .header .btn-close{display: none;}

  .header{
    padding:2vw 0 0;
  }
  .header .container-fluid{height: 0}


  .nav-main.toppage{
    -ms-flex-pack: justify;
    justify-content: space-between ;
  }
  .nav-main li a{
    display: block;
    width: 200px;
    height: 220px;
    position: relative;
  }
  .nav-main li a.active{position: relative; z-index: 100}
  .nav-main li a:before,
  .nav-main li a:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.65;
    background-image: url(../img/thumb/menu-apple-img.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .nav-main li a:after{
    opacity: 0;
    left: 0;
  }
  .nav-main li a span{
    display: block;
    text-align: center;
    font-size: 19px;
    color: #ffffff; 
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    
  }

  .nav-main li a.active:after,
  .pc .nav-main li a:hover:after{opacity: 1; left: 0}


  .nav-main.toppage li{ 
    -webkit-animation-delay: 0ms;
    animation-delay: 0ms;
    
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;  
  }
  .page-loaded .nav-main.toppage li{
      -webkit-animation-duration: 900ms;
    animation-duration: 900ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  .page-loaded .nav-main.toppage li:nth-child(1){animation-delay: 0.1s;}
  .page-loaded .nav-main.toppage li:nth-child(2){animation-delay: 0.15s;}
  .page-loaded .nav-main.toppage li:nth-child(3){animation-delay: 0.2s;}
  .page-loaded .nav-main.toppage li:nth-child(4){animation-delay: 0.25s;}
  .page-loaded .nav-main.toppage li:nth-child(5){animation-delay: 0.3s;}
  .page-loaded .nav-main.toppage li:nth-child(6){animation-delay: 0.35s;}

  .nav-main.toppage{
    position: relative;
  } 
}

@media (min-width:768px) {

  .header .container-fluid{
    width: auto;
  }
  .header{
    padding: 3vw 0 0;
  }
  .nav-main.toppage li a{
    width: 15vw;
    height:  15vw;
    display: flex;
    -ms-flex-align: center ;
    align-items: center;
  }
  .nav-main.toppage li a span{
    font-size: 1.2vw; 
    line-height: 1.25;
    margin: -5px auto 0;

  } 
} 

@media (min-width:992px) {
   .nav-main.toppage li a span{margin-top: -10px;}
}

@media (min-width:1025px) {
 
  .nav-main.toppage li a{
    width: 160px;
    height: 180px;
  }
  .nav-main.toppage li a span{
   font-size: 15px;   
  } 
}

@media (min-width:1366px) {
  .header{
    padding: 2vw 0 0;
  }
   
}

@media (min-width:1550px) {
  .nav-main.toppage li a{
    width: 180px;
    height: 200px;
  }
  .nav-main.toppage li a span{
    font-size: 17px; 
  } 
}

@media (min-width:1681px) {
  .nav-main.toppage li a{
    width: 200px;
    height: 220px;
  }
  .nav-main.toppage li a span{
    font-size: 19px; 
  }
   
} 
 

/*---Mobile & Tablet---*/
 
@media (max-width:991.98px) {
  .navbar-toggle{
    top: 30px;
    right: 30px
  }
}

@media (max-width:767px) { 
  .header{position: fixed; display: none;}
  .navbar-toggle{
    opacity: 1;
    top: 25px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .btn-icon .group{
    width: 20px;
    height: 14px
  }

  .btn-icon .group span:nth-child(2){top: 6px}
  .btn-icon .group span:nth-child(3){top: 12px}

  .nav-main.slideout{padding-top: 20px;}  
  .nav-opened .btn-icon .group span:nth-child(1){ 
    -webkit-transform: rotate(45deg) translate3d(4px, 4px, 0);
    transform: rotate(45deg) translate3d(4px, 4px, 0)
  }
  .nav-opened .btn-icon .group span:nth-child(3) { 
      -webkit-transform: rotate(-45deg) translate3d(4px, -4px, 0);
      transform: rotate(-45deg) translate3d(4px, -4px, 0)
  }

  .navbar-slideout{
    width: 280px;
    -webkit-transform: translate(280px, 0);
    -ms-transform: translate(280px, 0);
    transform: translate(280px, 0);
    -webkit-transform: translate3d(280px, 0, 0);
    transform: translate3d(280px, 0, 0);
  }
  .nav-main.slideout li a {
    width: 120px;
    height: 120px;
  }
  .nav-main.slideout li a span{
    font-size: 10px
  }

  .nav-opened .page-slideout, .nav-opened .header-slideout, .nav-opened .page-blocker {
    -webkit-transform: translate(-280px, 0);
    -ms-transform: translate(-280px, 0);
    transform: translate(-280px, 0);
    -webkit-transform: translate3d(-280px, 0, 0);
    transform: translate3d(-280px, 0, 0);
  }
}

@media (max-width:375px) { }

/*==================================================
    Section - setup
==================================================*/ 
.preload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#f0f4fd;
    z-index: 1080;

    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
} 


.wd-preload-container { 
  padding: 0 0px 16px 0px;
  margin: 0 auto;
}

.wd-preload-container .logo{
  width: 150px;
  display: block;
  margin:25px auto;
}

.wd-preload-progress {
  margin:auto;
  position: relative;
  height: 2px;
  display: block;
  width:150px;
  background-color: #F0F1F2;
  border-radius: 0px;
  overflow: hidden;
}

.wd-preload-progress .wd-preload-indeterminate {
  background-color:var(--color-primary);
  
}

.wd-preload-progress .wd-preload-indeterminate:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius:0px;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: indeterminate 2.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.wd-preload-progress .wd-preload-indeterminate:after {
  content: '';
  position: absolute;
  background-color:var(--color-primary);
  top: 0;
  left: 0;
  bottom: 0;
  border-radius:0px;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: indeterminate-short 2.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

 
.navbar .container, 
.navbar .container-fluid, 
.navbar .container-lg, 
.navbar .container-md, 
.navbar .container-sm, 
.navbar .container-xl{
  display: block;
}
 
.section{
  display: block;
  position: relative;   
  padding: 45px 0;
}  

.section-target{
  display: block;
  position: relative;
}
.section-target .id-target{
  position: absolute;
  /*top:-224px;*/
  top: 0;
  bottom: 0px;
  left: 0;
  right: 0;

  pointer-events: none; 
}

.section-title{
  display: block;
  padding-bottom: 20px
}
.section-title.center{
  text-align: center;
}
 

.background{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none; 
}
.background.contain{background-size: contain;}     

.device .background.parallaxie{
  background-attachment: scroll !important;
  background-position: center center !important;
}
 
.row.space-0{ margin:0}
.row.space-0 > div{ padding:0}
 
.row.space-5{ margin:0 -5px}
.row.space-5 > div{ padding:0 5px} 

.row.space-10{ margin:0 -10px}
.row.space-10 > div{ padding:0 10px}
 
.row.space-20{ margin:0 -20px}
.row.space-20 > div{ padding:0 20px} 
  
.light{ font-weight: 300 !important }
.regular{ font-weight: 400 !important }
.medium{ font-weight: 500 !important }
.semibold{ font-weight: 600 !important }
.bold{font-weight: 700 !important }
.italic{font-style: italic;}
 
 

@media (max-width:1440px) {}

@media (max-width:1024px) {}

@media (max-width:991.98px) {}

@media (max-width:767px) {}

@media (max-width:320px) {}


/*==================================================
    Page - Intro
==================================================*/ 
.section-intro{
  padding:0;
}
.background-img{
  width: 100%;
}

.section-intro .section-group{
 position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section-intro .id-target{top: -70px;}

.article .hgroup {
  line-height: 1.3;
  margin-bottom: 20px;
}
.article .hgroup h2{
  font-size: 50px;
  color: var(--color-primary);
  line-height: 1.1
}
.article .hgroup h2 span{
  display: block;
  font-size: 35px;
}
.article .hgroup p{
  font-size: inherit;
  color: var(--color-primary);
  padding-top: 2px;
  font-size: 28px;
  margin-bottom: 0;
}

.article .hgroup h3{
  font-size: 44px;
  line-height: 1.35;
  color: var(--color-primary)
}

.article .hgroup h3 span{
  font-weight: 500;
  font-size: inherit;
  display: block;
}

.article h5{
  font-size: inherit;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 20px
}
.article p{
  font-size: 16px
}
.article ul.list{
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: block;
}
.article ul.list li{
  padding: 0 0 0 20px;
  margin: 0;
  position: relative;
  display: block;
}
.article ul.list li:before{
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
}


.article-texture{
  display: block;
}

.article.has-texture{
  width: 520px;
  padding:55px 60px;
  font-size: inherit;
  position: relative;
  
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/thumb/article-texture.jpg);
}


.article.has-texture:before{
  content: '';
  position: absolute;
  top: 25px; 
  height: 76px;
  width: 76px;

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/thumb/line-texture.png);
 
}


.highlight{color: var(--color-primary)}

 
.section-home{
  position: relative;
  top:2vw;
  left:0;
  right: 0; 
  padding-top:295px 
}

.article.in-home{
  margin-left: auto;
  margin-right: 30px;
  position: relative;
}
.article.in-home:before{right: 110px;}
.article.in-home .hgroup{ padding-left: 25px }
.article.in-home ul.list{
  font-size: inherit;
  padding-top: 10px
}
.article.in-home ul.list strong{
  font-weight: 600;
  color: var(--color-primary)
}
.article.in-home ul.list li{}

.article.in-home p.highlight{
  font-style: italic;
  font-size: 21px;
  line-height: 1.25;
  padding: 20px 0 0 20px;
  margin-bottom: 0
}

.home-apple-images{
  width: 300px;
  position: absolute;
  top: -95px;
  left: -200px;
}
.home-apple-images img{
  opacity: 0;
}
 
.images-group{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 0;
  margin:0;
  list-style-type: none;
  
}
ul.images-group li{ 
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0 ;
  background-size: contain; 
  background-position: center center;
  background-repeat: no-repeat; 
}
ul.images-group li:before{display: none;}
ul.images-group li.show{opacity: 1}

.home-apple-images ul.images-group li:nth-child(1){background-image: url(../img/thumb/home-apple-animate-1.png);}
.home-apple-images ul.images-group li:nth-child(2){background-image: url(../img/thumb/home-apple-animate-2.png);}
.home-apple-images ul.images-group li:nth-child(3){background-image: url(../img/thumb/home-apple-animate-3.png);}
.home-apple-images ul.images-group li:nth-child(4){background-image: url(../img/thumb/home-apple-animate-4.png);}
.home-apple-images ul.images-group li:nth-child(5){background-image: url(../img/thumb/home-apple-animate-5.png);}
.home-apple-images ul.images-group li:nth-child(6){background-image: url(../img/thumb/home-apple-animate-6.png);}

.whoweare-apple-images{
  position: absolute; 
  width: 26vw;
  top: 77.5vw;
  left: 27vw;
  z-index: 100
}
.whoweare-apple-images img{
  opacity: 0;
}
.whoweare-apple-images ul.images-group li{}
.whoweare-apple-images ul.images-group li:nth-child(1){background-image: url(../img/thumb/whoweare-apple-animate-1.png)}
.whoweare-apple-images ul.images-group li:nth-child(2){background-image: url(../img/thumb/whoweare-apple-animate-2.png);}
.whoweare-apple-images ul.images-group li:nth-child(3){background-image: url(../img/thumb/whoweare-apple-animate-3.png);}
.whoweare-apple-images ul.images-group li:nth-child(4){background-image: url(../img/thumb/whoweare-apple-animate-4.png);}
.whoweare-apple-images ul.images-group li:nth-child(5){background-image: url(../img/thumb/whoweare-apple-animate-5.png);}
.whoweare-apple-images ul.images-group li:nth-child(6){background-image: url(../img/thumb/whoweare-apple-animate-6.png);}
.whoweare-apple-images ul.images-group li:nth-child(7){background-image: url(../img/thumb/whoweare-apple-animate-7.png);}
.whoweare-apple-images ul.images-group li:nth-child(8){background-image: url(../img/thumb/whoweare-apple-animate-8.png);}
.whoweare-apple-images ul.images-group li:nth-child(9){background-image: url(../img/thumb/whoweare-apple-animate-9.png);}


.section-target.aboutus{
  position: absolute;
  top: 35vw;
  left: 0; 
  right: 0; 
  bottom: 0;
}  
.section-whoweare{ padding-top: 9vw; }

.article.in-whoweare{
  margin-left:6vw;
  transition: all 0.8s ease-in-out;
  opacity: 0;
  position: relative;
  top: 30px
}

.inpage .article.in-whoweare{
  opacity: 1;
  top: 0;
}

.article.in-whoweare:before{ right: 50px; width: 60px; height: 60px }
.article.in-whoweare p{font-size: 14px}

.section-weare{
  position: absolute;
  bottom: 0;
  left: 50px;
  right: 0;
  padding: 0;
}

.section-weare .container-fluid{
  position: relative;
}
.article.in-weare {
  width: 50%; 
  padding:60px 0 80px;
}
.article.in-weare .hgroup{margin-bottom: 35px;}


.article.in-weare p{
  font-size: inherit;
  margin-bottom: 35px;
}
.article.in-weare p.highlight{
  max-width: 88%
}


@keyframes floating {
  0% { 
    transform:translate(-100px,15px) rotate(10deg);
    opacity: 0;  
  }
  5% {  
    opacity: 1;
  }
  90% {  
    opacity: 1;
  }
  
  95% {  
    opacity: 0.5; 
  }
  
  100% { 
    transform:  translate(140%,-50%)  rotate(0deg);
    opacity: 0
  }
}
 

@keyframes floatingXS {
  0% { 
    transform:translate(-30%,0) rotate(10deg);
    opacity: 0;  
  }
  5% {  
    opacity: 1;
  }
  
  85% {  
    opacity: 1; 
  }
  95% {  
    opacity: 0.5;
  }
  100% { 
    transform:  translate(30%,-40%)  rotate(2deg);
    opacity: 0
  }
}


@keyframes floating2 {
  0% { 
    transform: translatey(-100px);
  }
  30% { 
    transform: translatey(0px);
  }
  30% { 
    transform: translatey(-70px);
  }
  100% { 
    transform: translatey(-100px);
  }
}

.lady-floating{
  position: absolute;
  bottom: 5vw;
  right: 15vw;
}

.lady-floating .images{
  position: absolute;
  bottom: 0;
  right: 0;
}
.lady-floating .images img{ width: 100%; }
.lady-floating .images.lady{
  bottom:0;
  width: 12vw; 
  right: -5vw;
  z-index: 9;
}
.lady-floating .images.lady img{
  animation: floating 5s ease-in-out infinite;  
}
.lady-floating .images.floor{width: 15vw;}

@media (max-width:1680px) {
  .section-home{top: 1vw}
  .article .hgroup{margin-bottom: 15px;}
  .article .hgroup h2{font-size: 40px;}
  .article .hgroup h2 span{font-size: 28px}
  .article .hgroup h3{font-size: 36px}
  .article .hgroup p{font-size: 20px}
  .article h5{margin-bottom: 15px}

  .article.has-texture{width: 480px}
  .article.has-texture::before { width: 65px; height: 65px }

  .article.in-home p.highlight{font-size: 16px}

  .home-apple-images{ width: 250px; left: -150px } 
 
  .article.in-whoweare p{font-size: 13px}

  .article.in-weare .hgroup{margin-bottom: 25px}
  
  .article.in-weare p{margin-bottom: 25px}
 
}

@media (max-width:1440px) {
  .article .hgroup h2{font-size: 28px;}
  .article .hgroup h2 span{font-size: 20px}
  .article .hgroup h3{font-size: 26px} 
  .article .hgroup p{font-size: 18px}
  .article.has-texture{
    width: 400px;
    padding: 45px 45px
  }
  .article.has-texture::before { width: 52px; height: 52px; top: 15px }
 
  .section-intro .id-target{top: -60px;}

  .section-home{padding-top: 16vw}  
  .article.in-home p.highlight{font-size: 15px}
  .article.in-home ul.list{padding-top: 10px;}

  .home-apple-images{ width: 200px; top: -73px; left: -120px }

  .article.in-whoweare{ width: 450px; }
  .article.in-weare .hgroup{margin-bottom: 25px}

  /*.lady-floating .images.lady{
    bottom:0;  
    width: 24vw;  
    right:-5vw;
  }
  .lady-floating .images.floor{width: 28vw;}*/
}

@media (max-width:1366px) {
   .section-home{top: 2vw}
}

@media (max-width:1280px) {
  .article .hgroup h2{font-size: 28px;}
  .article .hgroup h2 span{font-size: 19px}

  .article.has-texture{
    width: 360px;
    padding:30px 40px
  }
  .article.has-texture::before { width: 40px; height:40px; top: 10px }
  .article.in-home .hgroup {padding-left: 15px;} 
  .article.in-home p.highlight{font-size: 13px}
  .home-apple-images{ width: 160px; top: -60px; left: -100px } 

  .article.in-whoweare{ width: 450px; }
 
}

@media (max-width:1199px) {
  .lady-floating{bottom: 8vw;}
  .lady-floating .images.lady{right: -10vw;bottom: 15px}
}

@media (max-width:1024px) {
  .section-home{padding-top: 21vw}  
  .section-intro .id-target{top: -80px;}
  .article .hgroup{margin-bottom: 10px}
  .article h5{margin-bottom: 10px;}
 
  .article.in-whoweare {margin-left: 2vw}
  .article.in-whoweare p{margin-bottom: 10px; font-size: 12px}

}


@media (max-width:991.98px) {
  .section-home{padding-top: 24vw; top: 0}  
 
  .section-intro .id-target{top: -90px;}

  .article .hgroup h2{font-size: 18px;}
  .article .hgroup h2 span{
    font-size: inherit;
    display: inline;
  }
  .article .hgroup p{font-size: 15px}
  .article ul.list li{padding-left: 15px; padding-bottom: 5px}
  .article ul.list li::before {top: -2px}

  .article.has-texture{
    width: 310px;
    padding: 30px;
  } 
  .article.has-texture::before { width: 35px; height:35px; top: 15px}
  .article.in-home {margin-right: 0}
  .article.in-home::before { right:40px }
  .article.in-home p.highlight{
    font-size: 11px;
    padding:10px 0 0 15px 
  }
 
  .home-apple-images{ width: 130px; top: -50px; left: -80px } 

  .article.in-whoweare{margin-left: 0; padding-right:20px }
  .article.in-whoweare p{font-size: 10px}

  .section-weare{left: 0}
  .article.in-weare{ 
    width: 56%;
    padding: 50px 0; 
  } 
  .article .hgroup h3{font-size: 22px} 
  .article .hgroup h3 span{display: block;} 

 .lady-floating{
    
  }
  .lady-floating .images.lady{ width: 16vw; right: -14vw; }
  .lady-floating .images.floor{width: 19vw}

  
}

@media (min-width:768px) and (max-width:991.98px) {
  .whoweare-apple-images { 
    width: 21vw;
    top: 83.5vw;
    left:29vw 
  }
}

@media (max-width:767px) { 
  .section-target .id-target#section_home{top:-100vh !important}
  .section-intro{padding-bottom: 0 !important}
  .section-home{
    position: absolute;
    top:12vw; 
    padding-top: 0;
  } 
  .article .hgroup h2{font-size: 18px;}
  .article .hgroup h3{font-size: 18px} 
  .article.in-home{
    width: 46vw;
    margin-right: 0;
    padding: 30px 30px 30px 35px;
    animation-name: fadeInUp !important; 
  }

  .home-apple-images{ width: 100px; top: -40px; left: -60px } 

  .section-intro .section-group{
    position: static;
    top: auto; 
  }

  .section-intro .section-group .section-target:nth-child(1){ position: static; }

  .section-target.aboutus{
    position: relative;
    top: 0;
  }
  .section-whoweare{
    position: relative;
    top:auto;
    padding:30px 0 50px;
    background-color: #b15346;
    margin-top: -16vw; 
  } 
  .article.in-whoweare{
    top: 0; 
    width: auto; 
    animation-name: fadeInUp; 
    opacity: 1; 
  }
  .article.in-weare{
    margin-top: 50px;
    padding: 50px 0 50px;
  }

  .whoweare-apple-images{
    width: 26vw; 
    bottom: auto;
    left: 27vw; 
    top: 78vw;
  }
  .section-weare{
    position: relative;
    bottom: auto;
    top: auto; 
  } 
  .article.in-weare{ 
    width: 75% ; 
  }
  .article.in-weare p.highlight{max-width: 74%}

  .lady-floating{ 
    right: 30px;
    bottom: 10vw;
  }
  .lady-floating .images.lady{ width: 21vw;bottom: 0 ; right: -9vw}
  .lady-floating .images.floor{ width: 22vw; }

  .lady-floating .images.lady img{
    animation: floatingXS 5s ease-in-out infinite;
  }
}

@media (max-width:576px) {
  .section-intro .section-group{
    position: relative;
    top: auto;  
    margin:-16vw 0 0 0;
  }
  .section-home{ 
    position: relative;
    top: auto;
    padding-top: 20px; 
    padding-bottom: 0;
    background-color: #b15346;
  }
 
  .article.has-texture{
    width: auto;
    margin: 0;
    padding: 40px 25px 40px 25px;
    float: none;
  }

  .article.in-home:before {
    width: 29px;
    height: 29px;
    right: 71px;
    top: 65px;
  }

  .home-apple-images{
    left: auto;
    right: 0;
  }
  .article{ line-height: 1.4 }
  .section-whoweare{margin-top: 0; padding-top: 20px;}
  .article.in-whoweare p{font-size: 13px}

  .article.in-weare{
    width: 100%; 
    position: relative; 
    z-index: 9;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .article.in-weare p.highlight{max-width: 100%}
  .lady-floating{
    bottom: auto;
    top: 25vw;
  }

}




/*==================================================
    Page - Our Expertise
==================================================*/ 

.section-expertise{ padding-bottom: 30px; }
.section-expertise.heading{
  padding:90px 0;
  position: relative;
  overflow: hidden;
} 
.section-expertise.heading .background{
  background-image: url(../img/thumb/expertise-texture.jpg);
  
}

.pc .section-expertise.heading .background{background-attachment: fixed;}

.section-expertise .article{
  position: relative;
  z-index: 9;
  color: #ffffff;
  max-width: 950px
}

.section-expertise .article .hgroup h3{color: #ffffff}
.section-expertise .article p{color: #ffffff; font-size: inherit;}

@keyframes globe_spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
.card-expertise{
  border:0;
  border-radius: 0;
  margin:100px auto;
  max-width: 88%
}
.card-expertise .card-photo{
  display: block;
  margin:0 auto 20px; 
  width: 65%;
  position: relative;
}
.card-expertise .card-photo img{ width: 100%; }

.card-expertise .card-photo .globe{
  position: absolute;
  top: 0%;
  left: 29%;
  width: 44%;
  height: 44%;
  animation-name: globe_spin;
  animation-duration: 5500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/thumb/expertise-apple--1.1.png);
}

.card-expertise .card-photo .img-hidden{
  opacity: 0
}
.card-expertise.card-1 .card-photo{position: static;}

.card-expertise.card-2 ul.images-group li:nth-child(1){background-image: url(../img/thumb/expertise-apple--2.1.png);}
.card-expertise.card-2 ul.images-group li:nth-child(2){background-image: url(../img/thumb/expertise-apple--2.2.png);}
.card-expertise.card-2 ul.images-group li:nth-child(3){background-image: url(../img/thumb/expertise-apple--2.3.png);}
.card-expertise.card-2 ul.images-group li:nth-child(4){background-image: url(../img/thumb/expertise-apple--2.4.png);}
.card-expertise.card-2 ul.images-group li:nth-child(5){background-image: url(../img/thumb/expertise-apple--2.5.png);}
.card-expertise.card-2 ul.images-group li:nth-child(6){background-image: url(../img/thumb/expertise-apple--2.5.png);} 

.card-expertise.card-3 ul.images-group li:nth-child(1){background-image: url(../img/thumb/expertise-apple--3.1.png);}
.card-expertise.card-3 ul.images-group li:nth-child(2){background-image: url(../img/thumb/expertise-apple--3.2.png);}
.card-expertise.card-3 ul.images-group li:nth-child(3){background-image: url(../img/thumb/expertise-apple--3.1.png);}
.card-expertise.card-3 ul.images-group li:nth-child(4){background-image: url(../img/thumb/expertise-apple--3.2.png);}
.card-expertise.card-3 ul.images-group li:nth-child(5){background-image: url(../img/thumb/expertise-apple--3.1.png);} 
.card-expertise.card-3 ul.images-group li:nth-child(6){background-image: url(../img/thumb/expertise-apple--3.2.png);}


.card-expertise p{color: var(--color-primary); margin-bottom: 5px}

.card-expertise ul.list{
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block;
}

.card-expertise ul.list li{
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 25px;
  display: block;
  position: relative;
}

.card-expertise ul.list li:before{
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.card-graphic-row{
  margin:0 -2vw 0 -7vw;
}

.card-graphic{
  display: block;
  border:0;
  border-radius: 0;
  margin-bottom: 2vw;
  background-color: transparent;
}
.card-graphic .card-photo{
  display: block;
  position: relative;
  cursor: pointer;
}
.card-graphic .card-photo .photo{
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;

}
.card-graphic .card-photo img.img-hidden{
  width: 100%;
}
.card-graphic .card-photo img.img-main{
  position: absolute;
  top: 0;
  right: 0;
  height:100%;
  opacity: 1;
}

.card-graphic .chips-hover{
  position: absolute;
  top: 0;
  right: 11%;
  width: 100%;
  height:70%;
  z-index: 9;
  opacity: 0;
  pointer-events: none;

  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.card-graphic .dropdown-menu{ 
  padding: 0;
  margin:0;
  float: none; 
  border:0;
  border-radius: 0; 
  width: 600px;
  height: 600px;
  background-color: transparent;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #565656;
  font-size: 18px; 
  text-align: center;
  z-index: 1010;
  
  left: auto;
  right:-17%;
  top: 70%;

  opacity: 0;
  pointer-events: none;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/thumb/expertise-graphic--content.png);
}

.card-graphic .dropdown-menu .inner{
  display: block;
  max-width:50%;
  margin: 0 auto;
}
.card-graphic .dropdown-menu h3{
  font-size: 28px;
  text-align: center;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 25px;
}
.card-graphic .dropdown-menu h3 span{
  font-size: 20px;
  display: block; 
  font-weight: 500;
}
.card-graphic .dropdown-menu .txtlong{ max-width: 60% } 
.card-graphic .dropdown-menu .txtlong p{font-size: 16px}

.card-graphic .card-photo ,
.card-graphic .card-photo img.img-main,
.card-graphic .dropdown-menu,
.card-graphic .chips-hover{
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
 
/*.device .card-graphic .card-photo img.img-main{
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition:none;
  transition: none;
}*/

.card-graphic.show,
.pc .card-graphic:hover{ z-index: 1010 }

.card-graphic.show .card-photo img.img-main,
.pc .card-graphic:hover .card-photo img.img-main{
  opacity: 0;
}

.card-graphic.show .dropdown-menu,
.pc .card-graphic:hover .dropdown-menu{
  opacity: 1;
  pointer-events: auto;
  top: 55%;
}

.card-graphic.show .chips-hover,
.pc .card-graphic:hover .chips-hover{
  opacity: 1;  
}

.card-graphic-row:hover .card-photo{ opacity: 0.56 }

.card-graphic-row:hover .card-graphic:hover .card-photo{ opacity: 1 }

.card-graphic-row > div:hover{ z-index: 100; }

/**/
.card-graphic-row > div:nth-child(1) .chips-hover{background-image: url(../img/thumb/expertise-graphic--1-hover.png);}
.card-graphic-row > div:nth-child(2) .chips-hover{background-image: url(../img/thumb/expertise-graphic--2-hover.png);}
.card-graphic-row > div:nth-child(3) .chips-hover{background-image: url(../img/thumb/expertise-graphic--3-hover.png);}
.card-graphic-row > div:nth-child(4) .chips-hover{background-image: url(../img/thumb/expertise-graphic--4-hover.png);}
.card-graphic-row > div:nth-child(5) .chips-hover{background-image: url(../img/thumb/expertise-graphic--5-hover.png);}
.card-graphic-row > div:nth-child(6) .chips-hover{background-image: url(../img/thumb/expertise-graphic--6-hover.png);}
.card-graphic-row > div:nth-child(7) .chips-hover{background-image: url(../img/thumb/expertise-graphic--7-hover.png);}
.card-graphic-row > div:nth-child(8) .chips-hover{background-image: url(../img/thumb/expertise-graphic--8-hover.png);}
.card-graphic-row > div:nth-child(9) .chips-hover{background-image: url(../img/thumb/expertise-graphic--9-hover.png);}
.card-graphic-row > div:nth-child(10) .chips-hover{background-image: url(../img/thumb/expertise-graphic--10-hover.png);}

.card-graphic-row > div:nth-child(7) .card-graphic .dropdown-menu,
.card-graphic-row > div:nth-child(8) .card-graphic .dropdown-menu,
.card-graphic-row > div:nth-child(9) .card-graphic .dropdown-menu,
.card-graphic-row > div:nth-child(10) .card-graphic .dropdown-menu{/*top: -100%;*/ top: auto; bottom: 80%}

.card-graphic-row > div:nth-child(7) .card-graphic.show .dropdown-menu, 
.card-graphic-row > div:nth-child(8) .card-graphic.show .dropdown-menu, 
.card-graphic-row > div:nth-child(9) .card-graphic.show .dropdown-menu,
.card-graphic-row > div:nth-child(10) .card-graphic.show .dropdown-menu, 
.pc .card-graphic-row > div:nth-child(7) .card-graphic:hover .dropdown-menu,
.pc .card-graphic-row > div:nth-child(8) .card-graphic:hover .dropdown-menu,
.pc .card-graphic-row > div:nth-child(9) .card-graphic:hover .dropdown-menu,
.pc .card-graphic-row > div:nth-child(10) .card-graphic:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto; 
  bottom:84%
}

@media (max-width:1740px) {
  .card-graphic .dropdown-menu{
    width: 33vw;
    height: 33vw;
    right: -6vw;
    font-size: 16px;
  }
  .card-graphic .dropdown-menu h3{margin-bottom:20px; font-size: 20px}
 
  .card-graphic .dropdown-menu .inner{ max-width: 65% } 
  .card-graphic .dropdown-menu .inner.txtlong{ max-width: 65%  } 
  .card-graphic .dropdown-menu .txtlong p{font-size: 15px}



}

@media (max-width:1680px) {
  .card-expertise ul.list li::before {
    top: 11px; 
    width: 8px;
    height: 8px;
  }
}

@media (max-width:1440px) {
  .section-expertise.heading{padding:70px 0;}
  .card-expertise {max-width: 90%; margin:80px auto;}
  .card-expertise .card-photo{margin-bottom: 10px}
  .card-expertise ul.list li::before {
    top:9px; 
    width: 7px;
    height: 7px;
  }

  .card-graphic .dropdown-menu h3{margin-bottom:15px;}
  .card-graphic .dropdown-menu h3 span{font-size: 16px}
  .card-graphic .dropdown-menu  p{font-size: 15px}

  .card-graphic .dropdown-menu{
    width: 37vw;
    height: 37vw;
    right: -7.6vw; 
  }

}

@media (max-width:1280px) {
  .card-expertise{max-width: 100%}
  .card-expertise ul.list li{
    padding-left: 20px;
  }
  .card-expertise ul.list li::before {
    top:8px; 
    width: 6px;
    height: 6px;
  }
}

@media (max-width:1199px) {
  .card-graphic .dropdown-menu{
    width: 40vw;
    height: 40vw;
    right: -8.6vw; 
  }

  .card-graphic .dropdown-menu h3{font-size: 17px;}
  .card-graphic .dropdown-menu h3 span{font-size: 15px}
  .card-graphic .dropdown-menu p,
  .card-graphic .dropdown-menu .txtlong p{font-size: 13px}

  .card-graphic-row{ padding-bottom: 50px }
}

@media (max-width:1100px) {
  .card-expertise .card-body{
    padding-left: 0;
    padding-right: 0
  }
}

@media (max-width:991.98px) {
  .section-expertise{ padding-bottom: 20px; }
  .card-expertise{margin:60px auto}
  .card-expertise .card-photo{width: 80%}
  .card-expertise .card-body{
    padding-left: 0;
    padding-right: 0; 
  }
  .card-expertise ul.list li{ 
    margin-bottom: 5px;
    font-size: 13px
  }

  .card-graphic .dropdown-menu{
    width: 58vw;
    height: 58vw;
    right: -10.6vw; 
  }

  .card-graphic .dropdown-menu .inner{max-width: 62%;}
}


@media (max-width:767px) {
  .section-expertise{ padding-bottom: 0px; }
  .section-expertise.heading{padding: 40px 0}

  .card-expertise{
    margin:40px auto 0;
    max-width:300px;
  }
  .card-expertise .card-photo{
    max-width:120px
  }
  .card-expertise .card-body {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    padding-bottom: 0
  }

  .card-graphic-row{
    padding-top: 10vw; 
    margin-left: -15px; 
    margin-right: -15px;
    padding-bottom: 30px
  }

  .card-graphic{width: 80%}


  .card-graphic .dropdown-menu{
    width: 100vw;
    height: 100vw;
    right:auto;
    left: 0 
  }

  .card-graphic-row > div:nth-child(even) .card-graphic .dropdown-menu{ left: auto; right: -10vw }

  .card-graphic.show .dropdown-menu, 
  .pc .card-graphic:hover .dropdown-menu{
    top: 42%
  }

  .card-graphic-row > div:nth-child(7) .card-graphic.show .dropdown-menu, 
  .card-graphic-row > div:nth-child(8) .card-graphic.show .dropdown-menu, 
  .card-graphic-row > div:nth-child(9) .card-graphic.show .dropdown-menu,
  .card-graphic-row > div:nth-child(10) .card-graphic.show .dropdown-menu, 
  .pc .card-graphic-row > div:nth-child(7) .card-graphic:hover .dropdown-menu,
  .pc .card-graphic-row > div:nth-child(8) .card-graphic:hover .dropdown-menu,
  .pc .card-graphic-row > div:nth-child(9) .card-graphic:hover .dropdown-menu,
  .pc .card-graphic-row > div:nth-child(10) .card-graphic:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    /*top: -100%;*/
     bottom:80%
  }

}

@media (max-width:576px) {
  .card-expertise{ max-width: 80% }
  .card-expertise .card-photo{
    max-width:65%
  }
  .card-expertise .card-body {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px; 
  }
  .card-expertise:not(.card-1) .card-photo{ margin-bottom: 0 }
  .card-expertise:not(.card-1) .card-body{padding-top: 5px}
  .card-graphic{width: 100%}
  .card-graphic-row{margin-left: -10vw; margin-right: 0}
}

/*==================================================
    Page - Testimonial
==================================================*/

.section-testimonial{
  display: block;
  position: relative;
  padding: 100px 0
}

.section-testimonial .background{}

.section-testimonial .container-fluid{
  position: relative;
  width:80vw
}
.section-testimonial .section-title{
  position: absolute;
  top: 0;
  left: 50px;
  width: 480px;
  text-align: center;
}
.section-testimonial .section-title h3{
  color: #fc9190;
  font-size: 44px;
}
.testimonial-content{
  display: block;
  position: relative;
}
.dining-table{
  width: 100%;
}

ul.testimonial{
  list-style-type: none;
  margin:0;
  padding: 0;
}
ul.testimonial li{
  list-style-type: none;
  margin:0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 17%;
  height:17%; 
  border-radius: 50%;
  cursor: pointer;
}

ul.testimonial li.hide{display: none;}

/*ul.testimonial li:nth-child(1){
  top:25.1%;
  left:19.2%;
}
ul.testimonial li:nth-child(2){
  top:25.1%;
  left:71.8%;
}
ul.testimonial li:nth-child(3){
  top: 54.4%;
  left:10.1%;
}
ul.testimonial li:nth-child(4){
  top: 54.6%;
  left: 62.5%;
}
*/

ul.testimonial li.top-left{
  top:25.1%;
  left:19.2%;
}
ul.testimonial li.top-right{
  top:25.1%;
  left:71.8%;
}
ul.testimonial li.bottom-left{
  top: 54.4%;
  left:10.1%;
}
ul.testimonial li.bottom-right{
  top: 54.6%;
  left: 62.5%;
}

ul.testimonial > li > a{
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-align: center;
  align-items: center;
}
ul.testimonial > li > a > img{
  margin:0 auto;
  width:92%
}
ul.testimonial > li.brand-scotch > a > img{}
ul.testimonial > li.brand-brandaholic > a > img{}
ul.testimonial > li.brand-reckitt > a > img{}
ul.testimonial > li.brand-panpuri > a > img{}


.section-testimonial .dropdown-menu{ 
  padding: 0;
  margin:0;
  float: none; 
  border:0;
  border-radius: 0; 
  width: 650px;
  height: 650px;
  background-color: transparent;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #333333;
  font-family: 'Mitr', sans-serif;
  font-size: 12px;
  font-weight:300; 
 
  line-height: 1.5;  
  z-index: 10;
  text-align: center;
  
  left: auto;  
  top: auto;
  opacity: 0;
  pointer-events: none;

  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/thumb/testimonial-dish.png);
}

.section-testimonial .dropdown-menu .inner{
  display: block;
  
  margin: 0 auto;
}
.testimonial-content .dropdown-menu .inner{max-width:57%;}
.testimonial-logo .dropdown-menu .inner{max-width:67%;}

.section-testimonial .dropdown-menu p:last-child{margin-bottom: 0}
.section-testimonial .dropdown-menu h5{
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.7;
  /*font-family: 'DIN Condensed', sans-serif;*/
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding:0 0;

}
.section-testimonial .dropdown-menu .logo{
  display: block;
  width: 100%;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size:46%
}
.section-testimonial .dropdown-menu .logo-brand{
  display: block;
  width: 150px;
  margin: 0 auto
}
.section-testimonial .dropdown-menu .logo-brand img{ width: 100% }
.section-testimonial .dropdown-menu .logo.mazda{
  height: 84px;
  background-size: 36%;
  margin-bottom: 10px;
  margin-top: -10px;
}

.testimonial-content .dropdown-menu .scrollbar-inner{
  max-height:230px;
  margin-bottom: 15px;
}
.testimonial-logo .dropdown-menu .scrollbar-inner{
  max-height:200px;
  margin-bottom: 15px;
}

.section-testimonial .dropdown-menu .scrollbar-inner.scroll-scrolly_visible{padding-right:15px}
.testimonial li.top-left .dropdown-menu{
  bottom: -122px;
  right: -135px;
}
.testimonial li.top-right .dropdown-menu{
  bottom:-122px;
  left: -122px;
  right: auto;
}
.testimonial li.bottom-left .dropdown-menu{
  top: -122px;
  right: -135px;
}

.testimonial li.bottom-right .dropdown-menu{
  top: -122px;
  left: -135px;
  right: auto;
}

.testimonial-logo .dropdown-menu{
  left: 50%;
  margin-left: -250px;
  width: 500px;
  height: 500px;
  top:100%;
  pointer-events: none;
  z-index: -1;
  background-image: url(../img/thumb/testimonial-dish-2.png);
}
.testimonial-logo .dropdown-menu h5{font-size: 10px;}
.testimonial li.show .dropdown-menu ,
.pc .testimonial li:hover .dropdown-menu{
    opacity: 1; 
    pointer-events: auto;
    z-index: 600;
}
.testimonial-logo > div.show .dropdown-menu ,
.pc .testimonial-logo > div:hover .dropdown-menu {
  opacity: 1; 
  pointer-events: auto;
  z-index: 600;
}

.testimonial-logo{
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
  -ms-flex-pack: center;
justify-content: center
}
.testimonial-logo .logo-item{
  width: 50%; 
  text-align: center;
  position: relative;
}
.testimonial-logo .logo{ 
  display: block;
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: 150px; 
}
.testimonial-logo .logo img{
  width: 100%;
}

@media (max-width:1680px) {
  .testimonial-logo{width: 100%; padding-right: 10px}
  .testimonial-logo .logo{ height: 165px; }

  .section-testimonial .section-title{width: 25vw}
}

@media (max-width:1440px) {
  .section-testimonial .container-fluid{max-width: calc(1550px + 100px); width: 90%;}
  .testimonial-logo{ width: 90% }
  .testimonial-logo .logo{ height: 10vw; }
  .testimonial-logo .logo img{ width: 106% }
  .testimonial-logo .logo-item{margin-top: 10px;}
  .testimonial-logo .logo-item:last-child{margin-top: -5px;}

  .section-testimonial .dropdown-menu{
    width: 550px;
    height: 550px; 
  } 
  .testimonial-content .dropdown-menu .scrollbar-inner{max-height: 170px;}
  .section-testimonial .dropdown-menu h5{font-size: 10px}
  .testimonial-content .dropdown-menu .inner{max-width: 60%;}
  .section-testimonial .dropdown-menu .logo-brand{ width: 120px; }

  .testimonial li.top-right .dropdown-menu{
    bottom:-122px;
    left: -192px;
  }

  .testimonial-logo .dropdown-menu{
    width: 440px;
    height: 440px;
    margin-left: -220px;
  }
 
  .testimonial-logo .dropdown-menu .logo{
    margin-bottom: 0
  }
  .testimonial-logo .dropdown-menu .logo.mazda{background-size: 45%}
  .testimonial-logo .dropdown-menu .scrollbar-inner{max-height: 160px}
  .testimonial-logo .dropdown-menu .inner{max-width: 72%}

  .section-testimonial .section-title{left: 20px; width: 31vw}

}

@media (max-width:1280px) { 
  .testimonial-logo{ width:80% }
  .testimonial-logo .logo{ height: 9vw; }
  .testimonial-logo .logo-item{margin-top: 0}

  .section-testimonial .dropdown-menu h5{transform: scale(0.92);}
}

@media (max-width:1024px) {
  .testimonial-logo{margin-left: 0}

  /*.section-testimonial .dropdown-menu{
    width: 450px;
    height: 450px; 
    font-size: 14px
  } 
  .section-testimonial .dropdown-menu .logo{height: 44px}
  .section-testimonial .dropdown-menu h5{font-size: 12px}
  .section-testimonial .dropdown-menu .scrollbar-inner{max-height:170px;}
  .section-testimonial .dropdown-menu .logo.mazda {
    height: 54px; 
  }

  .section-testimonial .dropdown-menu .logo-brand{ width: 100px; }
 
  .testimonial-logo .dropdown-menu .logo-brand{ width:80px; }

  .testimonial li.top-right .dropdown-menu,
  .testimonial li.top-left .dropdown-menu{bottom: -90px}

  .testimonial li.bottom-right .dropdown-menu,
  .testimonial li.bottom-left .dropdown-menu{top: -90px}

  .testimonial-logo .dropdown-menu{
    width: 300px;
    height: 300px;
    margin-left:0;
    left: 0;
    top: 0;
    font-size: 12px;
  }

  .testimonial-logo .dropdown-menu .scrollbar-inner {
    max-height: 140px;
  }*/
  .section-testimonial .section-title{width: 27vw}
  .section-testimonial .section-title h3{font-size: 35px}
}


@media (max-width:991.98px) {
  .section-testimonial .container-fluid{ width: auto; }
  .testimonial-content{
    margin:0 auto;
    max-width: 500px;
  }

  .testimonial li.top-right .dropdown-menu,
  .testimonial li.top-left .dropdown-menu{bottom: -70px; right: -175px;}

  .testimonial li.bottom-right .dropdown-menu,
  .testimonial li.bottom-left .dropdown-menu{top: -70px; right: -275px;}

  .testimonial li.top-right .dropdown-menu,
  .testimonial li.bottom-right .dropdown-menu{
    right: -175px;
    left: auto;
  }

  .testimonial-logo .logo-item{
    width: 33.333%
  }
  .testimonial-logo .logo img{ width:80% }
  .testimonial-logo{
    width: 80%;
    margin: 0 auto;
    padding: 0 0 7vw 0
  }
  .testimonial-logo .logo{height: 15vw;}

  .section-testimonial .section-title{width: 27vw; top: -50px;}
  .section-testimonial .section-title h3{font-size: 28px}
}

@media (max-width:767px) {
  .section-testimonial{
    padding: 70px 0 30px;
  }
  .section-testimonial .section-title{
    width: auto;
    top: -40px
  }
  .section-testimonial .section-title h3{font-size: 20px}
  .section-testimonial .dropdown-menu{font-size: 11px}
  .section-testimonial .dropdown-menu p{ margin-bottom:5px }

  .testimonial-content{
    margin: 0
  }
 
  .testimonial li{position: static;}

  .testimonial li.top-left .dropdown-menu{
    left:-31.5vw;
    right: auto;
  }
  .testimonial li.top-right .dropdown-menu{
    right:-25.5vw;
    left: auto;
  }

  .testimonial li.bottom-left .dropdown-menu{
    left:-24.5vw;
    right: auto;
    top: auto;
    bottom:-70px;
  }

  .testimonial li.bottom-right .dropdown-menu{
    right:-33.5vw;
    left: auto;
    top: auto;
    bottom:-70px;
  }

  .section-testimonial .dropdown-menu{
    width: 120vw;
    height: 120vw;  
  } 
  .section-testimonial .dropdown-menu .scrollbar-inner{
    max-height: 35vw
  }

  .section-testimonial .dropdown-menu .logo.mazda{height: 16vw;}
  .testimonial-logo{
    width: 100%;
    padding: 0 0 13vw 0
  }
  .testimonial-logo .logo{height: 20vw;}
  .testimonial-logo .logo-item{position: static;}
  .testimonial-logo .dropdown-menu{
    width: 340px;
    height: 340px;
    margin-left:0;
    left: 50%;
    top: 0;
    margin-left: -170px;
    font-size: 14px;
  } 
  .section-testimonial .dropdown-menu h5{
    white-space: nowrap;
    padding-top: 8px;
    transform: scale(0.8);
  }
  .testimonial-logo .dropdown-menu .logo-brand{ width: 100px }
  .testimonial-logo .dropdown-menu .inner{max-width: 100%}
  .testimonial-logo .dropdown-menu .scrollbar-inner {
    max-height: 140px;
    max-width: 72%;
    margin: 0 auto
  }
  .testimonial-content .dropdown-menu .logo-brand{ width: 100px }
  .testimonial-content .dropdown-menu .inner{max-width: 100%}
  .testimonial-content .dropdown-menu .scrollbar-inner {
    max-height: 150px;
    max-width:60%;
    margin: 0 auto
  }
}

/*==================================================
    Section - A look Back
==================================================*/

.section-alookback-contact{ 
  padding: 0;
  position: relative;
}

.section-alookback-contact .img-chips{
  position: absolute;
  bottom: 19vw;
  right: 2.1vw;
  width: 35vw;
  pointer-events: none;
  z-index: 9;
}
.section-alookback-contact .img-chips img{opacity: 0.8}

.section-target.alookback{
  position: absolute; 
  top: 0;
  left: 0;
  right: 0;
  padding-top: 12vw;
}
.section-target.alookback .id-target{top:9vw}

.section-alookback .container-fluid{
  padding: 0;
  max-width: 100%;
  width: 100%;
  padding-left: 5vw
}

.alookback-image{
  display: block;
  margin: 0 auto;
  width:35vw;
  position: relative;
}

.alookback-image .img-hidden{
  opacity: 0;
  width: 100%;
}

.alookback-image ul.images-group{
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.alookback-image ul.images-group li:nth-child(1){background-image: url(../img/thumb/alookback--01.png);}
.alookback-image ul.images-group li:nth-child(2){background-image: url(../img/thumb/alookback--02.png);}
.alookback-image ul.images-group li:nth-child(3){background-image: url(../img/thumb/alookback--03.png);}
.alookback-image ul.images-group li:nth-child(4){background-image: url(../img/thumb/alookback--04.png);}
.alookback-image ul.images-group li:nth-child(5){background-image: url(../img/thumb/alookback--05.png);}
.alookback-image ul.images-group li:nth-child(6){background-image: url(../img/thumb/alookback--06.png);}

.nav-alookback-tabs{
  display: block;
  padding: 0;
  border:0;
}
.nav-alookback-tabs .nav-item:nth-child(2){animation-delay: 0.1s; }
.nav-alookback-tabs .nav-item:nth-child(3){animation-delay: 0.15s; }
.nav-alookback-tabs .nav-item:nth-child(4){animation-delay: 0.2s; }
.nav-alookback-tabs .nav-item:nth-child(5){animation-delay: 0.25s; }
.nav-alookback-tabs .nav-item:nth-child(6){animation-delay: 0.3s; }
.nav-alookback-tabs .nav-item:nth-child(7){animation-delay: 0.35s; }
.nav-alookback-tabs .nav-item:nth-child(8){animation-delay: 0.4s; }
.nav-alookback-tabs .nav-item:nth-child(9){animation-delay: 0.45s; }

.nav-alookback-tabs .nav-link{
  border:0 !important;
  padding:7px 0;
  background-color: transparent !important;
  display: inline-block;
}
.nav-alookback-tabs .nav-link img{ height: 70px }

.pc .nav-alookback-tabs .nav-link:hover{ opacity: 0.7 }

.tab-alookback-content{
  position: absolute;
  top: 0;
  left: 0;

  pointer-events: none;

  transition: all 0.2s ease-in-out;
  opacity: 0; 
  display: none;
}
 
.alookback-image.logo-show ul.images-group{
  opacity: 0
}
.alookback-image.logo-show .tab-alookback-content{
  opacity: 1; 
  display: block;
}
.swiper-alookback .swiper-slide{opacity: 0 !important}
.swiper-alookback .swiper-slide-active{opacity: 1 !important}

.swiper-alookback-thumb .swiper-wrapper {
  transform:none !important;
}
.swiper-alookback-thumb .swiper-slide{
  height: auto !important;
}
.alookback-nav{ 
  height: 70px; 
  position: relative; 
  margin: 7px 0;
  cursor: pointer;
  display: inline-block;
}
.alookback-nav img{
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.alookback-nav img.img-hover{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.pc .swiper-slide .alookback-nav:hover img.img-main{opacity: 0;}
.pc .swiper-slide .alookback-nav:hover img.img-hover{opacity: 1;}

.swiper-slide.swiper-slide-thumb-active .alookback-nav img.img-main{opacity: 0;}
.swiper-slide.swiper-slide-thumb-active .alookback-nav img.img-hover{opacity: 1;}

@media (max-width:1680px) {
  .alookback-nav, 
  .nav-alookback-tabs .nav-link img{ height: 55px }

  .alookback-image{width: 32vw}
}

@media (max-width:1440px) {
  .section-target.alookback{ padding-top: 16vw }

  .alookback-nav,
  .nav-alookback-tabs .nav-link img{ height:45px }  
}

@media (max-width:1199px) {
  .alookback-image{width: 35vw}
  .section-target.alookback{padding-top: 10vw;}
}

@media (max-width:991.98px) { 
  .section-target.alookback{padding-top: 18vw;}

  .alookback-nav,
  .nav-alookback-tabs .nav-link img{ height:40px }  
  .alookback-image{ width: 45vw; padding-top: 10vw }
  .section-alookback-contact .img-chips{
    bottom: auto;
    top: 77vw;
  }
}

@media (max-width:767px) {
  .section-target.alookback{padding-top: 5vw}
  .nav-alookback-tabs{display: flex;}
  .nav-alookback-tabs .nav-item{width: 50%}
 
  .alookback-image{ padding-top: 0 }
}

@media (max-width:576px) {
  .section-alookback-contact .img-chips{top: 70vw}
  
  .section-target.alookback{
    position: relative;
    padding: 0; 
  }

  .alookback-image{  
    width: 100%;
    text-align: center;
    margin-bottom: 8vw;
  }
  .alookback-image img{ width: 70vw !important }
  .nav-alookback-tabs .nav-item{width: 100%}
  .nav-alookback-tabs .nav-link{padding: 2px 0;}

  .alookback-nav{margin: 2px 0}
  .alookback-nav,
  .nav-alookback-tabs .nav-link img{ height:30px }  

  .section-alookback .container-fluid{ 
    background-color: #da5d58;
    padding: 30px 20px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/thumb/alookback-texture-2.jpg);
  }
  .section-alookback .container-fluid > .row > div{
    position: static;
  }
   

}

/*==================================================
    Section - Contact
==================================================*/


.section-target.contact{
  position: absolute;
  left: 0;
  right: 0;
  bottom:15vw;
}
.section-contact {
  padding: 100px 0;  
  color: #ffffff;
}
.section-contact .background-color{ 
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;

  background-color: rgba(135,14,40,1);
} 
.ie .section-contact .background-color{background-color:#770d04; opacity: 0.8 }
.contactus h3,
.contactus h5{
  color: #ffffff;
  
}
.contactus h3{
  text-transform: uppercase;
  font-size: 35px;
  white-space: nowrap;
}
.contactus h5{
  font-size: inherit;
  margin-bottom: 0; 
}
.contactus p{
  margin-bottom: 30px
}
.contactus p.address{
  max-width: 500px;
}

.contactus .group{
  display: block;
}

.pc .contactus a:hover{opacity: 0.7}

.form-contactus{
  display: block;
  position: relative;
  margin: 40px 0;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
  background: #fff;
}
.form-contactus .form-control{
  height: 56px;
  line-height: 56px; 
  color: #1c1c1c;
  background-color: transparent;
  font-size: 18px;
  padding-top: 2px;
  text-transform: uppercase;
  text-align: left;
  font-weight: 400;
  opacity: 1 !important;
  position: relative;
  z-index: 10
}
.form-contactus .btn{
  position: absolute;
  top:0;
  right: -1px; 
  height: 56px;
  line-height: 56px;
  background-color: #c43d38;
  padding: 0 20px; 
  line-height: 56px;
  border-radius: 0 8px 8px 0;
}
.form-contactus .btn .icons{
  width: 30px;
  height: 30px;
  background-image: url(../img/icons/icon-email.png);
}

.section-contact .copyright{
  text-align: right;
  font-size: 18px;
  color: #ffffff;

  position: absolute;
  bottom: -70px;
  right: 0;
}
.pc .section-contact .copyright a:hover{opacity: 0.7} 

@media (max-width:1680px) {
  .section-target.contact{bottom: 14vw;}
  .section-contact{ padding: 5vw 0  }
  .contactus h3{font-size: 32px}
  .contactus p{margin-bottom: 20px}
  .contactus p.address {
    max-width: 466px;
  }
  .form-contactus{
    max-width: 460px;
    margin: 30px 0;
  }
  .form-contactus .form-control{
    height: 50px;
    line-height: 50px; 
    font-size: 18px; 
  }
  .form-contactus .btn{
    height: 50px;
    line-height: 50px; 
  }

  .section-contact .copyright{
    font-size: 16px; 
    bottom: -4vw;
    padding-bottom: 10px;
  }
}


@media (max-width:1440px) {
  .section-target.contact{bottom: 13vw;}
  .form-contactus{
    max-width: 355px;
    margin: 25px 0;
  }
  .contactus h3{font-size: 25px}
  .contactus p.address {max-width: 400px;}
  .form-contactus .form-control,
  .form-contactus .btn{
    height: 45px;
    line-height: 45px; 
    font-size: 14px; 
  }
  .form-contactus .form-control{border-radius: 5px}
  .form-contactus .btn{
    border-radius: 0 5px 5px 0;
    padding: 0 15px
  }
  .form-contactus .btn .icons{
    width: 27px;
    height: 27px;
    margin-top: -2px;
  }
  .section-contact .copyright{font-size: 12px}
}

@media (max-width:1024px) {
  .section-target.contact{bottom:9.5vw;}
  .contactus h3{font-size: 21px}
}

@media (max-width:991.98px) {
  
  .section-target.contact{
    position: relative;
    bottom:auto;
  } 
  .section-contact{
    padding: 8.5vw 0;
    text-align: center;
  }
  .section-contact .copyright{
    position: relative;
    bottom: auto;
    padding: 30px 0 0;
    text-align: left;
  }

  .form-contactus{ 
    margin:30px auto;
  }
  .contactus p.address{
    margin-left: auto;
    margin-right: auto;
  }

  .contactus{font-size: 15px}
  .contactus h5{margin-bottom:5px;} 

  .section-contact .copyright{ text-align: center; }

}

@media (max-width:767px) {
  .contactus{font-size: 14px}
  .contactus h3{font-size: 16px}

  .form-contactus{
    margin:20px auto; 
    max-width: 295px;
  }
  .form-contactus .form-control, .form-contactus .btn {
    height: 41px;
    line-height: 41px;
    font-size: 13px
  }
  .form-contactus .form-control{padding-top: 0}

  .form-contactus .btn .icons{ width: 22px; height: 22px; }

  .section-contact .copyright{margin:0 -15px; font-size: 11px}
}