/**
* Template Name: Medicio - v2.0.0
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


@font-face {
    font-family: 'arialBlack';
    src: url('../fonts/arial/arialblack.eot');
    src: url('../fonts/arial/arialblack.eot?#iefix') format('embedded-opentype'),
         url('../fonts/arial/arialblack.woff') format('woff'),
         url('../fonts/arial/arialblack.ttf') format('truetype'),
         url('../fonts/arial/arialblack.svg#arialblack') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'franklinGothicDemi';
    src: url('../fonts/franklingothic/franklingothicdemi.eot');
    src: url('../fonts/franklingothic/franklingothicdemi.eot?#iefix') format('embedded-opentype'),
         url('../fonts/franklingothic/franklingothicdemi.woff') format('woff'),
         url('../fonts/franklingothic/franklingothicdemi.ttf') format('truetype'),
         url('../fonts/franklingothic/franklingothicdemi.svg#franklingothicdemi') format('svg');
    font-weight: normal;
    font-style: normal;

}

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

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

@font-face {
    font-family: 'malgunBold';
    src: url('../fonts/malgun/malgunbd.eot');
    src: url('../fonts/malgun/malgunbd.eot?#iefix') format('embedded-opentype'),
         url('../fonts/malgun/malgunbd.woff') format('woff'),
         url('../fonts/malgun/malgunbd.ttf') format('truetype'),
         url('../fonts/malgun/malgunbd.svg#malgunbd') format('svg');
    font-weight: normal;
    font-style: normal;
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: arial;
  color: #444444;
  font-size:0.9rem;
  background: none;
  background: url(../img/bgbody.jpg?v=4) center top;
  background-size: cover;
}

a {
  color: #3fbbc0;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

.hovertrans:hover {
  opacity: 0.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

.mt1 {
  margin-top:1rem !important;
}

.mt2 {
  margin-top:2rem !important;
}

.mt3 {
  margin-top:3rem !important;
}

.mb1 {
  margin-bottom:1rem !important;
}

.mb2 {
  margin-bottom:2rem !important;
}

.mb3 {
  margin-bottom:3rem !important;
}

.mr1 {
  margin-right:1rem !important;
}

.mr2 {
  margin-right:2rem !important;
}

.mr3 {
  margin-right:3rem !important;
}

.ml1 {
  margin-left:1rem !important;
}

.ml2 {
  margin-left:2rem !important;
}

.ml3 {
  margin-left:3rem !important;
}

.pt1 {
  padding-top: 1rem !important;
}

.pl1 {
  padding-left: 1rem !important;
}

.pr1 {
  padding-right: 1rem !important;
}

.pb1 {
  padding-bottom: 1rem !important;
}

.pt2 {
  padding-top: 2rem !important;
}

.pb2 {
  padding-bottom: 2rem !important;
}

.pl2 {
  padding-left: 2rem !important;
}

.pr2 {
  padding-right: 2rem !important;
}

.pad1 {
  padding:1rem !important;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-item-center {
  align-items: center;
} 

.large {
  font-size:large;
}

.x-large {
  font-size:x-large;
}

.xx-large {
  font-size:xx-large;
}

.xxx-large {
  font-size: 72px;
}

.color1, a.color1:hover {
  color: #fff;
}

.bg1 {
  background: #1e2761;
}

.txt-white {
  color: #fff;
}

.color2, a.color2:hover {
  color: #7a2048;
}

.color3 {
  color: #1e2761;
}

.bg2 {
  background: #408ec6;
}

.bg3 {
  background: #7a2048;
}


.centers {
  display: table;
  margin-left:auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #47181e;
  border-top-color: #ffd0ab;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #ffd0ab;
  color: #47181e;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #47181e;
  color: #ffd0ab;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #3fbbc0;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,8fadc3+100 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #8fadc3 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 0%,#8fadc3 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 0%,#8fadc3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#8fadc3',GradientType=0 ); /* IE6-9 */
  transition: all 0.5s;
  z-index: 997;
  padding: 7px 0 7px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
}

.top-date {
  font-weight: bold;
  color: #47181e;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.navwrapper {
  margin-top:0rem;
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #7a2048;
  transition: 0.3s;
  font-size: 16px;
  font-family: malgunBold;
  text-transform: capitalize;
  font-weight: normal;
  font-weight: 400;
  padding: 10px 20px;
  background-repeat: no-repeat;
  background-position: center left;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  background: #7a2048;
  border-radius: 5px;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #47181e;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  background-image: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  background: #005fa9;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Appointment Button */
.appointment-btn {
  margin-left: 25px;
  background: #3fbbc0;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #65c9cd;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #555555;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #1e2761 ;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3fbbc0;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(60, 60, 60, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 100vh;*/
  /*background-color: rgba(60, 60, 60, 0.8);*/
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .container {
  text-align: center;
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

#hero h2 {
  color: #2f2f2f;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #555555;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.4);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(63, 187, 192, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #3fbbc0;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #3fbbc0;
}

#hero .btn-get-started:hover {
  background: #65c9cd;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    /*height: 160vh;*/
    height: 327px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.justify-content-center {
  justify-content: center
}

.align-items-center {
  align-items: center;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #3fbbc0;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Center section
--------------------------------------------------------------*/

.centerheading {
  text-align: center;
}

.runningtext {
  background: #1e2761;
  height: 30px;
  line-height: 30px;
  color: #fff;
  display: flex;
  box-sizing: border-box;
  padding:0 10px;
}

.runningtext-title {
  font-family: malgunBold;
  font-weight: bold;
}

.runningtext-content {
  margin-left: 1rem;
  width:100%;
}

.bg-countdown {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,8fadc3+100 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #8fadc3 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 0%,#8fadc3 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 0%,#8fadc3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#8fadc3',GradientType=0 ); /* IE6-9 */
  /*background: url(../img/bg-countdown.png);*/
  background-size: 100% 100%;
  color: #1e2761;
  padding:1rem 75px;
  font-size: 18px;
}

.main-prize {
  margin-top:1rem;
}

span.jam, span.menit, span.detik {
  display: inline-block;
  font-family: arial;
  width: 72px;
  height: 72px;
  line-height: 72px;
  background: #7a2048;
  font-size: 36px;
  text-align: center;
  color: #fff ;
  margin:10px;
  border-radius: 50%;
}

.hdg1 {
  height: 45px;
  line-height: 45px;
  background: #1e2761 ;
  color: #fff;
  font-size:24px;
  font-weight: bold;
  text-align: center;
}

.winning-ball {
}

.winning-ball div {
  background: url(../img/big_ball.png?v=2) repeat-x;
  width: 320px;
  line-height: 72px;
  text-align: center;
  color: #fdead2;
  font-size:60px;
  font-weight: bold;
  margin: 0 10px;
  letter-spacing: 49px;
  padding-left: 20px;
}

.winning-member-content {
  background: #d6e1e9;
  padding-bottom:20px;
}

.home-other-prize {
  grid-gap: 10px;
  justify-content: center;
}

.home-other-prize div {
  width: 18%;
  margin:10px 0;
  padding:5px;
  text-align: center;
  letter-spacing: 2px;
  border-radius: 20px;
}

.headingnomor{
  line-height:39px;
  /*background:url(../images/headingnomor.png) repeat-x center top;*/
  background: #7a2048 !important;
  text-align:center;
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.kotakball{
  background-position:bottom center;
  background-repeat:repeat-x;
  background-image:url(../images/kotakball.jpg);
  padding-bottom:30px;
}

.ball{
  background-position:left;
  background-repeat:repeat-x;
  width:138px;
  margin:0 auto;
  padding:0 0 3px 12px;
  font-weight:normal;
  letter-spacing:25px;
  display:block;
  height:30px;
  background-image:url(../img/ball.png?v=2);
  text-align:center;
  color:#fff;
  text-shadow:1px 1px 0 #000;
  font-size:18px;
}

.tabelnomor {
  overflow:hidden;
  border-collapse:collapse;
  border-spacing:0;
  
  -moz-border-radidius:5px 5px 0 0;
  -o-border-radidius:5px 5px 0 0;
  -webkit-border-radidius:5px 5px 0 0;
  border-radidius:5px 5px 0 0;
}

.tabelnomor thead tr td {
  color:#fff;
  text-transform:1px 1px 1px #000;
}

.zebra:nth-child(odd) td {
}

.tabelnomor td{
  border:1px solid #391d00;
  font-size:12px;
  line-height:30px;
  padding:3px;
  text-align:center;
  color:#191919;
  background-color:#fff;
}

#frmcontact {
  margin-top:20px;
}

#frmcontact .d-flex {
  margin-bottom:0.5rem;
}

#frmcontact .d-flex div:nth-child(1) {
  width: 10%;
}

#frmcontact .d-flex div:nth-child(2) {
  width: 90%;
}

#fullname, #email, #message {
  padding:10px;
  width:100%;
  border:none;
  border:1px solid #ccc;
}

#simpan {
  background:none;
  border:none;
  width:89px;
  height:39px;
  background:url(../img/but_submit.png) no-repeat top;
  cursor:pointer;
}

#simpan:hover {
  background-position:bottom;
}

.btn-contact {
  margin-left: 10%;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#408ec6+0,1e2761+100 */
background: #408ec6; /* Old browsers */
background: -moz-linear-gradient(top,  #408ec6 0%, #1e2761 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #408ec6 0%,#1e2761 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #408ec6 0%,#1e2761 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#408ec6', endColorstr='#1e2761',GradientType=0 ); /* IE6-9 */
/*background: url(../img/footer.png) repeat-x;*/
  background-size: auto 100%;
  padding: 2rem 0 30px 0;
  color: #fff;
  font-size: 14px;
}

.foot-sosmed a {
  margin-left: 20px;
  transition-duration: 0.5s;
}

.copyright {
  color: #fff;
  padding:0px 0 0 0;
}

.foottext {
  margin-top:2rem;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #65c9cd;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}
