/* var text-decoration */
@font-face {
  font-family: myfont;
  src: url(../fonts/ufonts.com_tw-cen-mt.ttf);
}

/*--
    Common Css
--*/
body {
  font-family: myfont, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  font-family: myfont;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
  font-weight: 600;
}
h3 {
  font-size: 24px;
  font-weight: 300;
}
p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  margin: 0px;
  font-family: myfont;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
a,
a:active,
a:focus,
a:active {
  color: #185B8A;	
  text-decoration: none !important;
}
a:hover {
  color: #EC1F38;
}

/*============== Mixins style start ================*/
.overlay-effect {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/overlay-pattern.png") #000000;
  opacity: 0.3;
}

/*--
    custom heading Start
--*/
.heading {
  text-align: center;
  font-weight: 500;
  color: #2E2E2E;
  padding: 40px 0px;
  position: relative;
}
.heading span {
  font-size: 16px;
  color: #EC1F38;
  font-weight: 600;
}
.heading:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140px;
  height: 1px;
  background: #C8C1B3;
  margin-left: -70px;
}
.title {
  color: #2E2E2E;
  /* text-transform: uppercase; */
  padding: 30px 0px;
}
.title span {
  color: #EC1F38;
}
.before-border {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140px;
  height: 1px;
  background: #C8C1B3;
  margin-left: -70px;
}

/*--
    transition custom style
--*/
.transition {
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}
/*============== Mixins style close ================*/

/*--
    header-img start Start
--*/
#landing-area {
  position: relative;
}
#landing-area:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/overlay-pattern.png") #000000;
  opacity: 0.3;
}

/*--
    nav Start
--*/
nav {
  z-index: 99999;
  width: 100%;
}
nav .block {
  margin-top: -85px;
  background: #fff;
  padding: 25px 40px;
  background: rgba(255, 255, 255, 0.85);
}
nav .block .navbar-default {
  border: none;
  border-radius: 0px;
  margin-bottom: 0;
  background: none;
}
nav .block .navbar-default .navbar-brand {
  padding-left: 0px;
  padding-top: 0px;
}
nav .block .navbar-default .navbar-nav {
  padding-top: 7px;
}
nav .block .navbar-default .navbar-nav > li > a {
  color: #185B8A;
  padding: 7px 0px;
  margin: 0px 10px;
  font-size: 14px;
  text-transform: uppercase;
}
nav .block .navbar-default .navbar-nav > li > a:before {
  background-color: transparent;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
  width: 0;
}
nav .block .navbar-default .navbar-nav > li > a:hover:before {
  background-color: #EC1F38;
  content: "";
  width: 100%;
}
nav .block .navbar-default .navbar-nav > li.current > a {
  color: #2E2E2E;
  padding: 10px 0px;
  margin: 0px 15px;
}
nav .block .navbar-default .navbar-nav > li.current > a:before {
  background-color: transparent;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  height: 2px;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
  width: 100%;
  background-color: #EC1F38;
}
nav .block .navbar-default .navbar-nav > .active > a,
nav .block .navbar-default .navbar-nav > .active > a:focus,
nav .block .navbar-default .navbar-nav > .active > a:hover {
  background: none;
}
nav .block .navbar-default .navbar-nav > .active > a:before,
nav .block .navbar-default .navbar-nav > .active > a:focus:before,
nav .block .navbar-default .navbar-nav > .active > a:hover:before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #EC1F38;
}

/*--
    partnership-area Start
--*/
#partnership-area {
  padding: 70px 0px;
  background: #FFFFFF;
}
#partnership-area .block {
  /* text-align: center; */
}
#partnership-area .block p {
  color: #959595;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 0px;
}

/*--
    partners-area Start
--*/
#partners-area {
  padding: 70px 0px;
  background: #F6F6F6;
}
#partners-area .block {
  /* text-align: center; */
}
#partners-area .block p {
  color: #959595;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 0px;
}

/*--
    contacts-area Start
--*/
#contacts-area {
  padding: 70px 0px;
  background: #FFFFFF;
}
#contacts-area .block {
  /* text-align: center; */
}
#contacts-area .block p {
  color: #959595;
  font-size: 18px;
  line-height: 27px;
  padding: 15px 0px;
}

/*--
    footer Start
--*/
#footer {
  padding: 70px 0px;
}
#footer .block h3 {
  color: #2E2E2E;
  padding-bottom: 25px;
}
#footer .block h3 span {
  color: #EC1F38;
}
#footer .block .blog ul,
#footer .block .info ul,
#footer .block .gallary ul {
  padding-top: 20px;
}
#footer .block .blog ul li,
#footer .block .info ul li,
#footer .block .gallary ul li {
  margin-bottom: 25px;
  display: inline-block;
  margin-right: 20px;
}
#footer .block .blog ul li h4,
#footer .block .info ul li h4,
#footer .block .gallary ul li h4 {
  padding-bottom: 10px;
  display: block;
  color: #EC1F38;
}
#footer .block .blog ul li h4 i,
#footer .block .info ul li h4 i,
#footer .block .gallary ul li h4 i {
  color: #555;
  margin-right: 30px;
  font-size: 20px;
}
#footer .block .blog ul li h4 a,
#footer .block .info ul li h4 a,
#footer .block .gallary ul li h4 a {
  color: #EC1F38;
  font-size: 20px;
  font-weight: 500;
}
#footer .block .blog ul li p,
#footer .block .info ul li p,
#footer .block .gallary ul li p {
  color: #474747;
  font-size: 14px;
}
#footer .block .social-media-link h3 {
  font-size: 20px;
  padding-bottom: 15px;
  padding-top: 30px;
}
#footer .block .social-media-link h3 span {
  color: #EC1F38;
}
#footer .block .social-media-link ul li {
  display: inline-block;
  margin-right: 20px;
}
#footer .block .social-media-link ul li a {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  padding-top: 8px;
  border-radius: 100%;
  background: #B0B0B0;
  color: #FFFFFF;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}
#footer .block .social-media-link ul li a:hover {
  background: #EC1F38;
  color: #fff;
}

/*--
    footer-bottom Start
--*/
#footer-bottom {
  background: #E9E9E9;
  padding: 20px 0px;
}
#footer-bottom p {
  text-align: center;
  padding-top: 10px;
  color: #959595;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
}
#footer-bottom p a {
  color: #EC1F38;
}


/*--
    Other Custom Css
--*/
@media only screen and (max-width: 1200px) {
  nav .block .navbar-default .navbar-brand {
  margin-bottom: 15px;
  }
}

.btn-hipgen {
  padding: 30px 70px;
  border-radius: 0px;
  background: none;
  color: #185B8A;
  border: 1px solid #185B8A;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}
.btn-hipgen:hover {
  background: #EC1F38;
  border: 1px solid #EC1F38;	
  color: #fff;
}

.hipgen_red {
  color: #EC1F38;
}
.hipgen_blue {
  color: #185B8A;
}