/*------------------------------
    Version: 1.0
------------------------------*/

/* Google fonts
------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

/* font-family: 'DIN', sans-serif; /*

/* Replace the existing Gotham @font-face with these declarations */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Ultra.otf') format('opentype');
    font-weight: 950;
    font-style: normal;
}

/* Similarly for DIN font */
@font-face {
    font-family: 'DIN';
    src: url('../fonts/Din/DINLight_.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/Din/DINRegular_.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/Din/DINMedium_.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/Din/DINBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/Din/DINBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* 
 General Code
------------------------------ */

body{
    font-family: 'DIN', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.10px;
    font-weight: 300;
    color: #ffff;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    width: 100%;
    height: 100%;
}

::-moz-selection {
    background: #0076a3;
    text-shadow: none;
    color:#fff;
}
::selection {
    background: #0076a3;
    text-shadow: none;
    color:#fff;
}
.browserupgrade {
    margin: 0.2em 0;
    background: #cccccc;
    color: #000;
    padding: 0.2em 0;
}

img {
    max-width:100%;
}
.fix {
    overflow:hidden;
}

hr.line {
    background: #dddddd none repeat scroll 0 0;
    border: 0 none;
    height: 1px;
    margin: 0 auto;
    width: 100%;
}
.col-text-center{
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.clear{
    clear:both
}

ul, ul li {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

/* Update headings to use Gotham */
h1, h2, h3, h4, h5, h6,
.md-headline h1,
.about-title h1,
.contact-title h1,
.rihgt-dit h3 {
    font-family: 'Gotham', sans-serif;
}

/* Ensure paragraphs use DIN */
p,
.md-headline p,
.rihgt-dit p,
.content-ct ul li p {
    font-family: 'DIN', sans-serif;
}

/* 
 Preloader
------------------------------ */

#preloader {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #ffff;
    z-index: 11000;
    position: fixed;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #ff9328;
}

.loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 50px;
  width: 125px;
  box-sizing: border-box;
}
.loader .loader-item {
  position: relative;
  float: left;
  height: 50px;
  width: 8px;
  margin: 0 2px;
  background-color: #ffffff;
  border-radius: 10px 0px;
}
.loader .loader-item:nth-child(1) {
  -webkit-animation: loader-item-1 2s linear infinite;
          animation: loader-item-1 2s linear infinite;
}
.loader .loader-item:nth-child(2) {
  -webkit-animation: loader-item-2 2s linear infinite;
          animation: loader-item-2 2s linear infinite;
}
.loader .loader-item:nth-child(3) {
  -webkit-animation: loader-item-3 2s linear infinite;
          animation: loader-item-3 2s linear infinite;
}
.loader .loader-item:nth-child(4) {
  -webkit-animation: loader-item-4 2s linear infinite;
          animation: loader-item-4 2s linear infinite;
}
.loader .loader-item:nth-child(5) {
  -webkit-animation: loader-item-5 2s linear infinite;
          animation: loader-item-5 2s linear infinite;
}
.loader .loader-item:nth-child(6) {
  -webkit-animation: loader-item-6 2s linear infinite;
          animation: loader-item-6 2s linear infinite;
}
.loader .loader-item:nth-child(7) {
  -webkit-animation: loader-item-7 2s linear infinite;
          animation: loader-item-7 2s linear infinite;
}
.loader .loader-item:nth-child(8) {
  -webkit-animation: loader-item-8 2s linear infinite;
          animation: loader-item-8 2s linear infinite;
}
.loader .loader-item:nth-child(9) {
  -webkit-animation: loader-item-9 2s linear infinite;
          animation: loader-item-9 2s linear infinite;
}
.loader .loader-item:nth-child(10) {
  -webkit-animation: loader-item-10 2s linear infinite;
          animation: loader-item-10 2s linear infinite;
}
.loader:after {
  content: 'Wemedium';
  font-size: 18px;
  font-family: 'DIN', sans-serif;
  color: #ffffff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  margin: auto;
}
@-webkit-keyframes loader-item-1 {
  1% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  11% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  21% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-1 {
  1% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  11% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  21% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-2 {
  7% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  17% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  27% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-2 {
  7% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  17% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  27% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-3 {
  13% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  23% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  33% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-3 {
  13% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  23% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  33% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-4 {
  19% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  29% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  39% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-4 {
  19% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  29% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  39% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-5 {
  25% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  35% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-5 {
  25% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  35% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-6 {
  31% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  41% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-6 {
  31% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  41% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-7 {
  37% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  47% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  57% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-7 {
  37% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  47% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  57% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-8 {
  43% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  53% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  63% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-8 {
  43% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  53% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  63% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-9 {
  49% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  59% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  69% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-9 {
  49% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  59% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  69% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes loader-item-10 {
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  65% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  75% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes loader-item-10 {
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  65% {
    -webkit-transform: scaleY(1.4);
            transform: scaleY(1.4);
  }
  75% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

/* 
 Page CSS 
------------------------------ */

.logo{
    float: left;
}

.logo a{
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.table-div{
    display: table;
    width: 100%;
    height: 100%;
}

.main-bg{
    position: relative;
    background-image: url("../images/thumb.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
}

.main-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 2;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,121212+100&0+0,1+100 */
    background: -moz-linear-gradient(left, rgba(255,255,255,0.2) 0%, rgba(18,18,18,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255,255,255,0.2) 0%,rgba(18,18,18,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255,255,255,0.2) 0%,rgba(18,18,18,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#121212',GradientType=1 ); /* IE6-9 */
}

.view-box {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.d-cell{
    display: table-cell;
    vertical-align: middle;
}

.social-box-bot{
    float: right;
    text-align: center;
}

.social-box-bot ul{}
.social-box-bot ul li{
    float: left;
}

.social-box-bot ul li a{
    width: 38px;
    height: 38px;
    display: inline-block;
    background: #ffff;
    color: #ffffff;
    text-align: center;
    line-height: 42px;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out;
}

.social-box-bot ul li a{
    width: 38px;
    height: 38px;
    line-height: 42px;
    position: relative;
    display: inline-block;
    transition: all .3s ease-in-out;
}
.social-box-bot ul li a:hover{
    background: #222222;
}

.main-time{
    margin-bottom: 30px;
}
.countdown {
  margin-top: 60px;
}
#timer{
    display: block;
    text-align: center;
}
.countdown #timer > div {
    background: #1C2C5D;
    display: inline-block;
    font-family: 'DIN', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    margin: 0px 30px;
    position: relative;
    text-align: center;
    width: 110px;
    height: 110px;
    color: #ffffff;
    line-height: 110px;
    border: 2px solid #efefef;
    border-radius: 6px;
    backface-visibility: hidden;
    transition: all .5s ease;
    transition: all 0.3s ease 0s;
}
.countdown #timer > div:last-child {
    margin-right: 0px;
}
.countdown #timer > div h6 {
    font-family: 'DIN', sans-serif;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    background: #222222;
    text-align: center;
}

.countdown #timer > div:hover {
    transition: all .5s ease;
    border-radius: 25px;
    border: 2px solid #222222;
}

.countdown #timer > div:first-child h6 {
    right: -50px;
}

.md-headline{
    margin-bottom: 60px;
}

.md-headline h1{
  font-family: 'Gotham', sans-serif;
    color: #ffffff;
    font-size: 68px;
}

.md-headline h1 a{
    font-size: 25px;
    color: #ffff;
    background: #222222;
}

.md-headline p{
    font-size: 18px;
    color: #ffffff;
}

.btn-box{}

.btn-box a.notify-btn{
    color: #4d4d4d;
    position: relative;
    transition: 0.3s;
    -moz-transition: 0.3s;
    padding: 8px 25px 5px 25px;
    background-color: rgb(255,255,255);
    border-radius: 50px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
}
.btn-box a.notify-btn:hover{
    background: #4d4d4d;
    cursor: pointer;
    top: -3px;
    color: #ffffff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.btn-box a.more-infobtn{
    color: #4d4d4d;
    position: relative;
    transition: 0.3s;
    -moz-transition: 0.3s;
    padding: 8px 25px 5px 25px;
    background-color: rgb(255,255,255);
    border-radius: 50px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
}
.btn-box a.more-infobtn:hover{
    background: #ffff;
    cursor: pointer;
    top: -3px;
    color: #ffffff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.wh-bg{
    background: #ffffff;
}

.box-inner{
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
}

.right-box {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99;
    visibility: hidden;
    background: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.right-box.active {
    right: 0;
    visibility: visible;
}

.box-inner {
    padding: 60px 15px;
    min-height: 100%;
    position: relative;
    width: 100%;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background: #ffff;
}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background: #ffffff;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools .mCSB_draggerRail{
    background-color: #222222;
}

.right-box .close-icon {
    background: #1C2C5D;
    position: fixed;
    right: 70px;
    top: 70px;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
    z-index: 2;
}

.about-box{
    margin-bottom: 30px;
}

.about-title{
    margin-bottom: 20px;
}
.about-title h1{
    font-size: 28px;
    color: #ffff;
}

.rihgt-dit{}

.rihgt-dit a{
    color: #ffff;
    font-size: 20px;
    font-weight: 500;
}
.rihgt-dit h3{
    color: #ffff;
    margin-bottom: 10px;
}
.rihgt-dit p{
    color: #ffff;
}

.contact-title{
    margin-bottom: 20px;
}
.contact-title h1{
    font-size: 28px;
    color: #ffff;
}

.content-ct{
    margin-bottom: 85px;
}

.content-ct ul{
    margin-bottom: 30px;
}

.content-ct ul li{
    float: left;
    width: 33.33%;
}
.content-ct ul li p{
    color: #ffff;
    margin: 0px;
}

.content-ct ul li a{
    color: #ffff;
    font-weight: 300;
}

.contact-form{
    padding-right: 30px;
}

.custom-input .form-control{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-bottom-color: rgba(255, 255, 255);
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ffff;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding: 0;
    min-height: 50px;
}

.custom-input .form-control{
    border-bottom-color: #ffff;
}

.custom-input textarea{
    max-height: 200px;
}

.custom-input button.notify-btn{
    color: #ffff;
    position: relative;
    transition: 0.3s;
    -moz-transition: 0.3s;
    padding: 8px 25px 5px 25px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 50px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
}
.custom-input button.notify-btn:hover{
    background: #ffff;
    cursor: pointer;
    top: -3px;
    color: #1c2c5d;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.pdi-btn{
    padding: 0px 15px;
}

#sm-form .input-group .form-control{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-bottom-color: rgba(255, 255, 255);
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ffff;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding: 0;
    min-height: 50px;
}

#sm-form .input-group .form-control {
    border-bottom-color: #ffff;
}

#sm-form button.notify-btn {
    color: #ffff;
    position: relative;
    transition: 0.3s;
    -moz-transition: 0.3s;
    padding: 8px 25px 5px 25px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 50px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 2px 1px -1px rgba(0,0,0,.12);
}

#sm-form button.notify-btn:hover{
    background: #ffff;
    cursor: pointer;
    top: -3px;
    color: #ffffff;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.modal-scale .modal-header{
    background: #ffff;
}

.modal-scale .modal-header h5{
    color: #ffffff;
}

.copyright p a{
    color: #ffff;
}
.copyright p a:hover{
    color:#121212;
}

/* Responsive Screen Support */

@media screen and (max-width: 1199px) {
    .md-headline h1{
        font-size: 42px;
    }
    .countdown #timer > div{
        width: 85px;
        height: 85px;
        line-height: 85px;
    }
    .social-box-bot ul li a{
        width: 30px;
        height: 30px;
        line-height: 32px;
    }

    .countdown #timer > div{
        font-size: 32px;
    }
}

@media screen and (max-width: 991px) {
    .md-headline h1{
        font-size: 32px;
    }
    .countdown #timer > div{
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 767px) {
    .table-div {
        display: block;
        height: auto;
    }
    .d-cell{
        display: block;
        height: auto;
    }
    .logo {
        margin-top: 20px;
        text-align: center;
        float: none;
    }
    .view-box .position {
        position: inherit;
        z-index: 2;
    }
    .countdown #timer > div:first-child{
        margin-right: 30px;
    }
    .countdown #timer > div:last-child{
        margin-right: 30px;
    }
    #timer{
        display: block;
        text-align: center;
    }
    .countdown #timer > div{
        float: none;
        display: inline-block;
        text-align: center;
        font-size: 38px;
        margin: 0px 27px;
        margin-bottom: 30px;
    }
    .main-time{
        margin-bottom: 30px;
        margin-top: 30px;
    }
    .md-headline h1{
        font-size: 24px;
    }
    .main-content {
        margin-bottom: 70px;
    }
    .right-box {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        padding: 0;
        visibility: hidden;
    }
    
    .right-box.active {
        right: 0;
        visibility: visible;
    }

    .right-box .close-icon {
        display: block;
        position: fixed;
        right: 15px;
        top: 15px;
        z-index: 100;
    }

    .box-inner {
        padding: 60px 15px 30px;
        height: auto;
        min-height: 100vh;
    }
    .close-icon{
        display: none;
    }
    .right-box.wh-bg{
        width: 100%;
        padding: 0 15px;
        height: 100%;
        position: fixed;
        right: -100%;
        visibility: hidden;
    }
    .right-box.wh-bg.active {
        right: 0;
        visibility: visible;
    }
    .box-inner {
        padding-left: 0;
        padding-top: 30px;
        width: 100%;
    }
    .content-ct ul li{
        width: 100%;
        margin-bottom: 30px;
    }
    .contact-form{
        padding-right: 0px;
    }
    .logo a{
        color: #ffff
    }
    .logo a span{
        color: #ffff
    }
    .social-box-bot{
        float: none;
    }
    .social-box-bot ul li{
        float: none;
        display: inline-block;
    }
    #mCSB_1_scrollbar_vertical{
        display: none !important;
    }
    .mCSB_inside > .mCSB_container{
        margin-right: 0px;
    }
    .copyright{
        text-align: center;
    }
    .copyright p{
        font-size: 14px;
    }
    .about-title h1{
        font-size: 22px;
    }
    .rihgt-dit{
        margin-top: 30px;
    }
    .rihgt-dit h3{
        font-size: 24px;
    }
    .md-headline p{
        font-size: 14px;
    }
}
















