@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* Reset Browsers
-------------------------------------------------------------- */
html {
    margin-right: 0 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 1.625;
    font-weight: 400;
    color: #494A4D;
    background-color: #F6F6F6;
}
pre {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
}
.content-detail span{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    border-radius: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 700;
    color: rgb(42 1 1);
}

h1 {
    font-size: 72px;
    line-height: 1.18;
}

h2 {
    font-size: 48px;
    line-height: 1.25;
}

h3 {
    font-size: 30px;
    line-height: 1.333;
}

h4 {
    font-size: 22px;
    line-height: 1.454;
}

h5 {
    font-size: 20px;
    line-height: 1.5;
}

h6 {
    font-size: 16px;
    line-height: 1.75;
}

.container {
    max-width: 1550px;
}

.z-index {
    z-index: 999;
}

#wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

ul, li {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: unset;
    cursor: pointer;
    display: inline-block;
}
a:hover {
    color: #E14D36;
}

.center {
    text-align: center;
}

.container {
    width: 100%;
    margin: auto;
}

.container-fluid,
.container {
    padding-left: 15px;
    padding-right: 15px;
}

input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
    border: 1px solid rgba(255, 255, 255, 0.2);
    /*font-family: "Inter", sans-serif;*/
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
    line-height: 26px;
    border-radius: 4px;
    padding: 13px 15px 13px 27px;
    height: 60px;
    width: 100%;
    background: #F6F6F6;
    color: rgb(42 1 1);
}
textarea {
    border: 1px solid rgba(255, 255, 255, 0.2);
    /*font-family: "Inter", sans-serif;*/
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
    line-height: 26px;
    border-radius: 4px;
    padding: 13px 15px 13px 27px;
    width: 100%;
    background: #F6F6F6;
    color: rgb(42 1 1);
}
textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
    /*font-family: "Roboto Slab", serif;*/
    font-size: 16px;
    line-height: 26px;
    color: rgb(42 1 1);
}

/* Scroll Top
-------------------------------------------------------------- */
#scroll-top {
    position: fixed;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 4px;
    text-align: center;
    z-index: 999;
    right: 14px;
    bottom: 23px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    overflow: hidden;
}

#scroll-top.show {
    right: 15px;
    opacity: 1;
    visibility: visible;
}

#scroll-top:before,
#scroll-top:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#scroll-top:before {
    z-index: -1;
    background: #E14D36;
}

#scroll-top:after {
    content: "\f077";
    font-family: "Font Awesome 5 Pro";
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
}

#scroll-top:hover {
    transform: translateY(-7%);
}

/* flat-accordion
-------------------------------------------------------------- */
.flat-accordion .flat-toggle {
    position: relative;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #F6F6F6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.flat-accordion .flat-toggle .toggle-title {
    font-size: 16px;
    padding: 10px 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    height: 60px;
    margin: 10px 0px;

}
/*
.flat-accordion .flat-toggle .toggle-title::after {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  color: #E14D36;
  vertical-align: middle;
}

 */
a.title-accord-link{
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 74%;
    font-size: 15px;
    color: #562212;
}
a.title-accord-link:hover{
    color: #E14D36;
}
.flat-accordion .flat-toggle .toggle-title .number,
.toggle-content .number{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #E14D36;
    font-size: 16px;
    font-weight: bold;
    margin-right: 4px;
}
.toggle-content{
    font-weight: 600;
    font-size: 16px;
}
.flat-accordion .flat-toggle .toggle-title.active {
    color: #562212;
}
/*
.flat-accordion .flat-toggle h6.toggle-title.active::after {
  color: #fff;
}
*/
.flat-accordion .flat-toggle .toggle-content {
    padding: 0px 15px 20px 15px;
    margin-top: -7px;
    display: none;
    color: #D1D2D3;
    margin-bottom: 0;
}
.toggle-content li:nth-child(2){
    margin-top: 7px;
}
.toggle-content span.show-all-li{
    opacity: 0;
}
.toggle-content li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flat-accordion .flat-toggle.active {
    background: #F6F6F6;
    box-shadow: none !important;
}
.flat-accordion .flat-toggle:last-child {
    margin-bottom: 0;
}
.flat-accordion.style2 .flat-toggle {
    background: #fff;
    box-shadow: 0 10px 70px 0 rgb(0 0 0 / 7%);
}
/*
.flat-accordion.style2 .flat-toggle.active {
  background: #E14D36;
}

.flat-accordion.style2 .flat-toggle.active h6.toggle-title .number {
  color: #fff;
}
*/
.flat-accordion.style2 .flat-toggle .toggle-title {
    padding: 17px 60px 17px 62px;
}
.flat-accordion.style2 .flat-toggle .toggle-title .number {
    left: 30px;
}
.flat-accordion.style2 .flat-toggle .toggle-content {
    padding: 0px 30px 30px 62px;
    margin-top: -2px;
    color: rgb(42 1 1);
}
.toggle-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header.main {
    background: transparent;
}

.header__logo {
    transform: translateY(14px);
    border-radius: 10px;
    background: #E14D36;
    padding: 36px 39.5px;
    z-index: 99;
}
.man-photo{
    max-width: 430px;
    width: 100%;
}

.header {
    position: relative;
    /*
  box-shadow: 0 10px 70px 0 rgba(0, 0, 0, 0.1);
  */
    width: 100%;
    z-index: 1000;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .container {
    max-width: 1650px;
}
.header #site-header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
#header_main #site-header-inner {
    justify-content: space-between;
}
.header #site-header-inner .tf-button {
    margin-left: auto;
}
/*
.header .main-nav {
  position: absolute;
  left: 43%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 17px;
}

 */
.header .header-contact {
    margin-left: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header .header-contact .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #E8E8E9;
    margin-right: 15px;
    animation: pulse 1s infinite linear;
}
.header .header-contact .icon .icon-Icon {
    font-size: 25px;
}
.header .header-contact .desc {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
    color: #494A4D;
    /*font-family: "Roboto Slab", serif;*/
}
.header .header-contact .desc span {
    color: rgb(42 1 1);
    font-size: 18px;
    line-height: 28px;
    margin-right: 9px;
}
.header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /*
     margin-left: auto;
    */
    color: #562212;
}
.header-right__button {
    display: flex;
    align-items: center;
}
.header-right__img {
    width: 25px;
    margin-right: 10px;
}
.header.style3 {
    position: absolute;
    left: 0;
    height: 140px;
    display: block;
}
.header.style3 .container {
    max-width: 1550px;
}
.header.style3 #site-header-inner {
    position: relative;
    height: 90px;
    justify-content: space-between;
}
.header.style3 .main-nav {
    left: 30%;
    padding-left: 14px;
}
.top-bar-product .user-form select,
.section-calculator .user-form select{
    line-height: 32px;
    height: auto;
    white-space: break-spaces;
}
.tell {
    position: relative;
    padding-left: 45px;
    padding-right: 30px;
}
.tell li {
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
}
.tell li:nth-child(1) {
    font-size: 13px;
    line-height: 16px;
    color: #E14D36;

    margin-bottom: 5px;
}
.tell li:nth-child(2) {
    font-size: 19px;
    line-height: 20px;
    color: rgb(42 1 1);
}
.tell::after {
    position: absolute;
    font-family: "monal";
    content: "\e905";
    left: 0;
    top: 0px;
    font-weight: 500;
    font-size: 30px;
    color: #E14D36;
    /* height: 40px; */
}
.header.style3 .header-search {
    position: relative;
    padding-right: 40px;
    margin-right: 40px;
}
.header.style3 .header-search::after {
    position: absolute;
    content: "";
    right: 0;
    background: rgb(42 1 1);
    opacity: 0.1;
    top: -17px;
    width: 1px;
    height: 90px;
}
.header.style3 .header-search .menu-bar-right,
.header.style3 .header-search .icon-Vector {
    background: -webkit-gradient(linear, left top, left bottom, from(#E14D36), to(#E14D36));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header.style3 .header-search .menu-bar-right {
    margin-left: 30px;
    transform: translateY(-1px);
    font-size: 21px;
}
.header.style3 .header-search .top-search {
    top: 132%;
    right: 0px;
}

#main-nav .menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
#main-nav .menu li {
    position: relative;
    margin-right: 40px;
}
#main-nav .menu li a {
    font-size: 16px;
    line-height: 1.625;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    position: relative;
    display: block;
    color: #000;
    padding-right: 12px;
    padding-top: 18px;
    padding-bottom: 20px;

}
#main-nav .menu li a:hover {
    color: #E14D36;
}
#main-nav .menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}
#main-nav .menu li:hover .sub-menu-children {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}
#main-nav .menu li.menu-item-has-children > a::after {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f067";
    right: -7px;
    top: 50%;
    font-weight: 500;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    color: rgb(42 1 1);

}
#main-nav .menu li.menu-second-children > a::after {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f067";
    right: -7px;
    top: 50%;
    font-weight: 500;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 12px;
    color: rgb(42 1 1);

}

#main-nav .menu li.menu-item-has-children > a:hover::after, #main-nav .menu li.menu-item-has-children > a:hover {
    color: #E14D36;
}
#main-nav .menu li.menu-second-children > a:hover::after, #main-nav .menu li.menu-second-children > a:hover {
    color: #E14D36;
}

#main-nav .menu li.menu-item.current-menu-item > a {
    color: #E14D36;
    font-weight: 600!important;
}
#main-nav .menu li.menu-item.current-menu-item > a::after {
    color: #E14D36;
}

#main-nav2 .menu li a {
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    display: block;
    color: #fff;
    padding-right: 18px;

    padding-top: 20px;
    padding-bottom: 20px;
}
#main-nav2 .menu li a:hover {
    color: #E14D36;
}

/* Header Fixed
-------------------------------------------------------------- */
#header_main.is-fixed {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 999;
    opacity: 0;
    position: fixed;
    top: -140px;
    left: 0;
    width: 100%;
    background-color: #fff;
    visibility: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), inset 0px 1px 0px #ECECEC;
}
#header_main.is-fixed.is-fixed.is-small {
    top: 0px;
    opacity: 1;
    visibility: visible;
}

#header_main.main.is-fixed {
    background-color: #190d3e;
}

.header.main.is-fixed .tf-button span.tl::before,
.header.main.is-fixed .tf-button span.tl::after {
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #190d40 !important;
}

.header-search .show-search .icon-Vector {
    opacity: 1;
    color: rgb(42 1 1);
    font-size: 20px;
}

.top-search {
    position: absolute;
    right: -16px;
    top: 150%;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 70px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 5px;
}
.top-search-header {
    border-radius: 5px;
    border: 1px solid #c9ccd4;
}
.top-search .search-form {
    position: relative;
}
.top-search .search-form .search-field:focus,
.top-search .search-form .search-field,
.top-search-header .search-form .search-field:focus,
.top-search-header .search-form .search-field{
    background: #fff;
    color: rgb(42 1 1);
    width: 100%;
    padding-left: 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    line-height: 23px;
    padding: 13px 50px 13px 15px;
}
.top-search .search-form .search-field::placeholder ,.top-search-header .search-form .search-field::placeholder {
    color: rgb(42 1 1);
    line-height: 26px;
    font-size: 16px;
}
.top-search .search-form .search , .top-search-header .search-form .search {
    position: absolute;
    right: 30px;
    top: 15px;
    border: none;
    background: transparent;
}
.modal-header.search-modal{
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}
.modal-header {
    border-bottom: 1px solid #E6DACC;
}
.top-search .search-form .search i , .top-search-header .search-form .search i{
    opacity: 1;
    color: rgb(42 1 1);
    font-size: 18px;
}
.top-search.show {
    visibility: visible;
    filter: alpha(opacity=100);
    opacity: 1;
}

/* tf-button
-------------------------------------------------------------- */
.tf-button {
    z-index: 3;
    position: relative;
    display: inline-block;
    background: #E14D36;
    color: #fff;
    padding: 0px 43px;
    height: 60px;
    border: none;
    border-radius: 6px;
    line-height: 60px;
}
.header__tf-button {
    z-index: 3;
    position: relative;
    display: inline-block;
    background: #E14D36;
    color: #fff;
    font-weight: 500;
    padding: 15px 10px;
    border: none;
    border-radius: 4px;
}
.tf-button span {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    /*font-family: "Roboto Slab", serif;*/
    font-size: 16px;
    line-height: 1.31875;
    color: #fff;
}
.tf-button:hover {
    background: #E14D36;
    color: #fff;
}
.tf-button:hover span {
    color: #fff;
}

.btn-effect1 .tf-button {
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    background: transparent;
}
.btn-effect1 .tf-button::after {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: absolute;
    border-radius: 30px;
    content: "";
    background: linear-gradient(246.06deg, #CF00FE -19.26%, #E14D36 87.05%);
    background-size: 100% 100%;
    background-position: 100% 100%;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0;
    z-index: -1;
}
.btn-effect1 .tf-button:hover::after {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-size: 300% 100%;
    background-position: 100% 100%;
}

/* animation slider */
.gallery-slider2 .image {
    transform: translateY(30px);
    opacity: 0;
}


.box-slider .image {
    transform: translateX(100px);
    opacity: 0;
}

.swiper-slide-active .box-slider .image {
    opacity: 1;
    visibility: visible;
    -webkit-transition: transform 500ms ease, opacity 500ms ease;
    -moz-transition: transform 500ms ease, opacity 500ms ease;
    -ms-transition: transform 500ms ease, opacity 500ms ease;
    -o-transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition-delay: 500ms;
}

.gallery-slider2 .swiper-slide-active .image,
.swiper-slide-active .box-slider .content-box .btn-slider,
.swiper-slide-active .box-slider .content-box .desc,
.swiper-slide-active .box-slider .content-box .title,
.swiper-slide-active .box-slider .content-box .sub-title {
    opacity: 1;
    visibility: visible;
    -webkit-transition: transform 800ms ease, opacity 800ms ease;
    -moz-transition: transform 800ms ease, opacity 800ms ease;
    -ms-transition: transform 800ms ease, opacity 800ms ease;
    -o-transition: transform 800ms ease, opacity 800ms ease;
    transition: transform 800ms ease, opacity 800ms ease;
    transition-delay: 1000ms;
}

.gallery-slider2 .swiper-slide-active .image,
.swiper-slide-active .box-slider .content-box .btn-slider,
.swiper-slide-active .box-slider .content-box .desc,
.swiper-slide-active .box-slider .content-box .title,
.swiper-slide-active .box-slider .content-box .sub-title {
    transform: translateY(0px) !important;
}

.swiper-slide-active .box-slider .image {
    transform: translateX(0px) !important;
}

.gallery-slider2 .swiper-slide-active .image {
    transition-delay: 300ms;
}

.swiper-slide-active .box-slider .image,
.swiper-slide-active .box-slider .content-box .sub-title {
    transition-delay: 400ms;
}

.swiper-slide-active .box-slider .content-box .title {
    transition-delay: 500ms;
}

.swiper-slide-active .box-slider .content-box .desc {
    transition-delay: 600ms;
}

.swiper-slide-active .box-slider .content-box .btn-slider {
    transition-delay: 700ms;
}

/* title-section
-------------------------------------------------------------- */
.title-section {
    margin-bottom: 60px;
}
.title-section .sub-title {
    padding-left: 70px;
    position: relative;
    display: inline-block;
    text-align: center;
    color: #9000FF;
    font-size: 16px;
    line-height: 26px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;

}
.title-section .sub-title::before {
    position: absolute;
    height: 4px;
    width: 60px;
    content: "";
    left: 0;
    top: 11px;
    transform: rotate(-180deg);
    background: linear-gradient(246.06deg, #E14D36 15.37%, rgba(255, 255, 255, 0) 116.95%);
}
.title-section .title.white {
    color: #fff;
}
.title-section .title.txt-capitalize {

}
.title-section.style2 {
    text-align: left;
}

/* breadcrumbs
-------------------------------------------------------------- */
.breadcrumbs {
    text-align: center;
}
.breadcrumbs .heading {
    font-size: 34px;
    margin-bottom: 20px;
}
.breadcrumbs ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.tf-fixed_events{
    padding: 30px 0px;
    border-top: 1px solid #f6f6f6;
}
span.show-all-li:after{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 20px;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 100;
    color: #E14D36;
    vertical-align: middle;
}
.breadcrumbs ul li {
    /*font-family: "Roboto Slab", serif;*/
    position: relative;
    font-size: 18px;
    line-height: 1.55;
    color: #E14D36;
    font-weight: 700;
}
.breadcrumbs ul li:not(:last-child){
    padding-right: 15px;
    margin-right: 10px;
}
.breadcrumbs ul li:not(:last-child)::before {
    position: absolute;
    right: 0;
    content: "/";
    color: #562212;
}
.breadcrumbs ul li a {
    color: #562212;
}
.breadcrumbs ul li a:hover {
    color: #E14D36;
}

/* page-title
-------------------------------------------------------------- */
.page-title {
    position: relative;
    padding: 20px 0 20px;
    background: rgba(1, 12, 42, 0.342);
}
.page-title .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/fon-news-2.png") no-repeat 50% 10% , #f6f6f6;
    background-size: cover;
    z-index: -1;
    animation: bg-animation 25s ease-in-out infinite;
}
@keyframes bg-animation {
    0% {
        background-size: 120%;
        background-position: 50% 50%
    }
    20% {
        background-size: 150%;
        background-position: 0 50%;
    }
    40% {
        background-size: 110%;
        background-position: 20% 80%;
    }
    60% {
        background-size: 160%;
        background-position: 60% 10%;
    }
    80% {
        background-size: 120%;
        background-position: 40% 70%;
    }
    100% {
        background-size: 120%;
        background-position: 50% 50%
    }
}
/*
.tf-product article,
.tf-post article {
  width: 66%;
  padding-right: 2px;
}
.tf-product #sidebar,
.tf-post #sidebar {
  width: 34%;
  padding-left: 48px;
}
*/
.tf-product #comments article,
.tf-post #comments article {
    width: 100%;
}

/* themesflat-pagination
-------------------------------------------------------------- */
.themesflat-pagination ul {
    display: flex;
}
.themesflat-pagination ul li {
    margin-right: 10px;
}
.themesflat-pagination ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid #E14D36;
    border-radius: 50%;
    font-size: 16px;
    line-height: 24px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: bold;
    color: #E14D36;
}
.themesflat-pagination ul li a:hover, .themesflat-pagination ul li a.active {
    background: #E14D36;
    color: #fff;
}
.themesflat-pagination ul li.st {
    font-size: 16px;
    line-height: 24px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: bold;
    color: #000000;
    padding-top: 13px;
    margin: 0 9px 0 18px;
}
.themesflat-pagination ul li:last-child {
    margin-left: 20px;
}

/* box-slider
-------------------------------------------------------------- */
.box-slider {
    display: flex;
}
.box-slider .image,
.box-slider .content-box {
    width: 100%;
}
.box-slider .image {
    text-align: right;
}
.svg-clipped {
    -webkit-clip-path: url(#svgPath);
    clip-path: url(#svgPath);
}
/*
.box-slider .image .img::after {
  position: absolute;
  top: 0;
  left: 0;
  border: 15px solid #fff;
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: 0 20px 70px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
*/
.box-slider .content-box {
    padding-top: 110px;
    padding-right: 30px;
}
.box-slider .content-box .sub-title {
    color: #9000FF;

    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    padding-left: 80px;
    position: relative;
}
.box-slider .content-box .sub-title::before {
    position: absolute;
    height: 4px;
    width: 60px;
    content: "";
    left: 0;
    top: 12px;
    transform: rotate(-180deg);
    background: linear-gradient(246.06deg, #CF00FE 15.37%, rgba(255, 255, 255, 0) 116.95%);
}
.box-slider .content-box .title {

    margin-bottom: 30px;
}
.box-slider .content-box .desc {
    font-size: 20px;
    line-height: 32px;

    padding-right: 100px;
    margin-bottom: 51px;
}
.box-slider .content-box .tf-button {
    padding: 0px 42px;
}

.img-about {
    position: relative;
}
.img-about .experience-box {
    max-width: 290px;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgb(42 1 1);
    border-radius: 5px;
    padding: 50px 40px 42px;
}
.img-about .experience-box .number-content {
    margin-bottom: 20px;
    font-size: 70px;
    line-height: 80px;
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/
    color: #fff;
}
.img-about .experience-box p,
.img-about .experience-box h5 {
    color: #fff;
}
.img-about .experience-box h5 {
    margin-bottom: 20px;
}
.img-about .experience-box p {

    padding-left: 20px;
    margin-bottom: 0;
    position: relative;
}
.img-about .experience-box p::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #C4C4C4;
}

.inner-page .title-section .sub-title {

    color: #E14D36;
}

.content-about .wrap-icon-box {
    border-bottom: 1px solid #E8E8E9;
    padding-bottom: 40px;
    margin-bottom: 40px;
    margin-top: 44px;
}
.content-about .wrap {
    padding-right: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content-about .wrap .img-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.content-about .wrap .img-box .img {
    margin-right: 20px;
}
.content-about .wrap .img-box .name {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    /*font-family: "Roboto Slab", serif;*/
    color: rgb(42 1 1);

}
.content-about .wrap .img-box p {
    margin-bottom: 0;
    color: #E14D36;
    font-size: 14px;
    line-height: 24px;
}

.testimonior-content .txt-transform {
    color: #fff;
}

.tf-section.get-solution {
    padding: 0;
}

.get-solution {
    position: relative;
    background: rgb(10 10 10 / 32%);
}
.get-solution .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/banner-consult1.jpg") center center no-repeat;
    background-size: cover;
    z-index: -2;
}
.get-solution .title-section {
    padding: 60px 0;
    text-align: left;
    margin-bottom: 0;
    margin-top: 10px;
}
.get-solution .title-section .title {
    margin-right: -60px;
    color: #fff;

    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.get-solution .title-section p {
    color: #E8E8E9;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-bottom: 37px;

}
.get-solution .title-section .tf-button {
    padding: 0px 41px;
}
.get-solution .image {
    margin-top: -50px;
    margin-right: -116px;
    text-align: right;
}
.get-solution .image img {
    animation: move3 3s infinite linear;
}

/* #top-bar
-------------------------------------------------------------- */
#top-bar {
    background: #F6F6F6;
}
#top-bar .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#top-bar .topbar-inner .left ul li ,
.left.mobile-inner ul li{
    font-size: 14px;
    line-height: 24px;
    color: #585757;
    /* font-family: "Roboto Slab", serif; */
    position: relative;
    font-weight: 400;
}
#top-bar .topbar-inner .left ul li span ,
.left.mobile-inner ul li span{
    margin-left: 5px;
    color: #000;
}
#top-bar .topbar-inner .left ul li::before ,
.left.mobile-inner ul li::before {
    position: absolute;
    font-family: "monal";
    left: 0;
    top: 0;
    color: #E14D36;
}
#top-bar .topbar-inner .left ul li:nth-child(1) {
    margin-right: 30px;
    padding-right: 34px;
}
#top-bar .topbar-inner .left ul li:nth-child(2) {
    padding-left: 0px;
}
#top-bar .topbar-inner .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.topbar-inner__img {
    width: 20px;
}
.left.mobile-inner{
    padding: 0px 20px;
}
.left.mobile-inner ul li{
    margin-bottom: 15px;
}
.left.mobile-inner ul li span{
    font-size: 15px;
}
#top-bar .topbar-inner .right .language {
    position: relative;
    padding-left: 25px;
    padding-right: 30px;
}
#top-bar .topbar-inner .right .language::before {
    position: absolute;
    content: "\e916";
    font-family: "monal";
    left: 0;
    top: 8px;
    color: #E14D36;
    font-size: 20px;
}
#top-bar .topbar-inner .right .language::after {
    position: absolute;
    right: 0;
    content: "";
    background: #C4C4C4;
    width: 1px;
    height: 20px;
    top: 15px;
}
#top-bar .topbar-inner .right .language > a {
    text-decoration: none;
    color: rgb(42 1 1);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    /*font-family: "Inter", sans-serif;*/
    position: relative;
    padding: 12px 16px 12px 6px;
}
#top-bar .topbar-inner .right .language > a::after {
    position: absolute;
    right: 0;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
}
#top-bar .topbar-inner .right .language .dropdown-menu.list-chooser {
    opacity: 0;
    z-index: 9999;
    top: 100%;
    transform: translate(0px, 49px) !important;
    margin-top: 0 !important;
    left: auto;
    right: 0;
    position: absolute;
    width: 150px;
    max-width: 150px;
    min-width: 150px;
    background: #fff;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0px 70px 0 rgba(0, 0, 0, 0.07);
}
#top-bar .topbar-inner .right .language .dropdown-menu.list-chooser li {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#top-bar .topbar-inner .right .language .dropdown-menu.list-chooser li:hover, #top-bar .topbar-inner .right .language .dropdown-menu.list-chooser li.active {
    background: #E14D36;
    color: #fff;
}
#top-bar .topbar-inner .right .language .dropdown-menu.list-chooser li a {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    /*font-family: "Roboto Slab", serif;*/
    position: relative;
    padding-right: 20px;
}
#top-bar .topbar-inner .right .language:hover .list-chooser {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
#top-bar .topbar-inner .right .social {
    margin-left: 34px;
}
#top-bar .topbar-inner .right .social li {
    margin-left: 24px;
    margin-right: 3px;
}
#top-bar .topbar-inner .right .social li a {
    width: auto;
    height: auto;
    background: none;
    font-size: 15px;
    color: rgb(42 1 1);
}
#top-bar .topbar-inner .right .social li a:hover {
    color: #9000FF;
}

/* side-menu__block
-------------------------------------------------------------- */
.side-menu__block {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.side-menu__block-inner {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    max-width: 370px;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
    z-index: 999999;
}
.mobile-social{
    padding: 0px 20px;
}

.side-menu__block-inner::-webkit-scrollbar {
    display: none;
}

.side-menu__block-overlay {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    display: none\9 ;
    visibility: hidden;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.side-menu__block.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.side-menu__top.justify-content-end {
    height: 40px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.side-menu__top.justify-content-end a {
    min-height: 40px;
    min-width: 40px;
    background-color: #562212;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu__block.active .side-menu__block-overlay {
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
    display: block\9 ;
    visibility: visible;

    -webkit-transform: translateX(270px);
    -ms-transform: translateX(270px);
    transform: translateX(250px);
    cursor: url(../icon/close-1-1.png), auto;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-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;
}

/* progress-bar
-------------------------------------------------------------- */
.progress-bar {
    text-align: left;
    display: block;
    background: transparent;
}

.progress-title-holder {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 22px;
    height: 50px;
    position: relative;
}
.progress-title-holder .progress-title {
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    margin-top: 18px;
}
.progress-title-holder .progress-number-wrapper .progress-number-mark {
    -moz-transform: translateX(-18%);
    -o-transform: translateX(-18%);
    transform: translateX(-18%);
    -ms-transform: translateX(-18%);
    -webkit-transform: translateX(-18%);
    position: absolute;
    top: 0;
    width: 50px;
    height: 60px;
    background: #E14D36;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 600;
    /*font-family: "Roboto Slab", serif;*/
    background: url("./../../assets/images/backgroup/bgunion.png") center center no-repeat;
    background-size: cover;
}
.progress-title-holder .progress-number-wrapper .progress-number-mark .percent {
    margin-top: -10px;
}

.progress-content-outter {
    height: 18px;
    background-color: transparent;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 2px;
    padding-left: 3px;
}

.progress-content {
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    width: 0%;
}

/* counter
-------------------------------------------------------------- */
.wrap-counter {
    background: linear-gradient(90deg, #E14D36 0%, #E14D36 100%);
    position: relative;
    display: flex;
    padding: 42px 60px 60px;
}
.wrap-counter .box {
    padding-right: 30px;
    width: 25%;
}
.wrap-counter .box .icon {
    margin-bottom: -4px;
}
.wrap-counter .box .icon span {
    font-size: 60px;
    color: #fff;
}
.wrap-counter .box .box-couter .number-content {
    margin-bottom: 10px;
}
.wrap-counter .box .box-couter .number-content span {
    font-size: 48px;
    line-height: 1.125;
    font-weight: 600;
    /*font-family: "Roboto Slab", serif;*/
    color: #fff;
}
.wrap-counter .box .box-couter p {

    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    margin-bottom: 0;
}
.wrap-counter .box:nth-child(2) {
    padding-left: 45px;
}
.wrap-counter .box:nth-child(3) {
    padding-left: 90px;
}
.wrap-counter .box:nth-child(4) {
    padding-left: 133px;
    padding-right: 0;
}

.content-progress-box.style2 .progress-bar {
    margin-bottom: 30px;
}
.content-progress-box.style2 .progress-title-holder {
    height: auto;
    margin-bottom: 14px;
}
.content-progress-box.style2 .progress-title-holder .progress-title {
    color: rgb(42 1 1);
    margin-top: 0;
    font-size: 16px;
    line-height: 26px;
}
.content-progress-box.style2 .progress-title-holder .progress-number-wrapper .progress-number-mark {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: auto;
    background: none;
    color: rgb(42 1 1);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    top: 0;
    right: 0;
}
.content-progress-box.style2 .progress-title-holder .progress-number-wrapper .progress-number-mark .percent {
    margin-top: 0;
}
.content-progress-box.style2 .progress-content-outter {
    border-color: #D1D2D3;
    height: 14px;
}
.content-progress-box.style2 .progress-content {
    height: 6px;
    background: #E14D36;
}

.infor-contact .infomation > li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.infor-contact .infomation > li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "monal";
    color: #E14D36;
    font-size: 50px;
}
.infor-contact .infomation > li:nth-child(1)::before {
    content: "\e940";
}
.infor-contact .infomation > li:nth-child(2)::before {
    content: "\e93f";
}
.infor-contact .infomation > li:nth-child(3)::before {
    content: "\e93e";
}
.infor-contact .infomation > li ul {
    padding-top: 10px;
}
.infor-contact .infomation > li ul li {
    font-weight: 500;
    text-transform: lowercase;
}
.infor-contact .infomation > li ul li.style {

    color: rgb(42 1 1);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    /*font-family: "Roboto Slab", serif;*/
    margin-bottom: 5px;
}
.infor-contact .social li {
    margin-right: 20px;
}
.infor-contact .social li a {
    width: 50px;
    height: 50px;
    background: #F6F6F6;
    color: rgb(42 1 1);
    font-size: 17px;
}
.infor-contact .social li a:hover {
    background: #E14D36;
    color: #fff;
}

.contact-style1 {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 70px 0px #00000012;
    padding: 40px;
}
.contact-style1 .wrap-fx {
    display: flex;
    margin-left: -30px;
    flex-wrap: wrap;
}
.contact-style1 fieldset {
    margin-bottom: 20px;
    width: calc(50% - 30px);
    margin-left: 30px;
    position: relative;
    z-index: 2;
}
.contact-style1 fieldset.massage {
    width: calc(100% - 30px);
    margin-bottom: 23px;
}
.contact-style1 fieldset select,
.contact-style1 fieldset input {
    width: 100%;
    border-radius: 4px;
    height: 60px;
    background: #fff;
    border: 1px solid #5622126e;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 26px;
    padding: 5px 20px;
    outline: none;
}
.profile .contact-style1 input, .profile .contact-style1 select {
    width: 100%;
    border-radius: 4px;
    height: 60px;
    margin-bottom: 30px;
    background: #F6F6F6;
    border: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 26px;
    padding: 5px 20px;
    outline: none;
}
.contact-style1 fieldset select::placeholder,
.contact-style1 fieldset input::placeholder {
    font-family: "Roboto", sans-serif;
    color: #76777A;
    font-size: 16px;
    line-height: 26px;
}
.contact-style1 fieldset select:focus,
.contact-style1 fieldset input:focus,
.contact-style1 input:focus {
    border-color: #E14D36;
}
.contact-style1 fieldset select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.contact-style1 fieldset textarea {
    border-radius: 4px;
    height: 170px;
    background: #F6F6F6;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: "Roboto", sans-serif;
    color: #76777A;
    font-size: 16px;
    line-height: 26px;
    padding: 16px 20px;
}
.contact-style1 fieldset textarea::placeholder {
    font-family: "Roboto", sans-serif;
    color: #76777A;
    font-size: 16px;
    line-height: 26px;
}
.reviews-area textarea::placeholder {
    color: #000;
}
.reviews_form_rating p {
    color: #000;
}
.contact-style1 fieldset textarea:focus {
    border-color: #E14D36;
}
.contact-style1 button {
    background: #E14D36;
    padding: 0 40px;
}
.contact-style1 button:hover {
    background: #E14D36;
}

/* flat-tabs
-------------------------------------------------------------- */
.flat-tabs .menu-tab {
    display: flex;
}
.flat-tabs .menu-tab li:hover {
    cursor: pointer;
}
.flat-tabs.tab1 .menu-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.flat-tabs.tab1 .menu-tab li {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0 13px 0 16px;
    position: relative;
    padding-left: 13px;
}
.flat-tabs.tab1 .menu-tab li::before {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    width: 3px;
    height: 20px;
    content: "";
    background: #E14D36;
    left: 0;
    top: 5px;
    opacity: 0;
}
.flat-tabs.tab1 .menu-tab li span {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 28px;
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/

    color: rgb(42 1 1);
}
.flat-tabs.tab1 .menu-tab li.active span {
    color: #E14D36;
}
.flat-tabs.tab1 .menu-tab li.active::before {
    opacity: 1;
}
.flat-tabs.tab1 .content-tab .content-inner {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
}
.flat-tabs.tab1 .content-tab .content-inner .project-box {
    width: calc(33.333% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .image {
    border-radius: 5px;
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .image img {
    border-radius: 5px;
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .image .overlay-effect {
    background-color: rgba(1, 12, 42, 0.5);
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect {
    height: 157px;
    border-radius: 5px;
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect .content-box {
    padding: 30px 32px;
    border-radius: 5px;
    background: #fff;
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect .content-box p {
    color: #494A4D;
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect .content-box p:hover {
    cursor: auto;
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect .content-box a,
.flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect .content-box h4 {
    color: rgb(42 1 1);
}
.flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect .content-box a:hover {
    color: #E14D36;
}

/* dropdown-menu
-------------------------------------------------------------- */
.dropdown-menu {
    max-width: 250px;
    min-width: 250px;
    margin-top: 8px !important;
    width: 100%;
    left: 0;
    height: auto;
    padding: 0;
    top: 0;
    background: #E14D36;
    border-radius: 0;
    transform: translate(0px, 52px) !important;
    border: none;
    border-left: 1px solid #D1D2D3;
    border-right: 1px solid #D1D2D3;
    border-bottom: 1px solid #D1D2D3;
}
.dropdown-menu:hover {
    cursor: pointer;
}

/* #loader-wrapper
-------------------------------------------------------------- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
}
.no-js #loader-wrapper {
    display: none;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #8e6455;
    animation: spin 1.7s linear infinite;
    z-index: 99999999999999;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #E14D36;
    animation: spin-reverse 0.6s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #c59368;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #fff;
    z-index: 10;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

/* box all
-------------------------------------------------------------- */
.icon-box {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px;
    /*
  background: #F6F6F6;
  */
    box-shadow: 0 10px 70px 0 rgba(0, 0, 0, 0.07);
    padding: 20px;
    overflow: hidden;
}
.icon-box .icon {
    margin-bottom: 10px;
    margin-left: 15px;
}
.icon-box .icon span.icon-Page-1_50 {
    color: #E14D36;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    font-size: 50px;
    font-weight: 500;
}
.icon-box .icon span.icon-Page-1_50::after {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    background: #c59368;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
    top: 0px;
    left: -15px;
}
.icon-box .title {
    padding-right: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}
.icon-box .title a {
    color: rgb(42 1 1);
}
.icon-box p {
    margin-bottom: 18px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /*font-family: "Inter", sans-serif;*/

}
.icon-box .readmore {
    font-size: 14px;
    line-height: 26px;
    /* font-family: "Roboto Slab", serif; */
    font-weight: bold;
    position: relative;
    padding-right: 21px;
    color: #E14D36;
    background: none;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 100% 100%;
    animation: rainbow 2s ease-in-out infinite;
    position: relative;
}
.icon-box .readmore span {
    position: relative;
}
.icon-box .readmore span::after, .icon-box .readmore span::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f324";
    color: #E14D36;
    right: -21px;
    font-size: 13px;
    top: 56%;
}
.icon-box .readmore span::after {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.icon-box .readmore span::before {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(-7px, -50%);
    -moz-transform: translate(-7px, -50%);
    -ms-transform: translate(-7px, -50%);
    -o-transform: translate(-7px, -50%);
    transform: translate(-7px, -50%);
}
/*
.icon-box .readmore::before {
  position: absolute;
  bottom: 3px;
  height: 1px;
  width: 84px;
  content: "";
  background: #e2c5f8;
  left: 0;
}
*/
.icon-box .readmore:hover span::after {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(7px, -50%);
    -moz-transform: translate(7px, -50%);
    -ms-transform: translate(7px, -50%);
    -o-transform: translate(7px, -50%);
    transform: translate(7px, -50%);
}
.icon-box .readmore:hover span::before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(2px, -50%);
    -moz-transform: translate(2px, -50%);
    -ms-transform: translate(2px, -50%);
    -o-transform: translate(2px, -50%);
    transform: translate(2px, -50%);
}
/*
.icon-box.ecffect::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #f6f6f6;
  top: 0;
  left: 0;
  content: "";
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -2;
}

 */
.icon-box.ecffect .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/bg-icon-box.png") center center no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.icon-box.ecffect:hover {
    /*
    background: #f6f6f6;

     */
}
.align-height-fix-microloans:hover .microloan-box__title {
    background: #E14D36;
}
.icon-box.ecffect:hover .overlay {
    opacity: 1;
    visibility: visible;
}
.icon-box.ecffect:hover::before {
    opacity: 1;
}
.icon-box.ecffect:hover .icon span {
    color: #fff;
    color: #fff;
}
.icon-box.ecffect:hover .icon span::after {
    background: #fff;
}
.icon-box.ecffect:hover .title {
    color: #fff;
}
.icon-box.ecffect:hover .title a {
    color: #E14D36;
}
.icon-box.ecffect:hover p {
    color: #fff;
}
.icon-box.ecffect:hover .readmore {
    color: #E14D36;
}
.icon-box.ecffect:hover .readmore::after {
    color: #E14D36;
}
.icon-box.ecffect:hover .readmore span::after, .icon-box.ecffect:hover .readmore span::before {
    color: #E14D36;
}
.icon-box.st2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    padding: 0;
}
.icon-box.st2 .img {
    min-width: 65px;
    min-height: 63px;
}
.icon-box.st2 .img.style {
    min-width: 65px;
}
.icon-box.st2 .desc {
    margin-left: 14px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    color: rgb(42 1 1);

}
.icon-box.st3 {
    text-align: center;
    background: #fff;
    box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 23px 40px 18px;
}
.icon-box.st3 .icon {
    margin-left: 0;
    margin-bottom: 15px;
    margin-right: 18px;
}
.icon-box.st3 .icon span {
    color: #E14D36;
    font-size: 60px;
}
.icon-box.st3 .icon span::after {
    font-family: "monal";
    content: "\e917";
    border-radius: 0;
    background: transparent;
    width: auto;
    height: auto;
    bottom: -30px;
    font-size: 53px;
    right: -24px;
    top: auto;
    left: auto;
    -webkit-transition: all 0s ease;
    -moz-transition: all 0s ease;
    -ms-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
    color: #E14D36;
}
.icon-box.st3 .title {
    padding: 0 20px;
    font-size: 22px;
    line-height: 32px;
}
.icon-box.st3 p {
    border-bottom: 1px solid #E8E8E9;
    padding-bottom: 26px;
    margin-bottom: 12px;
}
.icon-box.st3 .readmore {
    padding-right: 22px;
}
.icon-box.st3 .readmore span {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: rgb(42 1 1);
}
.icon-box.st3 .readmore::after {
    right: 0;
}
.icon-box.st3 .readmore::before {
    position: absolute;
    bottom: 2px;
    height: 1px;
    width: 94px;
    content: "";
    background: #e2c5f8;
    left: 0;
}
.icon-box.st3 .readmore span::after, .icon-box.st3 .readmore span::before {
    color: #E14D36;
}
.icon-box.st3::before {
    display: none;
}
.icon-box.st3:hover {
    background: #f6f6f6;
    cursor: pointer;
}
.microloan-box-slide:hover .title {
    color: rgb(42 1 1)!important;
}
.microloan-box-slide:hover p {
    color: #494A4D!important;
}

.icon-box.st3:hover .readmore span {
    color: #E14D36;
}
.icon-box.st3:hover .readmore span::before, .icon-box.st3:hover .readmore span::after {
    color: #E14D36;
}
.icon-box.st3:hover .readmore::before {
    background: #E14D36;
}
.icon-box.st3:hover .icon span {
    color: #fff;
}
.icon-box.st3:hover .icon span::after {
    background: none;
    color: #fff;
}
.icon-box.st3 .readmore::before {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.icon-box.st3 .readmore:hover::after {
    color: #E14D36;
}
.icon-box.st4 {
    /*
  animation: move6 3s infinite linear;
  width: 370px;
  height: 370px;
  flex-shrink: 0;
  border-radius: 50%;
  */
    background: #fff;
    text-align: center;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 45px 45px 40px;
    margin-left: auto;
    margin-right: auto;
}
.icon-box.st4 .icon {
    background: none;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    /*
  margin-bottom: 20px;
  */
    margin-bottom: 0px;

}
.icon-box.st4 .icon span {
    color: #c59368;
    line-height: 1;
}
.icon-box.st4 .icon span::after {
    width: auto;
    height: auto;
    font-family: "monal";
    content: "\e938";
    top: -40px;
    left: -8px;
    position: absolute;
    background: none;
    font-size: 80px;
    color: #f5a48e;
}
.icon-box.st4 .icon span::before {
    font-size: 70px;
}
.icon-box.st4 .icon .number {
    position: absolute;
    content: "01";
    width: 30px;
    height: 30px;
    background: #E14D36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/
    left: 56%;
    top: -22px;
}
.icon-box.st4 .icon .number::after {
    display: none;
}
.icon-box.st4 .title {
    padding-right: 0;
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 19px;
    font-family: var(--bs-body-font-family);
}
.icon-box.st4 .title a:hover {
    color: #E14D36;
}
.icon-box.st4 p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
    color: #494A4D;
    font-family: var(--bs-body-font-family);

}
.icon-box.st4.animated2 {
    animation: move7 3s infinite linear;
}

.wrap-icon-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.wrap-icon-box .icon-box {
    width: 39%;
    padding-right: 30px;
}

.img-box {
    position: relative;
    overflow: hidden;
}
.img-box.effect2 {
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-box.effect2 img {
    border-radius: 0;
    width: 100%;
}
.img-box.effect2 .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
}
.img-box.effect2::before {
    background-color: rgba(1, 12, 42, 0.7);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    content: "";
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0;
}
.img-box.effect2:hover {
    margin-top: -20px;
}
.img-box.effect2:hover::before {
    opacity: 1;
}
.img-box.effect2:hover .icon {
    opacity: 1;
    transform: scale(1);
}

.project-box,
.project-box .image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-box.active .hover-effect,
.project-box:hover .hover-effect {
    opacity: 1;
    bottom: 20px;
}

.project-box .hover-effect {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    bottom: -50%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
    height: 177px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.project-box .hover-effect .content-box {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 40px 40px;
    cursor: pointer;
    background: linear-gradient(246.06deg, #CF00FE -19.26%, #E14D36 87.05%);
}
.project-box .hover-effect .content-box p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    color: #fff;

    margin-bottom: 5px;
}
.project-box .hover-effect .content-box h4 {

    font-size: 24px;
    line-height: 34px;
    color: #fff;
}
.project-box .hover-effect .content-box h4 a {
    color: #fff;
}
.project-box .hover-effect .content-box .btn {
    width: 56px;
    height: 56px;
    position: absolute;
    right: 30px;
    top: -28px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.project-box .hover-effect .content-box .btn svg rect {
    fill: #473eea;
}
.project-box .image img {
    width: 100%;
    border-radius: 10px;
}
.project-box .image .overlay-effect {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    background-color: rgba(1, 12, 42, 0.7);
}
.project-box.style2 .image .overlay-effect {
    background: rgba(1, 12, 42, 0.5);
}
.project-box.style2 .hover-effect {
    width: 89%;
    height: 157px;
}
.project-box.style2 .hover-effect .content-box {
    padding: 30px;
    background: #fff;
}
.project-box.style2 .hover-effect .content-box p {
    color: #494A4D;
}
.project-box.style2 .hover-effect .content-box h4 {
    color: rgb(42 1 1);
}
.project-box.style2 .hover-effect .content-box h4 a {
    color: rgb(42 1 1);
}
.project-box.style2 .hover-effect .content-box h4 a:hover {
    color: #E14D36;
}

.project-box.active .overlay-effect,
.project-box:hover .overlay-effect {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

.team-box {
    position: relative;
    text-align: center;
}
.team-box .image {
    overflow: hidden;
}
.team-box .content {
    z-index: 9;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 87%;
    padding: 30px 20px 30px;
    position: relative;
    bottom: 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
    margin-top: -141px;
    overflow: hidden;
}
.team-box .content::after {
    position: absolute;
    content: "";
    background-image: linear-gradient(246.06deg, #CF00FE -19.26%, #E14D36 87.05%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.team-box .content::before {
    background: #fff;
    position: absolute;
    content: "";
    z-index: -2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 6px;
}
.team-box .content h5 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 2px;
}
.team-box .content p {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 24px;
    color: #E14D36;
    margin-bottom: 15px;
}
.team-box .content .social {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.team-box .content .social li {
    margin: 0 5px;
}
.team-box .content .social li a {
    background: #ECF2F6;
    color: rgb(42 1 1);
    position: relative;
    border: none;
}
.team-box .content .social li a::after {
    position: absolute;
    content: "";
    background-image: linear-gradient(246.06deg, #CF00FE -19.26%, #E14D36 87.05%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.team-box .content .social li a i {
    z-index: 9;
}
.team-box .content .social li a.active, .team-box .content .social li a:hover {
    border: none;
    color: #fff;
    background: transparent;
}
.team-box .content .social li a.active::after, .team-box .content .social li a:hover::after {
    opacity: 1;
}
.team-box .image {
    position: relative;
    overflow: hidden;
}
.team-box .image::before {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background: rgba(1, 12, 42, 0.5);
    border-radius: 5px;
}
.team-box.active .content, .team-box:hover .content {
    background: transparent;
}
.team-box.active .content::after, .team-box:hover .content::after {
    opacity: 1;
}
.team-box.active .content p,
.team-box.active .content h5, .team-box:hover .content p,
.team-box:hover .content h5 {
    color: #fff;
}
.team-box.active .content p a,
.team-box.active .content h5 a, .team-box:hover .content p a,
.team-box:hover .content h5 a {
    color: #fff;
}
.team-box.active .content .social, .team-box:hover .content .social {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.team-box.active .content .social li, .team-box:hover .content .social li {
    margin: 0 5px;
}
.team-box.active .content .social li a, .team-box:hover .content .social li a {
    background: #ECF2F6;
    color: rgb(42 1 1);
    position: relative;
    border: none;
}
.team-box.active .content .social li a.active, .team-box.active .content .social li a:hover, .team-box:hover .content .social li a.active, .team-box:hover .content .social li a:hover {
    background: #ECF2F6;
    color: rgb(42 1 1);
}
.team-box.active .content .social li a.active::after, .team-box.active .content .social li a:hover::after, .team-box:hover .content .social li a.active::after, .team-box:hover .content .social li a:hover::after {
    opacity: 0;
}
.team-box.active .image::before, .team-box:hover .image::before {
    opacity: 1;
    visibility: visible;
}
.team-box.style2 {
    overflow: hidden;
    border-radius: 5px;
}
.team-box.style2 .image::before {
    background-color: rgba(1, 12, 42, 0.6);
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    left: 0;
    content: "";
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 5px;
    visibility: hidden;
}
.team-box.style2 .content {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-top: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 30px 30px 20px;
    left: 0;
    border-radius: 0;
}
.team-box.style2 .content h5, .team-box.style2 .content a {
    color: rgb(42 1 1);
}
.team-box.style2 .content h5:hover, .team-box.style2 .content a:hover {
    color: #E14D36;
}
.team-box.style2 .content p {
    color: #76777A;
    border-bottom: 1px solid transparent;
    padding-bottom: 10px;
    margin-bottom: 0;

}
.team-box.style2 .content .social {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: absolute;
    bottom: -20px;
    opacity: 0;
    visibility: hidden;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.team-box.style2 .content .social li {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.team-box.style2 .content .social li a {
    background: #F6F6F6;
}
.team-box.style2 .content .social li a.active, .team-box.style2 .content .social li a:hover {
    background: #E14D36;
    color: #fff;
}
.team-box.style2 .content .social li:nth-child(1) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.team-box.style2 .content .social li:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.team-box.style2 .content .social li:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.team-box.style2 .content .social li:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -ms-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.team-box.style2 .content::after, .team-box.style2 .content::before {
    display: none;
}
.team-box.style2.active .image::before, .team-box.style2:hover .image::before {
    opacity: 1;
    top: 0;
    visibility: visible;
}
.team-box.style2.active .content, .team-box.style2:hover .content {
    background: #fff;
    padding: 30px 30px 85px;
}
.team-box.style2.active .content h5, .team-box.style2.active .content a, .team-box.style2:hover .content h5, .team-box.style2:hover .content a {
    color: rgb(42 1 1);
}
.team-box.style2.active .content h5:hover, .team-box.style2.active .content a:hover, .team-box.style2:hover .content h5:hover, .team-box.style2:hover .content a:hover {
    color: #E14D36;
}
.team-box.style2.active .content p, .team-box.style2:hover .content p {
    border-color: #E8E8E9;
}
.team-box.style2.active .content .social, .team-box.style2:hover .content .social {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}
.team-box.style2.active .content .social li, .team-box.style2:hover .content .social li {
    opacity: 1;
    visibility: visible;
}
.team-box.style3 .image {
    border-radius: 0px;
}
.team-box.style3 .image img {
    border-radius: 0;
}
.team-box.style3 .image::before {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background: rgba(1, 12, 42, 0.5);
    border-radius: 0;
}
.team-box.style3 .content {
    margin-top: -170px;
    background: #fff;
    margin-left: 0;
    width: 93%;
    text-align: left;
    border-radius: 0;
    padding: 30px 30px 20px;
}
.team-box.style3 .content::after, .team-box.style3 .content::before {
    display: none;
}
.mt-60 {
    margin-top: 60px;
}
.mb-60 {
    margin-bottom: 60px;
}
.team-box.style3 .content h5 {

    color: rgb(42 1 1);
    text-decoration: underline transparent solid 1px;
    text-underline-offset: 1px;
}
.team-box.style3 .content h5 a {
    color: rgb(42 1 1);
    text-decoration: underline transparent solid 1px;
}
.team-box.style3 .content p {
    color: #494A4D;
    margin-bottom: 15px;

}
.team-box.style3 .content .social {
    border-top: 1px solid #E8E8E9;
    padding-top: 16px;
}
.team-box.style3 .content .social li a.active, .team-box.style3 .content .social li a:hover {
    background: #E14D36;
    color: #fff;
}
.team-box.style3:hover h5 {

}
.team-box.style3:hover h5 a {

}
.team-box.style3:hover .image::before {
    opacity: 1;
    visibility: visible;
}

.testimonior-box {
    position: relative;
}
.testimonior-box .image {
    position: absolute;
    left: 0;
    top: 50px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
.testimonior-box .image img {
    width: 130px;
    height: 130px;
}
.testimonior-box .content {
    position: relative;
}
p.testimonior-box-content__name {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}
.testimonior-box .content p.desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    /*font-family: "Roboto Slab", serif;*/
}
.reviews-block {
    position: absolute;
    left: 50%;
    display: block;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0% 25%;
}
.reviews-block__title {
    font-size: 20px;
    color: #E14D36;
    font-weight: 700;
    margin-bottom: 0px;
}
.reviews-block-prev-next__img {
    width: 36px;
}
.testimonior-box .content h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 5px;
}
.testimonior-box .content .quote {
    position: absolute;
    bottom: 53px;
    right: 16%;
}
.testimonior-box.style .content {
    box-shadow: 0px 10px 50px 0px #00000012;
}

.item-parner .image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 47px;
}

.pricing-box {
    position: relative;
    padding: 0 15px 15px;
}
.pricing-box .img-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.pricing-box .pricing-inner {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 10px 70px 0 rgba(0, 0, 0, 0.07);
    text-align: left;
    padding: 35px 50px 50px 50px;
}
.pricing-box .pricing-inner .discount {
    top: -8px;
    right: -45px;
    transform: rotate(45deg);
    position: absolute;
    background: #E14D36;
    padding: 24px 40px 10px;
    text-align: center;
    z-index: 99;
}
.pricing-box .pricing-inner .discount p {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    margin-bottom: 0;
}
.pricing-box .pricing-inner .icon {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 71px;
    height: 59px;
    color: #E14D36;
    font-size: 50px;
    position: relative;
    padding-top: 9px;
    padding-left: 16px;
    margin-bottom: 45px;
}
.pricing-box .pricing-inner .icon::after {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: "monal";
    content: "\e917";
    border-radius: 0;
    background: transparent;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    color: #E14D36;
    opacity: 0.1;
    position: absolute;
}
.pricing-box .pricing-inner .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 27px;
    position: relative;
}
.pricing-box .pricing-inner .title::after {
    position: absolute;
    content: "";
    width: 42%;
    background: #E8E8E9;
    height: 1px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    right: 0;
    top: 13px;
}
.pricing-box .pricing-inner .title p {
    font-size: 16px;
    line-height: 26px;
    color: #E14D36;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    margin-bottom: 0;
    margin-right: 30px;
}
.pricing-box .pricing-inner .pricing {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 29px;
}
.pricing-box .pricing-inner .pricing .number {
    position: relative;
    font-size: 70px;
    line-height: 1;
    color: rgb(42 1 1);
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/
    padding-left: 16px;
    margin-right: 11px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.pricing-box .pricing-inner .pricing .number::before {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: -2px;
    left: 0px;
    content: "$";
    font-size: 18px;
    color: rgb(42 1 1);
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
}
.pricing-box .pricing-inner .pricing p {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 26px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    color: #494A4D;
    margin-bottom: 0;
}
.pricing-box .pricing-inner .list {
    margin-bottom: 30px;
}
.pricing-box .pricing-inner .list li {
    font-size: 16px;
    line-height: 26px;

    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.pricing-box .pricing-inner .list li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "monal";
    content: "\e91d";
    color: #E14D36;
}
.pricing-box .pricing-inner .tf-button {
    background: #E14D36;
    width: 100%;
    text-align: center;
}
.pricing-box .pricing-inner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgb(42 1 1);
    z-index: 1;
}
.pricing-box .pricing-inner.active, .pricing-box .pricing-inner:hover {
    background: rgb(42 1 1);
}
.pricing-box .pricing-inner.active .icon::after, .pricing-box .pricing-inner:hover .icon::after {
    color: #fff;
}
.pricing-box .pricing-inner.active .title .divider, .pricing-box .pricing-inner:hover .title .divider {
    background: #494A4D;
}
.pricing-box .pricing-inner.active .pricing p,
.pricing-box .pricing-inner.active .pricing .number, .pricing-box .pricing-inner:hover .pricing p,
.pricing-box .pricing-inner:hover .pricing .number {
    color: #fff;
}
.pricing-box .pricing-inner.active .pricing p::before,
.pricing-box .pricing-inner.active .pricing .number::before, .pricing-box .pricing-inner:hover .pricing p::before,
.pricing-box .pricing-inner:hover .pricing .number::before {
    color: #fff;
}
.pricing-box .pricing-inner.active .list li, .pricing-box .pricing-inner:hover .list li {
    color: #fff;
}
.pricing-box .pricing-inner.active .tf-button, .pricing-box .pricing-inner:hover .tf-button {
    background: #E14D36 !important;
}

.feature-box {
    display: flex;
    position: relative;
}
.feature-box.main-box .box {
    padding: 15px;
}
.template-page-limit-shadow {
    background: linear-gradient(0deg,#ffffff,#ffffff,hsl(0deg 0% 96% / 29%),hsl(0deg 0% 100% / 20%));
    bottom: 0;
    height: 150px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 50;
}
.template-text-container {
    padding-bottom: 40px;
    position: relative;
}
.feature-box__img {
    width: 32px;
    margin-bottom: 14px;
}
.feature-box .box .icon {
    margin-right: 20px;
    border: dashed 1px #c59368;
    min-width: 80px;
    min-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.feature-box .box .icon .bg {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, rgb(207 85 61 / 12%) 0%, rgb(241 119 87 / 8%) 100%);
}
.feature-box .box .icon .bg span {
    color: #E14D36;
    font-size: 40px;
}
.feature-box .box .content h5 {
    text-decoration: underline transparent solid 1px;

    position: relative;
    margin-bottom: 14px;
}
.feature-box .box .content h5 a {
    text-decoration: underline transparent solid 1px;
}
.feature-box .box .content p {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: rgb(42 1 1);

    margin-bottom: 0;
}
.feature-box .box.active, .feature-box .box:hover {
    background: #fff;
}
.feature-box .box.active .content a,
.feature-box .box.active .content h5,
.feature-box .box.active .content p, .feature-box .box:hover .content a,
.feature-box .box:hover .content h5,
.feature-box .box:hover .content p {
    color: #000;
}
.feature-box .box:hover span.hot-line{
    color: #562212;
}
.feature-box .box.active .content h5, .feature-box .box:hover .content h5 {

}
.feature-box .box.active .content h5 a, .feature-box .box:hover .content h5 a {

}
.feature-box .box.active .icon, .feature-box .box:hover .icon {
    border-color: #fff;
}
.feature-box .box.active .icon .bg, .feature-box .box:hover .icon .bg {
    background: #fff;
}
.feature-box .box.active::after, .feature-box .box:hover::after {
    opacity: 1;
    visibility: visible;
}

.item-box {
    position: relative;
}
.item-box .image {
    overflow: hidden;
    position: relative;
    background: #F6F6F6;
    display: flex;
    justify-content: center;
}
.item-box .image img {
    width: 100%;
}
.item-box .image .add-cart {
    border-radius: 2px;
    height: 40px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 196px;
    background: #E14D36;
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/

    color: #fff;
    z-index: 2;
}
.item-box .image .add-cart span {
    font-size: 20px;
    margin-right: 10px;
}
.item-box .image .add-cart:hover {
    background: #E14D36;
}
.item-box .image .new {
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    left: -25px;
    position: absolute;
    top: 0;
    background-color: #E14D36;
    height: 25px;
    display: flex;
    -webkit-mask-image: url(./../../assets/images/product/bgnew.png);
    mask-image: url(./../../assets/images/product/bgnew.png);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    padding: 21px 0px 39px 0px;
}
.item-box .image .new span {
    position: relative;

    font-size: 12px;
    line-height: 25px;
    font-weight: 500;
    color: #fff;
    width: 25px;
    -moz-transform: translateX(50%) translateY(50%) rotate(90deg);
    -webkit-transform: translateX(50%) translateY(50%) rotate(90deg);
    transform: translateX(50%) translateY(50%) rotate(90deg);
}
.item-box .image::before {
    content: "";
    position: absolute;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 12, 42, 0.7);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}
.item-box .content {
    padding: 14px 15px 20px;
    box-shadow: 0px 10px 70px 0px #00000012;
    background: #fff;
    text-align: center;
}
.item-box .content .star {
    margin-bottom: 1px;
}
.item-box .content .name {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 5px;

}
.item-box .content .pricing {
    color: #E14D36;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
}
.item-box.active .add-cart, .item-box:hover .add-cart {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
}
.item-box.active .new, .item-box:hover .new {
    opacity: 1;
    left: 20px;
}
.item-box.active .image::before, .item-box:hover .image::before {
    opacity: 1;
}

.star {
    display: flex;
    align-items: center;
    justify-content: center;
}
.star li {
    margin: 0 2px;
}
.star li span {
    font-size: 13px;
}

/* swiper css
-------------------------------------------------------------- */
.btn-next-post,
.btn-prev-post {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #000000;
    z-index: 999;
    opacity: 1;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-next-post i,
.btn-prev-post i {
    font-weight: 600;
}
.btn-next-post:hover, .btn-next-post.swiper-button-disabled,
.btn-prev-post:hover,
.btn-prev-post.swiper-button-disabled {
    background: #E14D36;
    color: #fff;
}

.btn-next-post {
    right: 30px;
}

.btn-prev-post {
    left: 30px;
}

.swiper-container.slider-main {
    overflow: visible;
}
.swiper-container.slider-main .swiper-pagination {
    left: 50px;
    bottom: -20px;
}

.swiper-pagination,
.swiper-pagination-bullet {
    opacity: 1;
}

.slider-main .swiper-pagination .swiper-pagination-bullet {
    margin-right: 35px;
    width: auto;
    height: auto;
    color: rgb(42 1 1);
}
.slider-main .swiper-pagination span {
    position: relative;
}
.slider-main .swiper-pagination span::after {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 30px;
    background: #623B2A;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}
.slider-main .swiper-pagination span::before {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    content: "";
    height: 2px;
    width: 35px;
    background: #623B2A;
    bottom: -35px;
    left: 0px;
}
.line-pagination {
    padding-bottom: 25px;
    border-bottom: 2px solid rgb(98 59 42 / 20%);
}

.slider-main .swiper-pagination span:nth-child(1)::after {
    content: "01";
}
.slider-main .swiper-pagination span:nth-child(2) {
    margin-right: 65px;
}
.slider-main .swiper-pagination span:nth-child(2)::after {
    content: "02";
}
.slider-main .swiper-pagination span:nth-child(3)::after {
    content: "03";
}
.slider-main .swiper-pagination span:nth-child(4)::after {
    content: "04";
}
.slider-main .swiper-pagination span:nth-child(5)::after {
    content: "05";
}
.slider-main .swiper-pagination span.swiper-pagination-bullet-active::before {
    opacity: 1;
    visibility: visible;
}
.slider-main .swiper-pagination span.swiper-pagination-bullet-active::after {
    background: #623B2A;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.btn-slider-project {
    display: flex;
    position: relative;
}
.btn-slider-project .next-project2,
.btn-slider-project .prev-project2,
.btn-slider-project .next-project,
.btn-slider-project .prev-project {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    margin-right: 10px;
}
.btn-slider-project .next-project2 svg,
.btn-slider-project .prev-project2 svg,
.btn-slider-project .next-project svg,
.btn-slider-project .prev-project svg {
    z-index: 1;
}
.btn-slider-project .next-project2 svg rect,
.btn-slider-project .prev-project2 svg rect,
.btn-slider-project .next-project svg rect,
.btn-slider-project .prev-project svg rect {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    fill: #473eea;
}
.btn-slider-project .next-project2::before,
.btn-slider-project .prev-project2::before,
.btn-slider-project .next-project::before,
.btn-slider-project .prev-project::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #E14D36;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0;
    border-radius: 50%;
}
.btn-slider-project .next-project2.swiper-button-disabled, .btn-slider-project .next-project2:hover,
.btn-slider-project .prev-project2.swiper-button-disabled,
.btn-slider-project .prev-project2:hover,
.btn-slider-project .next-project.swiper-button-disabled,
.btn-slider-project .next-project:hover,
.btn-slider-project .prev-project.swiper-button-disabled,
.btn-slider-project .prev-project:hover {
    background: transparent;
}
.btn-slider-project .next-project2.swiper-button-disabled::before, .btn-slider-project .next-project2:hover::before,
.btn-slider-project .prev-project2.swiper-button-disabled::before,
.btn-slider-project .prev-project2:hover::before,
.btn-slider-project .next-project.swiper-button-disabled::before,
.btn-slider-project .next-project:hover::before,
.btn-slider-project .prev-project.swiper-button-disabled::before,
.btn-slider-project .prev-project:hover::before {
    opacity: 1;
}
.btn-slider-project .next-project2.swiper-button-disabled svg rect, .btn-slider-project .next-project2:hover svg rect,
.btn-slider-project .prev-project2.swiper-button-disabled svg rect,
.btn-slider-project .prev-project2:hover svg rect,
.btn-slider-project .next-project.swiper-button-disabled svg rect,
.btn-slider-project .next-project:hover svg rect,
.btn-slider-project .prev-project.swiper-button-disabled svg rect,
.btn-slider-project .prev-project:hover svg rect {
    fill: #fff;
}
.btn-slider-project.style .next-project2{
    width: 56px;
    height: 56px;
    background: linear-gradient(90deg, #E14D36 0%, #E14D36 100%);
}
.btn-slider-project.style .prev-project2 {
    width: 56px;
    height: 56px;
    background: linear-gradient(90deg, #E14D36 0%, #E14D36 100%);
}
.btn-slider-project.style .next-project2 svg,
.btn-slider-project.style .prev-project2 svg {
    z-index: 1;
}
.btn-slider-project.style .next-project2 svg rect,
.btn-slider-project.style .prev-project2 svg rect {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    fill: #fff;
}

.swiper-container.slider-project {
    margin-right: -400px;
}
.swiper-container.slider-team {
    padding: 30px 0;
}
.swiper-container.show-shadow {
    /*
  padding: 20px;
  margin: -20px;
   */
}
/*
.swiper-container.slider-project2 {
  overflow: visible;
}
*/
.testimonior-pagination {
    z-index: 99;
    position: absolute;
    bottom: 3px;
    left: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonior-pagination .swiper-pagination-bullet {
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0 0px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.testimonior-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid #E14D36;
}
.testimonior-pagination .swiper-pagination-bullet::after {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: "";
    background: #E14D36;
}

.service-pagination {
    margin-top: 50px;
    position: relative;
    text-align: center;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-pagination .swiper-pagination-bullet {
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0 0px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 1px solid #E14D36;
}
.service-pagination .swiper-pagination-bullet::after {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: "";
    background: #E14D36;
}

.swiper-container.swiper-loop {
    transform: translateX(25px);
    overflow: visible;
    padding: 20px 0 0 !important;
}

.swiper-container.gallery-thumbs2 {
    height: 460px;
    min-width: 100px;
}
.swiper-container.gallery-thumbs2 img {
    min-width: 100px;
    min-height: 100px;
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.slider-product {
    max-width: 1086px;
    padding: 26px;
}

.btn-next-product,
.btn-prev-product {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 42%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    border-radius: 50%;
}
.btn-next-product i,
.btn-prev-product i {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: rgb(42 1 1);
    font-size: 25px;
}
.btn-next-product:hover, .btn-next-product.swiper-button-disabled,
.btn-prev-product:hover,
.btn-prev-product.swiper-button-disabled {
    background: #E14D36;
}
.btn-next-product:hover i, .btn-next-product.swiper-button-disabled i,
.btn-prev-product:hover i,
.btn-prev-product.swiper-button-disabled i {
    color: #fff;
}

.btn-prev-product {
    left: 0;
}

.btn-next-product {
    right: 0;
}

.swiper-container.swiper-loop:hover, .swiper-container.slider-project2:hover, .swiper-container.slider-service:hover, .swiper-container.slider-testimonior:hover, .swiper-container.slider-project:hover {
    cursor: ew-resize;
}

.item-parner .image img {
    /*
  height: 47px;
  */
}

/* menu
-------------------------------------------------------------- */
/*
#main-nav-mobi {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    display: block;
    margin: 0 auto;
    width: 100%;
    left: 0;
    z-index: 9999999;
    box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.3);
    padding-left: 0;
    position: absolute;
    top: 100%;
    overflow-y: auto;
    background: #fff;
    max-height: 60vh;
}
#main-nav-mobi ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

 */
#main-nav-mobi ul li {
    margin: 0;
    cursor: pointer;
    padding: 0;
    border-top: 1px solid rgba(2, 14, 40, 0.2);
    position: relative;
}
#main-nav-mobi ul li > ul > li:first-child {
    border-top: 1px solid rgba(2, 14, 40, 0.2);
}
#main-nav-mobi ul > li > a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 12px 20px;
    position: relative;
    font-size: 16px;
    line-height: 1.625;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    color: rgb(42 1 1);

}

#main-nav-mobi .sub-menu li a {
    padding-left: 40px;
}
#main-nav-mobi .sub-menu-children li a {
    padding-left: 40px;
}
#main-nav-mobi ul li:first-child {
    border-top: 0px;
}
#main-nav-mobi ul ul li.current-item a,
#main-nav-mobi ul > li.current-menu-item > a,
#main-nav-mobi ul > li > a:hover {
    color: #E14D36;
}
#main-nav-mobi .menu-item-has-children .arrow {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    line-height: 48px;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 2px;
    width: 48px;
}
#main-nav-mobi .menu-second-children .arrow {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    line-height: 48px;
    position: absolute;
    right: 15px;
    text-align: center;
    top: 2px;
    width: 48px;
}
#main-nav-mobi .menu-item-has-children .arrow:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    color: rgb(42 1 1);
}
#main-nav-mobi .menu-item-has-children.current-menu-item .arrow:before {
    color: #E14D36;
}
#main-nav-mobi .menu-second-children .arrow:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    color: rgb(42 1 1);
}
#main-nav-mobi .menu-second-children.current-menu-item .arrow:before {
    color: #E14D36;
}

.home2 .mobile-button:before, .home2 .mobile-button:after,
.home2 .mobile-button span {
    background-color: #E14D36;
}

/* Mobile Menu Button */
.mobile-button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: none;
    position: absolute;
    width: 26px;
    height: 26px;
    top: 50%;
    right: 15px;
    background-color: transparent;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mobile-button:before, .mobile-button:after,
.mobile-button span {
    background-color: rgb(42 1 1);
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.mobile-button:before, .mobile-button:after {
    content: "";
    position: absolute;
    top: 0;
    height: 3px;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.mobile-button span {
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    top: 50%;
    overflow: hidden;
    text-indent: 200%;
}
.mobile-button:before {
    -webkit-transform: translate3d(0, -7px, 0);
    -moz-transform: translate3d(0, -7px, 0);
    transform: translate3d(0, -7px, 0);
}
.mobile-button:after {
    -webkit-transform: translate3d(0, 7px, 0);
    -moz-transform: translate3d(0, 7px, 0);
    transform: translate3d(0, 7px, 0);
}
.mobile-button.active span {
    opacity: 0;
}
.mobile-button.active:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}
.mobile-button.active:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

/* Sub Menu */
#main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    overflow-y: auto!important;
    min-width: 385px;
    max-height: 300px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 70px 0 rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    padding: 5px 0;
}
#main-nav .sub-menu-children {
    position: absolute;
    top: 100%;
    left: 0;
    overflow-y: auto!important;
    min-width: 385px;
    max-height: 300px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 70px 0 rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    padding: 5px 0;
}

#main-nav .sub-menu-children li {
    margin-right: 0;
}
#main-nav .sub-menu-children li a {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.625;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    color: rgb(42 1 1);

}
#main-nav .sub-menu li {
    margin-right: 0;
}
#main-nav .sub-menu li a {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.625;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    color: rgb(42 1 1);

}

#main-nav .sub-menu-children li:hover .sub-menu-children {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
#main-nav .sub-menu-children li.current-item a {
    color: #E14D36;
    opacity: 1;
}
#main-nav .sub-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
#main-nav .sub-menu li.current-item a {
    color: #E14D36;
    opacity: 1;
}

.home3 #main-nav-mobi {
    top: 100%;
}

/* widget
-------------------------------------------------------------- */
#sidebar .widget {
    background: #fff;
    box-shadow: 0 0px 70px 0 rgba(0, 0, 0, 0.07);
    margin-bottom: 40px;
    padding: 40px 40px 40px;
}
#sidebar .widget.widget-category .widget-title {
    margin-bottom: 28px;
}
#sidebar .widget.widget-recent-posts {
    padding: 40px 40px 33px;
}
#sidebar .widget.widget-tags ul {
    margin-right: -10px;
}
#sidebar .widget-title {
    margin-bottom: 30px;
}

.widget.widget-search input[type=text] {
    font-size: 14px;
    line-height: 24px;
    /*font-family: "Roboto Slab", serif;*/
    padding: 13px 15px 13px 30px;
}
.widget.widget-search input[type=text]::placeholder {
    font-size: 14px;
    line-height: 24px;
    /*font-family: "Roboto Slab", serif;*/
}
.widget.widget-search .widget-form {
    position: relative;
}
.widget.widget-search .widget-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0px 4px 4px 0px;
    width: 60px;
    height: 60px;
    background: #E14D36;
    border: none;
    color: #fff;
}
.widget.widget-search .widget-form button i {
    font-size: 20px;
}
.widget.widget-search .widget-form button:hover {
    background: #E14D36;
}
.widget.widget-category ul li {
    margin-bottom: 5px;
}
.widget.widget-category ul li a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #F6F6F6;
    font-size: 14px;
    line-height: 24px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    color: rgb(42 1 1);
    padding: 0 20px;
}
.widget.widget-category ul li a::before, .widget.widget-category ul li a::after {
    right: 20px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Pro";
    content: "\f324";
    color: #E14D36;
}
.widget.widget-category ul li a::after {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.widget.widget-category ul li a::before {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(-7px, -50%);
    -moz-transform: translate(-7px, -50%);
    -ms-transform: translate(-7px, -50%);
    -o-transform: translate(-7px, -50%);
    transform: translate(-7px, -50%);
}
.widget.widget-category ul li a:hover {
    background: #E14D36;
    color: #fff;
}
.widget.widget-category ul li a:hover::before, .widget.widget-category ul li a:hover::after {
    color: #fff;
}
.widget.widget-category ul li a:hover::after {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(7px, -50%);
    -moz-transform: translate(7px, -50%);
    -ms-transform: translate(7px, -50%);
    -o-transform: translate(7px, -50%);
    transform: translate(7px, -50%);
}
.widget.widget-category ul li a:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(2px, -50%);
    -moz-transform: translate(2px, -50%);
    -ms-transform: translate(2px, -50%);
    -o-transform: translate(2px, -50%);
    transform: translate(2px, -50%);
}
.widget.widget-category ul li:last-child {
    margin-bottom: 0;
}
.widget.widget-recent-posts .recent-posts {
    margin-bottom: 30px;
}
.widget.widget-recent-posts .recent-posts li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.widget.widget-recent-posts .recent-posts li .content {
    margin-left: 20px;
}
.widget.widget-recent-posts .recent-posts li .content a {

    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    color: rgb(42 1 1);
}
.widget.widget-recent-posts .recent-posts li .content a:hover {
    color: #E14D36;
}
.widget.widget-recent-posts .recent-posts li .content .meta-post a {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    color: #76777A;
    font-weight: 400;
}
.widget.widget-recent-posts .recent-posts li .content .meta-post a:hover {
    color: #E14D36;
}
.widget.widget-recent-posts .recent-posts li:first-child {
    margin-bottom: 8px;
}
.widget.widget-recent-posts .recent-posts:last-child {
    margin-bottom: 0;
}
.widget.widget-tags ul {
    display: flex;
    flex-wrap: wrap;
}
.widget.widget-tags ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 20px;
    border-radius: 4px;
    /*border: 1px solid rgb(142 100 85);*/
    border: 1px solid rgb(255 255 255);
    background: #fff;
    font-size: 14px;
    line-height: 26px;
    margin-right: 12px;
    margin-bottom: 10px;
    /*font-family: "Inter", sans-serif;*/
    color: rgb(42 1 1);
}
.widget.widget-tags ul li a.active{
    background: #E14D36;
    color: #fff;
    border: 1px solid #E14D36;
}
.widget.widget-tags ul li a:hover {
    background: #E14D36;
    color: #fff!important;
    border: 1px solid #E14D36;
}

.social {
    display: flex;
}
.social li {
    margin-right: 20px;
}
.social li a {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 12px;
}
.social li a:hover {
    background: #E14D36;
}

.widget-link li a {
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 2rem;
    /*font-family: "Roboto Slab", serif;*/

}

.wrap-widget {
    margin-top: 51px;
    margin-bottom: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #E8E8E9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrap-widget .widget.widget-tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.wrap-widget .widget.widget-tag ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.wrap-widget .widget.widget-tag ul li {
    margin-right: 9px;
    font-size: 17px;
    line-height: 1.64;
}
.wrap-widget .widget.widget-tag ul li span {
    font-size: 16px;
    line-height: 22px;
    color: #494A4D;
    font-weight: 400;
}
.wrap-widget .widget.widget-tag ul li a {
    height: 34px;
    padding: 0 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6F6F6;
    color: #494A4D;
    /*font-family: "Inter", sans-serif;*/
    font-size: 14px;
    line-height: 26px;
}
.wrap-widget .widget.widget-tag ul li a.active, .wrap-widget .widget.widget-tag ul li a:hover {
    background: #E14D36;
    color: #fff;
}
.wrap-widget .widget .title-widget {
    margin-right: 30px;

    margin-bottom: 0;
}
.wrap-widget .widget.widget-social {
    padding-right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrap-widget .widget.widget-social .title-widget {
    margin-right: 40px;
}
.wrap-widget .widget.widget-social h4 {
    margin-right: -8px;
}
.wrap-widget .widget.widget-social ul {
    display: flex;
    margin-top: 2px;
}
.wrap-widget .widget.widget-social ul li {
    margin-left: 25px;
    margin-right: 0;
    font-size: 17px;
    line-height: 1.64;
}
.wrap-widget .widget.widget-social ul li a {
    color: rgb(42 1 1);
}
.wrap-widget .widget.widget-social ul li a:hover {
    color: #E14D36;
}
.wrap-widget .widget.widget-social ul li a i {
    font-size: 17px;
}
.wrap-widget .widget.widget-social ul li:first-child {
    margin-left: 0;
}

.wrap-box-details {
    margin-bottom: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wrap-box-details .previous,
.wrap-box-details .next {
    width: 50%;
}
.wrap-box-details .previous a.st,
.wrap-box-details .next a.st {
    font-size: 14px;
    line-height: 1.57;
    font-weight: 700;
    /*font-family: "Roboto Slab", serif;*/
    margin-bottom: 3px;

    color: #565660;
}
.wrap-box-details .previous a:hover,
.wrap-box-details .next a:hover {
    color: #E14D36;
}
.wrap-box-details .previous h6,
.wrap-box-details .next h6 {
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
}
.wrap-box-details .previous {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 70px;
    position: relative;
}
.wrap-box-details .previous .img {
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
    min-width: 80px;
    min-height: 80px;
}
.wrap-box-details .previous .img img {
    min-width: 80px;
    min-height: 80px;
}
.wrap-box-details .previous .desc .job {
    font-size: 18px;
    line-height: 28px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: bold;
    color: rgb(42 1 1);
    margin-bottom: 4px;
}
.wrap-box-details .previous .desc a {
    font-size: 14px;
    line-height: 24px;
    color: #E14D36;
    padding-left: 26px;
    position: relative;
    font-family: "Domine", serif;
    font-weight: bold;
}
.wrap-box-details .previous .desc a::before {
    position: absolute;
    content: "\f177";
    font-family: "Font Awesome 5 Pro";
    left: 0;
    top: 0px;
    font-size: 20px;
    font-weight: 400;
}
.wrap-box-details .previous .desc a:hover {
    color: #E14D36;
}
.wrap-box-details .next {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    padding-right: 0;
    justify-content: flex-end;
}
.wrap-box-details .next .img {
    margin-left: 20px;
    border-radius: 5px;
    overflow: hidden;
    min-width: 80px;
    min-height: 80px;
}
.wrap-box-details .next .desc .job {
    font-size: 18px;
    line-height: 28px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: bold;
    color: rgb(42 1 1);
    margin-bottom: 8px;
}
.wrap-box-details .next .desc a {
    font-size: 14px;
    line-height: 24px;
    color: #E14D36;
    padding-right: 26px;
    position: relative;
    font-family: "Domine", serif;
    font-weight: bold;
}
.wrap-box-details .next .desc a::before {
    position: absolute;
    content: "\f178";
    font-family: "Font Awesome 5 Pro";
    right: 0;
    top: 0;
    font-size: 20px;
    font-weight: 400;
}
.wrap-box-details .next .desc a:hover {
    color: #E14D36;
}

/* footer
-------------------------------------------------------------- */
.footer-top .footer-inner {
    margin-bottom: -6%;
    background: url("./../../assets/images/backgroup/bgfooter.jpg") center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 70px;
    position: relative;
    border-radius: 5px;
}
.footer-top .footer-inner h3 {
    color: #fff;
    margin-bottom: 0;

}
.footer-top .footer-inner .tf-button {
    z-index: 9;
    padding: 0px 41px;
}
.footer-top .footer-inner .tf-button:hover {
    background: #fff;
}
.footer-top .footer-inner .tf-button:hover span {
    color: #E14D36;
}

.footer-main {
    position: relative;
    padding: 160px 0 30px;
}
.footer-main .bg-overlay2 {
    background: rgb(42 1 1);
    z-index: -2;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.footer-main .bg-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/bg-footer.png") center center no-repeat;
    background-size: cover;
    z-index: -1;
}
/*
.footer-main .widget-logo {
  padding-right: 60px;
  width: 30%;
}
*/
.footer-main .widget-logo .footer__logo {
    margin-bottom: 21px;
}
.footer-main .widget-logo .desc {
    margin-bottom: 28px;
    color: #D1D2D3;

}
.footer-main .footer-bottom {
    border-top: 1px solid rgba(232, 232, 233, 0.1);
    margin-top: 90px;
    padding: 22px 0 0;
}
.footer-main .footer-bottom .wrap-fx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-main .footer-bottom .Copyright {
    /*font-family: "Roboto Slab", serif;*/

}
.footer-main .footer-bottom .Copyright a {
    color: #E14D36;
    margin-left: 5px;
}
.footer-main .footer-bottom .list {
    position: relative;
    display: flex;
}
.footer-main .footer-bottom .list li {
    position: relative;
    padding-right: 18px;
    margin-right: 17px;
}
/*
.footer-main .footer-bottom .list li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 13px;
  background: #fff;
  right: 0;
  top: 8px;
}
*/
.footer-main .footer-bottom .list li:last-child {
    padding-right: 0;
    margin-right: 0;
}
.footer-main .footer-bottom .list li:last-child::after {
    display: none;
}
.footer-main .footer-bottom .list li a {
    /*font-family: "Roboto Slab", serif;*/
}
.footer-main .footer-bottom .list li a:hover {
    color: #E14D36;
}
/*
.footer-main .footer-bottom .list::after {
  position: absolute;
  width: 200px;
  left: 0;
  bottom: 5px;
  height: 1px;
  background: #fff;
  content: "";
  z-index: 0;
}
*/
#footer {
    position: relative;
}
/*
#footer .widget.widget-service {
  width: 20%;
  padding-left: 40px;
}
#footer .widget.widget-infomation {
  padding-left: 46px;
  width: 22%;
}
*/
#footer .widget.widget-infomation .infomation {
    display: block;
    margin-top: 29px;
}
#footer .widget.widget-infomation .infomation li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    line-height: 26px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
}
/*
#footer .widget.widget-infomation .infomation li:nth-child(1)::before, #footer .widget.widget-infomation .infomation li:nth-child(2)::before, #footer .widget.widget-infomation .infomation li:nth-child(3)::before, #footer .widget.widget-infomation .infomation li:nth-child(4)::before {
    position: absolute;
    left: 5px;
    top: 0px;
    font-size: 20px;
    color: #E14D36;
    font-family: "monal";
}
#footer .widget.widget-infomation .infomation li:nth-child(1)::before {
    content: "\e907";
}
#footer .widget.widget-infomation .infomation li:nth-child(2)::before {
    left: 5px;
    top: 0px;
    content: "\e906";
    font-size: 20px;
}
#footer .widget.widget-infomation .infomation li:nth-child(3)::before {
    content: "\e905";
}

 */
#footer .widget.widget-infomation .infomation li.style ul li {
    margin-bottom: 5px;
    padding-left: 0;
}
#footer .widget.widget-infomation .infomation li.style ul li::before {
    display: none;
}
#footer .widget.widget-infomation .infomation li.style ul li:nth-child(2) {
    margin-bottom: 0;
}


#footer .widget.widget-subscribe {
    width: 28%;
    padding-left: 52px;
}
#footer .widget.widget-subscribe .widget-title {
    margin-bottom: 27px;
}
#footer .widget-title {
    color: #fff;
    margin-bottom: 20px;
}
#footer.style2 .social li a {
    color: #ffffff;
    background: #562212;
    font-size: 18px;
}
#footer.style2 .social li a:hover {
    background: #e14d36;
    color: #fff;
}
/*
#footer.style2 .widget.widget-logo {
  width: 28%;
  padding-right: 22px;
}
#footer.style2 .widget.widget-service {
  padding-left: 47px;
  width: 18%;
}
#footer.style2 .widget.widget-infomation {
  width: 28%;
}
*/
#footer.style2 .widget.widget-infomation .infomation {
    margin-top: 26px;
    margin-bottom: 0px;
}
#footer.style2 .widget.widget-infomation .infomation li {
    padding-left: 0px;
    font-size: 16px;
    line-height: 2rem;
    font-weight: 400;
    color: #000;
    display: block;
}
#footer.style2 .widget.widget-infomation .infomation li span {
    font-weight: 500;
    color: #000;
    margin-right: 8px;

}
/*
#footer.style2 .widget.widget-infomation .infomation li:nth-child(1)::before {
    content: "\e905";
}
#footer.style2 .widget.widget-infomation .infomation li:nth-child(2)::before {
    content: "\e905";
}
#footer.style2 .widget.widget-infomation .infomation li:nth-child(3)::before {
    content: "\e906";
    font-size: 18px;
}
#footer.style2 .widget.widget-infomation .infomation li:nth-child(4)::before {
    content: "\e907";

}

 */
#footer.style2 .widget.widget-infomation .social li {
    margin: 0 5px;
}
#footer.style2 .widget.widget-recent-posts {
    padding-left: 22px;
    width: 26%;
}
#footer.style2 .widget.widget-recent-posts .recent-posts.style {
    border-bottom: 1px solid #D1D2D3;
    padding-bottom: 10px;
    margin-bottom: 15px;
    margin-top: 29px;
}
#footer.style2 .widget.widget-recent-posts .recent-posts li {
    display: flex;
}
#footer.style2 .widget.widget-recent-posts .recent-posts li:first-child {
    margin-bottom: 6px;
}
#footer.style2 .widget.widget-recent-posts .recent-posts li img {
    min-width: 80px;
    min-height: 80px;
}
#footer.style2 .widget.widget-recent-posts .recent-posts li .content .meta-post a {
    position: relative;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    padding-left: 25px;
}
#footer.style2 .widget.widget-recent-posts .recent-posts li .content .meta-post a::before {
    font-family: "monal";
    content: "\e913";
    position: absolute;
    left: 0;
    top: 0;
    color: #E14D36;
    font-size: 15px;
    font-weight: 500;
}
#footer.style2 .widget-title {
    color: #000;
    margin-bottom: 17px;
}
#footer.style2 .widget-link li a {
    color: #000;
}
#footer.style2 .widget-link li {
    margin-bottom: 15px;
}
#footer.style2 .widget-link li a:hover {
    color: #562212;
    text-decoration: underline;
}
#footer.style2 .footer-main {
    padding: 30px 0;
    /*
  background: #F6F6F6;
  */
    padding-bottom: 0px;
}
#footer.style2 .footer-main .bg-overlay {
    background: url("./../../assets/images/backgroup/bg-footer2.jpg") center center no-repeat;
    background-size: cover;
}
#footer.style2 .footer-main .widget-logo .footer__logo {
    margin-bottom: 16px;
}
#footer.style2 .footer-main .widget-logo .desc {
    color: #000;
    margin-bottom: 0px;
}
#footer.style2 .footer-main .widget-logo form {
    border-radius: 0;
    overflow: hidden;
    position: relative;
}
#footer.style2 .footer-main .widget-logo form input[type=text] {
    border-radius: 0;
    padding: 13px 15px 13px 18px;
    background: rgb(42 1 1);
    color: #fff;
    /*font-family: "Inter", sans-serif;*/
    font-size: 16px;
    line-height: 26px;
}
#footer.style2 .footer-main .widget-logo form input[type=text]::placeholder {
    color: #76777A;
    /*font-family: "Inter", sans-serif;*/
    font-size: 16px;
    line-height: 26px;
}
#footer.style2 .footer-main .widget-logo form button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    z-index: 1;
}
#footer.style2 .footer-main .widget-logo form button::after {
    opacity: 1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: absolute;
    content: "";
    background: linear-gradient(246.06deg, #CF00FE -19.26%, #E14D36 87.05%);
    background-size: 100% 100%;
    background-position: 100% 100%;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0;
    z-index: -1;
    visibility: visible;
}
#footer.style2 .footer-main .widget-logo form button i {
    color: #fff;
}
#footer.style2 .footer-main .widget-logo form button:hover::after {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-size: 300% 100%;
    background-position: 100% 100%;
}
#footer.style2 .footer-bottom {
    margin-top: 20px;
    padding: 15px 30px;
    align-items: center;
    display: flex;
    justify-content: center;
}
#footer.style2 .footer-bottom .wrap-fx {
    width: 100%;
}
#footer.style3 .widget-title {

    text-underline-offset: 1px;
}
#footer.style3 .footer-top {
    position: relative;
    background: linear-gradient(90deg, #E14D36 0%, #E14D36 100%);
}
#footer.style3 .footer-top .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/bg-footer-top.png") center center no-repeat;
    background-size: cover;
}
#footer.style3 .footer-top .footer-inner {
    display: flex;
    margin-bottom: 0;
    background: none;
    padding: 72px 0 60px;
}
#footer.style3 .footer-top .footer-inner .left {
    width: 50%;
}
#footer.style3 .footer-top .footer-inner .left h3 {
    margin-bottom: 18px;

    text-underline-offset: 1px;
}
#footer.style3 .footer-top .footer-inner .left p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
    color: #fff;

}
#footer.style3 .footer-top .footer-inner .right {
    width: 50%;
    padding-left: 35px;
}
#footer.style3 .footer-top .footer-inner .right form {
    margin-top: -10px;
    position: relative;
}
#footer.style3 .footer-top .footer-inner .right form button {
    position: absolute;
    top: 5px;
    right: 5px;
}
#footer.style3 .footer-top .footer-inner .right form button.tf-button {
    padding: 0px 33px;
}
#footer.style3 .footer-top .footer-inner .right form input[type=email] {
    font-size: 14px;
    line-height: 24px;
    color: #76777A;
    /*font-family: "Inter", sans-serif;*/
    height: 70px;
    padding: 8px 15px 10px 50px;
    position: relative;
}
#footer.style3 .footer-top .footer-inner .right form input[type=email]::placeholder {
    font-size: 14px;
    line-height: 24px;
    color: #76777A;
    /*font-family: "Inter", sans-serif;*/
}
#footer.style3 .footer-top .footer-inner .right form .icon-iconmail {
    position: absolute;
    left: 22px;
    top: 23px;
    font-size: 15px;
    z-index: 99;
}
#footer.style3 .footer-main {
    background: rgba(1, 12, 42, 0.96);
    padding: 90px 0 30px;
}
#footer.style3 .footer-main .bg-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/bg-footer3.jpg") center center no-repeat;
    background-size: cover;
    z-index: -2;
}
#footer.style3 .footer-main .widget-logo {
    padding-right: 50px;
}
#footer.style3 .footer-main .widget-logo .footer__logo {
    margin-bottom: 24px;
}
#footer.style3 .footer-main .widget-logo .desc {
    margin-bottom: 20px;
}
#footer.style3 .footer-bottom {
    border: none;
    margin-top: 76px;
    background: rgb(42 1 1);
    border-radius: 4px;
    height: 70px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#footer.style3 .footer-bottom .wrap-fx {
    width: 100%;
}
#footer.style3 .footer-bottom .list {
    position: relative;
}
/*
#footer.style3 .footer-bottom .list::after {
  position: absolute;
  width: 234px;
  left: 0;
  bottom: 5px;
  height: 1px;
  background: #fff;
  content: "";
  z-index: 0;
}
*/
#footer.style3 .widget-link li a::before {
    content: "";
    width: 14px;
    height: 4px;
    background: #E14D36;
    top: 20px;
}
#footer.style3 .widget-link li a:hover {
    color: #E14D36;
}
#footer.style3 .widget.widget-recent-posts {
    padding-left: 75px;
    width: 30%;
}
#footer.style3 .widget.widget-recent-posts .widget-title {
    margin-bottom: 34px;
}
#footer.style3 .widget.widget-recent-posts .recent-posts {
    margin-bottom: 20px;
}
#footer.style3 .widget.widget-recent-posts .recent-posts img {
    border-radius: 0;
}
#footer.style3 .widget.widget-recent-posts .recent-posts li .content a {
    color: #fff;
}
#footer.style3 .widget.widget-recent-posts .recent-posts li .content a:hover {
    color: #E14D36;
}
#footer.style3 .widget.widget-recent-posts .recent-posts li .content a.title {

}
#footer.style3 .widget.widget-recent-posts .recent-posts li .content a.title:hover {
    text-decoration: underline #E14D36 solid 2px;
}
#footer.style3 .widget.widget-recent-posts .recent-posts li .content .meta-post a {
    font-size: 12px;
    line-height: 22px;
    color: #A4A5A6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#footer.style3 .widget.widget-recent-posts .recent-posts li .content .meta-post a svg {
    margin-right: 8px;
}
#footer.style3 .widget.widget-recent-posts .recent-posts li .content .meta-post a:hover {
    color: #E14D36;
}
#footer.style3 .widget.widget-recent-posts .recent-posts li:first-child {
    margin-bottom: 6px;
}
#footer.style3 .widget.widget-logo .box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5px;
}
#footer.style3 .widget.widget-logo .box svg {
    margin-right: 13px;
}
#footer.style3 .widget.widget-logo .box span {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: bold;
    text-transform: none;
}
#footer.style3 .widget.widget-service {
    padding-left: 65px;
}
#footer.style3 .widget.widget-service.style {
    padding-left: 45px;
}

.widget-subscribe p {
    color: #D1D2D3;
    /*font-family: "Inter", sans-serif;*/
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;

    margin-bottom: 30px;
}
.widget-subscribe form {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.widget-subscribe form input[type=text] {
    padding: 13px 15px 13px 18px;
    background: #fff;
    color: #76777A;
    /*font-family: "Inter", sans-serif;*/
    font-size: 14px;
    line-height: 24px;
}
.widget-subscribe form input[type=text]::placeholder {
    color: #76777A;
    /*font-family: "Inter", sans-serif;*/
    font-size: 14px;
    line-height: 24px;
}
.widget-subscribe form button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border: none;
    background: #E14D36;
}
.widget-subscribe form button i {
    color: #fff;
}
.widget-subscribe form button:hover {
    background: #E14D36;
}

.inner-page #footer .widget.widget-infomation {
    padding-left: 17px;
}
.inner-page #footer .widget.widget-infomation .infomation li:nth-child(1)::before {
    left: 1px;
    top: 4px;
    font-size: 24px;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    animation-duration: 0.75s;
}

@keyframes bounce {
    from, 20%, 53%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}

@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
.flash {
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.06, 1.06, 1.06);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}
.pulse {
    animation-name: pulse;
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}
.rubberBand {
    animation-name: rubberBand;
}

@keyframes shake {
    from, to {
        transform: translate3d(0, 0, 0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translate3d(-10px, 0, 0);
    }
    20%, 40%, 60%, 80% {
        transform: translate3d(10px, 0, 0);
    }
}
.shake {
    animation-name: shake;
}

@keyframes headShake {
    0% {
        transform: translateX(0);
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        transform: translateX(0);
    }
}
.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake;
}

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
.swing {
    transform-origin: top center;
    animation-name: swing;
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        transform: scale3d(1, 1, 1);
    }
}
.tada {
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
    from {
        transform: none;
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        transform: none;
    }
}
.wobble {
    animation-name: wobble;
}

@keyframes jello {
    from, 11.1%, to {
        transform: none;
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
.jello {
    animation-name: jello;
    transform-origin: center;
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}
.bounceIn {
    animation-name: bounceIn;
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }
    75% {
        transform: translate3d(0, -10px, 0);
    }
    90% {
        transform: translate3d(0, 5px, 0);
    }
    to {
        transform: none;
    }
}
.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }
    75% {
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        transform: translate3d(5px, 0, 0);
    }
    to {
        transform: none;
    }
}
.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        transform: translate3d(10px, 0, 0);
    }
    90% {
        transform: translate3d(-5px, 0, 0);
    }
    to {
        transform: none;
    }
}
.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }
    75% {
        transform: translate3d(0, 10px, 0);
    }
    90% {
        transform: translate3d(0, -5px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.bounceInUp {
    animation-name: bounceInUp;
}

@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%, 55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.bounceOut {
    animation-name: bounceOut;
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0);
    }
    40%, 45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}
.bounceOutDown {
    animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}
.bounceOutLeft {
    animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}
.bounceOutRight {
    animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0);
    }
    40%, 45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
.bounceOutUp {
    animation-name: bounceOutUp;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInDownBig {
    animation-name: fadeInDownBig;
}

@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        transform: translate3d(-100px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInLeftSmall {
    animation-name: fadeInLeftSmall;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

@keyframes fadeInRightSmall {
    from {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInRightSmall {
    animation-name: fadeInRightSmall;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInRightBig {
    animation-name: fadeInRightBig;
}

@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInUpSmall {
    animation-name: fadeInUpSmall;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}
.fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}
.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}
.fadeOutLeft {
    animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}
.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}
.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}
.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}
.fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out;
    }
    50% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        animation-timing-function: ease-in;
    }
    to {
        transform: perspective(400px);
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip;
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipInY;
}

@keyframes flipOutX {
    from {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}
.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@keyframes flipOutY {
    from {
        transform: perspective(400px);
    }
    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    animation-name: flipOutY;
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        transform: none;
        opacity: 1;
    }
}
.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in;
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        transform-origin: center;
        transform: none;
        opacity: 1;
    }
}
.rotateIn {
    animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownRight {
    animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpRight {
    animation-name: rotateInUpRight;
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1;
    }
    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
.rotateOut {
    animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}
.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.hinge {
    animation-name: hinge;
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }
    50% {
        transform: rotate(-10deg);
    }
    70% {
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.jackInTheBox {
    animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.rollIn {
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
.rollOut {
    animation-name: rollOut;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInDown {
    animation-name: zoomInDown;
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInLeft {
    animation-name: zoomInLeft;
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInRight {
    animation-name: zoomInRight;
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInUp {
    animation-name: zoomInUp;
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.zoomOut {
    animation-name: zoomOut;
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomOutDown {
    animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform-origin: left center;
    }
}
.zoomOutLeft {
    animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
        transform-origin: right center;
    }
}
.zoomOutRight {
    animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomOutUp {
    animation-name: zoomOutUp;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
.slideInUp {
    animation-name: slideInUp;
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}
.slideOutDown {
    animation-name: slideOutDown;
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}
.slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}
.slideOutRight {
    animation-name: slideOutRight;
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}
.slideOutUp {
    animation-name: slideOutUp;
}

@keyframes move2 {
    0% {
        -webkit-transform: rotate(1deg) translate(2px, 2px);
        transform: rotate(1deg) translate(2px, 2px);
    }
    50% {
        -webkit-transform: rotate(-1deg) translate(-2px, -2px);
        transform: rotate(-1deg) translate(-2px, -2px);
    }
    100% {
        -webkit-transform: rotate(1deg) translate(2px, 2px);
        transform: rotate(1deg) translate(2px, 2px);
    }
}
@keyframes move3 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    50% {
        -webkit-transform: translate(20px);
        transform: translate(20px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
@keyframes move4 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    50% {
        -webkit-transform: translate(-30px);
        transform: translate(-30px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
@keyframes move5 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes move6 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes move7 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes myanimation {
    0% {
        width: 0;
    }
}
@keyframes myanimation {
    0% {
        width: 0;
    }
}
@keyframes ripple {
    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* tf-section
-------------------------------------------------------------- */
.tf-section {
    padding: 60px 0;
}
.pt-pb-block {
    padding-top: 60px;
    padding-bottom: 60px;
}
.tf-section.pb0 {
    padding-bottom: 0;
}
.tf-section.pd0 {
    padding: 0;
}

.main .header__logo {
    background: linear-gradient(246.06deg, #CF00FE -19.26%, #E14D36 87.05%);
}
.main .page-title {
    background: url("./../../assets/images/backgroup/fon-news-2.png") center center no-repeat;
    background-size: cover;
}
.course_title_single {
    font-size: 28px;
    margin-bottom: 20px;
}
.main.home3 .header #site-header-inner .tf-button {
    padding: 0 40px;
}
.main.home2 .tf-button {
    background: #E14D36;
    border-radius: 4px;
    padding: 0px 40px;
}
.main.home2 .tf-button:hover {
    background: #E14D36;
}
.main.home2 .tf-button:hover span {
    color: #fff;
}
.main.home2 .tf-button.st2 {
    background: #E14D36;
}
.main.home2 .page-title {
    background: none;
    padding: 67px 0 0;
}
.main.home2 .page-title .overlay {
    background: url("./../../assets/images/backgroup/bg-pagetitleh2.png") center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: move3 6s infinite linear;
}
.main.home2 .page-title .overlay2 {
    background: rgb(42 1 1);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.main.home2 .footer-inner .tf-button:hover {
    background: #fff;
}
.main.home2 .footer-inner .tf-button:hover span {
    color: #E14D36;
}
.main.home3 .header__logo {
    transform: none;
    padding: 0;
    background: transparent;
}
.icon-absolute {
    position: absolute;
    bottom: 43px;
    right: 114px;
}
.technology-solution .overlay {
    position: absolute;
    right: 15px;
    top: 42px;
    border-radius: 10px;
    width: 53%;
    height: 104%;
    background: #F6F6F6;
    z-index: -1;
}
.technology-solution .content-about {
    padding-right: 55px;
    padding-top: 122px;
    margin-left: -10px;
}
.technology-solution .content-about .title,
.technology-solution .content-about .sub-title,
.technology-solution .content-about p {

}
.technology-solution .content-about p.txt {
    margin-bottom: 26px;
    color: rgb(42 1 1);
}
.technology-solution .content-about .tf-button {
    margin-top: 24px;
    padding: 0px 41px;
}

.home1 .title-section .sub-title::before {
    background: linear-gradient(246.06deg, #CF00FE 15.37%, rgba(255, 255, 255, 0) 116.95%);
}
.home1 .tf-section.technology-solution .container, .home1 .tf-section.tf-team .container {
    max-width: 1320px;
}
.home1 .tf-section.tf-about .content-about {
    padding: 2px 0 0 0;
}
.home1 .tf-section.tf-about .content-about .txt-transform {
    padding-right: 50px;
    margin-bottom: 26px;
}
.home1 .tf-section.tf-about .content-about .tf-button {
    padding: 0 47px;
}
.home1 .tf-section.technology-solution {
    padding: 90px 0 184px;
}
.home1 .header__logo {
    padding: 41px 39.5px 31px;
}
.home1 .page-title {
    padding: 89px 0 89px;
}

.tf-about .content-about {
    padding: 2px 0 0 0;
}
.tf-about .content-about .txt-transform {
    padding-right: 50px;
    margin-bottom: 26px;
}
.tf-about .content-about .tf-button {
    padding: 0 47px;
}
.tf-about.style2 .container {
    max-width: 1420px;
}
.tf-about.style2 .img-about .img2 {
    z-index: 9;
    width: 49%;
    margin-top: -47.7%;
    position: relative;
    margin-left: auto;
}
.tf-about.style2 .img-about .img2::after {
    position: absolute;
    left: -20px;
    content: "";
    top: -20px;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 5px;
}
.tf-about.style2 .img-about .img2 img {
    z-index: 2;
}
.tf-about.style2 .list {
    margin-bottom: 40px;
}
.tf-about.style2 .list li {
    font-size: 16px;
    line-height: 26px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}
.tf-about.style2 .list li span {
    line-height: 1;
    margin-right: 10px;
}
.tf-about.style2 .content-about {
    padding-right: 135px;
    padding-top: 0;
}
.tf-about.style2 .content-about .wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.tf-about.style2 .content-about .wrap .img-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 50px;
}
.tf-about.style2 .content-about .wrap .img-box img {
    border-radius: 50%;
    min-height: 70px;
    min-width: 70px;
}
.tf-about.style2 .content-about .wrap-icon-box {
    margin-top: 30px;
    padding-bottom: 24px;
    border-bottom: none;
    margin-bottom: 0;
}
.tf-about.style2 .content-about .wrap-icon-box .icon-box {
    width: 50%;
}
.tf-about.style2 .content-about .wrap-icon-box .icon-box.st2 .img {
    min-width: 68px;
    min-height: 68px;
    margin-right: 5px;
}
.tf-about.style2 .content-about .divider {
    width: 86%;
    height: 1px;
    background: #E8E8E9;
    margin-bottom: 30px;
}
.tf-about.style2 .content-about .wrap .img-box .content .name {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 5px;
    font-weight: bold;
}
.tf-about.style2 .content-about .wrap .img-box .content p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #494A4D;
}
.tf-about.style3 .img-bg {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.05;
    z-index: -1;
}
.tf-about.style3 .container {
    max-width: 1390px;
}
.tf-about.style3 .img-about .img1 {
    width: 65%;
}
.tf-about.style3 .img-about .img2 {
    margin-top: -60%;
    padding-top: 1px;
    margin-left: auto;
    width: 65%;
}
.tf-about.style3 .img-about img {
    border-radius: 0;
}
.tf-about.style3 .content-about {
    padding-top: 13px;
    padding-right: 65px;
}
.tf-about.style3 .content-about .txt-transform {
    padding-right: 105px;
}
.tf-about.style3 .content-about .wrap-icon-box {
    margin-top: 46px;
}
.tf-about.style3 .content-about .wrap-icon-box .icon-box {
    width: 50%;
}
.tf-about.style3 .content-about .wrap-icon-box .icon-box.st2 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.tf-about.style3 .content-about .wrap-icon-box .icon-box.st2 .img {
    min-width: 70px;
    min-height: 70px;
    margin-right: 20px;
}
.tf-about.style3 .content-about .wrap-icon-box .icon-box.st2 .content h5 {
    margin-bottom: 5px;

    text-underline-offset: 1px;
}
.tf-about.style3 .content-about .wrap-icon-box .icon-box.st2 .content h5 a {

    color: rgb(42 1 1);
}
.tf-about.style3 .content-about .wrap-icon-box .icon-box.st2 .content h5 a:hover {
    color: #E14D36;
    text-decoration: underline #E14D36 solid 1px;
}
.tf-about.style3 .content-about .wrap-icon-box .icon-box.st2 .content p {
    margin-bottom: 0;
    color: #76777A;
}
.tf-about.style3 .content-about .wrap {
    padding-right: 70px;
}
.tf-about.style3 .content-about .wrap .img-box {
    align-items: flex-start;
}
.tf-about.style3 .content-about .wrap .img-box .img {
    margin-right: 30px;
}
.tf-about.style3 .content-about .wrap .img-box p {
    text-decoration: underline #76777A solid 1px;
    color: #76777A;
    text-underline-offset: 3px;
}
.tf-about.style3 .content-about .wrap .img-box .name {
    font-size: 20px;
    line-height: 1.5;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: bold;
    margin-bottom: 2px;
}
.tf-about.style3 .content-about .wrap .tf-button {
    margin-right: 30px;
    padding: 0 35px;
}
.tf-about.style3 .content-about .wrap .tf-button span {
    color: #ECF2F6;
}
.tf-about.style3 .content-about .wrap .tf-button span.line {
    text-decoration: underline #ECF2F6 solid 2px;
}

.tf-section.tf-testimonior {
    overflow: hidden;
}
.tf-section.tf-testimonior .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/bg-testimonior.jpg") center center no-repeat;
    background-size: cover;
    z-index: -2;
}
.tf-section.tf-testimonior .overlay2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0a024f;
    opacity: 0.9;
    z-index: -1;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.tf-section.tf-testimonior .icon-absolute {
    left: 34px;
    bottom: 46px;
}
.tf-section.tf-testimonior .slider-testimonior {
    margin-top: 30px;
    margin-left: 100px;
}

.slider-testimonior.style2 {
    margin: -50px !important;
    padding: 50px !important;
}

.slider-testimonior-thum {
    margin-left: 0;
}
.slider-testimonior-thum .swiper-slide {
    width: 50px !important;
    margin-left: -25px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.slider-testimonior-thum .swiper-slide:nth-child(1) {
    margin-left: 0;
    z-index: 0;
}
.slider-testimonior-thum .swiper-slide:nth-child(2) {
    z-index: 1;
}
.slider-testimonior-thum .swiper-slide:nth-child(3) {
    z-index: 2;
}
.slider-testimonior-thum .swiper-slide:nth-child(4) {
    z-index: 3;
}
.slider-testimonior-thum .swiper-slide:nth-child(5) {
    z-index: 4;
}
.slider-testimonior-thum .swiper-slide:nth-child(6) {
    z-index: 5;
}
.slider-testimonior-thum .swiper-slide:hover {
    z-index: 6;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.slider-testimonior-thum .swiper-wrapper {
    transform: none !important;
}

.wrap-img {
    display: flex;
}
.wrap-img .image {
    background: #fff;
    border-radius: 50%;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50px;
    max-height: 50px;
    position: relative;
    overflow: hidden;
}
.wrap-img .image a {
    z-index: 9;
}
.wrap-img .image i {
    color: rgb(42 1 1);
    font-size: 25px;
}
.wrap-img .image::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    border: 2px solid #fff;
    border-radius: 50%;
    left: 0;
    z-index: 9;
    top: 0;
}
.wrap-img .image.style::before {
    border: 2px solid #E14D36;
}

.tf-section.tf-partner {
    padding: 80px 0 130px;
}

.home2 .testimonior-box .content .quote {
    bottom: 60px;
    right: 8%;
}
.home2 .box-slider .content-box {
    padding-top: 103px;
}
.home2 .box-slider .content-box .sub-title::before {
    background: linear-gradient(246.06deg, #E14D36 15.37%, rgba(255, 255, 255, 0) 116.95%);
}
.home3 .header .container,
.home2 #top-bar .container {
    max-width: 1550px;
}
.home3 .header {
    height: 100px;
}
.home3 .header .menu-bar-right {
    margin-left: 0px;
    margin-right: 15px;
}
.home3 .header .menu-bar-right i {
    font-size: 21px;
    /*
  color: rgb(42 1 1);
  */
}
.home3 .header .header__logo {
    transform: none;
    padding: 0;
    background: transparent;
}
.home3 .header #main-nav .menu li a {
    padding-right: 17px;
    font-weight: 400;
}
.home3 .header #main-nav .menu li.menu-item-has-children > a::after {
    content: "\f107";
    font-size: 20px;
}
.home3 .header #main-nav .menu li.menu-second-children > a::after {
    content: "\f107";
    font-size: 20px;
}
.home2 .box-slider .content-box .sub-title {
    padding-left: 70px;

    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    color: #E14D36;
    margin-bottom: 15px;
}
.home2 .box-slider .content-box .title {
    color: #fff;
    font-size: 100px;
    line-height: 1.1;
    margin-right: -60px;
    margin-bottom: 50px;
}
.home2 .box-slider .content-box .tf-button {
    background: #E14D36;
}
.home2 .box-slider .content-box .tf-button:hover {
    background: #fff;
}
.home2 .box-slider .content-box .tf-button:hover span {
    color: #E14D36;
}
.home2 .box-slider .image .img {
    margin-right: -138px;
    margin-left: -35px;
}
.home2 .box-slider .image .img::after {
    display: none;
}

.home2 .img-about .experience-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #E14D36;
    max-width: 275px;
    border-radius: 0;
    position: absolute;
    right: 10.2%;
    left: auto;
    top: 77px;
    bottom: auto;
    padding: 35px 20px 35px 30px;
}
.home2 .img-about .experience-box .number-content {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 0;
}
.home2 .img-about .experience-box h5 {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin-left: 20px;
}
.home2 .img-about .experience-box::after {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    content: "";
    border-color: transparent #E14D36 transparent transparent;
    border-style: solid;
    border-width: 50px 38px 0px 22px;
    height: 0px;
    width: 0px;
    left: -50px;
    bottom: 20px;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.home2 .tf-section.tf-partner {
    padding: 100px 0;
}
.home2 .tf-section.tf-team {
    position: relative;
    background: url("./../../assets/images/backgroup/bg-team.png") center center no-repeat;
    background-size: cover;
    padding: 120px 0 90px;
}
.home2 .tf-section.tf-team .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F6F6F6;
    z-index: -1;
}
.home2 .tf-section.tf-testimonior {
    background: rgba(1, 12, 42, 0.9);
}
.home2 .tf-section.tf-testimonior .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/bg-testimonior2.jpg") center center no-repeat;
    background-size: cover;
    z-index: -1;
}
.home2 .tf-section.tf-testimonior .slider-testimonior {
    margin-top: 11px;
}
.home2 .tf-section.tf-testimonior .testimonior-box .content {
    padding: 40px 30px 40px 92px;
}
.home2 .tf-section.tf-testimonior .testimonior-box .content h4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 1px;
}
.home2 .title-section .sub-title {
    color: #E14D36;
}
.home2 .tf-project {
    background: url("./../../assets/images/backgroup/bg-project2.png") center center no-repeat;
    background-size: cover;
    padding: 60px 0px;
    background-color: #F6F6F6;
}
.home2 .tf-project .btn-slider-project {
    position: absolute;
    bottom: 14px;
    right: 5px;
}
.home2 .tf-project .swiper-container.slider-project2 {
    margin: 61px 0 0;
}
.home2 #footer .widget.widget-infomation {
    padding-left: 17px;
}
.home2 #footer .widget.widget-infomation .infomation li:nth-child(1)::before {
    font-size: 26px;
    left: 0;
    top: 3px;
}

.home3 .tf-button {
    padding: 0px 34px;
    overflow: hidden;
}
.home3 .tf-button span.icon {
    margin-left: 10px;
}
.home3 .tf-button span.icon i {
    font-size: 21px;
    transform: translateY(3px);
}
.home3 .tf-button span.line {

}
.home3 .tf-button.secondary::after{
    background: #c59368;
}
.home3 .tf-button.secondary:hover::after {
    background: #E14D36;
}
.home3 .tf-button.save-btn::after {
    opacity: 1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    content: "";
    background: #8e6455!important;
    background-size: 100% 100%;
    background-position: 100% 100%;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0;
    z-index: -1;
    visibility: visible;
}
.home3 .tf-button.save-btn:hover::after {
    background: #E14D36!important;
}
.home3 .tf-button.style2 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #E14D36 0%, #E14D36 100%);
    color: #fff;
}
.home3 .tf-button.style2 span.icon i {
    transform: translateY(1px);
}
.home3 .tf-button.style2::after {
    display: none;
}
.home3 .tf-button.style2:hover {
    background: #E14D36;
}
.home3 .tf-button.style2:hover span {
    color: #fff;
}
.home3 .tf-button:hover::after {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-size: 300% 100%;
    background-position: 100% 100%;
}
.home3 .tf-button:hover span {
    color: #fff;
}
.home3 .section-contact .content .tf-button:hover span {
    color: #fff;
}
.home3 .section-contact .content .tf-button:hover span.line {

}
.home3 #top-bar .container {
    max-width: 1550px;
}
.home3 .title-section .sub-title {
    padding-left: 60px;
    position: relative;
    margin-bottom: 11px;
    color: #E14D36;
}
.home3 .title-section .sub-title::before {
    font-family: "monal";
    content: "\e924";
    background: none;
    transform: none;
    font-size: 12px;
    top: 2px;
    left: -5px;
    color: #E14D36;
}
.home3 .title-section .title {
    letter-spacing: -0.2px;
    text-underline-offset: 4px;
}
.home3.main .page-title.main-page-title{
    padding: 75px 0 20px;
    background: url(./../../assets/images/backgroup/background-2.png) 50% 90% no-repeat;
    background-size: cover;
}
.home3.main .page-title.main-page-title .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*
  background: rgba(0, 10, 28, 0.8);
  */
    background: rgb(243 247 255 / 81%);
    z-index: 0;
}
.home3 .box-slider .content-box {
    padding: 0;
}
.home3 .box-slider .content-box .sub-title {
    color: #E14D36;
}
.home3 .box-slider .content-box .sub-title::before {
    font-family: "monal";
    content: "\e924";
    background: none;
    transform: none;
    font-size: 12px;
    top: 0;
    color: #E14D36;
    box-shadow: none;
}
.home3 .box-slider .content-box .title {
    color: #2A0101;
    font-size: 53px;
    line-height: 1.1;
    /*font-family: "Roboto Slab", serif;*/
    margin-bottom: 35px;
}
.home3 .box-slider .content-box .desc {
    font-size: 18px;
    line-height: 28px;
    /*font-family: "Inter", sans-serif;*/
    color: rgb(42 1 1);
    padding-right: 50px;
    letter-spacing: 0.1px;
    margin-bottom: 49px;
}
.home3 .box-slider .content-box .tf-button {
    background: #E14D36;
    margin-right: 23px;
    border-radius: 6px;
    padding: 18px 60px;
    height: auto;
    line-height: 0;
}
.home3 .box-slider .content-box .tf-button span.icon {
    margin-left: 8px;
}
.home3 .box-slider .content-box .tf-button span.icon i {
    font-size: 20px;
    transform: translateY(2px);
}
.home3 .box-slider .content-box .btn-slider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home3 .box-slider .content-box .btn-slider .video {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home3 .box-slider .content-box .btn-slider .video .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #E14D36;
    margin-right: 15px;
}
.home3 .box-slider .content-box .btn-slider .video .icon span {
    color: #E14D36;
}
.home3 .box-slider .content-box .btn-slider .video .txt {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 18px;
    line-height: 26px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 400;
    color: #000;
}
a.my-link{
    height: 100%;
}
.home3 .box-slider .content-box .btn-slider .video .txt:hover {
    color: #E14D36;
}
.home3 .page-title .swiper-container.slider-main .swiper-pagination {
    right: -24%;
    left: auto;
    bottom: 20px;
}
.home3 .page-title .swiper-container.slider-main .swiper-pagination .swiper-pagination-bullet {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home3 .page-title .swiper-container.slider-main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    margin-bottom: 20px;
}
.home3 .page-title .swiper-container.slider-main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    background: linear-gradient(180deg, #0869C1 0%, #E14D36 100%);
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
}
.home3 .page-title .swiper-container.slider-main .swiper-pagination span {
    color: #fff;
    margin-right: 53px;
}
.home3 .page-title .swiper-container.slider-main .swiper-pagination span::before {
    bottom: -34px;
    left: 1px;
}
.home3 .page-title .swiper-container.slider-main .swiper-pagination span::before {
    background: linear-gradient(180deg, #0869C1 0%, #E14D36 100%);
}
.home3 .page-title .swiper-container.slider-main .swiper-pagination span::after {
    background: #fff;
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
}
/*
.home3 .tf-section.tf-service {
  overflow: hidden;
  padding: 122px 0 100px;
}
.home3 .tf-section.tf-service .container {
  max-width: 1300px;
}
.home3 .tf-section.tf-service .wrap-service {
  padding: 0px;
  margin-bottom: 113px;
}
.home3 .tf-section.tf-service .wrap-service .title-section {
  padding: 0 18%;
  margin-bottom: 0;
}
.home3 .tf-section.tf-service .wrap-service .title-section .title {
  margin-bottom: 55px;
  color: #fff;

}

 */
.home3 .tf-section.tf-service .overlay {
    position: absolute;
    width: 100%;
    height: 51.7%;
    top: 0;
    left: 0;
    background: url("./../../assets/images/backgroup/banner-consult1.jpg") center center no-repeat;
    background-size: cover;
    z-index: -3;
}
.home3 .tf-section.tf-service .overlay3 {
    position: absolute;
    width: 100%;
    height: 51.7%;
    top: 0;
    left: 0;
    background: rgba(0, 10, 27, 0.8);
    z-index: -2;
}
.home3 .tf-section.tf-service .bg-img {
    position: relative;
    width: 100%;
    height: 51.7%;
    top: 0;
    left: 0;
    z-index: -1;
}
.home3 .tf-section.tf-service .bg-img img {
    opacity: 0.4;
    right: -10px;
    top: -122px;
    position: absolute;
}
.home3 .tf-section.tf-service .overlay2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F6F6F6;
    z-index: -4;
}
.home3 .tf-section.tf-service .service-box .wrap-inner {
    padding: 0 15px;
    margin-bottom: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.home3 .tf-section.tf-service .service-box .wrap-inner .title-section {
    width: 65%;
    margin-bottom: 0;
}
.home3 .tf-section.tf-service .service-box .wrap-inner .title-section .title {
    margin-bottom: 0;

}
.home3 .tf-section.tf-service .service-box .wrap-inner .wrap-btn {
    width: 35%;
    text-align: right;
}
.home3 .tf-section.tf-service .service-box .wrap-inner .wrap-btn .tf-button {
    transform: translateY(6px);
}
.home3 .tf-section.tf-service .service-box .feature-box {
    flex-wrap: wrap;
}
.home3 .tf-section.tf-service .service-box .feature-box .col-50 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}
.home3 .tf-section.tf-service .service-box .feature-box .box {
    padding: 80px 20px 80px 40px;
    box-shadow: none;
    margin-bottom: 30px;
    background: #F6F6F6;
    width: 100%;
    position: relative;
    max-height: 274px;
}
.home3 .tf-section.tf-service .service-box .feature-box .box::before {
    position: absolute;
    content: "";
    /*
  background: url("./../../assets/images/backgroup/bg-box.png") center center no-repeat;
  */
    background: linear-gradient(102.34deg, #0A0A0A 1.11%, rgba(0, 0, 0, 0.17) 100%);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.home3 .tf-section.tf-service .service-box .feature-box .box::after {
    z-index: -2;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .icon .bg {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 9;
    background: transparent;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .icon .bg::after {
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #0869c1 0%, #E14D36 100%);
    opacity: 1;
    z-index: -1;
    content: "";
}
.home3 .tf-section.tf-service .service-box .feature-box .box .icon .bg span {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #fff;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content h5 {
    font-size: 22px;
    line-height: 1.454;

    text-underline-offset: 1px;
    margin-bottom: 15px;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content h5 a {

    text-underline-offset: 1px;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content p {
    color: #494A4D;
    margin-bottom: 14px;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore {
    position: relative;

    color: rgb(42 1 1);
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/
    font-size: 14px;
    line-height: 1;
}
/*
.home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore::before {
  position: absolute;
  bottom: -4px;
  height: 1px;
  width: 93px;
  content: "";
  background: #e2c5f8;
  left: 0;
}
*/
.home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore span {
    position: relative;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore span::after, .home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore span::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f324";
    color: #E14D36;
    right: -21px;
    font-size: 13px;
    top: 50%;
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore span::after {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore span::before {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(-7px, -50%);
    -moz-transform: translate(-7px, -50%);
    -ms-transform: translate(-7px, -50%);
    -o-transform: translate(-7px, -50%);
    transform: translate(-7px, -50%);
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore:hover span::after {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(7px, -50%);
    -moz-transform: translate(7px, -50%);
    -ms-transform: translate(7px, -50%);
    -o-transform: translate(7px, -50%);
    transform: translate(7px, -50%);
}
.home3 .tf-section.tf-service .service-box .feature-box .box .content .learnmore:hover span::before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(2px, -50%);
    -moz-transform: translate(2px, -50%);
    -ms-transform: translate(2px, -50%);
    -o-transform: translate(2px, -50%);
    transform: translate(2px, -50%);
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active, .home3 .tf-section.tf-service .service-box .feature-box .box:hover {
    background: transparent;
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .icon, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .icon {
    border-color: #fff;
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .icon .bg, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .icon .bg {
    background: #fff;
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .icon .bg::after, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .icon .bg::after {
    opacity: 0;
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .icon .bg span, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .icon .bg span {
    color: #E14D36;
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .content h5, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .content h5 {

}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .content h5 a, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .content h5 a {

}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .content p, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .content p {
    color: #fff;
    position: relative;
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .content .learnmore, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .content .learnmore {
    color: #c59368;
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .content .learnmore::before, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .content .learnmore::before {
    color: #fff;
}
.home3 .tf-section.tf-service .service-box .feature-box .box.active .content .learnmore span::after, .home3 .tf-section.tf-service .service-box .feature-box .box.active .content .learnmore span::before, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .content .learnmore span::after, .home3 .tf-section.tf-service .service-box .feature-box .box:hover .content .learnmore span::before {
    color: #c59368;
}
.home3 .tf-section.tf-about2 .image img,
.home3 .tf-section.tf-about2 .image2 img {
    border-radius: 0;
}
.home3 .tf-section.tf-about2 .image {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.home3 .tf-section.tf-about2 .image .img2 {
    padding-top: 22px;
    width: 34%;
}
.home3 .tf-section.tf-about2 .image .img1 {
    width: 44%;
    margin-left: 10px;
    margin-right: 70px;
}
.home3 .tf-section.tf-about2 .content-about {
    padding-top: 28px;
}
.home3 .tf-section.tf-about2 .content-about .title-section {
    margin-bottom: 40px;
}
.home3 .tf-section.tf-about2 .content-about .wrap-box {
    display: block;
    border-bottom: 0;
}
.home3 .tf-section.tf-about2 .content-about .wrap-box .box {
    position: relative;
    padding-left: 50px;
}
.home3 .tf-section.tf-about2 .content-about .wrap-box .box .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0869c1 0%, #E14D36 100%);
    position: absolute;
    left: 0;
    top: 3px;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
}
.home3 .tf-section.tf-about2 .content-about .wrap-box .box .title {

    text-underline-offset: 1px;
    margin-bottom: 8px;
}
.home3 .tf-section.tf-about2 .content-about .wrap-box .box .title a {

}
.home3 .tf-section.tf-about2 .content-about .wrap-box .box .title a:hover {
    text-decoration: underline #E14D36 solid 1px;
}
.home3 .tf-section.tf-about2 .content-about .wrap-box .box p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 26px;
    color: #76777A;

}
.home3 .tf-section.tf-team {
    padding: 116px 0 90px;
}
.home3 .tf-section.tf-partner {
    padding: 0;
}
.home3 .tf-section.tf-partner .sl-partner {
    padding: 30px 0;
}
.home3 .tf-section.tf-blog {
    padding: 60px 0px;
}
.home3 .footer-top .footer-inner .tf-button span {
    color: #fff;
}

.tf-section {
    position: relative;
}
.tf-section.get-solutions {
    padding: 0 0 120px;
}
.tf-section.get-solutions .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: url("./../../assets/images/backgroup/bg-get-solutions.png") center center no-repeat;
    background-size: cover;
    z-index: -1;
}
.tf-section.get-solutions .box {
    border-radius: 5px;
    background: #fff;
    margin-top: -47.5%;
    padding: 60px;
    margin-right: -5px;
}
.tf-section.get-solutions .content-progress-box {
    margin-top: 50px;
    padding-left: 25px;
}

.image-video {
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-video img {
    z-index: -1;
    margin-left: auto;
}
.image-video .popup-youtube {
    border: 1px solid #E14D36;
    padding: 15px;
    position: absolute;
    z-index: 2;
    margin-left: 58px;
    margin-top: -36px;
    border-radius: 4px;
}
.image-video .popup-youtube .play {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E14D36;
    width: 100px;
    height: 100px;
    border-radius: 4px;
}
.image-video .popup-youtube .play i {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 30px;
    color: #fff;
}
.image-video .popup-youtube:hover {
    border-color: #fff;
}
.image-video .popup-youtube:hover .play {
    background: #fff;
}
.image-video .popup-youtube:hover .play i {
    color: #E14D36;
}
.image-video.style2 {
    /*
  padding-right: 72px;
  */
}
.image-video.style2 img {
    margin-right: auto;
    margin-left: 0;
}
.image-video.style2 .popup-youtube {
    margin-left: 0;
    border-color: rgb(42 1 1);
}
.image-video.style2 .popup-youtube .play {
    background: rgb(42 1 1);
}
.image-video.style2 .popup-youtube .play i {
    font-size: 20px;
}
/*
.tf-section.section-contact {
  padding: 60px 0px;
}
 */

/*
.section-contact {
  background: rgb(42 1 1 / 91%);
}
*/
.section-contact .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/bg1contact.jpg") center center no-repeat;
    background-size: cover;
    z-index: -1;
}
.get-consult{
    background: rgb(1 12 42 / 12%);
}
.get-consult .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/banner-consult1.jpg") center center no-repeat;
    background-size: cover;
    z-index: -1;
}
.section-contact .content {
    /*
  padding-top: 26px;
  padding-right: 90px;
  padding-bottom: 70px;
  */
}
.section-contact .content .title-section {
    margin-bottom: 20px;
}
.section-contact .content .title-section .title {
    margin-bottom: 29px;

}
.section-contact .content .desc {
    color: rgb(42 1 1);
    margin-bottom: 30px;
    font-size: 20px;
}
.section-contact .content .tf-button {
    padding: 0px 35px;
    background: #E14D36;
}
.section-contact .content .tf-button:hover {
    background: #fff;
}
.section-contact .content .tf-button:hover span {
    color: #E14D36;
}
.section-contact .content .tf-button:hover span.line {
    text-decoration: underline #E14D36 solid 1px;
}
.section-contact .right-box {
    position: relative;
}
.section-contact .right-box.calculator {
    overflow: hidden;
}
.section-contact .right-box .box {
    background: #fff;
    /*
  left: 10px;
  top: 46px;
  */
    left: -40px;
    top: 80px;
    position: absolute;
    min-width: 210px;
    min-height: 210px;
    padding: 20px;
    z-index: 2;
}
.section-contact .right-box .box .wrap {
    width: 100%;
    height: 100%;
    padding: 10px 10px 35px;
    border: 1px dashed #E8E8E9;
}
.section-contact .right-box .box .wrap .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #E14D36 0%, #E14D36 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}
.section-contact .right-box .box .wrap .icon span {
    font-size: 30px;
    color: #fff;
}
.section-contact .right-box .box .wrap ul li {
    /*font-family: "Roboto Slab", serif;*/
    font-weight: bold;
}
.section-contact .right-box .box .wrap ul li:nth-child(1) {
    font-weight: 600;
    color: #E14D36;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 2px;
    /* padding-left: 4px;
  */
}
.section-contact .right-box .box .wrap ul li:nth-child(2) {
    color: rgb(42 1 1);
    font-size: 20px;
    line-height: 1.5;
}
.section-contact .right-box .image {
    margin-right: -85px;
    text-align: right;
}

.about .team-box {
    overflow: visible;
}
.about .team-box.style2 .content {
    box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
}
.about .wrap-icon-box .icon-box.st2 {
    display: block;
}
.about .wrap-icon-box .icon-box.st2 .title {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;

}
.about .wrap-icon-box .icon-box.st2 .title svg {
    margin-right: 15px;
}
.about .tf-about.style2 {
    padding: 120px 0 93px;
}
.about .tf-about.style2 .container {
    max-width: 1200px;
}
.about .tf-about.style2 .img-about .img2 {
    width: 70%;
    margin-left: 40px;
    margin-top: -60.5%;
}
.about .tf-about.style2 .img-about .img2::after {
    display: none;
}
.about .tf-about.style2 .img-about .img1 {
    margin-left: auto;
    width: 80%;
    margin-right: -102px;
    text-align: right;
}
.about .tf-about.style2 .content-about {
    padding-top: 3px;
    padding-right: 0;
}
.about .tf-about.style2 .content-about .wrap-icon-box {
    padding-bottom: 12px;
    margin-top: 31px;
}
.about .tf-about.style2 .content-about .wrap-icon-box .icon-box {
    width: 48.5%;
}
.about .tf-about.style2 .content-about .wrap-icon-box .icon-box p {
    font-size: 16px;
    line-height: 26px;
}
.about .tf-about.style2 .content-about .divider {
    width: 83%;
}
.tf-section.working-experience {
    padding: 60px 0px ;
}
.tf-section.working-experience .container .left {
    padding: 0;
}
.tf-section.working-experience .image img {
    border-radius: 0;
}
.tf-section.working-experience .content-box {
    position: relative;
}
.tf-section.working-experience .content-box .experience-box {
    padding: 40px 0;
    display: flex;
    /*
  background: rgb(42 1 1);
  */
    border-radius: 5px;
}
.tf-section.working-experience .content-box .experience-box .box {
    padding-left: 50px;
    width: 50%;
}
.tf-section.working-experience .content-box .experience-box .box .icon ,
.tf-section.working-experience .content-box .experience-box .box-microloan .icon{
    margin-bottom: 13px;
}
.tf-section.working-experience .content-box .experience-box .box .icon span {
    color: #E14D36;
    font-size: 60px;
    line-height: 1;
}
.tf-section.working-experience .content-box .experience-box .box-microloan .icon span {
    color: #E14D36;
    font-size: 60px;
    line-height: 1;
}
.tf-section.working-experience .content-box .experience-box .box .box-couter .number-content {
    margin-bottom: 9px;
}
.tf-section.working-experience .content-box .experience-box .box .box-couter .number-content span {
    font-size: 48px;
    line-height: 1.25;
    color: #E14D36;
}
.tf-section.working-experience .content-box .experience-box .box .box-couter p {
    font-size: 16px;
    line-height: 24px;
    color: #231F20;
    font-weight: 500;
    position: relative;
    margin-bottom: 0;

}
/*
.tf-section.working-experience .content-box .experience-box .box .box-couter p::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 20px;
  background: #E14D36;
  content: "";
}
*/
.tf-section.working-experience .content-box .experience-box .box:last-child {
    border: none;
}
.about .tf-section.work-process {
    position: relative;
}
.about .tf-section.work-process .shape1,
.about .tf-section.work-process .shape2 {
    position: absolute;
    z-index: -1;
}
.about .tf-section.work-process .shape1 {
    left: 30px;
    top: 50px;
}
.about .tf-section.work-process .shape2 {
    right: 40px;
    top: 36px;
}
.about .tf-section.work-process .arrow2,
.about .tf-section.work-process .arrow1 {
    position: absolute;
}
.about .tf-section.work-process .arrow2 {
    /*
  bottom: 38px;
  right: -80px;
  */
    top: 50%;
    right: 0px;
}
.about .tf-section.work-process .arrow1 {
    /*
  top: 60px;
  left: 4px;
  */
    top: -10px;
    right: -10px;
}
.about .tf-section.tf-team {
    padding: 120px 0 90px;
}

.service .tf-service.style .title-section .sub-title {
    margin-left: -20px;
    padding-left: 80px;
}
.service .experience {
    overflow: hidden;
}
.service .experience .overlay {
    background: url("./../../assets/images/backgroup/bg-service2.jpg") center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.service .experience .overlay-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 61%;
    height: 100%;
}
.service .experience .overlay-img img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service .experience .experience-box {
    background: #fff;
    max-width: 550px;
    margin-left: auto;
    padding: 70px 50px 39px 50px;
    border-radius: 5px;
}
.service .experience .experience-box .title-section {
    margin-bottom: 30px;
    padding-right: 50px;
}
.service .tf-section.tf-testimonior {
    background: none;
}
.service .tf-section.tf-testimonior .shape1 {
    position: absolute;
    top: -10px;
    left: 30px;
}
.service .tf-section.tf-testimonior .shape2 {
    position: absolute;
    top: -30px;
    right: 30px;
}
.service .tf-section.tf-testimonior .testimonior-content .txt-transform {
    color: #494A4D;
}
.service .tf-service-detail {
    padding: 120px 0 118px;
}
.service .tf-service-detail .wrap-fx-details {
    display: flex;
}
.service .tf-service-detail #sidebar {
    width: 30%;
    padding-right: 1px;
}
.service .tf-service-detail #sidebar .widget {
    margin-bottom: 30px;
}
.service .tf-service-detail #sidebar .widget .widget-title {
    margin-bottom: 30px;

}
.service .tf-service-detail #sidebar .widget.widget-category .widget-title {
    font-size: 20px;
    line-height: 1.5;
}
.service .tf-service-detail #sidebar .widget.contact-now {
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 0px 70px 0px #0000001A;
    text-align: center;
    background: url("./../../assets/images/backgroup/bg-contact-now.png") center center no-repeat;
}
.service .tf-service-detail #sidebar .widget.contact-now::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(42 1 1);
    z-index: -1;
    content: "";
}
.service .tf-service-detail #sidebar .widget.contact-now .widget-title {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
}
.service .tf-service-detail #sidebar .widget.contact-now img {
    border-radius: 50%;
    margin-bottom: 30px;
}
.service .tf-service-detail #sidebar .widget.contact-now .phone {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service .tf-service-detail #sidebar .widget.contact-now .phone span {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    /*font-family: "Roboto Slab", serif;*/
}
.service .tf-service-detail #sidebar .widget.contact-now .phone span.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    min-width: 40px;
    min-height: 40px;
    background-color: #fff;
    border-radius: 50%;
}
.service .tf-service-detail #sidebar .widget.contact-now .tf-button {
    background: #E14D36;
    padding: 0px 40px;
}
.service .tf-service-detail #sidebar .widget.contact-now .tf-button:hover {
    background: #E14D36;
}
.service .tf-service-detail #sidebar .widget.download {
    padding: 40px 40px 30px;
}
.service .tf-service-detail #sidebar .widget.download .list li {
    margin-bottom: 10px;
}
.download .list li a {
    height: 50px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #E14D36;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    color: #fff;
}
.download .list li a span {
    position: relative;
    margin-right: 20px;
    padding-right: 20px;
}
.download .list li a span::before {
    position: absolute;
    width: 1px;
    height: 50px;
    background: #fff;
    opacity: 0.2;
    border-radius: 2px;
    content: "";
    right: 0;
    top: -12px;
}
a.download-step {
    height: 50px;
    border-radius: 4px;
    background: #E14D36;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    color: #fff;
}
a.download-step span {
    position: relative;
    margin-right: 20px;
    padding-right: 20px;
}
a.download-step span::before {
    position: absolute;
    width: 1px;
    height: 50px;
    background: #fff;
    opacity: 0.2;
    border-radius: 2px;
    content: "";
    right: 0;
    top: -12px;
}
.service .tf-service-detail article {
    width: 70%;
    padding-left: 49px;
}
.service .tf-service-detail article .image {
    margin-bottom: 40px;
}
.service .tf-service-detail article .heading {
    margin-bottom: 30px;
}
.service .tf-service-detail article .title {
    font-size: 24px;
    line-height: 34px;

    margin-bottom: 25px;
}
.service .tf-service-detail article .wrap-fx {
    margin-left: -30px;
    margin-top: 42px;
    margin-bottom: 40px;
}
.service .tf-service-detail article .wrap-fx .icon-box {
    padding: 22px 16px 38px;
    width: calc(50% - 30px);
    margin-left: 30px;
    box-shadow: 0px 16px 32px 0px #0000000A;
    background: #fff;
    border-radius: 5px;
    display: flex;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.service .tf-service-detail article .wrap-fx .icon-box .icon {
    margin-right: 48px;
    margin-bottom: 0;
}
.service .tf-service-detail article .wrap-fx .icon-box .icon span::after {
    top: -8px;
    left: 8px;
    font-size: 58px;
    width: auto;
    height: auto;
    content: "\e917";
    font-family: "monal";
    background: none;
}
.service .tf-service-detail article .wrap-fx .icon-box .icon span::before {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 60px;
}
.service .tf-service-detail article .wrap-fx .icon-box .content {
    padding-top: 18px;
}
.service .tf-service-detail article .wrap-fx .icon-box .content h5 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 26px;
    color: rgb(42 1 1);

    margin-bottom: 15px;
}
.service .tf-service-detail article .wrap-fx .icon-box .content h5 a {
    color: rgb(42 1 1);
}
.service .tf-service-detail article .wrap-fx .icon-box .content p {

    margin-bottom: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.service .tf-service-detail article .wrap-fx .icon-box:hover {
    background: #E14D36;
}
.service .tf-service-detail article .wrap-fx .icon-box:hover .icon span::before {
    color: #fff;
}
.service .tf-service-detail article .wrap-fx .icon-box:hover .content a,
.service .tf-service-detail article .wrap-fx .icon-box:hover .content h5 {
    color: #fff;
}
.service .tf-service-detail article .wrap-fx .icon-box:hover .content p {
    color: #E8E8E9;
}
.service .tf-service-detail article .image-box {
    margin-bottom: 40px;
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.service .tf-service-detail article .image-box .img {
    width: 50%;
    padding-right: 30px;
}
.service .tf-service-detail article .image-box .box {
    padding-left: 5px;
    width: 50%;
}
.service .tf-service-detail article .image-box .box .icon-box {
    background: none;
    padding: 0;
}
.service .tf-service-detail article .image-box .box .icon-box h5 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 22px;
    line-height: 32px;

    margin-bottom: 13px;
}
.service .tf-service-detail article .image-box .box .icon-box h5 svg {
    margin-right: 14px;
}
.service .tf-service-detail article .image-box .box .icon-box p {
    margin-bottom: 0;
}
.service .tf-service-detail article .image-box .box .icon-box.mb32 {
    margin-bottom: 32px;
    margin-top: -10px;
}
.service .tf-service-detail article .divider {
    margin-top: 54px;
    margin-bottom: 50px;
    height: 1px;
    width: 100%;
    background: rgba(1, 12, 42, 0.1);
}
.service .tf-service-detail article .wrap-box-details {
    padding-right: 20px;
    margin-bottom: 0;
}
.microloan-post:hover h4.title.measures-content__absolute a{
    color: #E14D36;
}
.tf-contact-form {
    background: url("./../../assets/images/backgroup/bgteam2.png") center center no-repeat;
    background-size: cover;
}
.tf-contact-form h2 {
    font-family: "Roboto", sans-serif;
    margin-bottom: 30px;
    margin-right: -30px;
}
.tf-contact-form .infomation {
    margin-bottom: 50px;
}
.tf-contact-form .contact-style1 {
    margin-left: 50px;
}

.pg-team .tf-section.tf-team {
    padding: 120px 0 90px;
}
.pg-team .tf-section.tf-team .container {
    max-width: 1320px;
}
.pg-team .tf-section.tf-team .team-box {
    margin-bottom: 30px;
}
.pg-team .tf-section.team-work {
    position: relative;
    background: rgba(1, 12, 42, 0.7);
}
.pg-team .tf-section.team-work .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("./../../assets/images/backgroup/bgteam.jpg") center center no-repeat;
    background-size: cover;
    z-index: -1;
}
.pg-team .tf-section.team-work .work-box {
    background: #fff;
    margin-left: auto;
    border-radius: 10px;
    max-width: 670px;
    padding: 70px 70px 70px;
}
.pg-team .tf-section.team-work .work-box h2 {
    margin-bottom: 20px;
    /*font-family: "Inter", sans-serif;*/
}
.pg-team .tf-section.team-work .work-box p {
    margin-bottom: 52px;

}
.pg-team .tf-section.team-work .work-box .tf-button {
    background: #E14D36;
    padding: 0px 40px;
}
.pg-team .tf-section.team-work .work-box .tf-button:hover {
    background: #E14D36;
}
.pg-team .tf-section.tf-team-details .team-detail {
    box-shadow: 0px 0px 70px 0px #00000012;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 70px;
    margin-bottom: 70px;
}
.pg-team .tf-section.tf-team-details .team-detail .image {
    margin-right: 30px;
    width: 50%;
}
.pg-team .tf-section.tf-team-details .team-detail .content {
    width: 50%;
    padding: 23px 0 0 30px;
}
.pg-team .tf-section.tf-team-details .team-detail .content .desc {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 24px;
    color: #E14D36;
    /*font-family: "Inter", sans-serif;*/
    font-weight: 500;
}
.pg-team .tf-section.tf-team-details .team-detail .content .name {
    margin-bottom: 30px;
    line-height: 32px;
}
.profile .name {
    margin-bottom: 30px;
    line-height: 32px;
}
.pg-team .tf-section.tf-team-details .team-detail .content p {
    font-size: 16px;
    line-height: 24px;
    margin-right: -5px;
    margin-bottom: 31px;
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation {
    margin-bottom: 41px;
    margin-right: 70px;
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li {
    border-radius: 4px;
    height: 60px;
    background: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px;
    padding-left: 66px;
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li::before {
    font-size: 25px;
    left: 21px;
    top: 11px;
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li:nth-child(1)::before {
    content: "\e93f";
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li:nth-child(2)::before {
    content: "\e93e";
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li:nth-child(3)::before {
    content: "\e940";
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li:nth-child(2) span {
    text-transform: lowercase;
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li:nth-child(2) span.style {

}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li span {
    font-size: 16px;
    line-height: 26px;
}
.pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li span.style {
    font-weight: 500;
    color: #000000;
    margin-right: 13px;
}
.pg-team .tf-section.tf-team-details .inner-box {
    border-bottom: 1px solid #E8E8E9;
    padding-bottom: 55px;
    margin-bottom: 50px;
}
.pg-team .tf-section.tf-team-details .inner-box h3 {
    line-height: 40px;
    margin-bottom: 20px;
}
.pg-team .tf-section.tf-team-details .inner-box p {
    margin-bottom: 0;

}
.pg-team .tf-section.tf-team-details .experience-fx {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.pg-team .tf-section.tf-team-details .experience-fx .experience-box {
    width: 40%;
    padding-right: 18px;
    padding-top: 31px;
}
.pg-team .tf-section.tf-team-details .experience-fx .experience-box h3 {
    margin-bottom: 39px;
}
.pg-team .tf-section.tf-team-details .experience-fx .experience-box .content-progress-box.style2 .progress-content {
    border-radius: 0;
}
.pg-team .tf-section.tf-team-details .experience-fx .image {
    text-align: right;
    width: 60%;
}

.pg-project .tf-section.tf-tab {
    padding: 120px 0 90px;
}
.pg-project .tf-section.tf-project-detail {
    padding: 102px 0 50px;
}
.pg-project .tf-section.tf-project-detail .img-project-detail {
    margin-bottom: 50px;
    position: relative;
    text-align: left;
}
.pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-right: 35%;
    margin-top: 30px;
}
.pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 .porfolio-absolute {
    position: absolute;
    right: 33px;
    bottom: 3px;
    z-index: 9;
}
.porfolio-box {
    position: relative;
    padding: 40px 40px 40px 40px;
    border-radius: 5px;
    background: #f6f6f6;
    /*box-shadow: 0 0px 70px 0 rgba(0, 0, 0, 0.07);*/
    margin-bottom: 40px;
    margin-left: auto;
}
/*
.porfolio-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #c39367;
  top: -3px;
  right: -3px;
  z-index: -1;
  border-radius: 5px;
}

 */
.porfolio-box h5 {
    margin-bottom: 30px;
}
.porfolio-box .list li {
    /*background: #fff;*/
    border-radius: 2px;
    /*
  display: flex;
  align-items: center;
  justify-content: flex-start;

   */
    margin-bottom: 5px;
}
.porfolio-box .list li span.desc {
    color: rgb(42 1 1);
    /*font-family: "Roboto Slab", serif;*/
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    font-size: 20px;
}
.porfolio-box .list li span.desc::before {
    font-family: "monal";
    position: absolute;
    left: 0;
    top: 0;
    color: #E14D36;
    font-weight: 300;
    font-size: 20px;
}
.porfolio-box .list li p{
    font-size: 17px;
    color: rgb(42 1 1);
}
.porfolio-box .list li.date span.desc::before {
    content: "\e943";
}
.porfolio-box .list li.time span.desc::before {
    content: "\f017";
    font-family: 'Font Awesome 5 Pro';
}
.porfolio-box .list li.address span.desc::before {
    content: "\e907";
}
.porfolio-box .list li.link span.desc::before {
    content: "\e944";
}
.porfolio-box .list li.organizer span.desc::before {
    content: "\e941";
}
.porfolio-box .social li {
    margin-right: 20px;
}
.porfolio-box .social li a {
    width: 50px;
    height: 50px;
    font-size: 16px;
    background: #fff;
    color: rgb(42 1 1);
}
.porfolio-box .social li a:hover {
    background: #E14D36;
    color: #fff;
}
.pg-project .tf-section.tf-project-detail .wrap h3 {
    margin-bottom: 30px;
}
.pg-project .tf-section.tf-project-detail .wrap h2 {
    margin-bottom: 30px;
}
.pg-project .tf-section.tf-project-detail .wrap p {

}
.pg-project .tf-section.tf-project-detail .wrap .title {

    font-size: 24px;
    line-height: 34px;
    margin-bottom: 30px;
}
.pg-project .tf-section.tf-project-detail .wrap .list li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 20px;
}
.pg-project .tf-section.tf-project-detail .wrap .list li span {

}
.pg-project .tf-section.tf-project-detail .wrap .list li:nth-child(1), .pg-project .tf-section.tf-project-detail .wrap .list li:nth-child(2) {
    padding-right: 25%;
}
.pg-project .tf-section.tf-project-detail .wrap .list li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    font-size: 18px;
    color: #E14D36;
}
.pg-project .tf-section.tf-project-detail .wrap.style2 {
    width: 70%;
}
.pg-project .tf-section.tf-project-detail .wrap .flex-img {
    margin-bottom: 40px;
    display: flex;
    margin-left: -30px;
}
.pg-project .tf-section.tf-project-detail .wrap .flex-img img {
    width: calc(33.333% - 30px);
    margin-left: 30px;
}
.pg-project .tf-section.tf-project-detail .divider {
    background: #E8E8E9;
    height: 1px;
    width: 100%;
    margin-top: 46px;
    margin-bottom: 70px;
}

.pg-faq .tf-section.tf-faq .container {
    max-width: 1440px;
}
.pg-faq .tf-section.tf-faq .img-faq {
    display: flex;
}
.pg-faq .tf-section.tf-faq .img-faq .img1 {
    margin-top: 57px;
    padding-right: 15px;
    width: 46%;
}
.pg-faq .tf-section.tf-faq .img-faq .img2 {
    width: 54%;
    padding-left: 3px;
}
.pg-faq .tf-section.tf-faq .content-faq {
    padding-right: 17.5%;
}
.pg-faq .tf-section.tf-faq2 {
    /*
  background: url("./../../assets/images/backgroup/bgfaq.jpg") center center no-repeat;
  background-size: cover;
  */
}

.history .tf-section.get-solutions .box {
    box-shadow: 0px 10px 70px 0px #0000001A;
    border-radius: 5px;
    background: #fff;
    margin-top: -72%;
    padding: 70px 50px 70px 60px;
    margin-right: -5px;
    max-width: 470px;
}
.history .tf-section.get-solutions .box .title-section-style {
    margin-bottom: 29px;
}
.history .tf-section.get-solutions .box .title-section-style .title {

}
.history .tf-section.get-solutions .image-video .popup-youtube {
    margin: 0;
    left: 310px;
    top: 43px;
    padding: 14px;
    border: 1px solid #E14D36;
}
.history .tf-section.get-solutions .image-video .popup-youtube .play {
    background: #E14D36;
}
.history .tf-section.get-solutions .image-video .popup-youtube .play i {
    color: #fff;
}
.history .tf-section.get-solutions .overlay {
    background: url("./../../assets/images/backgroup/bg-history.jpg") center center no-repeat;
    background-size: cover;
}

.history-box {
    position: relative;
}
.history-box::before {
    left: 50.5%;
    top: 0;
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #E8E8E9;
}
.history-box .box {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.history-box .box .img-box {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}
.history-box .box .img-box img {
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.history-box .box .img-box .content {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.07);
    background: #fff;
    width: 100%;
    padding: 40px 48px 43px 105px;
    margin-left: -75px;
    border-radius: 5px;
    position: relative;
}
.history-box .box .img-box .content::after {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
    position: absolute;
    content: "";
    right: 2px;
    top: 0;
    width: 2px;
    background: rgb(42 1 1);
    height: 100%;
    border-radius: 5px;
}
.history-box .box .img-box .content h5 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: rgb(42 1 1);

    margin-bottom: 15px;
}
.history-box .box .img-box .content p {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

    margin-bottom: 0;
}
.history-box .box .img-box.active .content, .history-box .box .img-box:hover .content {
    background: rgb(42 1 1);
}
.history-box .box .img-box.active .content h5, .history-box .box .img-box:hover .content h5 {
    color: #fff;
}
.history-box .box .img-box.active .content p, .history-box .box .img-box:hover .content p {
    color: #E8E8E9;
}
.history-box .box .img-box.active .content::after, .history-box .box .img-box:hover .content::after {
    opacity: 0;
    visibility: hidden;
}
.history-box .box .number {
    position: relative;
    width: 50%;
    margin-bottom: 0;
}
.history-box .box .number span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E8E8E9;
    color: rgb(42 1 1);
    position: absolute;
    top: 20px;
}
.history-box .box .number span i {
    color: #E14D36;
    font-size: 6px;
}
.history-box .box .number::before {
    position: absolute;
    top: 0;
    font-family: "monal";
}
.history-box .box.left .img-box {
    padding-right: 105px;
}
.history-box .box.left .img-box img {
    margin-left: 5px;
}
.history-box .box.left .number {
    padding-left: 116px;
}
.history-box .box.left .number span {
    left: -4px;
}
.history-box .box.right .img-box {
    padding-left: 107px;
}
.history-box .box.right .number {
    text-align: right;
    padding-right: 106px;
}
.history-box .box.right .number span {
    right: -16px;
}
.history-box .box:last-child {
    margin-bottom: 0;
}

.pricing .tf-pricing .title-section .title {
    margin-left: -20px;
}
.pricing .tf-pricing.style .title-section .sub-title {
    margin-left: -87px;
    padding-left: 80px;
}
.pricing .tf-pricing.style2 .container {
    max-width: 1210px;
}
.pricing .tf-pricing.style2 .overlay {
    position: absolute;
    width: 100%;
    height: 56%;
    background: #F6F6F6;
    top: 0;
    left: 0;
    z-index: -1;
}
.pricing .tf-pricing.style2 .pricing-fx {
    display: flex;
    margin-left: -20px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box {
    padding: 0;
    width: calc(25% - 20px);
    margin-left: 20px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner {
    padding: 40px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .title {
    margin-bottom: 21px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .title p {
    font-size: 14px;
    line-height: 24px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .icon {
    margin-bottom: 20px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .pricing {
    align-items: baseline;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .pricing .number {
    font-size: 48px;
    line-height: 1.25;
    margin-right: 5px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .pricing .number::before {
    top: 2px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .pricing p {
    font-size: 14px;
    line-height: 24px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .list li {
    font-size: 14px;
    line-height: 24px;
    padding-left: 24px;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .tf-button {
    height: 50px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner .tf-button span {
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
}

.top-bar-product {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.top-bar-product a {
    font-size: 16px;
    color: rgb(42 1 1);
    text-decoration: none;
}
.events-year-tag span{
    font-size: 16px;
}
.top-bar-product .dropdown {
    margin-right: auto;
}
.top-bar-product .dropdown .btn-selector {
    font-family: var(--bs-body-font-family);
    position: relative;
    /*
  text-align: right;
  */
    /* height: 60px; */
    background: #fff;
    /* box-shadow: 0 10px 70px 0 rgb(0 0 0 / 7%); */
    border: 1px solid #5622126e;
    /* max-width: 250px; */
    color: #2a0101;
    /* min-width: 150px; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    border-radius: 4px;
    margin-right: 10px;
}
.calc__select-label{
    margin-bottom: 15px;
    color: #231F20;
    font-weight: 600;
}
.top-bar-product .dropdown.selector-drop > a:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Pro";
    font-size: 15px;
    font-weight: 500;
    content: "\f078";
    position: absolute;
    color: #e95b4a;
    right: 30px;
}
.top-bar-product .dropdown .dropdown-item {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 26px;
    color: #494A4D;

    background: #F6F6F6;
    padding: 15px 15px;
}
.top-bar-product .dropdown .dropdown-item:hover, .top-bar-product .dropdown .dropdown-item.active, .top-bar-product .dropdown .dropdown-item:active {
    background: #E14D36;
    color: #fff;
}
/*
.dropdown-menu.show{
  inset: 0px!important;
}
 */
.product-flex {
    display: flex;
    margin-left: -31px;
    flex-wrap: wrap;
}
.dropdown-item{
    padding: 10px 15px;
    color: rgb(42 1 1);
}
.dropdown-menu.auth-link-dropdown{
    margin-top: 10px !important;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #E14D36;
}
.dropdown-item:hover, .dropdown-item:focus{
    background-color: #F1EFEE;
    color: rgb(42 1 1);
}
.product-flex .item-box {
    width: calc(33.333% - 31px);
    margin-left: 31px;
    margin-bottom: 31px;
}

.tf-product #sidebar .widget.widget-category .widget-title {
    margin-bottom: 18px;
}
.tf-product #sidebar .widget.widget-filter .widget-title {
    margin-bottom: 35px;
}
.tf-product #sidebar .widget.mobie-bt0 {
    margin-bottom: 0;
}
.tf-product .widget.widget-category ul li {
    margin-bottom: 2px;
    position: relative;
}
.tf-product .widget.widget-category ul li a {
    background: transparent;
    color: #494A4D;
    /*font-family: "Inter", sans-serif;*/
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;

    padding: 0;
}
.tf-product .widget.widget-category ul li a::after, .tf-product .widget.widget-category ul li a::before {
    right: 2px;
    color: #494A4D;
    content: "\f105";
    font-size: 20px;
}
.tf-product .widget.widget-category ul li a:hover {
    color: #E14D36;
}
.tf-product .widget.widget-category ul li a:hover::after, .tf-product .widget.widget-category ul li a:hover::before {
    color: #E14D36;
}
.tf-product .widget.widget-category ul li::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #F6F6F6;
    border-radius: 2px;
}
.tf-product .widget.widget-category ul li:last-child {
    margin-bottom: 0;
}
.tf-product .widget.widget-recent-posts .recent-posts img {
    background: #F6F6F6;
}
.tf-product .widget.widget-recent-posts .recent-posts li .content a {

}
.tf-product .widget.widget-recent-posts .recent-posts li .content .pricing span {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/
    color: #E14D36;
}
.tf-product .widget.widget-recent-posts .recent-posts li .content .pricing span.unpricing {
    margin-left: 5px;
    font-weight: 400;
    color: #76777A;
    position: relative;
}
.tf-product .widget.widget-recent-posts .recent-posts li .content .pricing span.unpricing::after {
    position: absolute;
    content: "";
    width: 27px;
    height: 1px;
    background: #76777A;
    left: 0;
    top: 10px;
}

.tf-product-details {
    padding: 120px 0 98px;
}
.tf-product-details .image-thump-product {
    position: relative;
    width: 58%;
    display: flex;
}
.tf-product-details .image-thump-product img {
    background: #F6F6F6;
}
.tf-product-details .image-thump-product .gallery-slider2 {
    margin-left: 140px;
}
.tf-product-details .image-thump-product .gallery-thumbs2 {
    top: 5px;
    position: absolute;
    left: 0;
}
.tf-product-details .item-detais {
    width: 42%;
    padding-top: 0px;
    padding-left: 22px;
}
.tf-product-details .item-detais .name-product {
    margin-top: -5px;

    margin-bottom: 12px;
}
.tf-product-details .description {
    margin-top: 70px;
    padding-bottom: 26px;
    border-bottom: 1px solid #E8E8E9;
}
.tf-product-details .description h4 {
    border-bottom: 1px solid #E8E8E9;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.tf-product-details .description p {

    margin-bottom: 26px;
}

.item-detais .review {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.item-detais .review p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
    color: #76777A;

}
.item-detais .review .star {
    margin-right: 8px;
}
.item-detais .pricing {
    font-size: 30px;
    line-height: 26px;
    /*font-family: "Roboto Slab", serif;*/
    color: #E14D36;
    font-weight: 600;
    margin-bottom: 29px;
}
.item-detais .wrap-fx {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.item-detais .wrap-fx .quantity {
    height: 50px;
    max-width: 150px;
    background: #F6F6F6;
    position: relative;
    margin-right: 30px;
}
.item-detais .wrap-fx .quantity .btn-quantity {
    position: absolute;
    top: 14px;
}
.item-detais .wrap-fx .quantity .btn-quantity.plus-btn {
    right: 20px;
}
.item-detais .wrap-fx .quantity .btn-quantity.minus-btn {
    left: 20px;
}
.item-detais .wrap-fx .quantity .btn-quantity i {
    font-size: 20px;
    color: rgb(42 1 1);
}
.item-detais .wrap-fx .quantity input[type=text] {
    padding: 13px 20px 13px 3px;
    text-align: center;
    color: rgb(42 1 1);
    height: 50px;
    /*font-family: "Roboto Slab", serif;*/
    font-weight: 500;
}
.item-detais .wrap-fx .add-cart {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    border-radius: 2px;
    background: #E14D36;
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/

    color: #fff;
}
.item-detais .wrap-fx .add-cart span {
    font-size: 20px;
    margin-right: 10px;
}
.item-detais .wrap-fx .add-cart:hover {
    background: #E14D36;
}
.item-detais .desc {
    margin-bottom: 33px;

}
.item-detais .information {
    margin-top: 28px;
}
.item-detais .information .sku {
    margin-bottom: 12px;
}
.item-detais .information .category {
    margin-bottom: 20px;
}
.item-detais .information span {
    font-size: 14px;
    line-height: 24px;
    color: #76777A;

}
.item-detais .information span.style {
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/
    color: rgb(42 1 1);
    margin-right: 3px;

}
.item-detais .information .share {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.item-detais .information .share .social {
    margin-left: 32px;
    margin-top: 4px;
}
.item-detais .information .share .social li {
    margin-right: 22px;
}
.item-detais .information .share .social li a {
    width: auto;
    height: auto;
    color: rgb(42 1 1);
    font-size: 12px;
    background: none;
}
.item-detais .information .share .social li a:hover {
    color: #E14D36;
}

.releted-product {
    position: relative;
    margin-top: 68px;
}
.releted-product h4 {

    margin-bottom: 0;
}
.releted-product .item-box .content {
    box-shadow: 0px 10px 25px 0px #00000012;
}

.pg-contact .tf-contact .contact-flex {
    display: flex;
}
.pg-contact .tf-contact .contact-flex .box-left {
    width: 30%;
}
.pg-contact .tf-contact .contact-flex .box-right {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-left: 0px;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: calc(33.333% - 20px);
    margin-left: 20px;
    background: #fff;
    overflow: hidden;
    position: relative;
    display: block;
    box-shadow: 0px 0px 70px 0px #00000012;
    border-radius: 5px;
    padding: 40px 40px 45px;
    height: 100%;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box:first-child{
    margin-left: 0px;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .content{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .icon {
    margin-left: 0;
    width: 80px;
    height: 80px;
    background: #F6F6F6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .icon span {
    font-size: 45px;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .icon span::after {
    display: none;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .content h6 {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 26px;
    /*font-family: "Roboto Slab", serif;*/
    color: rgb(42 1 1);
    font-weight: bold;
    margin-bottom: 11px;

}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .content ul li span {
    color: rgb(42 1 1);
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 26px;
    /*font-family: "Roboto Slab", serif;*/
}
span.contact-value{
    color: #562212!important;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .content ul li span a{
    font-weight: 500;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .content ul li {
    margin-bottom: 10px;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .iconstyle {
    position: absolute;
    bottom: 55px;
    right: 5px;
    width: 150px;
    height: 150px;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box .iconstyle span {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 150px;
    color: #000000;
    opacity: 0.05;
}
/*
.pg-contact .tf-contact .contact-flex .box-right .icon-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: #E14D36;
  box-shadow: 0px 0px 50px 0px #00000012;
  height: 2px;
  width: 100%;
}
 */

/*
.pg-contact .tf-contact .contact-flex .box-right .icon-box:hover {
  background: rgb(42 1 1);
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box:hover .icon {
  background: #fff;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box:hover .content h6 {
  color: #fff;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box:hover .content ul li span {
  color: #fff;
}
.pg-contact .tf-contact .contact-flex .box-right .icon-box:hover .iconstyle span {
  color: #fff;
}

 */
.pg-contact .tf-contact2 {
    z-index: 1;
    padding: 120px 0 0;
}
.pg-contact .tf-contact2 .contact-flex {
    padding: 70px 70px 70px;
    background: #fff;
    box-shadow: 0px 0px 70px 0px #00000012;
    display: flex;
}
.pg-contact .tf-contact2 .contact-flex .box-left {
    width: 40%;
    padding-right: 45px;
}
.pg-contact .tf-contact2 .contact-flex .box-right {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 18px;
}
.pg-contact .tf-contact2 .contact-flex .box-right .contact-form {
    box-shadow: none;
    padding: 0;
}
.pg-contact .tf-contact2 .contact-style1 fieldset input {
    /*font-family: "Inter", sans-serif;*/
    padding: 5px 30px;
}
.pg-contact .tf-contact2 .contact-style1 fieldset input::placeholder {
    /*font-family: "Inter", sans-serif;*/
}
.pg-contact .tf-contact2 .contact-style1 fieldset textarea {
    height: 150px;
    padding: 17px 30px;
    /*font-family: "Inter", sans-serif;*/
}
.pg-contact .tf-contact2 .contact-style1 fieldset textarea::placeholder {
    /*font-family: "Inter", sans-serif;*/
}
.pg-contact .tf-section.map {
    z-index: 0;
    padding: 0;
    margin-top: -318px;
}
.pg-contact .tf-section.map .flat-map {
    height: 790px;
}
.pg-contact .tf-section.map .flat-map iframe {
    width: 100%;
    height: 100%;
}
.pg-contact #footer {
    margin-bottom: -180px;
    transform: translateY(-180px);
}

.tf-history .title-section .sub-title {
    text-transform: none;
    padding-left: 80px;
    font-size: 18px;
}

.flat-alert.msg-success {
    color: #E14D36;
}

.post {
    position: relative;
    margin-bottom: 30px;
}
.post .image {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.post .image .overlay {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 12, 42, 0.8);
}
.post .image .popup-youtube {
    animation: move3 5s infinite linear;
    border: 1px solid #E14D36;
    padding: 15px;
    position: absolute;
    top: 26%;
    right: 10%;
    z-index: 2;
    border-radius: 4px;
}
.post .image .popup-youtube .play {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E14D36;
    width: 100px;
    height: 100px;
    border-radius: 4px;
}
.post .image .popup-youtube .play i {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 30px;
    color: #fff;
}
.post .image .popup-youtube:hover {
    border-color: #fff;
}
.post .image .popup-youtube:hover .play {
    background: #fff;
}
.post .image .popup-youtube:hover .play i {
    color: #E14D36;
}
.post .content {
    box-shadow: 0 10px 70px 0 rgba(0, 0, 0, 0.07);
    position: relative;
    text-align: left;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    background: #fff;
    margin-top: -20.8%;
    padding: 24px 34px;
    border-radius: 5px;
    z-index: 2;
}
.post .content .meta-post {
    /*
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -29px;
  */
    margin-bottom: 25px;
}
.post .content .meta-post li {
    position: relative;
    padding-right: 25px;
    /*
  margin: 0 5px 0 18px;
  */
    /*font-family: "Roboto Slab", serif;*/
    font-size: 14px;
    line-height: 16px;
    color: #494A4D;
    font-weight: 500;
}
.post .content .meta-post li:nth-child(3), .post .content .meta-post li:nth-child(2) {
    color: rgb(42 1 1);
}
.post .content .meta-post li a {
    padding-left: 30px;
    position: relative;
}
.post .content .meta-post li a::before {
    position: absolute;
    font-family: "monal";
    top: 0;
    left: 0;
    color: #E14D36;
    font-size: 20px;
}
/*
.post .content .meta-post li::after {
  position: absolute;
  right: 0;
  top: -2px;
  content: "";
  width: 1px;
  height: 20px;
  background: #C4C4C4;
  transform: rotate(15deg);
}
*/
.post .content .meta-post li:nth-child(1) a::before {
    content: "\e913";
    font-size: 18px;
}
.post .content .meta-post li:nth-child(2) a::before {
    content: "\e903";
}
.post .content .meta-post li:nth-child(3) a::before {
    content: "\e902";
}
.post .content .meta-post li:nth-child(3)::after {
    display: none;
}
.post .content .date {
    position: relative;
    margin-left: -72px;
    background-color: #E14D36;
    padding: 7px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 16px;
    /*font-family: "Roboto Slab", serif;*/
}
/*
.post .content .date::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  border-left: 20px solid transparent;
  border-bottom: 11px solid #E14D36;
}

 */
.post .content .title {
    margin-bottom: 20px;
}
.post .content p {
    margin-bottom: 15px;
}
.post .content .read-more {
    display: flex;
    align-items: center;
    justify-content: center;

    /*font-family: "Roboto Slab", serif;*/
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding: 0 40px;
    font-weight: bold;
    border-radius: 4px;
    background: #E14D36;
    height: 60px;
    max-width: 190px;
}
.post .content .read-more:hover {
    background: #E14D36;
    color: #fff;
}
.post.style {
    display: flex;
    align-items: center;
    justify-content: center;
}
.post.style .content {
    margin-top: 0;
    position: absolute;
    padding: 20px 52px 40px;
}
.post.style .content .title {
    padding-right: 40px;
    margin-bottom: 28px;
}

.blogdetail .post {
    box-shadow: 0 4px 70px 0 rgba(0, 0, 0, 0.07);
    background: #fff;
    padding-bottom: 50px;
    margin-bottom: 0;
    border-radius: 4px;
}
.blogdetail .post .content {
    margin-top: -15.5%;
    padding: 20px 52px 39px;
}
.blogdetail .post .content .title {
    margin-bottom: 0;
}
.blogdetail .post .tf-animated-fadeup.post.image.animated-effect,
.blogdetail .post .tf-animated-fadeup.post .image,
.blogdetail .post .image.animated-effect.tfanimated {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}
.blogdetail .post .wrap-inner {
    margin-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
}
.blogdetail .post .wrap-inner .txt {

    margin-bottom: 26px;
}
.blogdetail .post .wrap-inner .heading {
    margin-top: 41px;
    margin-bottom: 29px;

}
.blogdetail .post .post-inner {
    display: flex;
    margin-bottom: 37px;
}
.blogdetail .post .post-inner .img img {
    min-width: 270px;
    min-height: 170px;
}
.blogdetail .post .post-inner .desc {
    color: #494A4D;
    margin-left: 40px;

}
.blogdetail .post .testimonior {
    display: flex;
    background: #F6F6F6;
    padding: 30px 20px;
}
.blogdetail .post .testimonior .img {
    margin-right: 30px;
}
.blogdetail .post .testimonior .img img {
    min-width: 70px;
    min-height: 70px;
}
.blogdetail .post .testimonior .desc {
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    color: rgb(42 1 1);
    margin-bottom: 0px;
}
.blogdetail .post .testimonior .name {
    /*font-family: "Roboto Slab", serif;*/
    font-size: 14px;
    line-height: 24px;
    padding-left: 40px;
    position: relative;
    color: rgb(42 1 1);
    font-weight: 500;
    margin-bottom: 0;

}
.blogdetail .post .testimonior .name::before {
    position: absolute;
    left: 0;
    top: 11px;
    width: 30px;
    height: 2px;
    content: "";
    background: #E14D36;
}
.blogdetail .post .author-post {
    margin-bottom: 71px;
    background: #F6F6F6;
    padding: 38px 40px 42px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.blogdetail .post .author-post .img {
    margin-right: 40px;
}
.blogdetail .post .author-post .img img {
    border-radius: 50%;
    min-width: 170px;
    min-height: 170px;
}
.blogdetail .post .author-post .content-inner .name {
    margin-bottom: 18px;
}
.blogdetail .post .author-post .content-inner p {
    margin-bottom: 26px;

}
.blogdetail .post .author-post .content-inner .social li {
    margin-right: 21px;
    margin-left: 5px;
}
.blogdetail .post .author-post .content-inner .social li a {
    background: none;
    width: auto;
    height: auto;
    color: rgb(42 1 1);
    font-size: 16px;
}
.blogdetail .post .author-post .content-inner .social li a:hover {
    color: #E14D36;
}

.comment-post {
    padding-left: 40px;
    padding-right: 40px;
}
.comment-post .title-comment {
    margin-bottom: 29px;
}

#comments .comment-list {
    overflow: hidden;
    padding-left: 0;
    margin-bottom: 40px;
}
#comments .comment-list li.comment {
    padding: 0px;
}
#comments .comment-list article {
    display: flex;
    position: relative;
    margin-bottom: 30px;
}
#comments .comment-list article .gravatar {
    margin-right: 30px;
}
#comments .comment-list article .gravatar img {
    border-radius: 50%;
    min-width: 100px;
    min-height: 100px;
}
#comments .comment-list article .comment-content {
    border-bottom: 1px solid #E8E8E9;
    padding-bottom: 17px;
}
#comments .comment-list article .comment-content .wrap-fx {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#comments .comment-list article .comment-content .wrap-fx p {
    margin-top: 5px;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #76777A;

}
#comments .comment-list article .comment-content .wrap-fx .comment-author {
    margin-bottom: 0;
    margin-right: 30px;

}
#comments .comment-list article .comment-content .comment-text {

    margin-bottom: 19px;
}
#comments .comment-list article .comment-content .comment-text .text {
    margin-bottom: 0;
}
#comments .comment-list article .comment-content .reply a {
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    line-height: 26px;
    color: rgb(42 1 1);
    font-weight: 500;
    font-style: italic;
}
#comments .comment-list article .comment-content .reply a:hover {
    color: #E14D36;
}
#comments .comment-list article .comment-content .reply a::before {
    position: absolute;
    left: 1px;
    top: 0px;
    font-family: "monal";
    content: "\e909";
    font-size: 20px;
    color: #E14D36;
}
#comments .comment-list article.inner {
    padding-left: 100px;
}
#comments.widget .widget-title {
    font-size: 24px;
    line-height: 32px;
    color: #020e28;
    margin-left: 2px;
    margin-bottom: 37px;
}
#comments .form-comment .heading {
    margin-bottom: 30px;
}

.comment-form {
    margin-left: -30px;
    display: flex;
    flex-wrap: wrap;
}
.comment-form fieldset {
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-bottom: 20px;
}
.comment-form fieldset.message {
    width: 100%;
    margin-bottom: 23px;
}
.comment-form fieldset.message textarea {
    height: 150px;
}
.comment-form textarea,
.comment-form input[type=text],
.comment-form input[type=email] {
    color: #494A4D;
    /*font-family: "Inter", sans-serif;*/
}
.comment-form textarea::placeholder,
.comment-form input[type=text]::placeholder,
.comment-form input[type=email]::placeholder {
    color: #494A4D;

    /*font-family: "Inter", sans-serif;*/
}
.comment-form input[type=text],
.comment-form input[type=email] {
    padding: 13px 15px 13px 29px;
}
.comment-form textarea {
    padding: 16px 15px 13px 29px;
}
.comment-form .btn-submit {
    margin-left: 30px;
}
.comment-form .btn-submit button {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 60px;
    padding: 0 41px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    /*font-family: "Roboto Slab", serif;*/
    border: none;
    background: #E14D36;
    border-radius: 4px;
}
.comment-form .btn-submit button:hover {
    background: #E14D36;
}

.blog-post {
    position: relative;
}
.blog-post .image {
    position: relative;
    overflow: hidden;
}
.radius-6 {
    border-radius: 6px;
}
.blog-post .image img#past-event-img{
    webkit-filter: grayscale(60%);
    -ms-filter: grayscale(60%);
    -moz-filter: grayscale(60%);
    filter: grayscale(60%);
}
.blog-post .image img {
    width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 0px;
}
.date-latest {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}
.date-latest__datetime {
    font-weight: 600;
}
.news-week {
    position: absolute;
    top: 15px;
    color: #fff;
    background: #E14D36;
    font-weight: 300;
    left: 15px;
    right: auto;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 5px;
}
.content-link__absolute {
    position: absolute;
    bottom: 15px;
    right: 15px;
    left: auto;
    border-radius: 0;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-block-content-link__absolute {
    position: absolute;
    bottom: -1%;
    right: 15px;
    left: auto;
    border-radius: 0;
    font-weight: 400;
    font-size: 18px;
    color: #623B2A;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-block-content-link__absolute a.readmore {
    display: flex;
    align-items: center;
}
.content-link-more__img {
    width: 32px!important;
}
.slider-main-img__text {
    position: absolute;
    bottom: 20px;
    left: 50px;
    max-width: 58%;
    font-size: 24px;
    text-align: left;
}
.activiti-photo{
    height: 230px;
    object-fit: cover;
    object-position: top;
}
.blog-post .image .date {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    background: linear-gradient(246.06deg, #CF00FE -19.26%, #E14D36 87.05%);
    color: #fff;
    border-radius: 0 4px 4px 0;
}
.blog-post .image .date span {
    padding-left: 26px;
    position: relative;
}
.blog-post .image .date span::before {
    font-family: "monal";
    content: "\e913";
    position: absolute;
    left: 0;
    top: 0;
}
.blog-post .content {
    background: #fff;
    padding: 23px 40px 40px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.blog-post.border-post .content {
    border-radius: 20px;
}
.blog-post .content ul {
    display: flex;
    border-bottom: 1px solid #E8E8E9;
    padding-bottom: 21px;
    margin-bottom: 21px;
}
.blog-post .content ul li a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    color: rgb(42 1 1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-left: 28px;
}
.blog-post .content ul li a:hover {
    color: #E14D36;
}
.blog-post .content ul li a::before {
    position: absolute;
    left: 0;
    /*
  top: -2px;
   */
    vertical-align: middle;
    font-family: "monal";
    font-size: 18px;
    color: #E14D36;
}
.blog-post .content ul li:first-child {
    margin-right: 42px;
}
.blog-post .content ul li:first-child a::before {
    content: "\e915";
}
.blog-post .content ul li.date:first-child a::before {
    content: "\e913";
}
.blog-post .content ul li:nth-child(2) a::before {
    content: "\e921";
    font-size: 22px;
    left: -2px;
}
.actual-content .text-content {
    position: absolute;
    left: 30px;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
}
.actual-content .link-content {
    position: absolute;
    left: 30px;
    display: block;
    bottom: 30px;
    width: 100%;
}
.actual-content .link-content a {
    color: #E14D36;
}
.text-content .title-actual {
    color: #000;
    font-size: 20px;
    font-weight: 600;
}
li.li-address-event{
    position: relative;
}
li.li-address-event span.icon__address::before{
    content: "\e921";
    font-size: 22px;
    left: -2px;
    position: absolute;
    left: 0;
    top: -6px;
    vertical-align: middle;
    font-family: "monal";
    font-size: 18px;
    color: #E14D36;
}
.blog-post .content ul li.li-address-event a::before{
    display: none;
}
.blog-post .content ul li.li-online-event a::before{
    content: "\e944";
}

.blog-post .content .title a {
    display: block;
}
.blog-post .content .title a:hover {
    color: #E14D36;
}
.blog-post .content p {

    margin-bottom: 18px;
}
@keyframes rainbow {
    0% {
        background-position: left;
    }
    50% {
        background-position: right;
    }
    100% {
        background-position: left;
    }
}
.blog-post .content .readmore , .post .content .readmore{
    color: rgb(42 1 1);
    font-size: 17px;
    line-height: 26px;
    padding-right: 21px;
}
.microloan-box {
    font-family: 'Jost', sans-serif!important;
    border-radius: 20px;
    padding: 30px;
    background: #fff;
    box-shadow: none;
}
/*
.blog-post .content .readmore::before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 3px;
  height: 1px;
  width: 90px;
  content: "";
  background: #e2c5f8;
  left: 0;
}
*/
/*
.blog-post .content .readmore::after , .post .content .readmore::after{
    position: absolute;
    right: 0;
    top: 0;
    font-family: "Font Awesome 5 Pro";
    content: "\f324";
    font-weight: 600;
    color: #E14D36;
    background: none;
    -webkit-text-fill-color: #E14D36;
    font-size: 12px;
}

 */
.blog-post .content .readmore:hover {
    color: transparent;
}
.blog-post .content .readmore:hover::before {
    background: #E14D36;
}
.blog-post:hover .image img {
    transform: scale(1.1);
    -webkit-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.blog-post.style2 .image .date {
    background: #E14D36;
    right: 0;
    left: auto;
    border-radius: 0;
    font-size: 16px;
    line-height: 26px;
    padding: 0 20px 0 15px;
    border-radius: 4px 4px 0px 0px;
}
.blog-post.style2 .image .date span {
    padding-left: 0;
}
.blog-post.style2 .image .date span::before {
    display: none;
}
.blog-post.style2 .content {
    padding: 15px;
}
.blog-post.style2 .content ul {
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.blog-post.style2 .content .title , .post.style2 .content .title {
    margin-bottom: 22px;
    font-weight: 500;
}
.blog-post.style2 .content .readmore {
    color: #E14D36;
    background: none;
}
/*
.blog-post.style2 .content .readmore::after {
    color: #E14D36;
    background: none;
    -webkit-text-fill-color: #E14D36;
}

 */
/*
.blog-post.style2 .content .readmore::before {
  position: absolute;
  bottom: 3px;
  height: 1px;
  width: 90px;
  content: "";
  background: #e2c5f8;
  left: 0;
}
*/
.blog-post.style2 .content .readmore.active, .blog-post.style2 .content .readmore:hover {
    color: #E14D36;
}
.blog-post.style2 .content .readmore.active::before, .blog-post.style2 .content .readmore:hover::before {
    background: #E14D36;
}
.blog-post.style3 .image img {
    border-radius: 0;
}
.blog-post.style3 .content {
    position: relative;
    padding: 33px 40px 30px;
}
.blog-post.style3 .content .date {
    position: absolute;
    top: -18px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    /*font-family: "Roboto Slab", serif;*/
    height: 30px;
    left: 40px;
    background: linear-gradient(180deg, #0869c1 0%, #E14D36 100%);
    border-radius: 4px;
    color: #fff;
}
.blog-post.style3 .content .date span::before {
    display: none;
}
.blog-post.style3 .content .date svg {
    margin-right: 8px;
}
.blog-post.style3 .content .title {
    color: rgb(42 1 1);
    margin-bottom: 29px;
}
.blog-post.style3 .content ul {
    border-bottom: 0;
    border-top: 1px solid #E8E8E9;
    padding-top: 22px;
    margin-bottom: 0;
    padding-bottom: 6px;
}

/* widget_filter */
/* price-range  */
.noUi-target, .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.noUi-target {
    position: relative;
    direction: ltr;
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
}

.noUi-handle {
    position: relative;
    z-index: 1;
}

.noUi-stacking .noUi-handle {
    z-index: 10;
}

.noUi-state-tap .noUi-origin {
    -webkit-transition: left 0.3s, top 0.3s;
    transition: left 0.3s, top 0.3s;
}

.noUi-state-drag * {
    cursor: inherit !important;
}

.noUi-base, .noUi-handle {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.noUi-horizontal {
    height: 4px;
}

.noUi-horizontal .noUi-handle {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: 0px;
    top: -7px;
    background-color: #E14D36;
}

.noUi-horizontal .noUi-handle::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E14D36;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Styling;
 */
.noUi-background {
    background-color: #E14D36;
    height: 3px;
}

.noUi-connect {
    background: #E14D36;
    -webkit-transition: background 450ms;
    transition: background 450ms;
}

.noUi-origin {
    border-radius: 2px;
}

.noUi-target {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 36px;
}

.noUi-horizontal .noUi-handle.noUi-handle-upper {
    left: -7px;
}

.slider-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slider-labels .title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    /*font-family: "Roboto Slab", serif;*/
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 40px;
    border-radius: 2px;
    background: #E14D36;
    margin-right: 30px;
    color: #fff;
}
.slider-labels .caption {
    font-size: 16px;
    line-height: 26px;
    color: #494A4D;
    color: #76777A;
}
.slider-labels .caption .txt {
    margin-right: 5px;
}
.slider-labels .caption .space {
    margin-left: 5px;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #3f3f3f;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: pointer;
    /* cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;  */
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #cccccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #cccccc;
}

.mfp-preloader a:hover {
    color: white;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: white;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: white;
    background: transparent;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #cccccc;
    font-size: 12px;
    line-height: 18px;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black;
}

.mfp-arrow.mfp-arrow-left.mfp-prevent-close,
.mfp-arrow.mfp-arrow-right.mfp-prevent-close {
    background: transparent;
}

/* Main image in popup */
img.mfp-img {
    /* cursor: w-resize; */
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444444;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

/* .mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; } */
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure {
        /* The shadow behind the image */
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}
@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}
.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .mfp-content {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .mfp-content {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

/* Extra classes
-------------------------------------------------------------- */
.wrap-fx {
    display: flex;
}

.m-t51 {
    margin-top: 51px;
}

.mb0 {
    margin-bottom: 0 !important;
}

.pb25 {
    padding: 0 25%;
}

.txt-r {
    text-align: right;
}

.pb40 {
    padding-bottom: 40px;
}

.pb52 {
    padding-bottom: 52px;
}

.pr70 {
    padding-right: 70px;
}

.pr110 {
    padding-right: 110px;
}

.pr80 {
    padding-right: 80px;
}

.bg-st1 {
    background: #F6F6F6;
}

.txt-transform {

}

.position-relative {
    position: relative;
}

.mr-12 {
    margin-right: -12px;
}

.ml100 {
    margin-left: 100px;
}

.pr15 {
    padding-right: 15px;
}

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

.mt40 {
    margin-top: 40px;
}

.mt30 {
    margin-top: 30px;
}

.title-section.mb68 {
    margin-bottom: 68px;
}
.title-section.mb69 {
    margin-bottom: 69px;
}
.title-section.mb29 {
    margin-bottom: 20px;
}
.title-section.mb39 {
    margin-bottom: 39px;
}
.title-section.mb49 {
    margin-bottom: 49px;
}
.title-section.mb0 {
    margin-bottom: 0;
}
.title-section.mb19 {
    margin-bottom: 19px;
}

.mb52 {
    margin-bottom: 52px;
}

.pr65 {
    padding-right: 65px;
}

.mt50 {
    margin-top: 50px;
}

.pr20 {
    padding-right: 20%;
}

.pr60 {
    padding-right: 60px;
}

.ml104 {
    margin-left: 104px;
}

.pr75 {
    padding-right: 75px;
}

.pr10 {
    padding-right: 10%;
}

.pr100 {
    padding-right: 100px;
}

.pr15 {
    padding-right: 15%;
}

.mb40 {
    margin-bottom: 40px;
}

.mb36 {
    margin-bottom: 36px;
}

.pt13 {
    padding-top: 13px;
}

.mr-15 {
    margin-right: -15px;
}

.mt131 {
    margin-top: 131px;
}

.mt129 {
    margin-top: 129px;
}

.mb26 {
    margin-bottom: 26px;
}

.mt23 {
    margin-top: 23px;
}

.pd30 {
    padding: 0 30%;
}

.wrap-testimonior-style {
    margin-top: 30px;
    margin-left: 100px;
}

.ml-20 {
    margin-left: -20px;
}

/* reponsive
-------------------------------------------------------------- */

@media only screen and (max-width: 1760px) {



    .home3 .page-title .swiper-container.slider-main .swiper-pagination {
        right: -10%;
    }
}
@media only screen and (max-width: 1600px) {

    .box-slider .content-box {
        padding-top: 50px;
    }

    .swiper-container.slider-project {
        margin-right: -200px;
    }
}
@media only screen and (max-width: 1440px) {
    .main.home3 .header #main-nav {
        /*
        left: 6%;
        width: 80%;

         */
    }
    .main.home3 .header #main-nav .menu li {
        margin-right: 14px;
    }
    .main.home3 .header #main-nav .menu li a {
        font-size: 16px;
        padding-right: 30px;
    }
    .main.home3 .header #site-header-inner .tf-button {
        padding: 0 20px;
    }

    .about .tf-about.style2 .img-about .img1 {
        margin-right: 0;
    }
    .about .tf-about.style2 .img-about .img2 {
        margin-left: 0;
    }

    .home3 .page-title .swiper-container.slider-main .swiper-pagination {
        right: 0;
    }
    .home3 .tf-about .pr10 {
        padding-right: 0;
    }
    .home3 .tf-section.tf-about .content-about .wrap {
        padding-right: 0;
        display: flex;
    }
    .home3 .tf-section.tf-about .content-about .wrap .tf-button {
        margin-bottom: 0;
    }


    .home2 .box-slider .content-box {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .home2 .box-slider .image .img {
        margin-right: 0;
        margin-left: 0;
    }

    .project-box .hover-effect .content-box {
        padding: 40px 20px;
    }

    .swiper-container.slider-project {
        margin-right: -100px;
    }

    .header #main-nav {
        /*
        left: 22%;
        width: 57%;

         */
    }
    .header #main-nav .menu {
        justify-content: space-between;
    }
    .header #main-nav .menu li {
        margin-right: 20px;
    }
    .header .header-contact {
        display: none;
    }
    .header .header-search {
        margin-right: 15px;
    }

    .box-slider .image .img {
        margin-right: 0;
    }

    .mr-12 {
        margin-right: 0;
    }

    .technology-solution .content-about {
        margin-left: 0;
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media only screen and (max-width: 1200px) {
    .wrap-testimonior-style {
        margin-left: 50px;
    }

    .section-contact .content {
        padding-bottom: 0;
        padding-top: 0;
    }

    .pg-contact .tf-contact .contact-flex .box-right .icon-box {
        padding: 30px 20px 30px;
    }

    .releted-product h4 {
        margin-bottom: 30px;
    }

    .slider-product.swiper-container {
        max-width: 100%;
        padding: 0;
    }

    .btn-next-product,
    .btn-prev-product {
        display: none;
    }

    .tf-product #sidebar .widget.widget-recent-posts {
        padding: 30px;
    }

    .pricing .tf-pricing.style2 .pricing-fx .pricing-box .pricing-inner {
        padding: 30px 20px;
    }

    .history-box .box.left .img-box {
        padding-right: 30px;
    }
    .history-box .box.left .img-box img {
        margin-left: 0;
    }
    .history-box .box.right .img-box {
        padding-left: 30px;
    }

    .pg-faq .tf-section.tf-faq .content-faq {
        padding-right: 0;
    }

    .pg-team .tf-team .team-box .content .social li a {
        width: 34px;
        height: 34px;
    }
    .pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation {
        margin-right: 0;
    }

    .service .tf-service-detail article .wrap-box-details {
        padding-right: 0;
    }
    .service .tf-service-detail article .image-box .box .icon-box.mb32 {
        margin-top: 0;
    }

    .about .tf-section.work-process .arrow2,
    .about .tf-section.work-process .arrow1 {
        display: none;
    }

    .icon-box.st4 {
        padding: 60px 30px 60px;
    }
    .icon-box.st4.mt131 {
        margin-top: 0;
    }


    .tf-about.style3 .content-about, .tf-about.style2 .content-about {
        padding-right: 0;
    }

    .wrap-counter .box:nth-child(1), .wrap-counter .box:nth-child(2), .wrap-counter .box:nth-child(3) {
        padding-right: 15px;
    }
    .wrap-counter .box:nth-child(1) {
        padding-left: 10px;
    }
    .wrap-counter .box:nth-child(2) {
        padding-left: 20px;
    }
    .wrap-counter .box:nth-child(3) {
        padding-left: 50px;
    }
    .wrap-counter .box:nth-child(4) {
        padding-left: 80px;
    }

    .home3 .tf-section.tf-about .img-about.pr80 {
        padding-right: 0;
    }
    .home3 .tf-section.tf-about .content-about .wrap .tf-button {
        padding: 0 20px;
        margin-right: 20px;
    }
    .home3 .tf-section.tf-about .content-about .wrap .img-box .img {
        margin-right: 20px;
    }

    .header.style3 .tell {
        display: none;
    }
    .header.style3 .header-search {
        padding-right: 0;
        margin-right: 0;
    }
    .header.style3 .header-search::after {
        display: none;
    }
    .header.style3 #main-nav {
        left: 25%;
    }


    .blog-post .content {
        padding: 23px 25px 30px;
    }
    .blog-post.style3 .content, .blog-post.style2 .content {
        padding: 15px;
    }

    .content-about.pr20 {
        padding-right: 0;
    }

    .img-about.pr70 {
        padding-right: 0;
    }

    .home2 .box-slider .content-box .title {
        font-size: 75px;
    }
    .home2 .img-about .experience-box {
        right: 0;
    }

    .get-solution .image {
        margin-top: 0;
        margin-right: 0;
    }
    .get-solution .title-section {
        padding: 30px 0;
    }

    .team-box .image img {
        width: 100%;
    }

    .swiper-container.slider-project {
        margin-right: 0;
    }
/*
    .icon-box.st1 {
        padding: 23px;
    }

 */
    .icon-box.st1 .title {
        padding-right: 0;
        font-size: 19px;
    }

    .box-slider .content-box {
        padding-top: 0;
    }

    .blogdetail .post .content {
        padding: 20px 30px 50px;
    }

    #scroll-top {
        bottom: 60px !important;
    }

    .post .content {
        padding: 20px 30px 50px;
    }
    .post .content .date {
        margin-left: -50px;
        padding: 7px 15px;
    }
    .post .content .meta-post li {
        margin: 0 5px 0 5px;
        padding-right: 10px;
    }
    .post.style {
        display: block;
    }
    .post.style .content {
        padding: 20px 30px 50px;
        margin-top: -20.8%;
        position: relative;
        left: 0;
    }

    .header .header-right .tf-button {
        padding: 0 30px;
    }

    #sidebar .widget {
        padding: 30px;
    }

    .content-about .wrap {
        padding-right: 0;
    }

    .home2 .tf-section.tf-testimonior .testimonior-box .content {
        padding: 50px 30px 50px 70px;
    }

    .testimonior-box .content {
        padding: 50px 0px 0px 0px;
    }

    .tf-section.tf-testimonior .slider-testimonior {
        margin-left: 50px;
    }

    #footer.style3 .widget.widget-service.style, #footer.style3 .widget.widget-service, #footer.style3 .widget.widget-recent-posts {
        padding-left: 15px;
    }
}
@media only screen and (max-width: 991px) {
    .mt129 {
        margin-top: 0;
    }

    .mt-lg-30{
        margin-top: 30px;
    }
    .tf-section.working-experience .content-box .experience-box{
        padding-top: 0px;
    }
    .footer__logo.style2 img{
        width: 100%;
        max-width: 375px;
    }
    .blog-post {
        margin-bottom: 30px;
    }
    .microloan-post {
        margin-bottom: 30px;
    }
    .btn-filter-search{
        padding-right: 10px;
        margin-top: 30px;
    }
    .wrap-testimonior-style {
        margin: 0;
    }

    .pd30 {
        padding: 0;
    }

    .pricing .tf-pricing .title-section .title {
        margin-left: 0;
    }
    .pricing .tf-pricing.style .title-section .sub-title {
        margin-left: 0;
        padding-left: 70px;
    }

    .service .tf-service.style .title-section .sub-title {
        margin-left: 0;
        padding-left: 70px;
    }
    .service .tf-service.style .title-section .title {
        margin-left: 0;
    }

    .image-video.style2 {
        padding-right: 0;
    }

    .home2 .tf-project {
        padding: 100px 0 0;
    }
    .home2 .tf-section.tf-team {
        padding: 100px 0 60px;
    }

    .swiper-container:hover {
        cursor: ew-resize !important;
    }
    /*
  .pg-contact .tf-contact .contact-flex {
    display: block;
  }

 */
    .pg-contact .tf-contact .contact-flex .box-left {
        width: 100%;
        margin-bottom: 40px;
    }
    .pg-contact .tf-contact .contact-flex .box-right {
        width: 100%;
        padding-left: 0;
        justify-content: space-between;
    }
    .pg-contact .tf-contact .contact-flex .box-right .icon-box {
        margin-left: 0;
    }
    .pg-contact .tf-contact2 .contact-flex {
        padding: 30px;
    }
    .pg-contact .tf-contact2 .contact-flex .box-left {
        padding-right: 15px;
    }
    .pg-contact .tf-contact2 .contact-flex .box-right {
        padding-left: 15px;
    }

    .item-detais .wrap-fx {
        display: block;
    }
    .item-detais .wrap-fx .quantity {
        margin-bottom: 20px;
    }

    .swiper-container.gallery-thumbs2 {
        height: 340px;
    }

    .tf-product article,
    .tf-product #sidebar {
        width: 100%;
    }
    .tf-product .wrap-fx {
        display: block;
    }
    .tf-product article {
        margin-bottom: 50px;
    }
    .tf-product #sidebar {
        padding-left: 0;
    }

    .pricing .tf-pricing.style2 .pricing-fx {
        flex-wrap: wrap;
    }
    .pricing .tf-pricing.style2 .pricing-fx .pricing-box {
        width: calc(50% - 20px);
        margin-bottom: 30px;
    }

    .history-box::before {
        display: none;
    }
    .history-box .box .number {
        width: 20%;
    }
    .history-box .box .number span {
        display: none;
    }
    .history-box .box .img-box {
        width: 80%;
    }
    .history-box .box.left .number {
        text-align: right;
        padding-left: 0;
    }
    .history-box .box.right .number {
        text-align: left;
        padding-right: 0;
    }

    .header #site-header-inner {
        padding: 10px 0;
    }

    .home1 .header__logo,
    .header__logo {
        transform: translateY(0);
        padding: 26px 39.5px;
    }

    .pg-faq .tf-section.tf-faq .img-faq {
        margin-bottom: 40px;
    }
    .pg-faq .tf-section.tf-faq .img-faq .img1 img,
    .pg-faq .tf-section.tf-faq .img-faq .img2 img {
        width: 100%;
    }

    .pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 .porfolio-absolute .porfolio-box {
        padding: 30px;
    }
    .pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 .porfolio-absolute .porfolio-box .list li {
        height: 55px;
    }

    .flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect .content-box {
        padding: 30px 20px;
    }
    .flat-tabs.tab1 .content-tab .content-inner .project-box .hover-effect .content-box h4 {
        font-size: 22px;
        line-height: 1.41;
    }

    .tf-contact-form .infor-contact h2 {
        margin-right: 0;
    }
    .tf-contact-form .contact-style1 {
        padding: 40px;
        margin-left: 0;
    }
    .tf-contact-form .contact-style1 fieldset {
        width: calc(100% - 30px);
    }

    .pg-team .tf-section.tf-team-details .team-detail {
        padding: 30px;
    }
    .pg-team .tf-section.tf-team-details .team-detail .content,
    .pg-team .tf-section.tf-team-details .team-detail .image {
        padding: 0;
    }
    .pg-team .tf-section.tf-team-details .team-detail .image img {
        width: 100%;
    }
    .pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li {
        padding-left: 50px;
    }
    .pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li::before {
        left: 15px;
    }
    .pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li span.style {
        margin-right: 5px;
    }

    .service .tf-service-detail .wrap-fx-details {
        display: block;
    }
    .service .tf-service-detail #sidebar {
        width: 100%;
        margin-bottom: 40px;
    }
    .service .tf-service-detail article {
        padding-left: 0;
        width: 100%;
    }
    .service .tf-service-detail article .image img {
        width: 100%;
    }
    .service .tf-service-detail article .wrap-box-details {
        padding-right: 0;
    }

    .icon-box.st4 {
        width: 340px;
        height: 340px;
    }

    .tf-about.style2 .content-about .wrap-icon-box .icon-box {
        width: 100%;
    }

    .about .tf-about.style2 .content-about .wrap-icon-box .icon-box {
        width: 100%;
    }

    .tf-about.style3 .content-about .txt-transform {
        padding: 0;
    }

    .section-contact .content {
        padding: 0;
    }
    .section-contact .right-box .box {
        left: 0;
        top: 30px;
    }

    .title-section .title {
        font-size: 40px;
    }

    .swiper-container.swiper-loop {
        transform: translateX(0);
    }

    .wrap-counter {
        padding: 40px 30px 50px;
    }
    .wrap-counter .box:nth-child(1), .wrap-counter .box:nth-child(2), .wrap-counter .box:nth-child(3) {
        padding-right: 15px;
    }
    .wrap-counter .box:nth-child(1) {
        padding-left: 10px;
    }
    .wrap-counter .box:nth-child(2) {
        padding-left: 20px;
    }
    .wrap-counter .box:nth-child(3) {
        padding-left: 30px;
    }
    .wrap-counter .box:nth-child(4) {
        padding-left: 40px;
    }

    .pr110 {
        padding-right: 0;
    }

    .feature-box .box {
        padding: 20px 15px 20px 15px;
    }
    .feature-box .box .icon {
        min-width: 60px;
        min-height: 60px;
        width: 65px;
        height: 65px;
    }
    .feature-box .box .icon {
        margin-right: 15px;
    }

    .home3 .box-slider .content-box .title {
        font-size: 37px;
    }
    .home3 .box-slider .content-box .desc {
        padding-right: 0;
    }
    .home3 .page-title .swiper-container.slider-main .swiper-pagination {
        display: none;
    }
    .home3 .tf-section.tf-about .content-about .wrap-icon-box .icon-box.st2 {
        width: 100%;
        padding-right: 0;
    }
    .home3 .tf-section.tf-about .img-about {
        margin-bottom: 40px;
    }
    .home3 .tf-section.tf-about .img-about .img1 img,
    .home3 .tf-section.tf-about .img-about .img2 img {
        width: 100%;
    }
    .home3 .tf-section.tf-service .wrap-service {
        margin-bottom: 60px;
    }
    .home3 .tf-section.tf-service .wrap-service .title-section {
        padding: 0;
        margin-bottom: 0 !important;
    }
    .home3 .tf-section.tf-service .service-box {
        padding: 50px 15px 20px;
    }
    .home3 .tf-section.tf-service .service-box .wrap-inner .title-section {
        margin-bottom: 0 !important;
        width: 55%;
    }
    .home3 .tf-section.tf-service .service-box .wrap-inner .wrap-btn {
        width: 45%;
    }
    .home3 .tf-section.tf-service .service-box .feature-box .box {
        padding: 30px 20px;
        display: block;
    }
    .home3 .tf-section.tf-service .service-box .feature-box .box .icon {
        margin-bottom: 20px;
    }

    .main.home3 #site-header-inner {
        height: 90px;
    }
    .main.home3 .header .header-right {
        margin-right: 0px;
    }

    .pricing-box {
        padding: 0 0 15px 0;
    }
    .pricing-box .pricing-inner {
        padding: 20px 20px 30px 20px;
    }

    .pr60 {
        padding-right: 0;
    }

    .home2 #top-bar {
        height: auto;
    }
    .home2 #top-bar .topbar-inner .right {
        justify-content: center;
    }
    .home2.main .page-title {
        padding: 90px 0;
    }
    .home2.main .box-slider .content-box {
        padding: 0;
    }
    .home2.main .box-slider .content-box .title {
        margin-right: 0;
    }
    .home2 .img-about .experience-box {
        max-width: 220px;
        padding: 35px 20px;
    }
    .home2 .img-about .experience-box .number-content {
        font-size: 45px;
    }
    .home2 .content-about .wrap-icon-box .icon-box {
        margin-bottom: 15px;
        width: 100%;
    }
    .home2 .content-about .wrap {
        display: block;
    }
    .home2 .tf-section.tf-about .content-about .wrap {
        display: block;
    }
    .home2 .tf-section.tf-about .content-about .wrap .img-box {
        margin-bottom: 20px;
    }

    #top-bar {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #top-bar .topbar-inner .right .social {
        margin-left: 0;
    }
    #top-bar .topbar-inner .right .social li {
        margin-right: 0;
        margin-left: 18px;
    }
    #top-bar .topbar-inner .right .language {
        padding-left: 20px;
        padding-right: 20px;
    }
    #top-bar .topbar-inner .left {
        height: 40px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #top-bar .topbar-inner .left ul {
        justify-content: center;
    }
    #top-bar .topbar-inner .left ul li {
        padding-left: 0px;
    }
    #top-bar .topbar-inner .left ul li:nth-child(1) {
        margin-right: 15px;
        padding-right: 15px;
    }
    #top-bar .topbar-inner .left ul li:nth-child(2) {
        padding-left: 0px;
    }
    #footer.style2 .widget.widget-logo, #footer.style2 .widget.widget-infomation, #footer.style2 .widget.widget-recent-posts, #footer.style2 .widget.widget-service {
        width: 50%;
    }
    #footer.style2 .widget.widget-logo, #footer.style2 .widget.widget-recent-posts {
        padding-left: 15px;
        padding-right: 30px;
    }
    #footer.style2 .widget.widget-infomation, #footer.style2 .widget.widget-service {
        padding-left: 30px;
    }
    #footer.style2 .footer-main {
        padding: 30px 0;
    }
    #footer.style3 .footer-top .footer-inner {
        padding: 60px 0;
        display: block;
    }
    #footer.style3 .footer-top .footer-inner .right {
        margin-top: 30px;
        padding-left: 0;
    }
    #footer.style3 .footer-top .footer-inner .right form {
        max-width: 550px;
        margin-top: 0;
    }
    #footer.style3 .footer-top .footer-inner .right form button.tf-button {
        padding: 0 20px;
    }
    #footer.style3 .footer-top .footer-inner .left,
    #footer.style3 .footer-top .footer-inner .right {
        width: 100%;
    }
    #footer.style3 .widget.widget-recent-posts {
        width: 50%;
    }

    .blog-post .content {
        padding: 20px 20px 30px;
    }
    .blog-post .content ul {
        flex-wrap: wrap;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .blog-post .content ul li {
        margin-bottom: 10px;
    }
    .blog-post .content ul li:first-child {
        margin-right: 15px;
    }
    .blog-post .content ul li a::before {
        font-size: 16px;
    }

    .testimonior-content {
        margin-bottom: 30px;
    }

    .tf-section.tf-testimonior .testimonior-pagination,
    .tf-section.tf-testimonior .icon-absolute {
        display: none;
    }
    .tf-section.tf-testimonior .slider-testimonior {
        margin-left: 0;
    }

    .testimonior-box .content .quote {
        right: 10%;
    }

    .technology-solution .overlay {
        width: 100%;
        bottom: 0;
    }
    .technology-solution .image-about img {
        width: 100%;
    }
    .technology-solution .content-about {
        padding-top: 40px;
    }

    .mb52 {
        margin-bottom: 30px;
    }

    .slider-project {
        margin-top: 40px;
    }

    .content-about .wrap {
        display: block;
        justify-content: flex-start;
    }
    .content-about .wrap .tf-button {
        margin-bottom: 20px;
    }
    .content-about .wrap .img-box {
        justify-content: flex-start;
    }
    .content-about .wrap-icon-box {
        display: block;
    }
    .content-about .wrap-icon-box .icon-box {
        width: 100%;
        margin-bottom: 15px;
    }

    .title-section {
        margin-bottom: 30px !important;
    }

    .pb25 {
        padding: 0;
    }

    .pr70 {
        padding-right: 0;
    }

    .home1 .tf-section.tf-about .content-about .txt-transform {
        padding-right: 0;
    }
    .home1 .tf-section.technology-solution {
        padding: 90px 0;
    }

    .icon-box.st1 {
        margin-bottom: 30px;
    }

    .swiper-container.slider-main .swiper-pagination {
        /*
        display: none;

         */
    }
    /*
  .main.home1 .page-title {
    background: url(./../../assets/images/backgroup/bgslider1.jpg) left center no-repeat;
    background-size: cover;
  }

 */
    .main.home1 .tf-section.tf-about .img-about {
        margin-bottom: 40px;
        width: 100%;
    }
    .main.home1 .tf-section.tf-about .img-about.pb52 {
        padding-bottom: 150px;
    }

    .box-slider .image {
        /*
        display: none;
         */
    }
    .box-slider .content-box {
        width: 100%;
        padding-right: 0;
    }
    .box-slider .content-box .desc {
        padding-right: 0;
    }
    /*
  .tf-section.section-contact {
    padding: 100px 0 0;
  }
  .tf-section.section-contact .content {
    padding: 0 0 30px;
  }


 */
    .about .tf-about.style2,
    .service .tf-service-detail,
    .home3 .tf-section.tf-service,
    .tf-section.tf-partner,
    .tf-section {
        padding: 40px 0;
    }

    .header .header-right {
        margin-right: 40px;
    }

    .mobile-button {
        display: block;
    }

    .tf-post .wrap-fx {
        display: block;
    }
    .tf-post article,
    .tf-post #sidebar {
        width: 100%;
        padding: 0;
    }
    .tf-post article {
        margin-bottom: 50px;
    }

    .post .image {
        width: 100%;
    }
    .post .image img {
        width: 100%;
    }

    .m-t51 {
        margin-bottom: 40px;
    }

    .mobie-bt0 {
        margin-bottom: 0 !important;
    }

    #footer .widget {
        margin-bottom: 30px;
    }
    #footer .widget.widget-subscribe, #footer .widget.widget-infomation, #footer .widget.widget-logo, #footer .widget.widget-service {
        width: 50%;
    }
    #footer .widget.widget-infomation, #footer .widget.widget-logo {
        padding-left: 15px;
        padding-right: 30px;
    }
    #footer .widget.widget-subscribe, #footer .widget.widget-service {
        padding-left: 30px;
        padding-right: 15px;
    }
    #footer .footer-main .footer-bottom {
        margin-top: 0px;
    }
    #footer .footer-top .footer-inner {
        padding: 45px 30px;
    }
    #footer.style3 .footer-main .widget-logo {
        padding-right: 15px;
    }
    #footer.style3 .footer-main .widget.widget-logo, #footer.style3 .footer-main .widget.widget-service.style {
        padding-left: 15px;
        padding-right: 30px;
    }
    #footer.style3 .footer-main .widget.widget-recent-posts, #footer.style3 .footer-main .widget.widget-service {
        padding-left: 30px;
        padding-right: 15px;
    }

    .icon-box.st3 .title {
        padding: 0 25px;
    }

    .history .tf-section.get-solutions .box {
        padding: 50px;
    }

    .ml-20 {
        margin-left: 0;
    }
}
.burger-button__line:nth-child(3){
    margin-bottom: 0px;
}
#dropdownMenuLink{
    display: block;
}
.show-all-tags{
    color: #E14D36;
}
h5.step-content-title{
    font-size: 18px;
}
.archive-search-fix-mobile {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .technology-solution .overlay {
        right: 0;
    }
    .archive-search-fix-mobile {
        flex-direction: column-reverse;
    }
    h5.step-content-title{
        font-size: 16px;
    }
    p.layout-register-desc{
        font-size: 16px;
        line-height: 1.4rem;
    }
    .layout-register-title {
        font-size: 18px;
        line-height: 1.6rem;
    }
    .microloan-block-content{
        flex-direction: column-reverse;
    }
    .post.dop-user-info{
        box-shadow: none;
    }
    .date-info {
        font-size: 16px;
    }
    .minor__title{
        font-size: 16px;
    }
    .blog-post .content .title, .post .content .title {
        font-size: 16px;
    }
    .contact-style1{
        padding: 10px 15px;
        box-shadow: none;
    }
    .mbrostov-calendar .ui-datepicker table {
        font-size: 15px;
    }
    .mbrostov-calendar .ui-widget.ui-widget-content {
        padding: 10px;
    }
    .mbrostov-calendar .ui-datepicker-title {
        font-size: 17px;
    }
    .porfolio-box{
        padding: 20px;
    }
    .row-list-blocks{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    h5.title-accord{
        font-size: 17px;
    }
    #top-bar .topbar-inner{
        width: 100%;
    }
    #top-bar .topbar-inner .left{
        height: 60px;
        justify-content: left;
    }

    #top-bar .topbar-inner .left li a{
        display: flex;
    }
    #footer.style2 .footer-main .widget-logo .desc{
        font-size: 15px;
    }
    .mt-60 {
        margin-top: 30px;
    }
    .home3 .tf-section.tf-feature{
        padding-top: 30px!important;
    }
    .home3 .header {
        height: auto;
    }

    .get-solution .title-section .title {
        margin-right: 0;
    }

    .icon-box.st4.animated2 {
        animation: move6 3s infinite linear;
    }

    .home2 .tf-section.tf-testimonior .testimonior-box .content {
        padding: 40px 15px 40px 60px;
    }

    .testimonior-box .content {
        padding: 30px 15px 0px 15px;
    }

    .post.style .content .title {
        padding-right: 0;
    }

    .swiper-container.gallery-thumbs2 {
        height: auto;
    }

    .gallery-thumbs2 .swiper-slide {
        width: 100px !important;
        height: 100px !important;
    }

    #footer .widget {
        margin-bottom: 20px;
    }
    #footer .widget.widget-subscribe, #footer .widget.widget-infomation, #footer .widget.widget-logo, #footer .widget.widget-service {
        width: 50%;
    }
    #footer .widget.widget-infomation, #footer .widget.widget-logo, #footer .widget.widget-subscribe, #footer .widget.widget-service {
        padding-left: 15px;
        padding-right: 15px;
    }
    #footer.style2 .widget.widget-logo, #footer.style2 .widget.widget-recent-posts, #footer.style2 .widget.widget-infomation, #footer.style2 .widget.widget-service {
        padding-left: 15px;
        padding-right: 15px;
    }
    #footer.style2 .footer-main {
        padding: 30px 0;
    }
    #footer.style3 .footer-main .widget-logo {
        padding-right: 15px;
    }
    #footer.style3 .footer-main .widget.widget-logo, #footer.style3 .footer-main .widget.widget-service.style, #footer.style3 .footer-main .widget.widget-recent-posts, #footer.style3 .footer-main .widget.widget-service {
        padding-left: 15px;
        padding-right: 15px;
    }

    .flat-tabs.tab1 .menu-tab {
        flex-wrap: wrap;
    }
    .flat-tabs.tab1 .menu-tab li {
        margin-bottom: 5px;
    }

    .service .tf-service-detail article .image-box .box {
        width: 100%;
    }


    .item-parner .image {
        justify-content: center;
    }

    .icon-absolute {
        display: none;
    }

    .tf-section.get-solution {
        padding: 0 !important;
    }

    .pg-contact .tf-section.map {
        padding: 0 !important;
    }
    .pg-contact .tf-contact .contact-flex .box-right {
        display: block;
    }
    .pg-contact .tf-contact .contact-flex .box-right .icon-box {
        width: 100%;
        margin-bottom: 30px;
    }
    .pg-contact .tf-contact2 .contact-flex {
        display: block;
    }
    .pg-contact .tf-contact2 .contact-flex .box-right {
        padding-left: 0;
        width: 100%;
    }
    .pg-contact .tf-contact2 .contact-flex .box-left {
        margin-bottom: 40px;
        padding-right: 0;
        width: 100%;
    }

    .tf-product-details {
        display: block;
    }
    .tf-product-details .item-detais {
        padding-left: 0;
    }
    .tf-product-details .image-thump-product {
        margin-bottom: 40px;
    }
    .tf-product-details .image-thump-product .gallery-slider2 {
        margin-left: 0;
    }
    .tf-product-details .image-thump-product .gallery-thumbs2 {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
    .tf-product-details .image-thump-product img {
        width: 100%;
    }
    .tf-product-details .wrap-fx {
        display: block;
    }
    .tf-product-details .item-detais,
    .tf-product-details .image-thump-product {
        width: 100%;
        display: block;
    }

    .product-flex .item-box {
        width: calc(50% - 31px);
    }

    .history-box .box .img-box .content {
        padding: 40px 40px 40px 90px;
    }

    .history .tf-section.get-solutions .image-video {
        position: relative;
    }
    .history .tf-section.get-solutions .image-video .popup-youtube {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .history .tf-section.get-solutions .overlay {
        height: 100%;
    }
    .history .tf-section.get-solutions .box {
        margin-top: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 30px;
    }

    .pr100 {
        padding-right: 0;
    }

    .about .wrap-icon-box .icon-box.st2 {
        padding: 0;
    }
    .about .wrap-icon-box .icon-box.st2 .title {
        padding-right: 0;
    }

    .pg-project .tf-section.tf-project-detail .divider {
        margin-bottom: 0;
    }
    .pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 {
        display: block;
        padding-right: 0;
    }
    .pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 img {
        width: 100%;
        margin-bottom: 30px;
    }
    .pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 .porfolio-absolute {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 .porfolio-absolute .porfolio-box {
        width: 100%;
        padding: 30px;
    }
    .pg-project .tf-section.tf-project-detail .img-project-detail .image-style2 .porfolio-absolute .porfolio-box .list li {
        height: 55px;
    }
    .pg-project .tf-section.tf-project-detail .wrap.style2 {
        width: 100%;
    }
    .pg-project .tf-section.tf-project-detail .wrap.style2 .list li:nth-child(1),
    .pg-project .tf-section.tf-project-detail .wrap.style2 .list li:nth-child(2) {
        padding-right: 0;
    }

    .flat-tabs.tab1 .content-tab .content-inner .project-box {
        width: calc(50% - 30px);
    }

    .tf-contact-form .infor-contact {
        margin-bottom: 40px;
    }

    .pg-team .tf-section.team-work .work-box {
        padding: 40px;
    }
    .pg-team .tf-section.tf-team-details .team-detail {
        display: block;
    }
    .pg-team .tf-section.tf-team-details .team-detail .content,
    .pg-team .tf-section.tf-team-details .team-detail .image {
        width: 100%;
    }
    .pg-team .tf-section.tf-team-details .team-detail .image {
        margin-bottom: 30px;
    }
    .pg-team .tf-section.tf-team-details .experience-fx {
        display: block;
    }
    .pg-team .tf-section.tf-team-details .experience-fx .experience-box,
    .pg-team .tf-section.tf-team-details .experience-fx .image {
        width: 100%;
    }
    .pg-team .tf-section.tf-team-details .experience-fx .experience-box img,
    .pg-team .tf-section.tf-team-details .experience-fx .image img {
        width: 100%;
    }
    .pg-team .tf-section.tf-team-details .experience-fx .experience-box {
        margin-bottom: 40px;
    }

    .mobie-bt30 {
        margin-bottom: 30px;
    }

    .service .experience .experience-box {
        padding: 50px 30px 30px 30px;
    }
    .service .experience .experience-box .title-section {
        padding-right: 0;
    }
    .service .tf-service-detail article .image-box {
        display: block;
    }
    .service .tf-service-detail article .image-box .img {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .service .tf-service-detail article .image-box .img img {
        width: 100%;
    }
    .service .tf-service-detail article .wrap-fx {
        display: block;
    }
    .service .tf-service-detail article .wrap-fx .icon-box {
        width: 100%;
    }

    .icon-box.st4 {
        margin-bottom: 30px;
    }

    .about .tf-about.style2 .content-about {
        margin-bottom: 40px;
    }
    .tf-section.working-experience .content-box {
        padding: 0;
        margin-top: 40px;
    }
    .tf-section.working-experience .content-box .experience-box {
        margin-left: 0;
    }
    .tf-section.working-experience .content-box .experience-box .box:nth-child(1), .tf-section.working-experience .content-box .experience-box .box:nth-child(2), .tf-section.working-experience .content-box .experience-box .box:nth-child(3) {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-contact .content {
        margin-bottom: 40px;
    }

    .wrap-counter {
        padding: 40px 30px 50px;
        flex-wrap: wrap;
    }
    .wrap-counter .box {
        text-align: center;
        width: 50%;
    }
    .wrap-counter .box:nth-child(1), .wrap-counter .box:nth-child(2), .wrap-counter .box:nth-child(3), .wrap-counter .box:nth-child(4) {
        padding-right: 15px;
        padding-left: 15px;
    }
    .wrap-counter .box:nth-child(1), .wrap-counter .box:nth-child(2) {
        margin-bottom: 30px;
    }

    .feature-box {
        flex-wrap: wrap;
    }
    .feature-box .box {
        width: 100%;
    }

    .home3 .box-slider .content-box .title {
        font-size: 35px;
    }
    .home3 .tf-section.tf-service .service-box .wrap-inner {
        display: block;
    }
    .home3 .tf-section.tf-service .service-box .wrap-inner .title-section,
    .home3 .tf-section.tf-service .service-box .wrap-inner .wrap-btn {
        width: 100%;
        text-align: left;
    }
    .home3 .tf-section.tf-service .service-box .wrap-inner .title-section {
        margin-bottom: 30px !important;
    }
    .home3 .tf-section.tf-service .service-box .feature-box .col-50 {
        width: 100%;
    }
    .home3 .tf-section.tf-about2 .img-about {
        margin-bottom: 40px;
    }
    .home3 .tf-section.tf-about2 .image .img1 {
        width: 55%;
        margin-left: 0;
    }
    .home3 .tf-section.tf-about2 .image .img2 {
        width: 45%;
    }
    .home3 .tf-section.tf-about2 .image2 img {
        width: 100%;
    }
    .home3 .tf-section.tf-partner {
        padding: 0 !important;
    }
    .main.home3 .header__logo {
        transform: none;
        padding: 0;
        background: transparent;
    }
    .main.home3 #site-header-inner {
        height: auto;
    }
    .main.home3 .header .header-right {
        margin-right: 0px;
    }

    .pricing-box {
        margin-bottom: 30px;
        padding: 0 15px 15px;
    }
    .pricing-box .pricing-inner {
        padding: 20px 20px 30px 20px;
    }
    .pricing-box .pricing-inner .list {
        display: flex;
        flex-wrap: wrap;
    }
    .pricing-box .pricing-inner .list li {
        margin-right: 20px;
    }

    .ml104 {
        margin-left: 0;
    }

    .pr75 {
        padding-right: 0;
    }

    .tf-section.get-solutions {
        padding: 0 0 70px;
    }
    .tf-section.get-solutions .overlay {
        height: 95%;
    }
    .tf-section.get-solutions .content-progress-box {
        padding-left: 0;
    }
    .tf-section.get-solutions .image-video {
        margin-bottom: 30px;
    }
    .tf-section.get-solutions .image-video .popup-youtube {
        margin: 0;
    }
    .tf-section.get-solutions .box {
        margin-right: 0;
        margin-top: 0;
        padding: 30px;
    }

    .btn-slider-project,
    .service-pagination {
        display: none;
    }

    .title-section .title {
        font-size: 34px;
    }

    .home2 .tf-project {
        padding: 70px 0 0;
    }
    .home2 .tf-project .swiper-container.slider-project2 {
        margin: 10px 0 0;
    }
    .home2.main .box-slider .content-box .title {
        font-size: 54px;
    }
    .home2 .tf-section.tf-about .img-about {
        margin-bottom: 40px;
    }
    .home2 .tf-section.tf-about .img-about .img2 {
        width: 43%;
    }
    .home2 .tf-section.tf-team, .home2 .tf-section.tf-partner {
        padding: 70px 0;
    }

    .get-solution .title-section {
        padding: 70px 0 40px;
    }
    .get-solution .image img {
        width: 100%;
    }


    .box-slider .content-box .title {
        font-size: 54px;
    }

    .wrap-widget {
        display: block;
    }
    .wrap-widget .widget.widget-tag {
        margin-bottom: 20px;
    }
    .wrap-widget .widget.widget-social {
        justify-content: flex-start;
    }

    .wrap-box-details {
        display: block;
    }
    .wrap-box-details .previous {
        padding: 0;
        margin-bottom: 30px;
    }
    .wrap-box-details .next {
        padding: 0;
    }
    .wrap-box-details .previous,
    .wrap-box-details .next {
        width: 100%;
    }

    .blogdetail .post .content {
        padding: 15px 20px 30px;
    }
    .blogdetail .post .post-inner {
        display: block;
    }
    .blogdetail .post .post-inner .img {
        margin-bottom: 20px;
    }
    .blogdetail .post .post-inner .img img {
        min-height: auto;
        min-width: auto;
        width: 100%;
    }
    .blogdetail .post .post-inner .desc {
        margin-left: 0;
    }
    .blogdetail .post .author-post {
        padding: 30px 20px;
    }
    .blogdetail .post .author-post .img {
        margin-right: 20px;
    }

    .post .content {
        padding: 15px 20px 30px;
    }
    .post .content .meta-post {
        margin-top: 15px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .post .content .meta-post li {
        margin-bottom: 15px;
    }
    .post .content .date {
        margin-left: -40px;
    }
    .post .image .popup-youtube {
        padding: 10px;
        top: 10%;
    }
    .post .image .popup-youtube .play {
        width: 60px;
        height: 60px;
    }
    .post .image .popup-youtube .play i {
        font-size: 20px;
    }

    .tf-section {
        padding: 30px 0 !important;
    }
    .pt-pb-block {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .tf-section.mobie-pb0 {
        padding-bottom: 0 !important;
    }

    .tf-section.working-experience {
        padding: 0 !important;
    }

    .breadcrumbs .heading {
        font-size: 24px;
    }
    .breadcrumbs ul li {
        font-size: 15px;
    }
    .mobie-bt0 {
        margin-bottom: 0 !important;
    }
    .footer-top .footer-inner {
        margin-bottom: -15%;
        display: block;
        text-align: center;
    }
    .footer-top .footer-inner h3 {
        margin-bottom: 20px;
    }

    .themesflat-pagination ul li.st {
        margin: 0 5px;
    }
    .themesflat-pagination ul li:last-child {
        margin-right: 0;
        margin-left: 10px;
    }
    .themesflat-pagination ul li:nth-child(4) {
        display: none;
    }

    #comments .comment-list article .gravatar {
        margin-right: 20px;
    }
    #comments .comment-list article .comment-content .wrap-fx .comment-author {
        margin-right: 8px;
    }

    .blogdetail .post .wrap-inner,
    .comment-post {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wrap-widget .widget .title-widget {
        margin-right: 10px;
    }
    .wrap-widget .widget.widget-tag ul li {
        margin-right: 5px;
    }
    .wrap-widget .widget.widget-tag ul li:last-child {
        margin-right: 0;
    }
    .wrap-widget .widget.widget-tag ul li a {
        padding: 0 6px;
    }
    .wrap-widget .widget.widget-social .title-widget {
        margin-right: 10px;
    }

    #footer.style3 .footer-top .footer-inner .right form {
        margin-left: auto;
        margin-right: auto;
    }
}
@media only screen and (max-width: 600px) {
    .pg-contact .contact-style1 fieldset {
        width: calc(100% - 30px);
    }
    .tf-section.working-experience .content-box .experience-box .box{
        border-right: 0px;
    }

    .pricing .tf-pricing.style2 .pricing-fx {
        flex-wrap: wrap;
    }
    .pricing .tf-pricing.style2 .pricing-fx .pricing-box {
        width: calc(100% - 20px);
    }

    .history-box .box .number {
        font-size: 30px;
    }
    .history-box .box .img-box {
        display: block;
        background: #fff;
        text-align: center;
        padding: 30px 15px !important;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        border-radius: 5px;
    }
    .history-box .box .img-box img {
        margin-bottom: 30px;
    }
    .history-box .box .img-box .content {
        margin-left: 0;
        padding: 0;
        background: none;
        box-shadow: none;
    }
    .history-box .box .img-box .content::after {
        display: none;
    }
    .history-box .box .img-box .content h5 {
        font-size: 18px;
    }
    .history-box .box .img-box.active {
        background: rgb(42 1 1);
    }
    .history-box .box .img-box.active .content {
        background: none;
        box-shadow: none;
    }
    .history-box .box .img-box:hover {
        background: rgb(42 1 1);
    }
    .history-box .box .img-box:hover .content {
        background: none;
        box-shadow: none;
    }
    .history-box .box.left .img-box {
        margin-right: 30px;
    }
    .history-box .box.right .img-box {
        margin-left: 30px;
    }

    .flat-tabs.tab1 .content-tab .content-inner .project-box {
        width: calc(100% - 30px);
    }

    .tf-section.working-experience .content-box .experience-box {
        display: block;
    }
    .tf-section.working-experience .content-box .experience-box .box {
        width: 100%;
        text-align: center;
        display: inline-block;
        margin-bottom: 40px;
    }
    .tf-section.working-experience .content-box .experience-box .box .box-couter {
        display: inline-block;
    }
    .tf-section.working-experience .content-box .experience-box .box:nth-child(3) {
        margin-bottom: 0;
    }

    #top-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
    }


    .footer-main .footer-bottom .wrap-fx {
        display: block;
        text-align: center;
    }
    .footer-main .footer-bottom .wrap-fx .Copyright {
        margin-bottom: 10px;
    }
    .footer-main .footer-bottom .wrap-fx .list {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-main .footer-bottom .wrap-fx .list::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .blogdetail .post .author-post {
        display: block;
        text-align: center;
    }
    .blogdetail .post .author-post .img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .blogdetail .post .author-post .content-inner .social {
        justify-content: center;
    }
    .blogdetail .post .author-post .content-inner .social li {
        margin: 0 10px;
    }
    .blogdetail .post .testimonior {
        padding: 20px 15px;
    }
    .blogdetail .post .testimonior .img {
        margin-right: 15px;
    }
}
@media only screen and (max-width: 500px) {
    .product-flex .item-box {
        width: calc(100% - 31px);
    }

    .top-bar-product {
        display: block;
    }
    .top-bar-product #artworks {
        margin-top: 30px;
    }

    .pg-project .tf-section.tf-project-detail .wrap .flex-img {
        flex-wrap: wrap;
    }
    .pg-project .tf-section.tf-project-detail .wrap .flex-img img {
        width: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .pg-team .tf-section.tf-team-details .team-detail {
        padding: 20px 15px;
    }
    .pg-team .tf-section.tf-team-details .team-detail .infor-contact .infomation > li {
        height: 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .about .tf-about.style2 .img-about .img1 {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .about .tf-about.style2 .img-about .img2 {
        margin-left: 0;
        margin-top: 0;
    }
    .about .tf-about.style2 .img-about .img1,
    .about .tf-about.style2 .img-about .img2 {
        width: 100%;
    }
    .about .tf-about.style2 .img-about .img1 img,
    .about .tf-about.style2 .img-about .img2 img {
        width: 100%;
    }

    .wrap-counter .box {
        width: 100%;
    }
    .wrap-counter .box:nth-child(1), .wrap-counter .box:nth-child(2), .wrap-counter .box:nth-child(3) {
        margin-bottom: 30px;
    }

    .home3 .box-slider .content-box .btn-slider {
        display: block;
    }
    .home3 .box-slider .content-box .btn-slider .tf-button {
        margin-bottom: 20px;
    }
    .home3 .tf-section.tf-about .content-about .wrap {
        display: block;
    }
    .home3 .tf-section.tf-about .content-about .wrap .tf-button {
        margin-bottom: 20px;
    }
    .home3 .tf-section.tf-service .service-box {
        padding: 50px 5px 20px;
    }
    .home3 .tf-section.tf-service .service-box .feature-box .col-50 {
        width: 100%;
    }
    .home3 .tf-section.tf-service .service-box .feature-box .col-50 .box {
        display: block;
        text-align: center;
    }
    .home3 .tf-section.tf-service .service-box .feature-box .col-50 .box .icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    .home3 .tf-section.tf-about2 .image {
        display: block;
    }
    .home3 .tf-section.tf-about2 .image .img1 {
        width: 100%;
        margin-bottom: 30px;
    }
    .home3 .tf-section.tf-about2 .image .img2 {
        padding-top: 0;
        width: 100%;
    }

    #footer.style3 .footer-top .footer-inner .right form {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    #footer.style3 .footer-top .footer-inner .right form button {
        margin-top: 20px;
        position: relative;
        top: 0;
    }

    .testimonior-box .content .quote {
        display: none;
    }

    #comments .comment-list article.inner {
        padding-left: 0;
    }
    #comments .comment-list article .comment-content .wrap-fx {
        display: block;
    }

    .post .content .title {
        font-size: 25px;
    }

    #footer .widget.widget-logo, #footer .widget.widget-subscribe, #footer .widget.widget-infomation, #footer .widget.widget-service {
        padding: 0 15px;
        width: 100%;
    }

    .page-title .wrap-btn .tf-button,
    .page-title .wrap-btn .tf-button-st2 {
        display: inline-block;
    }
}
/* themesflat animation
-------------------------------------------------------------- */
.tf-animated-twocolumn .item-animated.first {
    transform: translateX(-15px);
}

.tf-animated-twocolumn .item-animated.last {
    transform: translateX(15px);
}

.tf-animated-fadeup .content-about,
.tf-animated-fadeup .effect-img-about,
.tf-animated-fadeup .title-section,
.tf-animated-fadeup .breadcrumbs,
.tf-animated-fadeup.post .image,
.tf-animated-fadeup.post .content,
.tf-animated-fadeup#sidebar .widget,
.tf-animated-fadeup .animated-effect {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
}

.tf-animated-fadeup .content-about.tfanimated,
.tf-animated-fadeup .effect-img-about.tfanimated,
.tf-animated-fadeup .title-section.tfanimated,
.tf-animated-fadeup#sidebar .widget.tfanimated,
.tf-animated-fadeup .breadcrumbs.tfanimated,
.tf-animated-fadeup.post .image.tfanimated,
.tf-animated-fadeup.post .content.tfanimated,
.tf-animated-fadeup .animated-effect.tfanimated {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    webkit-transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
    transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out, opacity 0.8s linear;
    transition: transform 0.8s ease-in-out, opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
}

/* hover top */
.tf-animated-hover-top {
    transition: all 0.5s;
    transform: translateY(0);
}

.tf-animated-hover-top:hover {
    transform: translateY(-30px);
}

.tf-animated-hover-top-s2 {
    transition: all 0.5s;
    transform: translateY(0);
}

.tf-animated-hover-top-s2:hover {
    transform: translateY(-10px);
}

.tf-animated-fadeleft .experience-box,
.tf-animated-fadeleft .animated-effect {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
}

.tf-animated-fadeleft .experience-box.tfanimated,
.tf-animated-fadeleft .animated-effect.tfanimated {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    webkit-transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
    transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out, opacity 0.8s linear;
    transition: transform 0.8s ease-in-out, opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
}

.tf-animated-faderight .experience-box,
.tf-animated-faderight.img-box-service .image,
.tf-animated-faderight .image-faq .image2,
.tf-animated-faderight .box-right,
.tf-animated-faderight .bg-about,
.tf-animated-faderight .img-style,
.tf-animated-faderight .animated-effect {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
}

.tf-animated-faderight .experience-box.tfanimated,
.tf-animated-faderight.img-box-service .image.tfanimated,
.tf-animated-faderight .image-faq .image2.tfanimated,
.tf-animated-faderight .box-right.tfanimated,
.tf-animated-faderight .bg-about.tfanimated,
.tf-animated-faderight .img-style.tfanimated,
.tf-animated-faderight .animated-effect.tfanimated {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    webkit-transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
    transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out, opacity 0.8s linear;
    transition: transform 0.8s ease-in-out, opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
}

.tf-animated-fadedown .animated-effect {
    opacity: 0;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
}

.tf-animated-fadedown .animated-effect.tfanimated {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    webkit-transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
    transition: opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out, opacity 0.8s linear;
    transition: transform 0.8s ease-in-out, opacity 0.8s linear, -webkit-transform 0.8s ease-in-out;
}
#top-bar .topbar-inner .right ul li span{
    padding-left: 8px;
    font-size: 14px;
    color: #585757;
    font-weight: 500;
}
.color-eye{
    color: #562212;
    font-size: 26px;
}
.steps-list__item{
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    word-break: break-word;
    font-family: var(--bs-body-font-family);
}
ul.steps-list{
    text-align: left;
    display: block;
    width: 55%;
    margin: 0 auto;
}
.steps-list__item:before{
    background-color: #fff;
    border: 2px solid #e95b4a;
    border-radius: 100%;
    content: "";
    display: inline-block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 12px;
}
.search-btn {
    font-size: 23px;
    color: #562212;
}
.check-calcul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.check-calcul input[type=checkbox]{
    height: 20px;
}
.check-calcul input[type=checkbox]:checked {
    background-color: red;
}
.icon-box.st1.ecffect{
    font-family: 'Jost', sans-serif!important;
}
.second-banner-title{
    height: 64px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.formname input[type=checkbox] + label {
    display: block;
    position: relative;
    margin: 12px 0 12px 30px;
    cursor: pointer;
    line-height: 20px;
}
.formname input[type=checkbox] + label:before {
    position: absolute;
    content: '';
    width: 22px;
    height: 22px;
    line-height: 22px;
    left: -30px;
    border: 1px solid #808080;
}
.formname input[type=checkbox]:checked + label:before {
    content: '\2714';
    color: #337AB7;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #337AB7;
}
.formname input[type=checkbox] {
    display: none;
}
.page-item.active .page-link{
    background-color: #E14D36;
    border-color: #E14D36;
}
.page-item.disabled .page-link,
.page-link {
    border-color: #E6DACC;
}
a.faq-link{
    color: #E14D36;
}
nav ul.pagination {
    margin-top: 20px;
}
.about-section{
    padding-bottom: 130px;
}
.get-consult .content{
    padding-top: 60px;
    padding-bottom: 60px;
}
.tf-section.get-consult{
    padding: 0px;
}
.get-consult .content .desc{
    font-size: 17px;
}
.section__graphics_view_circle {
    width: 184px;
    height: 184px;
    bottom: 112px;
    right: 34px;
    opacity: 0.2;
    color: #E14D36;
}
.section__graphics_view_circle-solid {
    width: 184px;
    height: 184px;
    /* bottom: 112px; */
    top: -30px;
    right: 420px;
    opacity: 0.2;
    color: #E14D3640;
}
.section__graphics_view_z {
    width: 204px;
    left: -46px;
    top: 86px;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
    color: #edd8c3;
    z-index: -1;
}
.section__graphics_view_x {
    width: 204px;
    right: -80px;
    top: 16px;
    color: #edd8c32e;
}
.section__graphics {
    position: absolute;
    pointer-events: none;
}
.section__rhombus {
    position: absolute;
    left: -40px;
    bottom: -40px;
    /* -webkit-transform: translate(-50%, 60%); */
    /* transform: translate(-50%, 50%); */
    opacity: 0.3;
    color: #cf553d36;
    width: 173px;
    height: 173px;
}


.calculator:after {
    content: "";
    display: block;
    width: 244px;
    height: 244px;
    background-image: url(https://moibiz42.ru/assets/images/icons/circle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: -124px 0;
    position: absolute;
    top: -50px;
    left: 0;
    pointer-events: none;
    opacity: 0.1;
    z-index: 1;
}
.calculator:before {
    content: "";
    display: block;
    width: 110px;
    height: 110px;
    background-image: url(https://moibiz42.ru/assets/images/icons/angle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 0;
    position: absolute;
    pointer-events: none;
    left: 62%;
    bottom: -56px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0.2;
    z-index: 1;
}
.section-calculator .title-section .sub-title{
    color: #E14D36;
}
.section-calculator .title-section .sub-title::before{
    color: #E14D36;
}
/*
footer{
  overflow: hidden;
}
 */
.section__rhombus-footer {
    position: absolute;
    right: -40px;
    top: -40px;
    /* -webkit-transform: translate(-50%, 60%); */
    /* transform: translate(-50%, 50%); */
    opacity: 0.3;
    color: #cf553d36;
    width: 173px;
    height: 173px;
    z-index: 1;
}
footer .section__graphics {
    z-index: 1;
}
.section__graphics_view_x-footer{
    width: 144px;
    left: -21px;
    bottom: 100px;
    color: #d1573e1a;
}
.rocket-animation, .rocket-animation1 {
    position: absolute;
    left: 40px;
    bottom: -400px;
    transition: all 2s;
    transition-timing-function: ease-out;
    z-index: 0;
}
.fon-events-main{
    background: url("./../../assets/images/backgroup/fon-news.png") center center no-repeat;
    background-size: cover;
}
.fon-news-main{
    background: url("./../../assets/images/backgroup/fon-news-2.png") 50% 16% no-repeat;
}
.link-menu{
    font-size: 16px;
    color: #562212;
    font-weight: 600;
}
.burger-button__lines {
    width: 26px;
}
.burger-button__line {
    height: 2px;
    width: 100%;
    background-color: #E14D36;
    margin-bottom: 6px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.burger-button__text {
    font-weight: 500;
    padding-left: 15px;
    font-size: 16px;
    color: rgb(42 1 1);
}
.header-left__search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-left__search .header-search {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    padding-left: 15px;
}
i.header-search-icon{
    font-weight: 500;
    color: #E14D36;
    vertical-align: text-bottom;
}
@media (max-width:575px){
    .second-block-filter{
        margin-top: 30px;
    }
    .profile h3.name {
        font-size: 19px;
    }
    span.step-number{
        display: block;
        margin-bottom: 25px;
    }
    .course-post__topic {
        font-size: 15px;
        padding: 6px 18px;
    }
    .tf-section.working-experience .content-box .experience-box .box .box-couter p{
        font-size: 15px;
    }
    .tf-section.working-experience .content-box .experience-box .box .box-couter .number-content span{
        font-size: 30px;
    }
    .section-contact .content .desc{
        font-size: 15px;
    }
    .contact-form.user-form .formname input[type=checkbox] + label{
        font-size: 14px;
    }
    .rrapp-iframe-form-message {
        font-size: 14px;
    }
}
.b24-widget-button-wrapper{
    z-index: 150!important;
}
.img_upload img{
    max-height: 80px;
    object-fit: scale-down;
}
.dropdown-menu.auth-link-dropdown{
    max-width: 100%;
    min-width: 100%;
    margin-top: 8px !important;
    width: 100%;
    left: 0;
    height: auto;
    border-radius: 0px 0px 10px 10px;
    padding: 0;
    top: 0;
    background: #ffffff;
    transform: translate(0px, 52px) !important;
    border: none;
}
ul.event-meta li:first-child {
    margin-bottom: 15px;
}
.blog-post.past-event .date{
    background: #c3c3c3!important;
}
.past-event-date{
    background: #c3c3c3!important;
}
.filter-events{
    float: right;
}
p.measure-tag{
    font-size: 14px;
    font-weight: 500;
    color: #8e6455;
}
p.all-measures-tag{
    font-size: 13px;
    font-weight: 500;
    color: #8e6455;
}
.events-year-tag{
    font-size: 14px;
    font-weight: 500;
    color: #562212;
    margin-bottom: 30px;
}
.events-year-tag a.active{
    color: #E14D36;
}
.events-year-tag a:hover{
    color: #E14D36;
}
.events-year-tag :not(:last-child){
    margin-right: 10px;
}
.page-link{
    color: #E14D36;
}
.page-link:hover{
    color: #E14D36;
}
p.measure-tag :not(:last-child){
    margin-right: 10px;
}
p.all-measures-tag :not(:last-child){
    margin-right: 10px;
}
.file-upload {
    position: relative;
    background: #fff;
    border: 1px solid #c9ccd4;
    border-radius: 3px;
    height: 60px;
    border-radius: 4px;
    line-height: 60px;
    text-align: center;
}
input[type=text].filename {
    background: white;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 0px;
    line-height: normal;
    border: none;
}
.file-upload:hover{
    background: #f6f6f6;
    transition: all 0.3s;
}

.file-upload input[type=file],
.file-upload input[type=submit] {
    display: none;
}

.file-upload label {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload span {
    font-size: 16px;
    line-height: 1.31875;
    color: rgb(42 1 1);
}
a.no-link:hover{
    color: rgb(42 1 1)!important;
    cursor: default;
}
.mt-30{
    margin-top: 30px;
}
.filename {
    background: #fff;
    border: 0;
}
.icon-Page-1_50{
    display: block;
    width: 64px;
    height: 64px;
    position: relative;
    vertical-align: middle;
    top: 0px;
}
.produkti > .row > .microloan:first-child .icon-Page-1_50:before {
    content: url(./../../assets/images/common/icon1-f.png);
}
.produkti > .row > .microloan:nth-child(2) .icon-Page-1_50:before {
    content: url(./../../assets/images/common/icon2-f.png);
}
.produkti > .row > .microloan:nth-child(3) .icon-Page-1_50:before {
    content: url(./../../assets/images/common/icon3-f.png);
}
.produkti > .row > .microloan:first-child .microloan__img:before {
    content: url(./../../assets/images/icon/ChartLineUp.svg);
    height: 32px;
    width: 32px;
    display: block;
}
.produkti > .row > .microloan:nth-child(2) .microloan__img:before {
    content: url(./../../assets/images/icon/Crosshair.svg);
    height: 32px;
    width: 32px;
    display: block;
}
.produkti > .row > .microloan:nth-child(3) .microloan__img:before {
    content: url(./../../assets/images/icon/Coins.svg);
    height: 32px;
    width: 32px;
    display: block;
}
.slider-project2 > .swiper-slide > .actual:first-child .actual-elements__img:before {
    content: url(./../../assets/images/icon/ChartLineUp.svg);
}
.slider-project2 div.swiper-slide:nth-child(3n+4) .actual-elements__img:before {
    content: url(./../../assets/images/icon/actual-icon1.svg);
}
.slider-project2 div.swiper-slide:nth-child(3n+2) .actual-elements__img:before {
    content: url(./../../assets/images/icon/actual-icon2.svg);
}
.slider-project2 div.swiper-slide:nth-child(3n+3) .actual-elements__img:before {
    content: url(./../../assets/images/icon/actual-icon3.svg);
}
.actual-elements__img {
    position: absolute;
    top: 30px;
    left: 15px;
}
p.layout-register-desc{
    font-size: 20px;
    line-height: 2rem;
}
.layout-register-title {
    font-size: 30px;
    line-height: 2.4rem;
}
.popup-devider {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}
.register-event__second-desc{
    font-size: 20px;
}
.popup-devider__line {
    width: 45%;
    height: 1px;
    background-color: #c9ccd4;
}
.popup-devider__text {
    font-size: 17px;
    margin-bottom: 0px;
    color: rgb(42 1 1);
}
.microloan-box__title {
    display: flex;
    background: #C39367;
    padding: 10px 20px;
    align-items: center;
    position: relative;
    justify-content: space-between;
    top: 0;
    left: 0;
    border-radius: 20px 20px 0px 20px;
    width: max-content;
    max-width: 100%;
    transition: 1s ease;
}
.microloan-box__title-name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
}
#event-form-login, #event-form-reset-password{
    display: none;
}
.mbrostov-calendar .ui-datepicker{
    width: 100%;
}
.mbrostov-calendar .ui-datepicker-next span,
.mbrostov-calendar .ui-datepicker-prev span {
    background-position: center;
    background-repeat: no-repeat;
    transform: none!important;
    display: block!important;
    height: 28px;
    position: absolute;
    width: 28px;
}
.ui-state-hover, .ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover, .ui-state-focus,
.ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus,
.ui-button:hover, .ui-button:focus {
    border: none!important;
    background: transparent!important;
    right: 0px!important;
    top: 0px!important;
}
.mbrostov-calendar .ui-datepicker-next span {
    background-image: url(./../../assets/images/icon/ArrowRight.svg)!important;

}
.mbrostov-calendar .ui-datepicker-prev span {
    background-image: url(./../../assets/images/icon/ArrowLeft.svg)!important;

}
.mbrostov-calendar .ui-widget.ui-widget-content{
    border: none;
}
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
    background-image: none!important;
}
.ui-widget-header .ui-icon{
    background-image: none!important;
}
.mbrostov-calendar .ui-widget.ui-widget-content {
    background: #f3eee8;
    border-radius: 4px;
    padding: 30px;
}
.ui-datepicker-prev span {
    transform: rotate(45deg);
}
.ui-datepicker-next span {
    transform: rotate(-135deg);
}
.mbrostov-calendar .ui-datepicker td {
    border: 0;
    padding: 1px;
}
.mbrostov-calendar .ui-datepicker-title {
    font-size: 20px;
    font-weight: 700;
    line-height: inherit!important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight{
    color: #562212!important;
}
.ui-state-default, .ui-widget-content
.ui-state-default, .ui-widget-header .ui-state-default,
.ui-button, html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active{
    border: none!important;
    text-align: center;
    font-size: 17px;
    color: #562212!important;
    background: transparent!important;
}
.ui-state-active, .ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active, a.ui-button:active,
.ui-button:active, .ui-button.ui-state-active:hover{
    color: #fff!important;
    z-index: 10;
}
a.ui-state-active {
    position: relative;
}
a.ui-state-active::after {
    content: "";
    left: 0;
    border-radius: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    z-index: -1;
    position: absolute;
    height: 35px;
    background: #E14D36!important;
    color: #fff!important;
}
.align-height-fix-microloans{
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background: #fff;
}
.align-height-fix-microloans a.readmore-microloan {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 15px;
}
.mbrostov-calendar thead tr {
    border-bottom: 1px solid #c5936861;
}
.mbrostov-calendar .ui-widget-header {
    border: none;
    background: none;
    color: rgb(42 1 1);
    line-height: initial;
    margin-bottom: 17px;
}
.rrapp-iframe-form-message {
    color: #A7A9AC;
    text-align: left;
}
.second-menu{
    padding: 0px 20px;
}
.second-menu li.menu-item{
    margin-bottom: 15px;
}
.second-menu li.menu-item a{
    color: #562212;
    font-weight: 600;
}
@media only screen and (max-width: 472px) {
    .home3 .box-slider .content-box .title {
        font-size: 28px;
    }
    .title-section .title{
        font-size: 24px;
    }
    .second__block-title{
        font-size: 17px;
    }
    .home3 .box-slider .content-box .desc {
        font-size: 16px;
        line-height: 24px;
    }
    .home3 .box-slider .content-box .title {
        margin-bottom: 20px;
    }
    .home3 .box-slider .content-box .desc {
        margin-bottom: 25px;
    }
    .home3.main .page-title.main-page-title {
        padding: 35px 0 28px;
    }
}
@media only screen and (max-width: 575px) {
    .home3 .box-slider .content-box .btn-slider .video .icon{
        width: 50px;
        height: 50px;
    }
    h2.heading-single , .franchise-content h2{
        font-size: 18px;
    }
    #top-bar{
        display: none;
    }
    #top-bar .topbar-inner .left {
        display: none;
    }
    .main.home3 .header .header-right{
        display: none;
    }
    .feature-box .box .icon .bg span {
        font-size: 34px;
    }
    .feature-box .box .icon .bg{
        width: 50px;
        height: 50px;
    }
    .side-menu__top.justify-content-end{
        height: 40px;
    }
    .feature-box .box .icon {
        min-width: 50px;
        min-height: 50px;
        width: 50px;
        height: 50px;
    }
    .feature-box .box .content p{
        font-size: 16px;
    }
    .feature-box .box .icon {
        margin-right: 10px;
    }
    .main.home3 .header .menu-bar-right{
        margin-right: 0px;
    }
    #header_main #site-header-inner{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .tf-button{
        height: 50px;
        line-height: 50px;
    }
}
@media only screen and (min-width: 473px) and (max-width: 575px) {
    .home3 .box-slider .content-box .title {
        font-size: 37px;
        margin-bottom: 20px;
    }
    .home3.main .page-title.main-page-title {
        padding: 45px 0 45px;
    }
    .title-section .title{
        font-size: 28px;
    }
    .home3 .box-slider .content-box .desc {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 26px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .home3.main .page-title.main-page-title {
        padding: 55px 0 65px;
    }
    .profile h3.name {
        font-size: 24px;
    }
    .tf-section.working-experience .content-box .experience-box .box .box-couter .number-content span{
        font-size: 38px;
    }
    h2.heading-single , .franchise-content h2{
        font-size: 22px;
    }
    .section-contact .content .desc{
        font-size: 17px;
    }
}

.feedback-text__short {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.show-all-btn {
    display: block;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
}
.stop-course {
    background: #E6DACC;
    padding: 10px 15px;
    display: block;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
    margin: 20px auto;
    color: #000;
    max-width: 200px;
}
.stop-course:hover {
    opacity: 0.8;
}
.get-certificate {
    background: #e14d36;
    padding: 10px 15px;
    display: block;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
    margin: 20px auto;
    color: #fff;
    max-width: 200px;
}
.get-certificate:hover{
    color: #fff;
    opacity: 0.8;
}
.complete-text {
    background: #8e6455;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin-right: 10px!important;
    padding: 5px 10px!important;
    border-radius: 6px;
}
.mobile-search .widget-form button{
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0px 4px 4px 0px;
    width: 50px;
    height: 50px;
    background: #E14D36;
    border: none;
    color: #fff;
}
.mobile-search input[type=text]{
    font-size: 14px;
    line-height: 24px;
    padding: 13px 15px 13px 30px;
    height: 50px;
    line-height: 50px;
}
.mobile-search .widget-form {
    position: relative;
}
@media only screen and (min-width: 1025px){
    /*
  .box-slider .image{
    position: absolute;
    right: 0px;
  }
   */
    .man-photo {
        width: 100%;
        max-width: 409px;
    }
    .home3.main .page-title.main-page-title {
        padding: 75px 0 135px;
    }
    .box-slider .image .img{
        bottom: 10px;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1165px) {
    .main.home3 .header #site-header-inner .tf-button {
        padding: 0 10px;
    }
    .main.home3 .header #main-nav {
        /*
        width: 80%;

         */
    }
    .microloan-post h4.title.measures-content__absolute {
        font-size: 18px;
    }
    .man-photo {
        width: 100%;
        max-width: 399px;
    }
    .main.home3 .header #main-nav .menu li a {
        font-size: 15px;
        padding-right: 5px;
    }
}


@media only screen and (min-width: 1025px) and (max-width: 1199px) {
    .microloan-box__title-name {
        font-size: 18px;
    }
}
@media only screen and (min-width: 1166px) and (max-width: 1199px) {
    .main.home3 .header #main-nav .menu li a{
        padding-right: 18px;
    }

}

.hov_opac:hover{
    opacity: 0.9;
}
.page-link:focus{
    z-index: 3;
    color: #E14D36;
    background-color: #f6f6f6;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(246 164 142 / 35%);
}
.btn_old{
    background: #8e6455 !important;
}
.btn_old::after{
    background: linear-gradient(90deg, #8e6455 0%, #a87767 100%) !important;
}
.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #E6DACC;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #E14D36;
    cursor: pointer;
}
.slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #E14D36;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    border-color: transparent;
}
span.color-value-calcul{
    color: #623B2A;
}
.color-value-calcul.check-date-value {
    color: #E14D36;
}
.new_date{
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
}
.section-calculator .time {
    color: #000;
    font-size: 18px;
}
.ui-datepicker-title {
    color: #623B2A;
}
article .social a{
    color: #ffffff;
    background: linear-gradient(90deg, #E14D36 0%, #E14D36 100%);
    font-size: 18px;
    position: relative;
}
.percent{
    font-weight: 700;
    color: #E14D36;
}
.schedule-table {
    border-collapse: collapse;
    width: 100%;
}
.schedule-table td, .schedule-table th {
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
}
.schedule-table th {
    color: #562212;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 22px;
    padding: 13px 10px;
    text-align: center;
}
.back-step {
    padding-left: 45px;
    position: relative;
}
.back-step span {
    color: #c39367;
    font-size: 20px;
    font-weight: 600;
}
.back-step:after {
    background-image: url("./../../assets/images/common/back-icon.svg");
    content: "";
    height: 12px;
    left: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
}
.go-to-calculation {
    position: relative;
}
.go-to-calculation span {
    color: #E14D36;
    font-size: 18px;
    font-weight: 600;
}
.go-to-calculation:after {
    background-image: url("./../../assets/images/common/go-to-calculation.svg");
    content: "";
    height: 12px;
    transform: scale(-1, 1);
    margin-left: 15px;
    position: absolute;
    top: 35%;
    width: 18px;
}
.step-card{
    padding: 30px 20px;
    border-radius: 4px;
    background: #f6f6f6;
}
.step-list{
    margin: 30px 0px;
}
li.padding-block::before {
    content: "—";
    padding-right: 10px;
    margin-right: 10px;
}
input[type=radio]:checked:after {
    background-color: #E14D36;
    border-radius: 15px;
}
input[type=radio]:after, input[type=radio]:checked:after {
    content: "";
    display: inline-block;
    height: 19px;
    left: -3px;
    position: relative;
    top: -3px;
    visibility: visible;
    width: 19px;
}
input[type=radio]:after {
    background-color: #fff;
    border: 2px solid #E14D36;
    border-radius: 15px;
}
.microcredit-section .file-form h4 {
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 15px;
}
span.step-number{
    background: #f17c5d;
    color: #fff;
    padding: 10px 15px;
    font-weight: 700;
    border-radius: 4px;
    margin-right: 15px;
}
.main.home3 .header__logo.style3{
    align-items: center;
    display: flex;
}
.header__logo img.logo-1{
    width: 90px;
}
.header__logo img.logo-3{
    width: 210px;
    max-width: 300px;
}
.header__logo img.logo-4{
    width: 128px;
    max-width: 140px;
}
.notice {
    position: fixed;
    z-index: 9999999999;
    bottom: 0;
    left: 0;
    right: 0;
    color: #FFF;
    background: #562212e8;
    padding: 5px;
}
.notice p {
    font-size: 15px;
    margin: 15px 0px;
    font-weight: 500;
}
a.link-notice{
    color: #c89a72;
}
a.link-notice:hover{
    color: #fff;
}
.notice_btn {
    text-decoration: none;
    position: absolute;
    font-size: 15px;
    color: #fff;
    float: right;
    right: 2%;
    top: 5px;
    font-weight: bold;
    text-transform: uppercase;
}
.notice_btn:hover{
    cursor: pointer;
    color: #c89a72;
}
.repayment-schedule__content{
    overflow-x: auto;
}
.flat-accordion .flat-toggle .toggle-title.active{
    margin-bottom: 0px;
}
.accord-measure-title{
    max-width: 93%!important;
}
.user-form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-image: url(./../../assets/images/icon/CaretDown.svg)!important;
    background-repeat: no-repeat!important;
    background-position: 96%!important;
    outline: 0;
}
.rrapp-logo{
    height: 70px;
}
.footer-logo-link:hover {
    opacity: .7;
}
ul.second-menu li a:hover{
    color: #E14D36;
}
.check-date-value{
    font-weight: 600;
}
.btn-check:focus + .btn, .btn:focus{
    box-shadow: none;
}
#past-event-date{
    background-color: #919191;
}
.image img{
    width: 100%;
}
#num{
    height: auto;
    margin-left: 5px;
    font-weight: 600;
    color: #E14D36;
    background: #f1efee;
    border-radius: 26px 26px 0px 26px;
}
.list__all-item {
    display: flex;
    flex-wrap: wrap;
}
.list__item-el {
    display: -ms-inline-grid;
    display: inline-grid;
}
a.date-franchise{
    color: #E14D36;
    font-weight: 600;
    margin-bottom: 10px;
}
.date-info{
    color: #E14D36;
    font-weight: 600;
}
a.date-franchise:hover{
    color: #E14D36!important;
}
.franchise-content p,
.franchise-content span{
    font-size: 16px!important;
}
h5.second-banner-title a:hover{
    color: #c59368!important;
}
.article-box::before{
    border-radius: 4px;
}
.article-box h5.second-banner-title.light-title a {
    color: #fff!important;
}
.article-box h5.second-banner-title.light-title a:hover {
    opacity: 0.8;
}
.article-box p.article-date {
    color: #f6f6f6!important;
}
.article-box  a.learnmore {
    font-size: 16px!important;
}
.article-height-img{
    border-radius: 4px;
    max-height: 340px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center
}
.widget.widget-category ul li a.scrollto {
    font-size: 16px;
}
.content-block{
    height: 100%;
    overflow: hidden;
    padding-bottom: 50px;
    position: relative;
}
a.download-step{
    bottom: 0;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
}
span.phone-number-btn::before{
    position: relative;
    left: 0px;
    top: 0px;
    content: "\e905";
    margin-right: 10px;
    font-weight: 500;
    font-size: 20px;
    vertical-align: bottom;
    color: #E14D36;
    font-family: "monal";
}
h5.testimonior-title{
    color: #E14D36;
    font-style: italic;
}
.form-check-input:focus{
    box-shadow: none;
}
.formname input[disabled]{
    opacity: .6;
    cursor: not-allowed;
}
span.prolonged-date{
    font-size: 16px;
    font-weight: 500;
}
ul#docs-list li a{
    font-size: 16px;
}
#footer.style2 .footer-bottom-developer{
    padding-bottom: 15px;
}
.step-success{
    background: #fff!important;
    border: 1px solid #c9ccd4;
    color: rgb(42 1 1)!important;
}
.contacts-menu-btn.active{
    border-radius: 4px;
    padding: 0px 34px;
    background: linear-gradient(90deg, #E14D36 0%, #E14D36 100%);
    position: relative;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    height: 60px;
    border: none!important;
    line-height: 60px;
}
.contacts-menu-btn.active span {
    font-size: 16px;
    line-height: 1.31875;
    color: #fff;
}
.contacts-menu-btn {
    border-radius: 4px!important;
    padding: 0px 34px;
    background: #fff;
    border: 1px solid #c9ccd4!important;
    position: relative;
    display: inline-block;
    color: rgb(42 1 1)!important;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
}
.contacts-menu-btn{
    margin-right: 20px;
}
.nav-link.contacts-menu-btn:hover,
.nav-link.contacts-menu-btn:focus{
    color: #E14D36 !important;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link{
    background-color: #E14D36!important;
}
.icon-box.microloan-box-slide p{
    border-bottom: none;
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.icon-box.microloan-box-slide{
    box-shadow: none;
    background: #f6f6f6;
    padding: 30px 25px;
}
.icon-box.microloan-box-slide .title{
    color: #E14D36 !important;
}
span.text-do-color{
    color: #494A4D;
    font-weight: 400;
}
.faq-title{
    color: rgb(42 1 1);
}
.text_beige {
    color: #c59368;
}
.description-items {
    align-items: flex-start;
    display: flex;
}
.description-items>p {
    margin-left: 20px;
}
.microloan-info{
    padding: 30px 25px;
}
.toggle-title.post.dop-user-info.microloan-info.active{
    margin-bottom: 10px;
}

.contact-flex .icon-box{
    padding: 30px 25px;
}
.microloan-info span.show-all-li:after{
    content: "\f322"!important;
}
.microloan-info.active span.show-all-li:after{
    content: "\f325"!important;
}
.span-work-hours{
    margin-left: 5px;
}
@media screen and (min-width: 354px){
    br.br-work-hours{
        display: none;
    }
    .span-work-hours{
        margin-left: 0px;
    }
}
.section-calculator .user-form select{
    background-color: #F1EFEE!important;
    border: 1px solid transparent;
    border-radius: 20px 20px 0px 20px;
}
h6.toggle-title.faq-main::after {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    right: 15px;
    font-size: 25px;
    content: "\f322"!important;
    font-family: "Font Awesome 5 Pro";
    font-weight: 100;
    color: #E14D36;
}
.tf-faq-main .flat-toggle.active h6.toggle-title.faq-main::after {
    content: "\f325"!important;
}
.tf-faq-main .flat-accordion .flat-toggle .toggle-title{
    padding: 15px 20px;
    height: auto;
    color: #562212;
}
.tf-faq-main .flat-accordion .flat-toggle .toggle-title.active {
    color: #E14D36;
    border-radius: 5px 5px 0px 0px;
    background: #f6f6f6;
}
.tf-faq-main .flat-accordion .flat-toggle .toggle-content{
    padding: 15px 20px;
    background: #fff;
    font-weight: normal;
    margin-top: 0px;
    box-shadow: 0 10px 70px 0 rgba(0, 0, 0, 0.07);
}
.toggle-title.post.dop-user-info.microloan-info{
    height: auto!important;
}
a.faq-link:hover{
    color: #E14D36;
}
.date-calendar__img {
    width: 24px!important;
}
.actual-elements .plus {
    position: absolute;
    top: 11px;
    right: 13px;
}
.actual-content {
}
.project-box.actual {
    transition: 0.5s ease;
}
.project-box.actual:hover {
    -webkit-clip-path: url(#theClippingPathActual);
    clip-path: url(#theClippingPathActual);
    cursor: pointer;
}
.project-box.actual:hover .text-content h4.title-actual {
    color: #2A0101;
    opacity: 0.8;
}
.project-box.actual:hover .actual-content .link-content a {
    opacity: 0.8;
}
.color-rect {
    fill: #E6DACC;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
path, rect {
    pointer-events: all;
}
.project-box.actual:hover rect {
    fill: #623B2A;
    pointer-events: all;
}
svg.for-clip-path {
    position: absolute;
    width: 0;
    height: 0;
}

.pt-70 {
    padding-top: 70px!important;
}

.microloan__img {
    margin-right: 15px;
}

.readmore-microloan__arrow {
    border: 1px solid #623B2A;
    transition: 1s ease;
    padding: 3px 22px 6px 22px;
    border-radius: 26px;
}
.align-height-fix-microloans .rate-item__content .rate-detail__title {
    font-weight: 700;
    color: #231F20;
    font-size: 17px;
}
.align-height-fix-microloans .rate-item__content .rate-detail__value {
    color: #623B2A;
    font-weight: 400;
    font-size: 17px;
}
.align-height-fix-microloans:hover .readmore-microloan__arrow {
    background: #623B2A;
}
.align-height-fix-microloans:hover .readmore-microloan__arrow svg path {
    stroke: #fff;
}
.readmore-microloan {
    color: #E14D36;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}
.overlay-news {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 44%, rgba(0,0,0,0.39539565826330536) 88%);
    z-index: 0;
    clip-path: url(#theClippingPathNews);
}
.overlay-course {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.39539565826330536) 44%, rgba(0,0,0,0.39539565826330536) 88%);
    z-index: 0;
    clip-path: url(#theClippingPathCourse);
}
.overlay-background{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.overlay-microloan-background{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: url(#theClippingPathMicroloans);
}
.on-hover-show {
    opacity: 0;
}
.events-post-main:hover .overlay-events {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(137deg, rgba(241,119,88,1) 0%, rgba(207,84,60,1) 100%);
    z-index: 0;
    clip-path: url(#theClippingPathEvents);
}
.events-post-main:hover .overlay-events {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: url(#theClippingPathEvents);
}
.overlay-events {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: url(#theClippingPathEvents);
}
.events-post__info .title a:hover {
    color: #fff;
    opacity: 0.8;
}
.events-post-main:hover .on-hover-show {
    opacity: 1;
}
.course-post:hover .on-hover-show {
    opacity: 1;
}
.course-post:hover .course-post__completed {
    color: #562212;
    background: #ffffff;
}
.course-post:hover .overlay-course {
    background: linear-gradient(137deg, rgba(241,119,88,1) 0%, rgba(207,84,60,1) 100%);
}
.course-post__info a:hover {
    color: #fff;
    opacity: 0.8;
}
.course-post__info a.readmore {
    color: #fff;
}
.events-post-main:hover .events-post__date {
    border: 1px solid #fff;
    background: #fff;
}
.events-post-main:hover .events-post__topic {
    color: #ffffff;
    border: 1px solid #ffffff;
}
.events-post-main:hover .events-post_address__info {
    color: #fff;
}
.events-post__division-name a:hover {
    color: #fff;
    opacity: 0.8;
}
.events-post-main:hover .events-post__info .title {
    color: #fff;
}
.events_past-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000021;
    z-index: 0;
    clip-path: url(#theClippingPathEvents);

}
.events-post__date {
    position: absolute;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
    border-radius: 0;
    color: #2A0101;
    font-size: 15px;
    padding: 8px 15px;
    background: #E6DACC;
    border-radius: 26px;
    border: 1px solid #E6DACC;
}
.short-desc {
    overflow: hidden!important;
    display: -webkit-box!important;
    -webkit-line-clamp: 4!important;
    -webkit-box-orient: vertical!important;

}
.short-desc * {
    font-style: normal!important;
    font-family: 'Jost'!important;
    font-size: 17px!important;
    margin-bottom: 0px!important;
    all: initial;
    background-color: transparent!important;
}
.short-desc hr,
.short-desc img
.short-desc button {
    display: none;
}
.align-height-fix-news {
    height: 100%;
    padding: 15px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background: #fff;
}

.align-height-fix-news a.readmore_link {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.course-post__lesson {
    position: absolute;
    top: 18%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 30px;
    border-radius: 0;
    font-size: 16px;
    color: #fff;
    padding: 5px 20px;
    background: transparent;
    border-radius: 26px;
    border: 1px solid #fff;
}
.events-post-main.index-post .events-post__date {
    color: #2A0101;
    background: transparent;
    border: 1px solid #2A0101;
}
.events-post-main.index-post:hover  .events-post__date {
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
}
.events-post-main:hover svg.icon-events path {
    stroke: #fff;
}
.events-post__date.events_past-date {
    background: transparent;
    color: #2A0101;
    padding: 8px 20px;
    border-radius: 26px;
    border: 1px solid #2A0101;
}
.events-post__date .date-calendar__img {
    margin-right: 10px;
}
.events-post__info {
    position: absolute;
    left: 0px;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0px 30px;
}
.course-post__info {
    position: absolute;
    left: 0px;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0px 30px;
}
.course-post__info .title {
    color: #fff;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.course-post__info .title a{
    display: block;
}
.events-post__info .title {
    color: #2A0101;
}
.events-post__link {
    position: absolute;
    left: 0px;
    bottom: 15px;
    margin: 0px 30px;
}
.events-post__link a {
    color: #E14D36;
    font-size: 18px;
}
.course-post__content .events-post__link a {
    color: #fff;
}
.events-post__division-name {
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    display: block;
    margin-bottom: 15px;
    color: white;
    font-weight: 300;
}
a.header__tf-button:hover {
    color: #fff;
    opacity: 0.8;
}
.tf-button:hover {
    opacity: 0.8;
}
.overlay-slider-main {
    position: absolute;
    right: -0.5px;
    bottom: -0.5px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(255 255 255 / 67%) 1%, rgba(255,255,255,0) 37%);
    z-index: 0;
    clip-path: url(#theClippingPath);
}
.project-box.actual:hover .overlay-slider-actual {
    clip-path: url(#theClippingPathActual);
}
.overlay-slider-actual {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(255 255 255 / 40%) 50%, rgb(255 255 255 / 0%) 100%);
    z-index: 0;
}
.main-slider-arrow {
    position: relative;
    bottom: -25px;
}
.on-hover-d-block , .on-hover-d-inline-block{
    display: none;
}
.events-post-main:hover .on-hover-d-block  {
    display: block;
}
.events-post-main:hover .on-hover-d-inline-block  {
    display: inline-block;
}
.events-post-main:hover .on-hover-d-none  {
    display: none;
}
.events-post-main:hover .events-post__link a {
    color: #fff;
}
.content-latest h4.title {
    color: #2A0101;
}
.content-latest {
    margin-top: 15px;
}
.content-link__absolute:hover {
    opacity: 0.8;
}
.content-link__absolute:hover a {
    color: #fff!important;
}
.date-info-news {
    display: flex;
    align-items: center;
    color: #000;
}
a.readmore_link {
    color: #623B2A;
    display: block;
    text-align: right;
}
 #main-nav .sub-menu-children::-webkit-scrollbar,
 .offcanvas-filter-events ::-webkit-scrollbar{
     width: 5px;
 }

#main-nav .sub-menu-children::-webkit-scrollbar-track,
.offcanvas-filter-events ::-webkit-scrollbar-track {
    background: transparent;
}

#main-nav .sub-menu-children::-webkit-scrollbar-thumb,
.offcanvas-filter-events ::-webkit-scrollbar-thumb {
    background-color: #E6DACC;
    border-radius: 5px;
}
#main-nav .sub-menu::-webkit-scrollbar,
.offcanvas-filter-events ::-webkit-scrollbar{
    width: 5px;
}

#main-nav .sub-menu::-webkit-scrollbar-track,
.offcanvas-filter-events ::-webkit-scrollbar-track {
    background: transparent;
}

#main-nav .sub-menu::-webkit-scrollbar-thumb,
.offcanvas-filter-events ::-webkit-scrollbar-thumb {
    background-color: #E6DACC;
    border-radius: 5px;
}
.offcanvas-filter-events {
    z-index: 11111111111;
}
.readmore__img {
    width: 28px!important;
}
.events-post__topic {
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 16px;
    background: transparent;
    color: #623B2A;
    padding: 8px 20px;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid #623B2A;
}
.course-post__topic {
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 16px;
    background: transparent;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px 20px 0px 20px;
    border: 1px solid #fff;
}
.events-post__dop-info {
    border-bottom: 1px solid #623B2A;
    padding-bottom: 10px;
    display: block;
    margin-bottom: 15px;
    color: #623B2A;
    font-weight: 300;
}
.address__img {
    width: 18px!important;
}
.events-post_address__info {
    font-size: 16px;
    color: #000;
    align-items: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.color-link_more {
    color: #E14D36;
    font-size: 18px;
}
.color-link__nav.active {
    color: #E14D36!important;
}
.color-link__nav:hover {
    color: #E14D36;
}
.color-link__nav {
    color: rgb(42 1 1);
}
.color-link {
    color: #E14D36;
}
.microloan-post {
    position: relative;
}
.microloan-post .measures-content__absolute {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.microloan-post .measures-content__absolute a {
    display: block;
}
.measures-content__absolute {
    position: absolute;
    display: block;
    top: 50%;
    transform: translate(0, -50%);
}
.cookie_notice {
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
}
.cookie_notice .color-text-light {
    color: #c39367;
}
.list-tags input{
    visibility: hidden;
}
.list-tags li label:hover {
    background: #E14D36;
    color: #fff;
}
.list-tags li label.active {
    background: #E14D36;
    color: #fff;
}
.list-tags li label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 34px;
    padding: 0 20px;
    border-radius: 4px;
    background: #F6F6F6;
    font-size: 14px;
    line-height: 26px;
    margin-right: 12px;
    margin-bottom: 10px;
    color: rgb(42 1 1);
}
input.all-search {
    background: #fff;
    border: 1px solid rgb(142 100 85);
}
i.head-search {
    font-size: 24px;
    vertical-align: text-top;
}
.news-line-pagination {
    position: relative;
}
.news-line-pagination .swiper-pagination-bullet {
    width: 35px;
    height: 2px;
    display: inline-block;
    background: rgb(98 59 42 / 20%);
    opacity: 1;
    border-radius: 0px;
}
.news-line-pagination .swiper-pagination-bullet-active {
    background: #E14D36;
}
.news-line-pagination:hover {
    cursor: pointer;
}
.nav-pag .prev-project ,
.nav-pag .next-project {
    margin-top: 3px;
}
.more-about-microloan__btn {
    background: transparent;
    color: #e14d36;
    border: 2px solid #e14d36;
    width: 100%;
    padding: 7px 0px;
    border-radius: 6px;
}
.header-social-link__img {
    max-width: 42px;
    min-height: 24px;
}
.absolute-content {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: transparent!important;
}
.absolute-content a.readmore {
    position: absolute;
    bottom: 20px;
}
path, rect {
    pointer-events: all;
}
.active-room {
    fill-opacity: 1;
}
.active-room:hover {
    fill: #fff;
    cursor: pointer;
    fill-opacity: 1;
}
.date-relative {
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.auth-btn-color {
    background: #8e6455;
}
.show-menu {
    height: auto!important;
    overflow: visible!important;
    opacity: 1!important;
    margin-top: 15px;
    padding-left: 15px;
}

.menu-item-has-children.sub-cosevenadven_active a.parent-link {
    color: #E14D36;
}
.menu-second-children.sub-cosevenadven_active a.parent-link {
    color: #E14D36;
}
.menu-item-has-children.cosevenadven_active a.parent-link {
    color: #E14D36;
}
.menu-second-children.cosevenadven_active a.parent-link {
    color: #E14D36;
}
.sub-mobile-li{
    margin-bottom: 15px;
}
.sub-mobile-li a{
    color: #562212;
    font-weight: 400;
}

.mobile-li {
    margin-bottom: 15px;
}
.mobile-li a {
    color: #562212;
    font-weight: 400;
}
.sub-mobile-li .menu-second-children {
    position: relative;
}
.mobile-li.menu-item-has-children {
    position: relative;
}
.absolute-microloan__link {
    position: absolute;
    bottom: 20px;
}
.microloan-post .content {
    padding: 0px 20px;
}
.sub-mobile-li.menu-second-children::before{
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    color: #562212;
    position: absolute;
    right: 0px;
    font-size: 18px;
}
.mobile-li.menu-item-has-children::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    color: #562212;
    position: absolute;
    right: 0px;
    font-size: 18px;
}
.menu-second-children.sub-cosevenadven_active::before {
    color: #E14D36;
}
.menu-item-has-children.cosevenadven_active::before {
    color: #E14D36;
}
.mobile-li.menu-second-children::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    color: #562212;
    position: absolute;
    right: 0px;
    font-size: 18px;
}
.menu-item-has-children.cosevenadven_active::before {
    color: #E14D36;
}
.menu-second-children.sub-cosevenadven_active::before {
    color: #E14D36;
}
.reviews-bg-text {
    font-size: 18px;
    font-weight: 500;
    color: rgb(42 1 1);
    text-align: center;
    background: #E6DACC;
    padding: 20px 10px;
    border-radius: 6px;
}
.events-post-main h4.title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.events-post-main h4.title a {
    display: block;
}
.hotline__br {
    display: none;
}
#footer .widget.widget-infomation .infomation li:last-child {
    margin-bottom: 0px;
}
.tf-button--back {
    background: #E6DACC;
    color: #000;
    padding: 15px 45px;
    border: none;
    border-radius: 6px;
}

.tf-button--back:hover {
    opacity: 0.8;
    color: #000;
}
.tf-button--start {
    background: #E14D36;
    color: #fff;
    padding: 15px 45px;
    border: none;
    border-radius: 6px;
}
.course-post__completed {
    position: absolute;
    top: 0px;
    color: #fff;
    background: #8e6455;
    font-weight: 400;
    left: 0px;
    right: auto;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 26px 26px 0px 26px;
}
.tf-button--start:hover {
    opacity: 0.8;
    color: #fff;
}
@media only screen and (max-width: 408px) {
    #num {
        margin-top: 15px;
        margin-left: 0px;
    }
}
@media only screen and (min-width: 409px) {
    .summ-block {
        display: flex;
        align-items: center;
    }
}
@media only screen and (max-width: 1199px) {
    .o-proekte-row{
        flex-direction: column-reverse;
    }

    .reviews-block {
        padding: 0px 53px;
    }
    .img-o-proekte{
        text-align: center;
    }
    .img-o-proekte img{
        width: 100%;
        max-width: 575px;
    }
    .header__tf-button {
        padding: 15px 5px;
    }
    .header-right__img {
        margin-right: 5px;
    }
    .readmore-microloan__arrow {
        padding: 1px 18px 2px 18px;
    }

}
@media only screen and (min-width: 1200px) and (max-width: 1261px) {
    #top-bar .topbar-inner .left ul li:nth-child(1) {
        padding-right: 0px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1273.5px) {
    .main.home3 .header #main-nav .menu li a {
        padding-right: 22px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .events-post__info {
        top: 60%;
        transform: translate(0, -60%);
    }
}
@media only screen and (min-width: 1200px) {
    h2.heading-single , .franchise-content h2{
        font-size: 30px;
    }
    .microloans-title{
        height: 60px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .date-relative {
        display: none!important;
    }
}
@media only screen and (min-width: 768px) and (max-width: 885px) {
    .feature-box.main-box{
        text-align: center;
    }
    .feature-box.main-box .box .icon{
        margin: auto;
    }
    .feature-box.main-box .box .content p{
        font-size: 15px;
    }
    .feature-box.main-box .box {
        padding: 20px 6px 20px 6px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feature-box .box{
        display: block;
    }
    .events-post-main h4.title {
        -webkit-line-clamp: 2;
        font-size: 20px;
    }
    .reviews-block {
        padding: 0% 22%;
    }
    .profile h3.name {
        font-size: 26px;
    }
    .tf-section.working-experience .content-box .experience-box .box{
        padding-left: 30px
    }
    .tf-section.working-experience .content-box .experience-box .box:nth-child(1){
        padding-left: 20px;
    }
    .section-contact .content .desc{
        font-size: 18px;
    }
    h2.heading-single , .franchise-content h2{
        font-size: 24px;
    }
    .home3.main .page-title.main-page-title {
        padding: 60px 0 120px;
    }
    .content-box p.desc{
        max-width: 600px;
    }
}
@media only screen and (min-width: 768px) {
    .feature-box.main-box .box{
        width: 33.333%;
    }
    .project-box.actual .link-content a {
        font-size: 18px;
    }
    .archive-search-fix-mobile {
        align-items: center;
    }
    .blog-post .content ul li.li-address-event a{
        height: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    h6.title-step{
        font-size: 18px;
    }
    .fix-height-img{
        height: 210px;
        object-fit: cover;
        object-position: 50% 41%;
    }
    .department-title {
        height: 52px!important;
        -webkit-line-clamp: 2!important;
    }
    .blog-post .content .title, .post .content .title {
        margin-bottom: 15px;
        font-size: 18px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}
@media only screen and (max-width: 991px) {
    .swiper-container.slider-main .swiper-pagination {
        left: 50%;
        bottom: -17px;
        transform: translate(-50%, 0);
    }
    .color-link_more {
        font-size: 16px;
    }
    .readmore-microloan {
        font-size: 16px;
    }
    .events-post__link a {
        font-size: 16px;
    }
    .microloan-box {
        padding: 15px;
    }
    .align-height-fix-microloans a.readmore-microloan {
        left: 15px;
        right: 15px;
    }
    .events-post__link {
        margin: 0px 15px;
    }
    .events-post__info {
        margin: 0px 15px;
    }
    #calculation {
        margin: 0 auto;
        display: block;
    }
    .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
        margin-top: -15px;
    }
    .microloan-box__title-name {
        font-size: 18px;
    }
    .microloan-box .rate-item__content .rate-detail__title {
        font-size: 16px;
    }
    .microloan-box .rate-item__content .rate-detail__value {
        font-size: 15px;
    }
    .microloan-box__title {
        padding: 7px 17px;
    }
    .slider-main {
        margin-top: 60px;
    }
}
@media (max-width: 767px) {
    .slider-main-img__text {
        bottom: 15px;
        left: 15px;
        max-width: 70%;
        font-size: 18px;
    }
    .reviews-block {
        padding: 0px 30px;
    }
    .produkti > .row > .microloan:first-child .microloan__img:before,
    .produkti > .row > .microloan:nth-child(2) .microloan__img:before,
    .produkti > .row > .microloan:nth-child(3) .microloan__img:before {
        height: 28px;
        width: 28px;
    }
    .tf-button--back {
        padding: 10px 25px;
    }
    .tf-button--start {
        padding: 10px 25px;
    }
    .microloan-post h4.title.measures-content__absolute {
        font-size: 17px;
    }
    .course-post__info h4.title {
        font-size: 17px;
    }
    .title-comment {
        font-size: 22px;
    }
    .content-latest .title {
        font-size: 16px;
    }
    .comment-author {
        font-size: 17px;
    }

    .mbrostov-calendar .ui-widget.ui-widget-content {
        padding: 30px 15px;
    }
    .mbrostov-calendar .ui-datepicker-next span, .mbrostov-calendar .ui-datepicker-prev span {
        height: 22px;
        width: 22px;
        background-size: cover;
    }

}
@media (max-width: 575px) {
    a.ui-state-active::after {
        width: 30px;
        height: 30px;
    }
    .events-post-main h4.title {
        -webkit-line-clamp: 2;
    }
   .events-post__date .d-block {
       line-height: 22px;
   }
    .events-post_address__info {
        font-size: 15px;
    }
    .events-post__date {
        padding: 3px 10px;
    }
    .events-post__info {
        top: 60%;
        transform: translate(0, -60%);
    }
    .course_title_single {
        font-size: 18px;
    }
    .events-post-main h4.title {
        font-size: 17px;
    }
    .mbrostov-calendar .ui-datepicker-title {
        font-size: 16px;
    }
    .content-link__absolute {
        bottom: 15px;
        right: 15px;
    }
    .reviews-bg-text {
        font-size: 16px;
    }
    .microloan-post h4 .title {
        font-size: 16px;
    }
    .feedback-info {
        flex-direction: column-reverse;
    }
    .data_color_reviews {
        max-width: 170px;
    }
    .date-latest {
        display: none;
    }
    .main-block-content-link__absolute {
        bottom: 15%;
        right: 15px;
    }
    .content-latest .title {
        font-size: 18px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 991px){
    .date-relative {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .content-latest .title {
        font-size: 18px;
    }
    .microloan-post h4 .title {
        font-size: 18px;
    }
    .course_title_single {
        font-size: 22px;
    }
}
@media only screen and (min-width: 472px) and (max-width: 767px) {
    .mob-br {
        display: none;
    }
}
@media only screen and (max-width: 614px) {
    #footer.style2 .widget.widget-logo, #footer.style2 .widget.widget-infomation, #footer.style2 .widget.widget-recent-posts, #footer.style2 .widget.widget-service {
        width: 100%!important;
    }
}
.completed-color {
    background: #E14D36;
}
.bg-brown {
    background-color: #8e6455;
}
@media only screen and (min-width: 992px) and (max-width: 1020px) {
    .widget.widget-logo,
    .widget.widget-service {
        padding-right: 0px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .home3 .box-slider .content-box .title {
        font-size: 45px;
    }
    .align-height-fix-microloans a.readmore-microloan {
        left: 18px;
        right: 18px;
    }
    .microloan-box .rate-item__content .rate-detail__value {
        font-size: 16px;
    }
    .microloan-box .rate-item__content .rate-detail__title {
        font-size: 16px;
    }
    .microloan-box__title {
        padding: 10px 13px;
    }
    .microloan-box {
        padding: 18px;
    }
    .date-latest {
        display: none;
    }
    h2.heading-single, .franchise-content h2{
        font-size: 26px;
    }
    .logo-1{
        width: 92px;
    }
    br.value-date-br{
        display: block!important;
    }
    .feature-box .box{
        padding: 30px 10px 30px 10px;
    }
    .feature-box .box .icon {
        margin-right: 10px;
        min-width: 70px;
        min-height: 70px;
        width: 70px;
        height: 70px;
    }
    .feature-box .box .content p{
        font-size: 15px;
    }
    .reviews-block {
        padding: 0% 18%;
    }

}
@media only screen and (min-width: 992px) {
    .percent{
        line-height: 60px;
    }
    .footer__logo.style2 img{
        width: 90%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1053px) {
    .widget-link li a{
        font-size: 15px;
    }
    #footer.style2 .footer-main .widget-logo .desc{
        font-size: 15px;
    }
}
@media only screen and (min-width: 991px) and (max-width: 1024px) {
    .main.home3 .header #site-header-inner .tf-button {
        padding: 0 10px;
    }
    .main.home3 .header #main-nav {
        /*
        width: 79%;

         */
    }
    .microloan-box__title-name {
        font-size: 16px;
    }
    .microloan-post h4.title.measures-content__absolute {
        font-size: 18px;
    }
    .course-post__info h4.title {
        font-size: 18px;
    }
    .main.home3 .header #main-nav .menu li a {
        font-size: 15px;
        padding-right: 5px;
    }
    .home3.main .page-title.main-page-title {
        padding: 55px 0 90px;
    }
    .man-photo{
        max-width: 360px;
        width: 100%;
        position: relative;
        bottom: 0px;
    }
}
a {
    transition: all 0.5s ease;
}
a.all-div-link {
    display: block;
}
.docs-btn {
    color: rgb(42 1 1)!important;
}
.elma-script {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.elma-script body {
    width: 100%;
}
.elma-script .form-wrapper {
    max-width: 520px;
    margin: 0 auto;
    font-family: 'Jost', sans-serif;
}
.elma-script .form-wrapper button[type=submit] {
    background: #E14D36;
    color: #fff;
}
/*# sourceMappingURL=app.css.map */
/*li>ul {*/
/*    display: none;*/
/*}*/

/*li>ul.--active {*/
/*    display: block;*/
/*    height: auto!important;*/
/*    overflow: visible!important;*/
/*    opacity: 1!important;*/
/*    padding-left: 15px;*/
/*}*/
/*.cursor-p{*/
/*    cursor: pointer;*/
/*}*/
/*.menu-first__link.clickable{*/
/*    position: relative;*/
/*}*/

/*.menu-first__link.clickable::before {*/
/*    font-family: "Font Awesome 5 Pro";*/
/*    content: "\f107";*/
/*    color: #562212;*/
/*    position: absolute;*/
/*    right: 55px;*/
/*    font-size: 18px;*/
/*    top: 15px;*/

/*}*/
/*.menu-second__link.clickable{*/
/*    position: relative;*/
/*}*/
/*.menu-second__link.clickable::before{*/
/*    font-family: "Font Awesome 5 Pro";*/
/*    content: "\f107";*/
/*    color: #562212;*/
/*    position: absolute;*/
/*    right: 55px;*/
/*    font-size: 18px;*/
/*    top: 15px;*/
/*}*/
/*.menu-second-p{*/
/*    padding: 10px 20px!important;*/
/*}*/
/*.ml-20{*/
/*    margin-left: 20px!important;*/
/*}*/

