
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
html,
body {
    width:100%;
    height:100%;
    margin:0;
    padding:0
}

body {
    color: #444;
    font-family: 'Roboto',Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.5;
    background-color:#fff;
}

a,
a:link,
a:active,
a:visited {
    color:#1a3f5e;
}

a:hover,
a:focus {
    text-decoration:none;
    color:#0e2132;
}
.ot-btn {
  font-size: 12px;
  color: #333;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0 25px;
  margin-bottom: 15px;
  outline: none;
  transition: all 0.6s ease 0s;
  letter-spacing: 1px;
}
.ot-btn:hover,
.ot-btn:focus {
  text-decoration: none;
}

.btn-main-color {
    background-color: #f8a819;
    color: #fff !important;
    border: none;
}

.btn-main-color:hover {
    background: #333;
}

.white-text {
    color: white;
}

mark {
    background: #ec7d22;
    color: #fff;
    padding: 0 3px;
    letter-spacing: 2px;
}

/*icon button*/
.icon-btn-left {
  text-align: left;
}
.icon-btn-left i {
  line-height: inherit;
  font-size: inherit;
  float: left;
  margin: 0 8px;
}
.icon-btn-right {
  text-align: left;
}
.icon-btn-right i {
  line-height: inherit;
  font-size: inherit;
  float: right;
  margin: 0 8px;
}
.btn-sub-color {
  background: #fff;
}
.btn-sub-color:hover {
  background: #333;
  color: #fff;
}
.btn-dark-color {
  background: #333;
  color: #fff;
}
.btn-dark-color:hover,
.btn-dark-color:focus {
  color: #333;
  background: #fff;
}
.btn-border-dark:hover {
  background: #fff;
  border-color: #fff;
  color: #333;
}
.btn-white-color {
  background: #fff;
}
.btn-white-color:hover {
  background: #333;
  color: #fff;
}
.btn-teal-color {
  background: #439088;
  color: #fff;
}
.btn-teal-color:hover {
  background: #333;
  color: #439088;
}
.btn-blue-color {
  background: #0888f0;
  color: #fff;
}
.btn-blue-color:hover {
  background: #333;
  color: #0888f0;
}
.btn-maroon-color {
  background: #953c44;
  color: #fff;
}
.btn-maroon-color:hover {
  background: #333;
  color: #953c44;
}
.btn-brown-color {
  background: #906e43;
  color: #fff;
}
.btn-brown-color:hover {
  background: #333;
  color: #906e43;
}
.btn-green-color {
  background: #2ccb7a;
  color: #fff;
}
.btn-green-color:hover {
  background: #333;
  color: #2ccb7a;
}

.padding {
    padding: 80px 0 100px 0;
}

.padding-60{
  padding: 60px 0 80px 0
}

.padding-bottom-0 {
    padding-bottom: 0!important;
}

.bg-grey {
    background: #f5f5f5;
}
.bg-dark {
    background: #333;
}

.bg-blue{
  background: #05458e;
}

.bg-parallax {
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    margin-top: -1px;
}
/*Header*/

.section-header{
  border-bottom: 1px solid #f8a81c6b;
}
header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#header{
  position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

#header .logo img{
  max-height: 80px;
}

#header h1, 
#header .site_name{
  display: none;
}

#header nav{
  margin-left: auto;
}

.main-navi > li {
    position: relative;
    display: inline-block;
}

.main-navi > li a {
    display: block;
    line-height: 22px;
    text-transform: uppercase;
    position: relative;
    padding: 35px 20px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.5px;
}

.main-navi > li > a:after {
    content: "|";
    width: 1px;
    height: 22px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    display: block;
}

.main-navi > li:last-child > a:after{
  display: none;
}

.main-navi > li a span {
    display: block;
    position: relative;
}

.main-navi > li:hover a{color: #f8a81c}

.main-navi > li .navi-level-2 {
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    height: auto;
    min-width: 240px;
    display: block;
    position: absolute;
    top: 140%;
    left: 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    background: #05458e;
  transition: all 500ms ease;
}

.main-navi .has-sub:hover .navi-level-2{
  top: 100%;
    opacity: 1;
    visibility: visible;
}

.main-navi > li .navi-level-2 li {
    display: block;
    position: relative;
    width: 100%;
}

.main-navi > li .navi-level-2 li a {
    display: block;
    padding: 10px 15px;
    font-size: 13px;
    width: 100%;
    color: #fff;
    transition: all 0.1s;
}

.main-navi > li .navi-level-2 li a:hover {
    background: #333;
}

.hotline{
  position: relative;
  line-height: 22px;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 2px;
  float: right;
}

.hotline a{
  font-weight: 600;
  color: #ec7d22
}

.chooseus{
  position: relative;
  background-color: #333;
}

.bodytext{
  font-size: 16px;
  line-height: 28px;
}

.hometext{
  font-size: 16px;
}

figure{
  margin-bottom: 10px;
}

figcaption{
  font-size: 14px;
}

.title {
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

.divider {
    width: 100%;
    max-width: 370px;
    height: 1px;
    margin: 40px auto;
    display: block;
    position: relative;
    background: #e5e5e5;
}

.svg-triangle-icon-container {
    width: 22px;
    height: 15px;
    overflow: visible!important;
    left: 50%;
    margin-left: -11px;
    margin-top: -6px;
    display: block;
    position: absolute;
}

.svg-triangle-icon {
    fill: transparent;
    stroke: #f7a81c;
    stroke-width: 3;
}

.block-img-right .img-block {
  position: relative;
    z-index: 1;
    float: right;
    width: calc(50% - 15px);
    margin-left: 15px;
    border-radius: 3px;
    overflow: hidden;
    display: block;
}
.block-img-right .text-box {
    text-align: right;
    display: inline-block;
    padding-right: 15px;
    width: 50%;
}

.text-box a{
  color: #222;
}

.text-box a:hover{
  color: #f7a81c;
}

.text-cap {
    text-transform: uppercase;
}

.block-img-left .img-block {
      position: relative;
    z-index: 1;
    float: left;
    width: calc(50% - 15px);
    margin-right: 15px;
    border-radius: 3px;
    overflow: hidden;
    display: block;
}
.block-img-left .img-block img,
.block-img-right .img-block img{
    height: 155px;
    object-fit: cover;
    width: 100%;
border-radius: 3px;
margin-bottom: 15px
}
.block-img-left .text-box {
    text-align: left;
    display: inline-block;
    padding-left: 15px;
    width: 50%;
}

.block-img-left .text-box h4{
  line-height: 26px;
}

.divider-2 {
    background: rgba(255, 255, 255, 0.1);
}

.chooseus-full-width .svg-triangle-icon{
  stroke: #f4ef13;
}
.chooseus-full-width .chooseus-container {
    max-width: 100%;
    width: 100%;
}

.chooseus-full-width .chooseus-container .chooseus-item {
    width: 25%;
    display: inline-block;
    float: left;
    height: 350px;
    text-align: center;
    position: relative;
    padding: 0;
    margin: 0 auto;
}
.chooseus-canvas-item, .chooseus-item {
    position: relative;
    padding: 0;
    width: 310px;
    height: 350px;
    text-align: center;
    margin: 0 auto;
}

.svg-hexagon {
    width: 310px;
    height: 350px;
}

.hexagon {
    fill: transparent;
    stroke: #f4ef13 ;
    stroke-width: 3;
}

.svg-triangle-dotted {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 256px;
    height: 220px;
}

.triangle-div {
    cursor: pointer;
    fill: none;
    fill-opacity: 0;
    stroke: #ccc;
    stroke-width: 1;
    stroke-dasharray: 4;
}

.svg-triangle-dotted.svg-tri-2 {
    transform: rotate(-30deg) translateY(40px);
    left: -20px;
}

.svg-triangle-dotted.svg-tri-3 {
    transform: rotate(-90deg) translateY(40px);
    left: -30px;
}

.svg-triangle-dotted.svg-tri-4 {
    transform: rotate(-180deg) translateY(-74px);
    left: 27px;
}

.tri {
    top: 28px;
    left: 28px;
    transform: translateY(32px);
    transition: all 0.8s ease-in-out;
}

.tri img {
    transition: all 0.8s ease-in-out;
}

.tri2 {
    clip-path: url(images/Svg/tri2.svg#tri2) !important;
    -webkit-clip-path: polygon(0px 256px, 220px 128px, 0px 0px) !important;
    transition: all 0.8s ease-in-out;
    left: 95px;
    top: 40px;
    width: 220px !important;
    height: 256px !important;
}

.tri2 img{
  left: -70px;
}

.tri3 {
    transition: all 0.8s ease-in-out;
    transform: rotate(-90deg) translateY(40px);
    left: -48px;
    top: 60px;
    background-color: #fff;
}

.tri3 img {
   left: -25px;
    top: -20px;
    width: 130% !important;
    transform: scale(0.9, 0.9) rotate(90deg) translateY(20px);
    background-color: #fff;
}

.tri4 {
    transition: all 0.8s ease-in-out;
    transform: rotate(-180deg) translateY(-74px);
    left: 27px;
    top: -10px;
}

.tri4 img {
    width: 130% !important;
    left: -25px;
    transform: scale(0.8, 0.8) rotate(180deg) translateY(40px) translateX(20px);
}

.triangle-img-warp {
    width: 256px;
    height: 220px;
    overflow: hidden;
    position: absolute;
    clip-path: url(images/Svg/triangle.svg#svgClip);
    -webkit-clip-path: polygon(0px 220px, 256px 220px, 128px 0px);
}

.triangle-img-warp img {
    width: 170%;
    max-width: 170%;
    transition: all 0.8s ease-in-out;
    display: block;
    position: absolute;
}

.project-terms {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 48px;
    display: block;
}

.project-terms a {
    display: inline-block;
    padding: 0 15px;
}

.project-terms a.current h4,
.project-terms a:hover h4 {
    color: #fff;
}

.project-terms a h4 {
    display: inline-block;
    position: relative;
    color: #555;
    font-size: 13px;
    padding: 0 5px;
    z-index: 9;
}

.project-terms a h4:before {
    content: "";
    width: 0px;
    height: 3px;
    background: #ec7d22;
    transition: all 0.6s ease 0s;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -1;
    top: 5px;
}

.line-effect-2 a h4::before {
    height: 25px;
    top: -6px;
}

.line-effect-2 a:hover h4::before {
    width: 100% !important;
    height: 25px !important;
    top: -6px !important;
    background: #ec7d22 !important;
}

.project-terms a:hover h4:before {
    content: "";
    width: 100%;
    height: 3px;
    background: rgba(235, 205, 30, 0.9);
}

.project-terms a.current h4:before {
    content: "";
    width: 100%;
    height: 25px;
}

.projectContainer .element-item {
    width: 25%;
    position: relative;
    transform-style: preserve-3d;
}

.projectContainer .element-item .project-info {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s ease 0s;
    top: 0;
    left: 0;
}

.projectContainer .element-item:hover .project-info {
    opacity: 1;
    background: rgb(217 121 43 / 77%);
}

.projectContainer .element-item .project-info a {
    display: block;
    position: relative;
    top: 40.5%;
    transform: translateY(-50px);
    text-align: center;
    transition: all 0.6s ease 0s;
}

.projectContainer .element-item:hover .project-info a {
    transform: translateY(0%);
}

.projectContainer .element-item .project-info h4{
  color: #fff;
    font-weight: 400;
}

.projectContainer .element-item .project-info a.cateProject {
    font-size: 15px;
    line-height: 18px;
    color: #fff;
    position: relative;
    top: 41%;
    transform: translateY(50px);
    text-align: center;
    display: block;
    transition: all 0.6s ease 0s;
}

.projectContainer .element-item:hover .project-info a.cateProject {
    transform: translateY(0%);
}

.overlay-arc {
    width: 100%;
    height: 220px;
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-image: url(../images/overlay-bg.jpg);
    margin-top: -1px;
}

.layer-1 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f7a81ced;
    color: #000;
}

.layer-1 .ot-btn {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    color: #fff;
}

.layer-1 .ot-btn:hover{
  background-color: #fff;
  color: #333;
}

.lastest-blog-container {
    margin-top: 23px;
    display: inline-block;
}

.latest-blog-post-img {
    position: relative;
    max-height: 220px;
    overflow: hidden;
    border-radius: 3px;
}

.latest-blog-post-img img {
    transition: all 0.6s ease 0s;
}

.latest-blog-post-img:hover img {
    transform: scale(1.1, 1.1);
}

.latest-blog-post-date {
    display: block;
    position: absolute;
    top: 0;
    left: 15px;
    background-color: #f8a81c;
    color: #fff;
    text-align: center;
    width: 50px;
    height: 50px;
}

.latest-blog-post-date span.day {
    display: block;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 4px;
}

.latest-blog-post-date span.month {
    display: block;
    font-size: 12px;
    margin-top: -11px;
}

.latest-blog-post-description h3 {
  margin-bottom: 12px;
    transition: all 0.6s ease 0s;
    margin-top: 0;
    letter-spacing: 0px;
    color: #333;
    font-size: 20px;
    line-height: 25px;
}

.overlay-3 {
    background-image: url(../images/overlay-3.jpg);
    height: 418px;
}

.box-content-overlay-3 {
    position: relative;
    width: 100%;
    height: 180px;
    top: 50%;
    transform: translateY(-50%);
}

.box-content-overlay-3 h2 {
    margin: 0 auto;
    font-weight: 300;
    line-height: 48px;
    max-width: 80%;
}

.box-content-overlay-3 .btn-dark-color {
    position: static;
    transform: none;
    margin-top: 40px;
}

.branditems .item{
  background-color: #fff;
  padding: 10px;
}

.branditems img {
    margin: 0 auto;
    opacity: .9;
    transition: all 0.6s ease 0s;
    max-height: 100px;
    width: auto !important;
    cursor: pointer;
}

/*Testimonial*/
.section-testimonials {
    background-image: url(../images/testimonials_bg.jpg);
    color: #f5f5f5;
}

.testimonials-item{
    text-align: center;
}
.testimonials{
  display: inline-block !important ;
  margin-top: 30px
}

.testimonials-item .avarta{
    width: 130px;
    height: 130px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.2);
    margin: auto;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.12);
    position: relative;
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

.testimonials-item .avarta img{
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonials-item h3{
    padding: 20px 0;
    font-size: 20px;
}

.testimonials-item .description{
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .owl-dots {
    text-align: center;
    margin-top: 20px;
}
.testimonials .owl-dot.active{
    background: rgba(255, 255, 255, 0.2) !important;
}

.testimonials .owl-dot.active span{
    background: #fff !important
}

.testimonials .owl-dot {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0 4px;
    border: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    padding: 5px !important;
    background: transparent !important;
}

.testimonials .owl-dot span {
    border: none;
    display: block;
    text-indent: -9999em;
    width: 6px;
    height: 6px;
    padding: 0;
    background: #dedede;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.block-contact {
    display: inline-block;
    width: 100%;
    margin-top: 40px;
}

.block-contact .item-block-contact {
    background: #f5f5f5;
    padding: 35px 30px;
}

.block-contact .item-block-contact span {
    font-size: 46px;
    color: #333;
    padding-bottom: 10px;
    display: block;
}

.block-contact .item-block-contact p {
    color: #555;
}

.form-contact {
    margin-top: 70px;
}
.form-contact h3 {
    font-weight: 300;
    color: #333b47;
    margin-bottom: 40px;
}

.form-contact-arc input.form-control {
    width: 100%;
    height: 50px;
    font-size: 15px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 10px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    outline: none;
    transition: all 0.6s ease 0s;
}

.form-contact .form-textarea {
    width: 100%;
    margin-top: 20px;
}

.form-contact-arc textarea.form-control {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    font-size: 15px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    outline: none;
    transition: all 0.6s ease 0s;
    resize: vertical;
}

.form-contact .btn-submit {
    transition: all 0.6s ease 0s;
    border: 0;
    outline: none;
    box-shadow: none;
    margin: 0 auto;
    margin-top: 30px;
    letter-spacing: 2px;
}

.section-footer{
  padding: 15px 0;
    background-color: #333;
    width: 100%;
}

.section-footer #footer{
      position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.section-footer .logo img{
  max-height: 80px;
}

.section-footer .main-navi{
  margin: 0;
}

.slogan{
  display: none
}

.copyright {
    line-height: 24px;
    text-align: center;
    color: #fff;
    background-color: #222;
    margin: 0;
    padding: 25px 0 15px;
}

.copyright p{
  margin: 0;
}

.copyright a {
    color: #fcf300;
    transition: all 0.6s ease 0s;
}

.copyright a:hover{
    color: #d8d108;
}

.socialList{
  padding: 0;
  margin: 0;
}

.socialList li {
    display: inline-block;
}

.socialList li a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: block;
    line-height: 36px;
    text-align: center;
    font-size: 15px;
    margin-left: 5px;
    transition: all 0.6s ease 0s;
}

.socialList li a:hover {
    background:#ec7d22;
}

.section-footer .main-navi > li:first-child{
  display: none
}

.section-footer .main-navi > li a{
  font-size: 13px;
    padding: 0 20px;
    color: #fff;
}

/* breadcrumb */
.third-nav{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 200px;
    background-image: url(../images/breadcrumbs-bg.jpg);
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    transform-style: preserve-3d;
}

.breadcrumbs-wrap{
  position: relative;
    top: 52%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.breadcrumbs-wrap h2{
  font-weight: 300;
  margin-top: 0;
    color: #fff;
    text-transform: uppercase;
}

.breadcrumbs {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    float:left;
}

.breadcrumbs a, .show-subs-breadcrumbs {
    position: relative;
    font-size: 13px;
    color: #f8a81c;
    transition: all 0.6s ease 0s;
    text-transform: uppercase;
}

.breadcrumbs li+li:before {
    content: "/\00a0";
    padding: 0 5px;
    color: #ccc;
}

.breadcrumbs li:last-child a{
  color: #ccc;
}

.subs-breadcrumbs{
    margin: 0;
    padding: 0;
    background-color: #fff linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.1) 100%);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: 0 0;
    position: absolute;
    left: 0;
    top: 40px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1);
    border-top: none;
    box-shadow: 0 0.063em 0.25em rgba(7, 20, 34, 0.25);
    display: none;
    z-index: 999999;
}

.subs-breadcrumbs.open{
    display: block;
}

.subs-breadcrumbs li:last-child,
.subs-breadcrumbs li:last-child a,
.subs-breadcrumbs{
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.subs-breadcrumbs li, .subs-breadcrumbs a {
    display:block;
    float:none;
}

.subs-breadcrumbs a{
    line-height:40px;
    height:40px;
    overflow: hidden;
    padding:0 10px;
}

.subs-breadcrumbs li:not(:last-child) a{
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0,0,0,0.1);
}

.subs-breadcrumbs a:hover{
    background-color: rgba(0,0,0,0.1)
}

.subs-breadcrumbs a em{
    display: inline-block;
    margin-right: 5px;
    color: #707070;
}

.show-subs-breadcrumbs{
    padding-right: 5px;
    margin-right: 7px;
    width: 30px;
    text-align: center;
}
.page h1{
  font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-item {
    margin-bottom: 30px;
}

.service-item .img-block {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-item .img-block img{
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.service-item .text-box {
    margin-top: 25px;
    padding: 0;
}

.service-item h3{
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #333;
 font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.service-item h3:hover{
  color: #f8a819;
}

.sidebar-services ul{
  position: relative;
  margin: 0;
  padding: 0;
}

.sidebar-services li {
    display: block;
    width: 100%;
    background: #f2f2f2;
    transition: all 0.1s;
    margin-bottom: 5px;
    border-right: 4px solid transparent;
}
.sidebar-services li.active {
    border-right: 4px solid #e0df2d;
    background: #05458e;
}
.sidebar-services li a {
    color: #555555;
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 15px;
    transition: all 0.1s;
}
.sidebar-services li.active a {
    color: #e0df2d;
}

.box-question-sidebar {
    display: block;
    width: 100%;
    padding: 40px 25px;
    font-size: 18px;
    color: #333;
    line-height: 26px;
    border: 1px solid #e5e5e5;
    margin-top: 45px;
}

/*service*/
.service h1{
  font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0
}

.service h2{
  font-size: 20px;
}

.service .hometext{
  font-weight: 500;
  margin-bottom: 10px;
}

.service ul li{
  margin-bottom: 5px;
}
/* Back To Top */
#to-the-top {
  display: none;
  position: fixed;
  text-align: center;
  right: 30px;
  bottom: 30px;
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
  z-index: 10000;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  background-repeat: no-repeat;
  background-position: center;
  transition: background-color 0.1s linear;
}
#to-the-top:hover {
  background-color: #ebcd1e;
  color: #333;
}

.chromeframe {
    position:fixed !important;
    top:0 !important;
    right:0;
    left:0;
    width:100% !important;
    z-index:99999999999999 !important;
    background-color:#ffff00 !important;
    color:#000 !important;
    height:25px;
    line-height:25px;
    padding:0.2em 0;
    text-align:center !important;
}

#timeoutsess {
    display:none;
}

#timeoutsess a {
    color:#2f70a7 !important;
}

.mobile-menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9999;
    display: none;
}
.mobile-menu-wrap {
    width: 280px;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 99999;
    visibility: hidden;
    transform: translateX(100%);
}
.mobile-menu-wrap.animate {
    -webkit-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
    -webkit-transform: translateX(-280px);
    -ms-transform: translateX(-280px);
    -o-transform: translateX(-280px);
    transform: translateX(-280px);
}
.mobile-menu-wrap .logo {
    padding: 12px 10px;
    text-align: center;
    background-color: #222;
}
.mobile-menu-wrap .logo img {
    height: 55px;
    width: auto;
    display: inline-block;
}
.mobile-menu-wrap .menu {
    height: calc(100vh);
    overflow: auto;
    background: #333;
}
.mobile-menu-toggle-btn {
    position: absolute;
    top: 40px;
    right: 20px;
    display: none;
    z-index: 999;
}
.mobile-menu-toggle-btn svg {
    display: inline-block;
    width: 60px;
    height: 32px;
    vertical-align: middle;
}


.fix-support {
    position: fixed;
    bottom: 20px;
    left: 15px;
    z-index: 9;
}

.fix-support ul {
    margin: 0;
}

.fix-support li {
    margin-bottom: 16px;
    list-style: none;
}
.fix-support img{
  height: 44px;
  width: auto
}
.fix-support span {
    display: none;
}