@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);
@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,700,600,300);
/* =======================================================
					variables
======================================================== */
/*========================================================
										Main layout styles
=========================================================*/
body {
  background: #464646;
  font: 14px/21px Arial, Helvetica, sans-serif;
}
a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
a:hover {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
}
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: #e74c3c;
}
h5 a:hover {
  color: #242a2e;
}
* {
  -webkit-text-size-adjust: none;
}
::-moz-selection {
  /* Code for Firefox */
  color: #ffffff;
  background: #666666;
}
::selection {
  color: #ffffff;
  background: #666666;
}
/*========================================================
										HEADER styles
=========================================================*/
#header {
  background: #000000;
  position: relative;
  padding-bottom: 40px;
}
#header h1 {
  text-align: left;
  background: #e74c3c;
  padding: 60px 75px 80px 65px;
  width: 233px;
  height: 70px;
  margin: 0;
  float: left;
  text-transform: uppercase;
}
#header h1 .logo {
  display: block;
  font: 600 70px/65px 'Open Sans', sans-serif;
  color: #ffffff;
  letter-spacing: 0px;
}
#header h1 .slogan {
  padding: 5px 0 0 5px;
  font-style: normal;
  font-size: 15px;
  font-weight: 400;
  line-height: 10px;
  color: #ffffff;
  display: block;
  letter-spacing: 0;
}
#header nav {
  float: right;
  margin-top: 103px;
}
@media only screen and (max-width: 979px) {
  #header h1 {
    padding: 60px 40px 80px 40px;
  }
}
@media only screen and (max-width: 767px) {
  #header h1 {
    float: none !important;
    display: block;
    margin: 60px auto !important;
    padding: 35px 0;
    width: 100%;
    font-size: 55px;
    line-height: 55px;
    height: auto;
  }
  #header h1 span {
    margin-left: 5px;
  }
  #header nav {
    float: none !important;
    width: 100%;
    margin: 0 auto 30px !important;
  }
}
/* Main menu styles
========================================================*/
.sf-menu {
  width: 100%;
  text-align: center;
  line-height: 20px;
  text-align: justify;
}
.sf-menu > li {
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0 0 0 35px;
  text-align: center;
  background: none;
  border-top: 11px solid #000000;
}
.sf-menu > li > a {
  display: block;
  color: #5b605f;
  font: 400 14px/14px 'Open Sans', sans-serif;
  text-transform: uppercase;
}
.sf-menu > li > a:hover {
  color: #e74c3c;
}
.sf-menu > li:first-child {
  margin-left: 0;
}
.sf-menu > li:before {
  content: "";
  height: 11px;
  width: 100%;
  position: absolute;
  top: -114px;
  left: 0;
  background: #000000;
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sf-menu > li.current:before {
  background: #5b605f;
  display: block;
}
.sf-menu > li.current > a {
  color: #e74c3c;
}
.sf-menu > li:hover:before {
  background: #5b605f;
  display: block;
}
@media only screen and (max-width: 979px) {
  .sf-menu > li {
    margin-left: 20px;
  }
}
/* First level sub-menu styles
========================================================*/
.sf-menu ul {
  position: absolute;
  top: 40px;
  left: calc(50% - 110px);
  background: #e74c3c;
  color: #ffffff;
  min-width: 220px;
  z-index: 999;
  display: none;
  text-align: center;
  padding: 25px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.sf-menu ul:before {
  content: "";
  position: absolute;
  top: -10px;
  left: calc(50% - 3px);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid #e74c3c;
}
.sf-menu ul li {
  position: relative;
  height: 22px;
  padding: 3px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sf-menu ul li a {
  color: #ffffff;
  font: 300 14px/22px 'Open Sans', sans-serif;
  text-transform: uppercase;
  display: block;
}
.sf-menu ul li a:hover {
  text-decoration: underline;
}
/* Second level sub-menu styles
========================================================*/
.sf-menu ul ul {
  position: absolute;
  top: 0;
  left: 110%;
  z-index: 4;
  min-width: 200px;
  background: #494949;
  border: none;
  padding: 25px 0;
}
.sf-menu ul ul:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -17px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 10px solid #494949;
  border-bottom: 7px solid transparent;
}
.sf-menu ul ul a {
  font-weight: 600;
}
@media only screen and (max-width: 1400px) {
  .sf-menu ul ul {
    left: -100%;
  }
  .sf-menu ul ul:before {
    border-top: 7px solid transparent;
    border-left: 10px solid #494949;
    border-bottom: 7px solid transparent;
    border-right: none;
    right: -10px;
    left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .sf-menu {
    display: none;
  }
  .select-menu {
    display: block;
    width: 100%;
    border-color: #e74c3c;
    color: #666;
    font-size: 16px;
    padding: 5px;
    margin-top: 10px;
  }
}
/* Stuck menu styles
========================================================*/
.isStuck {
  left: 0;
  right: 0;
  z-index: 9;
  background: #000;
}
.isStuck h1 {
  padding: 10px !important;
  height: 60px;
}
.isStuck h1 .logo {
  font-size: 50px !important;
  line-height: 40px !important;
}
.isStuck nav {
  margin-top: 27px !important;
}
.isStuck .sf-menu > li:before {
  display: none;
}
@media only screen and (max-width: 979px) {
  .isStuck {
    display: none !important;
  }
}
/*========================================================
										CONTENT styles
=========================================================*/
h2,
h3,
h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #242a2e;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 30px;
}
h2 {
  font-size: 60px;
  line-height: 60px;
}
h2 span {
  color: #e74c3c;
}
h3 {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.5px;
}
.h3__mod {
  color: #e74c3c;
}
h4 {
  font-size: 20px;
  color: #e74c3c;
}
h5 {
  font-size: 15px;
  text-transform: uppercase;
  color: #e74c3c;
}
p {
  font: 14px/24px Arial, Helvetica, sans-serif;
  color: #bbbaba;
  margin: 0 auto;
}
.full-width-container {
  width: 100%;
}
.btn {
  background: #e74c3c;
  color: #fff;
  font: 400 15px/59px 'Open Sans', sans-serif;
  text-align: center;
  text-transform: uppercase;
  width: 140px;
  border: none;
  display: block;
  margin: 10px auto 0 0;
  margin-top: 20px;
}
.btn:hover {
  background: #202020;
}
.img_container img {
  width: 100%;
}
.sub_head {
  font-size: 24px;
  font-style: italic;
  line-height: 36px;
  text-align: center;
  margin: 0 auto;
}
.bd-ra {
  border-radius: 50%;
  background: #e74c3c;
  color: #ffffff;
  text-align: center;
}
#map-canvas {
  height: 500px;
  margin-bottom: 28px;
}
.big-btn {
  width: 170px;
  height: 170px;
  line-height: 170px;
  font-size: 64.15px;
  text-align: center;
  color: #ffffff;
  background: #e74c3c;
}
.big-btn:hover {
  background: #242a2e;
}
.date {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 13px 0 0;
  background: #464646;
  font-family: 'Open Sans', sans-serif;
}
.date .el-1 {
  display: block;
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
  font-weight: 100;
  letter-spacing: -3px;
}
.date .el-2 {
  font-size: 15px;
  line-height: 15px;
  display: block;
  margin-top: 7px;
  color: #fff;
  opacity: .5;
  text-transform: uppercase;
}
.date .el-3 {
  line-height: 34px;
  font-size: 15px;
  background: #e74c3c;
  color: #ffffff;
  display: block;
  margin-top: 15px;
}
.date:before {
  content: "";
  position: absolute;
  top: 15px;
  right: -12px;
  width: 0;
  height: 0;
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  border-left: 12px solid #464646;
}
.date_alt {
  background: #a1a194;
}
.date_alt:before {
  border-left-color: #a1a194;
}
@media only screen and (max-width: 767px) {
  .date {
    margin-bottom: 20px;
  }
  .date:before {
    display: none;
  }
  .date:after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: calc(50% - 7px);
    width: 0;
    height: 0;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 12px solid #e74c3c;
  }
}
@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 979px) {
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 35px !important;
    line-height: 35px !important;
    margin-bottom: 10px;
  }
}
.index .block-2 {
  padding: 60px 0 124px;
  background: url(../images/index_img_bg-1.jpg) 50% 50% no-repeat;
}
.index .block-2 h2 {
  color: #ffffff;
  margin-bottom: 27px;
}
.index .block-2 h4 {
  margin-bottom: 11px;
}
.index .block-2 h4 a:hover {
  color: #000;
}
.index .block-2 p {
  font-family: Arial, Helvetica, sans-serif;
  color: #7d8684;
}
.index .block-2 .big-btn {
  margin-top: 88px;
}
.index .block-3 {
  padding: 76px 0 104px;
  background: url(../images/index_img_bg-2.jpg) 50% bottom no-repeat #5b605f;
  text-align: right;
}
.index .block-3 h2 {
  color: #ffffff;
  margin-bottom: 32px;
}
.index .block-3 h4 {
  margin-bottom: 10px;
}
.index .block-3 h4 a:hover {
  color: #000;
}
.index .block-3 .big-btn {
  margin-top: 75px;
}
.index .block-3 p {
  font-family: Arial, Helvetica, sans-serif;
  color: #899593;
}
.index .block-4 {
  padding: 66px 0 99px;
  background: url(../images/index_img_bg-3.jpg) 50% 50% no-repeat #a1a194;
}
.index .block-4 h2 {
  color: #ffffff;
  margin-bottom: 31px;
}
.index .block-4 h4 {
  margin-bottom: 11px;
}
.index .block-4 h4 a:hover {
  color: #000;
}
.index .block-4 .big-btn {
  margin-top: 79px;
}
.index .block-4 p {
  font-family: Arial, Helvetica, sans-serif;
  color: #d3d3ca;
}
.index .block-5 {
  padding: 95px 0 60px;
  background: #ffffff;
}
.index .block-5 h3 {
  margin-bottom: 45px;
}
.index .block-5 .item-1 li {
  line-height: 15px;
  text-align: left;
  padding: 22px 10px 22px 55px;
  background: url(../images/bullet.png) 25px 50% no-repeat #f4f5f5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index .block-5 .item-1 li a {
  font-size: 15px;
  color: #3e454c;
  text-transform: uppercase;
}
.index .block-5 .item-1 li a i {
  color: #e74c3c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index .block-5 .item-1 li a:hover {
  color: #e74c3c;
}
.index .block-5 .item-1 li a:hover i {
  color: #3e454c;
}
.index .block-5 .item-1 li:nth-child(2n) {
  background-color: #fafafa;
}
.index .block-5 .item-1 li:hover {
  background-position: 30px 50%;
}
.index .block-5 .item-2 h4 {
  margin-bottom: 22px;
  margin-top: -5px;
}
.index .block-5 .item-2 img {
  float: left;
  margin-bottom: 10px;
  margin-right: 30px;
}
.index .block-5 .item-3 li {
  margin-bottom: 44px;
}
.index .block-5 .item-3 h3 {
  color: #e74c3c;
}
.index .block-5 .item-3 h4 {
  letter-spacing: -1px;
  color: #242a2e;
  margin-bottom: 1px;
}
.index .block-5 .item-3 h5 {
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.index .block-6 {
  padding: 36px 0;
  border-bottom: 1px solid  #eaebeb;
  background: #f5f6f6;
}
.index .block-6 #subscribe-form {
  margin-left: 48px;
  display: inline-block;
}
.index .block-6 #newsletter {
  text-align: center;
}
.index .block-6 #newsletter > span {
  margin-top: 15px;
  font: 100 20px/20px 'Open Sans', sans-serif;
  color: #e74c3c;
  text-transform: uppercase;
  display: inline-block;
}
.index .block-6 #newsletter .fa {
  font-size: 30px;
  color: #464646;
  font-family: "FontAwesome";
  margin-right: 18px;
}
@media only screen and (max-width: 1199px) {
  .index .block-5 .item-1 li {
    padding-left: 30px;
    background-position: 15px 50%;
  }
  .index .block-5 .item-1 li:hover {
    background-position: 20px 50%;
  }
  .index .block-5 .item-1 li a {
    font-size: 13px;
  }
  .index .block-6 #subscribe-form {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 979px) {
  .index .block-5 .item-2 img {
    float: none;
    margin: 0 auto 30px;
  }
}
@media only screen and (max-width: 767px) {
  .index .block-2,
  .index .block-3,
  .index .block-4 {
    text-align: center;
    background-image: none;
  }
  .index .block-2 .big-btn,
  .index .block-3 .big-btn,
  .index .block-4 .big-btn {
    margin: 20px 0;
  }
  .index .block-5 .item-1 {
    margin-bottom: 40px;
  }
  .index .block-5 .item-3 h3 {
    margin-top: 50px;
  }
  .index .block-6 #subscribe-form {
    margin: 20px 0;
  }
  .index .block-6 #subscribe-form .btn {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .index .block-2,
  .index .block-3,
  .index .block-4 {
    overflow: hidden;
  }
  .index .block-5 .item-3 h3 {
    margin-top: 50px;
  }
  .index #subscribe-form input,
  .index #subscribe-form textarea {
    width: 90%;
  }
  .index .block-6 #newsletter .fa {
    margin-right: 0;
  }
  .index .block-6 #newsletter .btn {
    margin-left: 0;
  }
}
.index-1 .block-1 {
  padding: 100px 0 130px;
  background: #fff;
}
.index-1 .block-1 .img_container {
  position: relative;
  margin-bottom: 30px;
}
.index-1 .block-1 .img_container span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 210px;
  text-align: center;
  background: #e74c3c;
  color: #ffffff;
  font: 100 24px/60px 'Open Sans', sans-serif;
  text-transform: uppercase;
}
.index-1 .block-1 li {
  padding-left: 15px;
  margin-bottom: 23px;
}
.index-1 .block-1 li h4 {
  color: #242a2e;
  position: relative;
  margin-bottom: 20px;
  margin-top: -3px;
}
.index-1 .block-1 li h4:before {
  content: "\f0da";
  font-family: "FontAwesome";
  font-size: 15px;
  color: #e74c3c;
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
}
.index-1 .block-2 {
  padding: 81px 0 67px;
  background: url(../images/index-1_img_par.jpg) #000000;
  background-attachment: fixed;
  background-position: center 0%;
  position: relative;
  background-repeat: no-repeat;
  z-index: 8;
}
.index-1 .block-2 h2 {
  color: #ffffff;
}
.index-1 .block-3 {
  background: #ffffff;
  padding: 92px 0 96px;
}
.index-1 .block-3 h4 {
  color: #242a2e;
  margin: 15px 0;
  letter-spacing: -0.5px;
}
.index-1 .block-3 span {
  color: #e74c3c;
  text-transform: uppercase;
  font: 100 15px/15px 'Open Sans', sans-serif;
  margin-bottom: 40px;
  display: block;
}
.index-1 .block-4 {
  padding: 81px 0 105px;
}
@media only screen and (max-width: 1199px) {
  .index-1 .block-3 h4 {
    height: 85px;
  }
}
@media only screen and (max-width: 979px) {
  .index-1 .block-3 h4 {
    height: 125px;
  }
}
@media only screen and (max-width: 767px) {
  .index-1 .block-1 .h3__mod {
    margin-top: 40px;
  }
  .index-1 .block-3 h4 {
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .index-1 .block-1 .img_container span {
    font: 100 18px/40px 'Open Sans', sans-serif;
    width: 145px;
  }
}
.index-2 .block-1 {
  padding: 84px 0 68px;
  background: #ffffff;
}
.index-2 .block-1 h3 {
  margin-bottom: 45px;
}
.index-2 .block-1 h4 {
  color: #242a2e;
  margin-bottom: 1px;
}
.index-2 .block-1 h5 {
  margin-bottom: 12px;
}
.index-2 .block-1 article {
  margin-bottom: 35px;
}
.index-2 .block-1 .date {
  background: #a1a194;
}
.index-2 .block-1 .date:before {
  border-left-color: #a1a194;
}
.index-2 .block-2 h2 {
  color: #ffffff;
  margin-top: -10px;
  margin-bottom: 26px;
}
.index-2 .block-2 h4 {
  margin-bottom: 10px;
  width: 60%;
  line-height: 25px;
}
.index-2 .block-2 h4 a:hover {
  color: #242a2e;
}
.index-2 .block-2 li {
  padding: 70px 0 105px;
}
.index-2 .block-2 .item-1 {
  background: #464646;
}
.index-2 .block-2 .item-1 p {
  color: #7d8684;
}
.index-2 .block-2 .item-2 {
  background: #5b605f;
}
.index-2 .block-2 .item-2 p {
  color: #7d8684;
}
.index-2 .block-2 .item-3 {
  background: #a1a194;
}
.index-2 .block-2 .item-3 p {
  color: #d3d3ca;
}
.index-2 .block-3 {
  padding: 92px 0 105px;
}
@media only screen and (max-width: 979px) {
  .index-2 .block-1 h4 {
    height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .index-2 .block-1 h4 {
    height: auto;
  }
  .index-2 .block-2 .img_container img {
    margin-bottom: 20px;
  }
  .index-2 .block-2 h4 {
    width: 100%;
  }
}
.index-3 .block-1 {
  padding: 84px 0 60px;
  background: #ffffff;
}
.index-3 .block-1 h3 {
  margin-bottom: 50px;
}
.index-3 .block-1 .item {
  margin-bottom: 30px;
}
.index-3 .block-1 .item .img_container {
  position: relative;
  overflow: hidden;
}
.index-3 .block-1 .item .img_container:hover .filler {
  top: 0;
}
.index-3 .block-1 .item .filler {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: -200%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-3 .block-1 .item .filler span {
  color: #ffffff;
  font-size: 50px;
  top: 42%;
  left: 42%;
  position: absolute;
}
.index-3 .block-1 .item .caption {
  background: #e74c3c;
  font: 100 15px/16px 'Open Sans', sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  padding: 14px 15px;
}
.index-3 .block-2 {
  padding: 75px 0 40px;
  background: #a1a194;
}
.index-3 .block-2 h3 {
  margin-bottom: 45px;
  color: #ffffff;
}
.index-3 .block-2 .video_item iframe {
  width: 100%;
  height: 228px;
}
.index-3 .block-2 .video_item h3 {
  font-size: 24px;
  color: #464646;
  margin-top: 30px;
}
.index-4 span {
  display: inline-block;
}
.index-4 .block-1 {
  padding: 0;
  background: #ffffff;
}
.index-4 .block-1 h4 {
  color: #242a2e;
  margin-top: 6px;
}
.index-4 .block-1 span {
  color: #bbbaba;
  font: 14px/23px Arial, Helvetica, sans-serif;
}
.index-4 .block-1 .email a {
  color: #bbbaba;
}
.index-4 .block-1 .email a:hover {
  color: #e74c3c;
}
.index-4 .block-1 .fa {
  color: #e74c3c;
  font-size: 18px;
  font-family: "FontAwesome";
  width: 29px;
}
.index-4 .block-1 .content_map {
  position: relative;
}
.index-4 .block-2 {
  background: #ffffff;
  padding: 80px 0 100px;
}
.index-5 .block-1 {
  padding: 70px 0 70px;
  background: #ffffff;
}
.index-5 .block-1 h4 {
  margin: 40px 0 20px;
  color: #242a2e;
}
.index-5 .block-1 a {
  color: #e74c3c;
  text-transform: uppercase;
  font: 100 20px/20px 'Open Sans', sans-serif;
  margin-top: 30px;
  display: inline-block;
}
.index-5 .block-1 a:hover {
  color: #242a2e;
}
/*========================================================
										FOOTER styles
=========================================================*/
#footer {
  padding: 74px 0 80px;
  color: #ffffff;
}
#footer a {
  color: inherit;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .footer_logo {
  float: left;
}
#footer .footer_logo .footer-logo-img {
  width: 63px;
  height: 58px;
  display: inline-block;
  margin-right: 15px;
}
#footer .footer_logo a {
  display: inline-block;
  font-size: 44px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: 300;
}
#footer .footer_logo a span {
  font-size: 11px;
  font-style: normal;
  margin-top: 3px;
  margin-left: 4px;
  display: block;
  font-weight: normal;
  text-transform: uppercase;
  opacity: .5;
}
#footer .copyright .tac {
  text-align: center;
}
#footer .copyright .tal {
  text-align: left;
}
#footer .copyright .tar {
  text-align: right;
}
#footer .copyright pre {
  display: block;
  color: #a1a194;
  font: 'Open Sans', sans-serif;
}
#footer .copyright .s_name {
  text-transform: uppercase;
  color: #e74c3c;
  font-weight: 600;
}
#footer .copyright .address {
  text-transform: uppercase;
}
#footer .copyright .address p {
  color: #a1a194;
  line-height: 17px;
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
}
#footer .copyright .address span {
  width: 18px;
  height: 35px;
  font-size: 30px;
  margin: 0 25px 0 0;
  color: #e74c3c;
}
#footer .social {
  margin-top: 15px;
  text-align: left;
}
#footer .social .fa {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background: #3a3a3a;
  color: #ffffff;
  font-size: 20px;
  margin-right: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#footer .social .fa:hover {
  background: #e74c3c;
}
#footer .fa-mobile-phone {
  color: #e74c3c;
  font-size: 40px;
  margin-right: 20px;
}
#footer .phone {
  text-transform: uppercase;
  color: #a1a194;
  display: inline-block;
}
#footer .filler {
  background: #e74c3c;
  height: 19px;
  width: 100%;
  display: block;
  margin-top: 60px;
}
@media only screen and (max-width: 979px) {
  #footer .copyright p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  #footer {
    text-align: center;
  }
  #footer .footer_logo,
  #footer .copyright {
    float: none;
  }
  #footer .footer_logo a span {
    text-align: left;
  }
  #footer .copyright {
    margin-right: 0;
    margin-top: 40px;
  }
  #footer .copyright > div {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    float: none;
  }
  #footer .copyright .tal,
  #footer .copyright .tar {
    text-align: center;
    float: none;
  }
  #footer .social {
    text-align: center !important;
    float: none;
  }
}
/*========================================================
										Widget styles
=========================================================*/
/* UItoTop styles
========================================================*/
#toTop {
  display: none;
  text-decoration: none;
  position: fixed;
  bottom: 80px;
  right: 30px;
  overflow: hidden;
  border: none;
  color: #e74c3c;
  width: 50px;
  height: 43px;
  font-size: 43px;
  line-height: 38px;
  z-index: 20;
  text-align: center;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
#toTop:hover {
  outline: none;
  color: #fff;
  text-shadow: 0 0 7px #000;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
@media only screen and (max-width: 1199px) {
  #toTop {
    display: none !important;
  }
}
/*Core variables and mixins*/
