/*===== Import Files =====*/
/* Fonts */
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap&subset=latin-ext,vietnamese");
/*===== Layout Style =====*/
* {
  margin: 0;
  padding: 0; }

body {
  max-width: 1920px;
  background: #FFF;
  line-height: 1.15;
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden;
  margin: 0 auto;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  margin: 0; }

ul, ol {
  margin: 0; }

ul li, ol li {
  list-style: none; }

a {
  color: #252525;
  cursor: pointer; }
  a:hover, a:focus {
    color: #707070;
    text-decoration: none;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s; }

img {
  max-width: 100%;
  height: auto;
  margin: 0 auto; }

select:focus, button:focus, input:focus {
  outline: none; }

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
textarea, select, input[type=number],
input[type=tel] {
  padding: 8px 10px;
  width: 100%;
  border: none;
  cursor: pointer; }

.header {
  padding-top: 15px; }
  .header_top {
    margin-bottom: 20px; }
  .header_menu {
    background: #F0F0F0; }
    .header_menu .logo {
      display: none; }
    .header_menu .menu {
      position: relative;
      z-index: 99; }
      .header_menu .menu_inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
      .header_menu .menu_item {
        margin-right: 35px;
        position: relative;
        padding-top: 15px;
        padding-bottom: 15px; }
        .header_menu .menu_item.active {
          border-bottom: 3px solid #007bff; }
          .header_menu .menu_item.active a {
            color: #007bff; }
        .header_menu .menu_item a {
          color: #000;
          font-size: 16px; }
          .header_menu .menu_item a:hover {
            color: #015ea6; }
        .header_menu .menu_item_child {
          text-align: left;
          display: block;
          position: absolute;
          top: 100%;
          width: 370px;
          padding: 15px;
          background: #FFF;
          -webkit-box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 10px 0px;
          box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 10px 0px;
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s;
          opacity: 0;
          z-index: 99;
          visibility: hidden;
          -webkit-transform: translate(0, 10px);
          -ms-transform: translate(0, 10px);
  transform: translate(0, 10px);
}
          .header_menu .menu_item_child li {
            margin-bottom: 10px; }
            .header_menu .menu_item_child li:last-child {
              margin-bottom: 0; }
            .header_menu .menu_item_child li a {
              -webkit-transition: 0.3s;
              -o-transition: 0.3s;
              transition: 0.3s; }
              .header_menu .menu_item_child li a:hover {
                padding-left: 5px;
                -webkit-transition: 0.3s;
                -o-transition: 0.3s;
                transition: 0.3s; }
        .header_menu .menu_item:hover .menu_item_child {
          visibility: visible;
          opacity: 1;
          -webkit-transform: translate(0, 0px);
          -ms-transform: translate(0, 0px);
          -o-transform: translate(0, 0px);
          transform: translate(0, 0px);
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
  .header_search {
    margin-top: 5px;
    position: relative; }
    .header_search input {
      border: 1px solid #eaeaea;
      border-radius: 10px;
      position: relative;
      width: 100%;
      height: 34px;
      background: transparent;
      font-size: 14px;
      color: #707070;
      padding-right: 25px; }
    .header_search .header_search_btn {
      color: #252525;
      font-size: 15px;
      position: absolute;
      top: 5px;
      right: 7px;
      background: transparent;
      border: none;
      background: transparent; }
  .header_contact {
    text-align: center;
    width: 300px;
    display: block; }
    .header_contact .txt {
      font-size: 15px; }
    .header_contact .phone {
      font-size: 20px;
      font-weight: bold; }
      .header_contact .phone a {
        color: #FF0000; }
  .header .humbgr {
    display: none; }

.txt_slogan h2 {
  font-weight: bold;
  color: #3e3e3e;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 22px;
  color: black;
  margin-bottom: 30px; }

.mainvisual .swiper-button-next:after, .mainvisual .swiper-button-prev:after {
  font-size: 35px; }

.product {
  margin-bottom: 50px; }
  .product:last-child {
    margin-bottom: 0; }
  .product__cate_title h2 {
    text-align: left;
    font-size: 14px;
    margin-bottom: 30px; }
    .product__cate_title h2 span {
      position: relative;
      display: inline-block; }
      .product__cate_title h2 span:after {
        content: "";
        width: 100%;
        height: 2px;
        display: block;
        margin: 0 auto;
        background: #015ea6;
        position: absolute;
        bottom: -10px;
        right: 0;
        left: 0; }
  .product_title h2 {
    padding-bottom: 1%;
    color: black;
    font-size: 22px;
    border-bottom: 1px inset black;
    margin-bottom: 30px; }
  .product_item {
    margin-bottom: 40px;
    padding: 15px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    .product_item:hover {
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      -webkit-box-shadow: 0px 0px 5px 3px #e8e8e8;
      -moz-box-shadow: 0px 0px 5px 3px #e8e8e8;
      box-shadow: 0px 0px 5px 3px #e8e8e8; }
  .product_image {
    text-align: center;
    margin-bottom: 20px; }
    .product_image img {
      width: auto;
      height: 200px; }
  .product_info {
    margin-top: 10px; }
  .product_name {
    font-size: 14px;
    color: black;
    text-align: center;
    font-weight: normal; }

.info {
  margin-bottom: 50px; }
  .info_item .icn i {
    color: #015ea6;
    font-size: 50px; }
  .info_item .txt {
    color: #4e5663;
    font-size: 15px; }

.address {
  background: #F0F0F0; }
  .address_detail {
    padding: 35px 0; }
  .address .col-sm-4:nth-child(1) {
    text-align: left; }
  .address .col-sm-4:nth-child(2) {
    text-align: center; }
  .address .col-sm-4:nth-child(3) {
    text-align: right; }

.footer {
  background: #e2e2e2;
  padding: 60px 0 30px; }
  .footer_logo {
    margin-bottom: 20px; }
  .footer_title {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase; }
  .footer_more {
    color: #015ea6; }
  .footer_link ul li {
    margin-bottom: 5px; }
    .footer_link ul li:last-child {
      margin-bottom: 0; }
    .footer_link ul li a {
      font-size: 14px;
      color: #4a4a4a;
      -webkit-transition: 0.2s;
      -o-transition: 0.2s;
      transition: 0.2s; }
      .footer_link ul li a:hover {
        padding-left: 8px;
        -webkit-transition: 0.2s;
        -o-transition: 0.2s;
        transition: 0.2s;
        color: #676767; }
  .footer_info_heading {
    margin-bottom: 5px;
    font-size: 18px; }
  .footer_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .footer_social li {
      margin-right: 10px; }
      .footer_social li:last-child {
        margin-right: 0; }
      .footer_social li a {
        display: block;
        text-align: center;
        position: relative;
        overflow: hidden;
        line-height: 60px;
        width: 50px;
        height: 50px;
        z-index: 0;
        color: #000;
        border-radius: 50%; }
        .footer_social li a::after {
          content: "";
          display: block;
          height: 0;
          -webkit-transition: height 0.3s;
          -o-transition: height 0.3s;
          transition: height 0.3s;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: auto;
          z-index: -1; }
        .footer_social li a:hover {
          color: #FFF; }
        .footer_social li a:hover:after {
          height: 100%;
          bottom: 0;
          -webkit-transition: height 0.3s;
          -o-transition: height 0.3s;
          transition: height 0.3s; }
      .footer_social li.facebook a:hover:after {
        background: #42599e; }
      .footer_social li.youtube :hover:after {
        background: #f00; }
      .footer_social li.instagram :hover:after {
        background: radial-gradient(circle farthest-corner at 35% 100%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 10% 140%, #feda7e, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), -webkit-gradient(linear, left top, left bottom, from(#6559ca), color-stop(30%, #bc318f), color-stop(50%, #e42e66), color-stop(70%, #fa5332), to(#ffdc80));
        background: -webkit-radial-gradient(35% 100%, circle farthest-corner, #fec564, transparent 50%), -webkit-radial-gradient(10% 140%, circle farthest-corner, #feda7e, transparent 50%), -webkit-radial-gradient(0 -25%, ellipse farthest-corner, #5258cf, transparent 50%), -webkit-radial-gradient(20% -50%, ellipse farthest-corner, #5258cf, transparent 50%), -webkit-radial-gradient(100% 0, ellipse farthest-corner, #893dc2, transparent 50%), -webkit-radial-gradient(60% -20%, ellipse farthest-corner, #893dc2, transparent 50%), -webkit-radial-gradient(100% 100%, ellipse farthest-corner, #d9317a, transparent), -webkit-linear-gradient(#6559ca, #bc318f 30%, #e42e66 50%, #fa5332 70%, #ffdc80 100%);
        background: -o-radial-gradient(35% 100%, circle farthest-corner, #fec564, transparent 50%), -o-radial-gradient(10% 140%, circle farthest-corner, #feda7e, transparent 50%), -o-radial-gradient(0 -25%, ellipse farthest-corner, #5258cf, transparent 50%), -o-radial-gradient(20% -50%, ellipse farthest-corner, #5258cf, transparent 50%), -o-radial-gradient(100% 0, ellipse farthest-corner, #893dc2, transparent 50%), -o-radial-gradient(60% -20%, ellipse farthest-corner, #893dc2, transparent 50%), -o-radial-gradient(100% 100%, ellipse farthest-corner, #d9317a, transparent), -o-linear-gradient(#6559ca, #bc318f 30%, #e42e66 50%, #fa5332 70%, #ffdc80 100%);
        background: radial-gradient(circle farthest-corner at 35% 100%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 10% 140%, #feda7e, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e42e66 50%, #fa5332 70%, #ffdc80 100%); }
      .footer_social li.twitter :hover:after {
        background: #55acee; }
      .footer_social li i {
        font-size: 25px; }
  .footer_about {
    font-size: 14px;
    line-height: 26px; }

.banner {
  position: relative;
  margin-bottom: 50px; }
  .banner img {
    width: 100%; }
  .banner_txt {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .banner_name {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px; }
  .banner_breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .banner_breadcrumb li {
      color: #FFF; }
      .banner_breadcrumb li + li:before {
  content: "";
  font-family: "FontAwesome";
        font-size: 16px;
        padding: 0 10px; }
    .banner_breadcrumb a {
      color: #fff; }

.product_detail {
  padding-bottom: 50px; }
  .product_detail .product_images .slider-for {
    margin-bottom: 20px; }
  .product_detail .product_images .slider-nav .slick-slide {
    padding: 10px; }
  .product_detail .product_images .slider-nav .slick-active {
    border: 1px solid #fbfbfb; }
  .product_detail .product_info h1 {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    text-align: center; }
  .product_detail .product_info__des {
    font-size: 14px;
    line-height: 28px; }
    .product_detail .product_info__des p {
      margin-bottom: 10px; }
      .product_detail .product_info__des p:last-child {
        margin-bottom: 0; }
  .product_detail .product_des_detail {
    margin-top: 30px; }

.contact {
  padding-bottom: 50px; }
  .contact_item {
    text-align: center;
    color: #6d6d6d;
    margin-bottom: 60px; }
  .contact .icon {
    line-height: 105px;
    width: 105px;
    border-radius: 100%;
    display: inline-block;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 20px; }
  .contact_map object {
    width: 100%;
    height: 330px;
    border: 0; }
  .contact_form {
    margin-top: 50px; }
    .contact_form_inner {
      padding: 0 100px; }
    .contact_form_title {
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 40px; }
    .contact_form input {
      border-radius: 0;
      border: 1px solid #ccc;
      -moz-border-radius: none;
      -webkit-border-radius: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      color: #707070; }
    .contact_form .btn {
      background: #015da5;
      color: #FFF;
      width: 120px;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
      .contact_form .btn:hover {
        background: #057dda;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s; }

.siderbar_item {
  margin-bottom: 30px; }
.siderbar_item_provider {
  margin-bottom: 30px; }

/*===== Back To Top =====*/
.td_scroll_up {
  cursor: pointer;
  position: fixed;
  bottom: 5px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #252525;
  z-index: 1;
  transform: translate3d(0, 70px, 0);
  -webkit-transform: translate3d(0, 70px, 0);
  -moz-transform: translate3d(0, 70px, 0);
  -ms-transform: translate3d(0, 70px, 0);
  -o-transform: translate3d(0, 70px, 0);
  -webkit-transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -moz-transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -o-transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s; }
  .td_scroll_up_visible {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0); }
  .td_scroll_up i {
    position: relative;
    color: #fff;
    font-size: 20px;
    display: block;
    text-align: center;
    width: 40px;
    top: 7px; }
  .td_scroll_up:hover {
    color: #fff;
    background: #707070;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }

@media (max-width: 767px) {
  .header {
    padding-top: 15px; }
    .header_menu {
      padding-top: 15px;
      padding-bottom: 15px;
      position: relative; }
      .header_menu .logo {
        display: block;
        opacity: 0;
        visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
        width: 20%;
        margin-left: 15px; }
      .header_menu .menu {
        position: relative;
        z-index: 99;
        display: none;
        background: #FFF;
        top: 10px; }
        .header_menu .menu_inner {
          display: block;
          padding-top: 15px;
          padding-bottom: 15px; }
        .header_menu .menu_item {
          margin-right: 0;
          margin-bottom: 15px;
          padding: 0; }
          .header_menu .menu_item:last-child {
            margin-bottom: 0; }
          .header_menu .menu_item a {
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase; }
            .header_menu .menu_item a:hover {
              color: #015ea6; }
          .header_menu .menu_item_parent li a {
            font-size: 12px;
            font-weight: normal; }
          .header_menu .menu_item_parent .plus {
            position: absolute;
            right: 0;
            text-align: center;
            top: 1px;
            z-index: 9;
            cursor: pointer;
            font-size: 30px;
            width: 22px;
            height: 22px;
            line-height: 20px; }
            .header_menu .menu_item_parent .plus:before {
              content: "+"; }
            .header_menu .menu_item_parent .plus.open:before {
              content: "-"; }
          .header_menu .menu_item_parent .menu_item_child {
            background: transparent;
            -webkit-box-shadow: none;
            box-shadow: none;
            display: none;
            left: 0px;
            width: 100%;
            opacity: 1;
            padding: 0 0 0 10px;
            position: relative;
            top: -4px;
            visibility: visible; }
          .header_menu .menu_item_parent:hover .menu_item_child {
            -webkit-transition: inherit;
            -o-transition: inherit;
            transition: inherit;
            -webkit-transform: translate(0, 10px);
            -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }
    .header .sticky-wrapper.is-sticky .header_menu .logo {
      opacity: 1;
      visibility: visible;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
    .header_logo {
      text-align: center; }
    .header_contact {
      width: auto;
      margin: 10px auto 0; }
      .header_contact .txt {
        font-size: 15px; }
      .header_contact .phone {
        font-size: 20px;
        font-weight: bold; }
        .header_contact .phone a {
          color: #FF0000; }
    .header .humbgr {
      display: block;
      width: 45px;
      height: 40px;
      margin-left: auto;
      margin-right: 10px;
      outline: 0;
      cursor: pointer;
      position: relative; }
      .header .humbgr .bars {
        width: 20px;
        height: 16px;
        position: absolute;
        left: 50%;
        top: 12px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
        .header .humbgr .bars span {
          display: block;
          background-color: #333;
          width: 100%;
          height: 2px;
          border-radius: 1px;
          position: absolute; }
          .header .humbgr .bars span:nth-of-type(1) {
            top: 0; }
          .header .humbgr .bars span:nth-of-type(1) {
    -webkit-animation: menu-bar01 0.75s forwards;
    animation: menu-bar01 0.75s forwards;
  }
          .header .humbgr .bars span:nth-of-type(2) {
            top: 7px; }
          .header .humbgr .bars span:nth-of-type(2) {
    -webkit-transition: all 0.25s 0.25s;
    -o-transition: all 0.25s 0.25s;
    transition: all 0.25s 0.25s;
    opacity: 1;
  }
          .header .humbgr .bars span:nth-of-type(3) {
            bottom: 0; }
          .header .humbgr .bars span:nth-of-type(3) {
    -webkit-animation: menu-bar02 0.75s forwards;
    animation: menu-bar02 0.75s forwards;
  }
      .header .humbgr.active .bars span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 0.75s forwards;
    animation: active-menu-bar01 0.75s forwards;
  }
      .header .humbgr.active .bars span:nth-of-type(2) {
        opacity: 0; }
      .header .humbgr.active .bars span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 0.75s forwards;
    animation: active-menu-bar03 0.75s forwards;
  }

  .txt_slogan h2 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px; }
  .product_title h2 {
    font-size: 17px; }
  .product_img img {
    height: 100px; }
  .product_pagination {
    margin-bottom: 50px; }
  .product_images {
    margin-bottom: 20px; }
  .siderbar_item {
    display: none; }
  .siderbar .product {
    margin-top: 50px; }
    .siderbar .product__cate_title h2 {
      text-align: center; }
  .info {
    margin-bottom: 30px; }
    .info_item {
      margin-bottom: 20px; }
      .info_item .icn {
        margin-bottom: 20px; }
  .address_item {
    margin-bottom: 10px;
    text-align: center !important;
    font-size: 16px; }
    .address_item .col-12:last-child .address_item {
      margin-bottom: 0; }
  .footer {
    padding: 30px 0; }
    .footer_social {
      margin-bottom: 20px; }
    .footer_about {
      margin-bottom: 20px; }
  .banner {
    height: 160px;
    overflow: hidden; }
    .banner > img {
      height: 100%;
      left: 50%;
      max-width: none;
      position: absolute;
      top: 0;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: auto; }
    .banner_name {
      font-size: 20px;
      margin-bottom: 0; }
    .banner_breadcrumb {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .banner_breadcrumb li {
        color: #FFF; }
        .banner_breadcrumb li + li:before {
    content: "";
    font-family: "FontAwesome";
          font-size: 16px;
          padding: 0 10px; }
      .banner_breadcrumb a {
        color: #fff; }
  .contact_form_inner {
    padding: 0; } }
.siderbar_item ul li a {
  color: blue;
  font-weight: 500;
}
.siderbar_item_provider ul li a {
  color: blue;
  font-weight: 500;
}
.title-product {
  font-size: 20px;
  font-weight: bold;
  color: red;
  text-decoration: none;
  padding: 4%;
}
.left-product{
  padding: 4%;
  font-size: 16px;
  border-bottom: 1px inset GRAY;
}

@media (max-width: 320px) {
  .product .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; } }

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0); }
  50% {
    -webkit-transform: translateY(7px) rotate(0); }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg); } }

@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0); }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0); }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg); } }

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-5px) rotate(-45deg); }
  50% {
    -webkit-transform: translateY(-5px) rotate(0); }
  100% {
    -webkit-transform: translateY(0) rotate(0); } }

@keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg); }
  50% {
    -webkit-transform: translateY(-5px) rotate(0);
    transform: translateY(-5px) rotate(0); }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0); } }

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0); }
  50% {
    -webkit-transform: translateY(-7px) rotate(0); }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg); } }

@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0); }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0); }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg); } }

/* Phone */
.phone_fixed {
  background-color: transparent;
  cursor: pointer;
  height: 120px;
  position: fixed;
  left: 0px;
  bottom: -25px;
  -webkit-transition: visibility 0.5s ease 0s;
  -o-transition: visibility 0.5s ease 0s;
  transition: visibility 0.5s ease 0s;
  width: 275px;
  z-index: 200000 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.phone_fixed .num {
  border: 1px solid #b2b2b2;
  background: #FFF;
  padding: 3px 12px;
  border-radius: 10px;
  color: #015ea6;
  font-weight: bold;
  margin-bottom: 15px;
}

.callus-phone {
  display: block;
}

.callus-phone-circle {
  -webkit-animation: 1.2s ease-in-out 0s normal none infinite running callus-circle-anim;
  animation: 1.2s ease-in-out 0s normal none infinite running callus-circle-anim;
  background-color: transparent;
  border: 2px solid rgba(30, 30, 30, 0.4);
  border-radius: 100%;
  height: 100px;
  left: 0px;
  opacity: 0.1;
  position: absolute;
  top: 0px;
  -webkit-transform-origin: 50% 50% 0;
  -ms-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100px; }

.callus-phone-circle-fill {
  -webkit-animation: 2.3s ease-in-out 0s normal none infinite running callus-circle-fill-anim;
  animation: 2.3s ease-in-out 0s normal none infinite running callus-circle-fill-anim;
  border: 2px solid transparent;
  border-radius: 100%;
  height: 70px;
  left: 15px;
  position: absolute;
  top: 15px;
  -webkit-transform-origin: 50% 50% 0;
  -ms-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 70px; }

.callus-phone-img-circle {
  /* animation: 1s ease-in-out 0s normal none infinite running callus-circle-img-anim; */
  border: 2px solid transparent;
  border-radius: 100%;
  height: 50px;
  left: 25px;
  opacity: 0.7;
  position: absolute;
  top: 25px;
  -webkit-transform-origin: 50% 50% 0;
  -ms-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
  width: 50px; }

.callus-phone.callus-hover, .callus-phone:hover {
  opacity: 1; }

.callus-phone.callus-active .callus-phone-circle {
  -webkit-animation: 1.1s ease-in-out 0s normal none infinite running callus-circle-anim !important;
  animation: 1.1s ease-in-out 0s normal none infinite running callus-circle-anim !important; }

.callus-phone.callus-static .callus-phone-circle {
  -webkit-animation: 2.2s ease-in-out 0s normal none infinite running callus-circle-anim !important;
  animation: 2.2s ease-in-out 0s normal none infinite running callus-circle-anim !important; }

.callus-phone.callus-hover .callus-phone-circle, .callus-phone:hover .callus-phone-circle {
  border-color: #00aff2;
  opacity: 0.5; }

.callus-phone.callus-green.callus-hover .callus-phone-circle, .callus-phone.callus-green:hover .callus-phone-circle {
  border-color: #EB278D;
  opacity: 1; }

.callus-phone.callus-green .callus-phone-circle {
  border-color: #bfebfc;
  opacity: 1; }

.callus-phone.callus-hover .callus-phone-circle-fill, .callus-phone:hover .callus-phone-circle-fill {
  background-color: rgba(0, 175, 242, 0.9); }

.callus-phone.callus-green.callus-hover .callus-phone-circle-fill, .callus-phone.callus-green:hover .callus-phone-circle-fill {
  background-color: #EB278D; }

.callus-phone.callus-green .callus-phone-circle-fill {
  background-color: rgba(0, 175, 242, 0.9); }

.callus-phone.callus-hover .callus-phone-img-circle, .callus-phone:hover .callus-phone-img-circle {
  background-color: #00aff2; }

.callus-phone.callus-green.callus-hover .callus-phone-img-circle, .callus-phone.callus-green:hover .callus-phone-img-circle {
  background-color: #EB278D; }

.callus-phone.callus-green .callus-phone-img-circle {
  background-color: #00aff2; }

@-webkit-keyframes callus-circle-anim {
  0% {
    opacity: 0.1;
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    transform: rotate(0deg) scale(0.5) skew(1deg); }
  30% {
    opacity: 0.5;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    transform: rotate(0deg) scale(0.7) skew(1deg); }
  100% {
    opacity: 0.6;
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); } }

@keyframes callus-circle-anim {
  0% {
    opacity: 0.1;
    -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
    transform: rotate(0deg) scale(0.5) skew(1deg); }
  30% {
    opacity: 0.5;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    transform: rotate(0deg) scale(0.7) skew(1deg); }
  100% {
    opacity: 0.6;
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); } }

@-webkit-keyframes callus-circle-img-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); } }

@keyframes callus-circle-img-anim {
  0% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); } }

@-webkit-keyframes callus-circle-fill-anim {
  0% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    transform: rotate(0deg) scale(0.7) skew(1deg); }
  50% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    transform: rotate(0deg) scale(0.7) skew(1deg); } }

@keyframes callus-circle-fill-anim {
  0% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    transform: rotate(0deg) scale(0.7) skew(1deg); }
  50% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    opacity: 0.2;
    -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
    transform: rotate(0deg) scale(0.7) skew(1deg); } }

.callus-phone-img-circle i {
  -webkit-animation: 1s ease-in-out 0s normal none infinite running callus-circle-img-anim;
  animation: 1s ease-in-out 0s normal none infinite running callus-circle-img-anim;
  font-size: 30px;
  line-height: 50px;
  padding-left: 10px;
  color: #fff; }

/*=================== End phone ring ===============*/
@-webkit-keyframes callus-ring-ring {
  0% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); } }
@keyframes callus-ring-ring {
  0% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg); }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg); }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    transform: rotate(-25deg) scale(1) skew(1deg); }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    transform: rotate(25deg) scale(1) skew(1deg); }
  50% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); }
  100% {
    -webkit-transform: rotate(0deg) scale(1) skew(1deg);
    transform: rotate(0deg) scale(1) skew(1deg); } }

@media (max-width: 768px) {
  .callus-phone {
    display: block;
  }

  .phone_fixed .num {
    display: none;
  }
}