

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

/***

====================================================================
3.	Global Settings
====================================================================

 ***/


:root {
  --thm-font: 'Arimo', sans-serif;
  --thm-b-font: 'Arimo', sans-serif;
  --thm-base: #19672e;
  --thm-base-rgb: 25, 103, 46;
  --thm-black: #000000;
  --thm-text: #222222;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0px;
}

body {
  font-size: 16px;
  font-family: var(--thm-b-font);
  color: var(--thm-text);
  line-height: 2.125em;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  top: 0 !important;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--thm-base);
}

.theme_color {
  color: var(--thm-base);
}

a:hover,
a:focus,
a:visited,
a:active,
button:active {
  text-decoration: none;
  outline: none;
}
a:hover, a:focus {
  color: var(--thm-base);
  text-decoration: underline;
}
.font-color-and-bold {
  color: var(--thm-base);
  font-weight: 600;
}
a:focus, button:active {
  /*color: #ffffff;*/
}
h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: 400;
  margin: 0px 0px 20px;
  background: none;
  line-height: 1.25em;
  font-family: var(--thm-font);
  color: #222222;
}

h1 {
  font-size: 80px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 22px;
}

input,
select,
button {
  font-family: var(--thm-font);
}

textarea {
  overflow: hidden;
  resize: none;
}

button {
  outline: none !important;
  cursor: pointer;
}

p {
  line-height: 2.125em;
  margin: 0 0 20px;
}

.text {
  line-height: 2.125em;
  margin: 0 0;
}
.news-block .text {
  line-height: 1.5;
  color: #000;
  text-align: left;
}
::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  z-index: 9;
  overflow: visible!important;
}


.page-wrapper__gradient {
  background: rgb(67, 47, 246);
  background: linear-gradient(100deg, #432ff6 0%, #f174e3 100%);
}

body.boxed-wrapper {
  background-color: #f4f5f8;
}

.page-wrapper.boxed-wrapper {
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.page-wrapper__dark.boxed-wrapper {
  background-color: #1c1e22;
}

@media (max-width: 1440px) {
  .page-wrapper.boxed-wrapper {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-wrapper.boxed-wrapper {
    max-width: 95%;
  }
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

figure {
  margin-bottom: 0;
}

.theme-btn {
  display: inline-block;
  transition: all 0.3s ease;
}

.theme-btn i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  margin-left: 3px;
}

.centered {
  text-align: center !important;
}

/*Btn Style One*/

.btn-style-one {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--thm-base);
  color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  font-family: var(--thm-font);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn-style-one .btn-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: .1em;
  padding: 10px 30px;
  z-index: 1;
}

.btn-style-one:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.btn-style-one .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: #5db462;
  opacity: 0.2;
  z-index: 0;
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-one:hover .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  transform: skewX(0deg);
}

/*Btn Style Two*/

.btn-style-two {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--thm-black);
  color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  font-family: var(--thm-font);
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn-style-two .btn-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  padding: 15px 30px;
  z-index: 1;
  letter-spacing: .1em;
  transition: 0.5s;
}

.btn-style-two:hover {
  color: var(--thm-black);
}

.btn-style-two .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: #ffffff;
  opacity: 0.2;
  z-index: 0;
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-two:hover .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  transform: skewX(0deg);
}

.btn-style-three {
  background-color: var(--thm-base);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 22.5px 40px;
  font-family: var(--thm-font);
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.btn-style-three:hover {
  background-color: var(--thm-black);
  color: #fff;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 1);
  background-color: #1c1e22;
}

.preloader__gradient {
  background: rgb(67, 47, 246);
  background: linear-gradient(100deg, rgba(67, 47, 246, 1) 0%, rgba(241, 116, 227, 1) 100%);
}


img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.dropdown-toggle::after {
  display: none;
}

.fa {
  line-height: inherit;
}

/***

====================================================================
4.	Scroll To Top style
====================================================================

***/

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  color: #ffffff;
  font-size: 14px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  background: var(--thm-base);
  display: none;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  background: var(--thm-black);
  color: #ffffff;
}

/***

====================================================================
5.	Main Header style / Header Style One
====================================================================

***/

.main-header {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  z-index: 9999;
  background: none;
}

/*=== Header Main Box ===*/

.main-header .header-upper {
  /*position: fixed;*/
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: all 300ms ease;
  /*margin-top: 44px;*/
}

.boxed-wrapper .main-header .header-upper {
  max-width: 1410px;
  left: 50%;
  transform: translateX(-50%);
}

.fixed-header .header-upper {
  background: #ffffff;
  -ms-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
  margin-top: 0;
}

.header-style-two.fixed-header .header-upper {
  background: var(--thm-black);
  -ms-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.08);
}

.main-header .header-upper .inner-container {
  position: relative;
  display: block;
  padding: 0px 60px;
  /* display: flex;
   display: -ms-flex;
   display: -o-flex;
   display: -moz-flex;
   display: -webkit-flex;
   justify-content: space-between;
   -webkit-justify-content: space-between;*/

}

.main-header .header-upper .logo-box {
  position: relative;
  float: left;
  padding: 11px 0;
  margin-right: 30px;
  z-index: 7;
  min-width: 190px;
}

.main-header .header-upper .logo-box .logo {
  position: relative;
  display: block;
}

.main-header .header-upper .logo-box .logo img {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: 70px;
  z-index: 1;
}

.main-header .other-links {
  position: relative;
  float: right;
  z-index: 7;
}

.main-header .other-links .link-box {
  position: relative;
  float: left;
  padding: 20px 0 20px 20px;
}

.main-header .other-links .link-box .link {
  position: relative;
  display: block;
  padding-top: 4px;
  /*text-transform: uppercase;*/
  /*letter-spacing: 0.05em;*/
  padding-left: 10px;
  color: #fff;
}

.header-style-two.fixed-header .other-links .link-box .link {
  color: #ffffff;
}



.main-header .other-links .link-box .sub-text {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  font-family: var(--thm-font);
  letter-spacing: .03em;
}

.main-header .other-links .link-box .number {
  position: relative;
  display: block;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--thm-font);
}

.main-header .other-links .link-box .number:hover {
  text-decoration: underline;
}

.main-header .other-links .call-us {
  position: relative;
}
.main-header .other-links .languages-block {
  padding-right: 20px;
}
.main-header .other-links .search-btn {
  position: relative;
  float: left;
  padding: 30px 0px;
  padding-right: 20px;
  margin-right: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .other-links .search-btn button {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  background: none;
  line-height: 32px;
  color: #ffffff;
  cursor: pointer;
}

.main-header .other-links .search-btn button span {
  vertical-align: middle;
}

.main-header .nav-outer {
  position: absolute;
  left: 0;
  top: 0;
  float: left;
  text-align: center;
  width: 100%;
  z-index: 5;
}

.main-header .nav-outer .main-menu {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.main-header .other-links .languages-block {
  position: relative;
}
.main-header .other-links {
  display: flex;
  align-items: center;
  height: 86px;
}
@media(min-width: 992px) {
  .boxed-wrapper .main-header .nav-outer .main-menu {
    margin-right: 70px;
  }
}
.main-header .other-links .languages-block {
  position: relative;
}
.main-header .other-links .languages-block {
  padding-right: 20px;
}
.languages-block-other {
  display: none;
  transition: all 1s linear;
}
.language-toggle {
  color: #ffffff;
}
.languages-block-other.active {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  position: absolute;
  flex-direction: column;
  background: rgba(255,255,255, .8);
  padding: 10px 15px;
  left: -13px;
  border-radius: 6px;
  transition: all 1s linear;
  bottom: -117px;
}
.main-header .other-links .languages-block-other.active a {
  color: #000000;
}
.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  margin: 0px;
  font-family: var(--thm-font);
}

.main-menu .navigation>li {
  position: relative;
  float: left;
  padding: 21px 0px;
  margin-right: 20px;
  transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
  margin-right: 0px;
}

.main-menu .navigation>li:last-child:after {
  display: none;
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 16.5px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #ffffff;
  opacity: 1;
  padding: 10px 0;
  transition: all 300ms ease;
}

/*.main-menu .navigation li>a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}*/

.main-menu .navigation li>a>span {
  background-color: var(--thm-base);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 40px;
  top: -3px;
  position: relative;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
  color: #ffffff;
}

.header-style-two .main-menu .navigation>li>a,
.header-style-two .main-menu .navigation>li:hover>a {
  color: var(--thm-black);
}

.header-style-two .main-menu .navigation>li.current>a,
.header-style-two.fixed-header .main-menu .navigation>li>a,
.header-style-two.fixed-header .main-menu .navigation>li>a:hover {
  color: #fff;
}

.header-style-two.fixed-header .main-menu .navigation>li.current>a {
  color: var(--thm-base);
}

.main-menu .navigation>li>a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  border-bottom: 2px solid #5db462;
  transform: scaleX(0);
  transition: all 500ms ease;
}

.header-style-two .main-menu .navigation>li>a:before {
  border-bottom-color: #fff;
}

.header-style-two.fixed-header .main-menu .navigation>li>a:before {
  border-bottom-color: var(--thm-base);
}

.main-menu .navigation>li:hover>a:before,
.main-menu .navigation>li.current>a:before {
  transform: scale(1);
}

.sticky-header .main-menu .navigation>li.dropdown {
  padding-right: 0px;
}

.main-menu .navigation>li>ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 320px;
  z-index: 100;
  display: none;
  background: #ffffff;
  padding: 0;
  text-align: left;
  border-radius: 5px;
  transform: translateY(20px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
  -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
  -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
  -2px 0px 5px 1px rgba(0, 0, 0, 0.05);

}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  padding: 0px 10px;
  width: 100%;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0 0 0 15px;
}

.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  font-size: 16px;
  color: #171b27;
  letter-spacing: 0;
  text-align: left;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  line-height: 45px;
}
.main-menu .navigation>li>ul.services-menu>li a:before,
.main-menu .navigation>li>ul>li>a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  border-bottom: 2px solid #5db462;
  transform: scaleX(0);
  transition: all 500ms ease;
}
.main-menu .navigation>li>ul.services-menu>li a:hover:before,
.main-menu .navigation>li>ul>li>a:hover:before {
  transform: scale(1);
}

.main-menu .navigation>li>ul>li>a:hover {
  color: var(--thm-base);
}
.main-menu .navigation>li:hover .services-menu {
  width: 945px;
  display: flex!important;
  padding-top: 15px;
  left: -250px;
}
.service-type {
  font-size: 14px;
  color: #8B98AB;
}
.main-menu .navigation>li>ul.services-menu>li div {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0 0 0 15px;
}
.main-menu .navigation>li>ul.services-menu>li a {
  color: #171b27;
  position: relative;
  display: inline-block;
  padding: 5px 0;
}
.main-menu .navigation>li>ul.services-menu>li a:after{
  position: absolute;
  height: 55%;
  width: 3px;
  content: "";
  background: #5bb75b;
  left: -12px;
  bottom: 10px;
}
.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 220px;
  z-index: 100;
  display: none;
  background: #ffffff;
  padding: 20px 0px 15px;
  border-radius: 5px;
  transform: translateY(20px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
  -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
  -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
  -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  padding: 0px 25px;
  width: 100%;
  margin-bottom: 5px;
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  padding: 5px 0px;
  line-height: 24px;
  font-weight: 400;
  font-size: 20px;
  color: #171b27;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: capitalize;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
  color: var(--thm-base);
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  position: absolute;
  right: 0px;
  top: 7px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}
.header-style-one .topbar-four {
  background-color: #18212e;
  padding: 4px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-style-one .topbar-four p {
   color: #ffffff;
   margin-bottom: 0;
}
.header-style-one .topbar-four .right-content {
  display: flex;
  align-items: center;
}
.header-style-one .topbar-four .phone {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: #ffffff;
}
.header-style-one .topbar-four .phone span {
  margin-right: 5px;
}
.header-style-one .topbar-four .phone a {
  color: #ffffff;
  font-size: 15px;
}



/***

====================================================================
48.	Contact Section
====================================================================

***/

.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff url("../../web/image/pattern-2.png") left top repeat;
}

.contact-section__one-page {
  padding-bottom: 0;
}

.contact-section .map-box {
  position: relative;
  display: block;
  margin: 0 0 120px;
  border-radius: 7px;
  overflow: hidden;
}

.contact-section .form-box {
  position: relative;
  display: block;
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}

.contact-section .form-box form .row {
  margin: 0 -10px;
}

.contact-section .form-box form .form-group {
  padding: 0px 10px;
  margin-bottom: 20px;
}

.contact-section .upper-info {
  position: relative;
  margin-bottom: 90px;
}

.contact-section .info-block {
  position: relative;
  margin-bottom: 30px;
}

.contact-section .info-block .inner-box {
  position: relative;
  display: block;
  height: 100%;
  min-height: 100%;
  padding: 45px 45px 40px;
  background: #ffffff;
  border-radius: 7px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  transition: all 500ms ease;
}

.contact-section .info-block .inner-box:hover {
  background: var(--thm-black);
}

.contact-section .info-block .inner-box h5 {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--thm-black);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1em;
  margin: 0;
}

.contact-section .info-block .inner-box h5 a {
  color: var(--thm-black);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.contact-section .info-block .inner-box:hover h5,
.contact-section .info-block .inner-box:hover h6,
.contact-section .info-block .inner-box:hover h5 a {
  color: #ffffff;
}

.contact-section .info-block .inner-box .text {
  position: relative;
  display: block;
  color: var(--thm-text);
  padding: 30px 0px 0px;
  z-index: 1;
}

.contact-section .info-block .inner-box .text a {
  position: relative;
  color: var(--thm-text);
}

.contact-section .info-block .inner-box:hover .text,
.contact-section .info-block .inner-box:hover .text a {
  color: #c4c4c4;
}

.contact-section .info-block .inner-box:hover h5 a:hover,
.contact-section .info-block .inner-box:hover .text a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.contact-infos {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: var(--thm-black);
}

.contact-infos .row {
  --bs-gutter-y: 20px;
}

@media (min-width: 992px) {
  .contact-infos {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

@media (min-width: 1200px) {
  .contact-infos [class*=col-]:not(:first-child) p {
    padding-left: 55px;
  }
}

.contact-infos p {
  margin: 0;
  font-size: 16px;
  line-height: 36px;
  color: #a4a4a4;
  font-weight: 400;
  font-family: var(--thm-font);
}

.contact-infos p br {
  display: none;
}

@media(min-width: 768px) {
  .contact-infos p br {
    display: inherit;
  }
}

.contact-infos p a {
  color: inherit;
  transition: all 500ms ease;
}

.contact-infos p a:hover {
  color: #fff;
}




/*--------------------------------------------------------------
# Video Styles
--------------------------------------------------------------*/

.video-one {
  padding-top: 90px;
  padding-bottom: 75px;
}

@media(min-width: 992px) {
  .video-one {
    padding-top: 120px;
    padding-bottom: 105px;
  }
}

.video-one .video-one__image {
  position: relative;
  margin-bottom: 60px;
}

.video-one .video-one__image img {
  width: 100%;
  border-radius: 8px;
}

.video-one__content {
  text-align: center;
}

@media(min-width: 992px) {
  .video-one__content {
    text-align: left;
  }
}

.video-one__content .sec-title {
  margin-bottom: 0;
}

.video-one__content .sec-title h2 {
  letter-spacing: -0.02em;
}

@media(min-width: 768px) {
  .video-one__content .sec-title h2 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.video-one__content .block-text {
  margin: 0;
  font-family: var(--thm-b-font);
  font-size: 16px;
  line-height: 34px;
  color: var(--thm-text);
  margin-top: 20px;
}

@media(min-width: 768px) {
  .video-one__content .block-text {
    max-width: 500px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.video-one__image .vid-link {
  background-color: var(--thm-base);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--thm-black);
  transition: all 500ms ease;

  width: 70px;
  height: 70px;
  bottom: calc(50% - 35px);
  left: calc(50% - 35px);
  font-size: 20px;
}

@media(min-width: 768px) {

  .video-one__image .vid-link {
    width: 107px;
    font-size: 30px;
    right: 100px;
    bottom: -53.5px;
    height: 107px;
    left: auto;
  }
}

.video-one__image .vid-link:hover {
  background-color: var(--thm-black);
  color: #ffffff;
}

.video-one__image .vid-link a {
  color: inherit;
}

.video-one__image .vid-link .icon {
  position: relative;
  top: 3px;
}

.video-one__image .vid-link::before {
  position: absolute;
  content: '';
  border-radius: 50%;
  border: 1px solid var(--thm-black);
  top: -13px;
  bottom: -13px;
  left: -13px;
  right: -13px;
  opacity: 0.2;
}


.video-one__image .vid-link .ripple,
.video-one__image .vid-link .ripple:before,
.video-one__image .vid-link .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -ms-border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(25, 103, 46, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-one__image .vid-link .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__image .vid-link .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.contact-section .info-block .inner-box .text i {
  color: #5eb563;
  width: 20px;
  margin-right: 5px;
}

/***

====================================================================
10.		Banner Section
====================================================================

***/

.banner-section {
  position: relative;
  z-index: 1;
}

.banner-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
  z-index: 1;
}

.banner-section .left-based-text {
  position: absolute;
  left: 50px;
  top: 50px;
  bottom: 50px;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.1em;
  font-weight: 500;
  z-index: 10;
  font-family: var(--thm-font);
}

.banner-section .left-based-text .base-inner {
  position: absolute;
  left: 0;
  bottom: 150px;
  width: 300px;
  height: 24px;
  transform-origin: left bottom;
  transform: rotate(-90deg);
}

.banner-section .left-based-text .social-links {
  position: absolute;
  left: 0;
  top: 0;
}

.banner-section .left-based-text .social-links ul li {
  float: left;
  margin-right: 35px;
}

.banner-section .left-based-text .social-links ul li a {
  position: relative;
  display: block;
  color: #ffffff;
  transition: all 500ms ease;
}

.banner-section .left-based-text .social-links ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  transition: all 500ms ease;
}

.banner-section .left-based-text .social-links ul li a:hover:before {
  transform: scale(1);
}

.banner-section .left-based-text .hours {
  position: absolute;
  right: 0;
  top: 0;
}

.banner-section .left-based-text .hours ul li {
  float: left;
  margin-left: 35px;
}

.banner-three .left-based-text .social-links ul li a,
.banner-three .left-based-text .hours ul li {
  color: var(--thm-black);
}

.banner-section .left-based-text .social-links ul li a:before {
  border-bottom-color: var(--thm-black);
}

.banner-carousel {
  position: relative;
  z-index: 1;
}

.banner-carousel .slide-item {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  color: #ffffff;
  overflow: hidden;
}

.banner-three .banner-carousel .slide-item {
  background: none;
}

.banner-carousel .slide-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thm-black);
  opacity: 0.6;
  z-index: 1;
}

.banner-two .banner-carousel .slide-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/web/image/main-slider/slide-2-pattern-1.png);
  z-index: 10;
}

.banner-two .banner-carousel .slide-item:before {
  opacity: 0.8;
}

.banner-three .banner-carousel .slide-item:before {
  display: none;
}

.banner-carousel .slide-item .left-top-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 350px;
  max-width: 100%;
  height: 100%;
  background: url(/web/image/main-slider/left-curve-line.png) left top no-repeat;
  z-index: 2;
  opacity: 0;
  transform: translateY(-100%);
}

.banner-carousel .active .left-top-line {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 200ms;
}

.banner-carousel .slide-item .right-bottom-curve {
  position: absolute;
  right: 0;
  top: 0;
  width: 655px;
  max-width: 100%;
  height: 100%;
  background: url(/web/image/bg/right-curved-bg.png) right bottom no-repeat;
  z-index: 2;
  opacity: 0;
  transform: translateX(700px);
}

.banner-carousel .active .right-bottom-curve {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1300ms;
}

.banner-carousel .slide-item .right-top-curve {
  position: absolute;
  right: 0;
  top: 0;
  width: 164px;
  max-width: 100%;
  height: 100%;
  background: url(/web/image/bg/right-white-curve.png) right top no-repeat;
  z-index: 2;
  opacity: 0;
  transform: translateX(200px);
}

.banner-carousel .active .right-top-curve {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1800ms;
}

.banner-carousel .slide-item .round-shape-1 {
  position: absolute;
  left: -500px;
  bottom: -500px;
  width: 1000px;
  height: 1000px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transform: translateY(100%);
}

.banner-carousel .active .round-shape-1 {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1500ms;
}

.banner-carousel .active .shape-1 {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 200ms;
}

.banner-carousel .active .shape-2 {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 500ms;
}


.banner-carousel .active .shape-3 {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1800ms;
}


.banner-carousel .active .shape-4 {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 2500ms;
}



.banner-carousel .active .shape-5 {
  opacity: 1;
  transform: translate(0);
  transition: all 1500ms ease;
  transition-delay: 2700ms;
}

.banner-carousel .active .shape-6 {
  opacity: 1;
  transform: scale(1);
  transition: all 1500ms ease;
  transition-delay: 2700ms;
}

.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  transform: scale(1);
}

.banner-carousel .active.slide-item .image-layer {
  transform: scale(1.15);
  transition: all 7000ms linear;
}

.banner-carousel .content-box {
  position: relative;
  display: table;
  vertical-align: middle;
  width: 100%;
  height: 85vh;
  padding: 0 0px;
  z-index: 11;
}

.banner-carousel .content-box .content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 100px 0 0;
}

.banner-carousel .content-box .inner {
  position: relative;
  display: block;
  max-width: 800px;
}

.banner-two .banner-carousel .content-box .inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.banner-three .banner-carousel .content-box .inner {
  max-width: 550px;
}

.banner-carousel .content-box .sub-title {
  display: block;
  font-size: 28px;
  line-height: 1.5em;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(80px);
  font-family: var(--thm-font);
}

.banner-carousel .active .content-box .sub-title {
  opacity: 1;
  transform: translate(0);
  transition: all 700ms ease;
  transition-delay: 800ms;
}

.banner-carousel .content-box h1 {
  display: block;
  font-size: 42px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 600;
  opacity: 0;
  /*text-transform: uppercase;*/
  letter-spacing: 0;
  margin: 0;
  transform: translateY(80px);
}

.banner-two .banner-carousel .content-box h1 {
  text-transform: capitalize;
}

.banner-three .banner-carousel .content-box h1 {
  font-size: 120px;
  color: var(--thm-black);
  font-weight: 500;
}

.banner-carousel .active .content-box h1 {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1300ms;
}

.banner-three .banner-carousel .active .content-box h1 {
  transition-delay: 700ms;
}

.banner-carousel .content-box .text {
  position: relative;
  color: var(--thm-black);
  margin: 5px 0 0;
  opacity: 0;
  transform: translateY(80px);
}

.banner-carousel .active .content-box .text {
  opacity: 1;
  transform: translate(0);
  transition: all 700ms ease;
  transition-delay: 1200ms;
}

.banner-carousel .content-box .link-box {
  position: relative;
  display: block;
  padding-top: 50px;
  opacity: 0;
  transform: translateY(50px);
}

.banner-three .banner-carousel .content-box .link-box {
  padding-top: 45px;
}

.banner-carousel .active .content-box .link-box {
  opacity: 1;
  transform: translate(0);
  transition: all 700ms ease;
  transition-delay: 1800ms;
}

.banner-carousel .slide-item .round-image {
  position: absolute;
  right: -200px;
  top: -100px;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  z-index: 2;
}

.banner-carousel .slide-item .round-image .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 850px;
  height: 850px;
  background-size: cover;
  background-position: left top;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  z-index: 2;
  opacity: 0;
  transform: translateX(100%);
  overflow: hidden;
}

.banner-carousel .slide-item .round-image .image::before {
  content: '';
  position: absolute;
  opacity: 0.5;
  background-color: var(--thm-black);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
}

.banner-carousel .active .round-image .image {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 200ms;
}

.banner-carousel .slide-item .round-image:before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: 120px;
  width: 100%;
  height: 100%;
  background: var(--thm-black);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transform: translateX(100%);
}

.banner-carousel .active .round-image:before {
  opacity: 0.1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 700ms;
}



.banner-carousel .active .round-image:after {
  opacity: 1;
  transform: translate(0);
  transition: all 1000ms ease;
  transition-delay: 1000ms;
}

.banner-carousel .owl-nav {
  position: absolute;
  left: 50%;
  margin-left: -600px;
  top: 50%;
  width: 1200px;
  height: 110px;
  text-align: right;
}

.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  padding: 0;
  margin: 0;
  line-height: 50px;
  text-align: center;
  opacity: 0.2;
  border-radius: 50%;
  transition: all 500ms ease;
}

.banner-carousel .owl-nav .owl-next {
  top: auto;
  bottom: 0;
}

.banner-carousel .owl-nav .owl-next span,
.banner-carousel .owl-nav .owl-prev span {
  vertical-align: middle;
}

.banner-carousel .owl-nav .owl-next:hover,
.banner-carousel .owl-nav .owl-prev:hover {
  opacity: 1;
}

.banner-section .owl-dots {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  text-align: center;
  display: none;
}

.banner-two .owl-nav,
.banner-three .owl-nav {
  display: none;
}

.banner-three {
  background-color: var(--thm-base);
}

.banner-three .bg-image {
  opacity: 0.03;
}

.banner-two .owl-dots {
  display: block;
}

.banner-section .owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0px 3px;
}

.banner-section .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.banner-section .owl-theme .owl-dots .owl-dot.active span {
  background: none;
  border-width: 2px;
  border-color: var(--thm-base);
}

/* banner one page  */

.banner-one-page {
  margin-top: 117px;
}

.banner-one-page .banner-carousel .content-box .inner {
  max-width: 100%;
}

.banner-one-page .banner-carousel .content-box {
  height: 600px;
}

@media (min-width: 992px) {
  .banner-one-page .banner-carousel .content-box {
    height: 860px;
  }
}

.banner-one-page .banner-carousel .content-box h1 {
  font-size: 46px;
  color: var(--thm-base);
}

.banner-one-page .banner-carousel .content-box h1 span {
  color: #fff;
  font-weight: 300;
}

@media (min-width: 600px) {
  .banner-one-page .banner-carousel .content-box h1 {
    font-size: 60px;
  }
}

@media (min-width: 768px) {
  .banner-one-page .banner-carousel .content-box h1 {
    font-size: 80px;
  }
}

@media (min-width: 992px) {
  .banner-one-page .banner-carousel .content-box h1 {
    font-size: 100px;
  }
}

@media (min-width: 1200px) {
  .banner-one-page .banner-carousel .content-box h1 {
    font-size: 150px;
  }
}

.banner-one-page .banner-carousel .content-box .link-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-one-page .banner-carousel .content-box .content {
  padding-top: 0;
  padding-bottom: 0;
}

.banner-one-page .banner-carousel .vid-link {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 3;
  margin-left: 15px;
}

@media (min-width: 376px) {
  .banner-one-page .banner-carousel .vid-link {
    margin-left: 30px;
  }
}

.banner-one-page .banner-carousel .vid-link .icon {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 16px;
  color: var(--thm-black);
  background: #fff;
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.banner-one-page .banner-carousel .vid-link a:hover .icon {
  background: var(--thm-black);
  color: var(--thm-base);
}

.banner-one-page .banner-carousel .vid-link .ripple,
.banner-one-page .banner-carousel .vid-link .ripple:before,
.banner-one-page .banner-carousel .vid-link .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -ms-border-radius: 50%;
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--thm-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.banner-one-page .banner-carousel .vid-link .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.banner-one-page .banner-carousel .vid-link .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.banner-one-page .banner-carousel .content-box .link-box {
  padding-top: 30px;
}

.banner-one-page .banner-carousel .owl-nav {
  width: 100%;
  left: 0;
  margin-left: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 376px) {
  .banner-one-page .banner-carousel .owl-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) {
  .banner-one-page .banner-carousel .owl-nav {
    display: flex;
  }

  .banner-one-page .banner-carousel .owl-nav {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .banner-one-page .banner-carousel .owl-nav {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.banner-one-page .banner-carousel .owl-nav .owl-next,
.banner-one-page .banner-carousel .owl-nav .owl-prev {
  position: relative;
  top: auto;
  right: auto;
}

/* banner four */

.banner-section-four {
  position: relative;
  margin-top: 44px;
}


.banner-section-four .swiper-slide {
  position: relative;
}

.banner-section-four .swiper-slide .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  background-position: center;
  transition: transform 7000ms ease;
}

.banner-section-four .swiper-slide-active .image-layer {
  transform: scale(1.15);
}

.banner-section-four .auto-container {
  padding-top: 350px;
  padding-bottom: 200px;
  position: relative;
  z-index: 22;
}

.banner-section-four h2 {
  margin: 0;
  font-weight: bold;
  color: #fff;
  font-size: 80px;
  line-height: 90px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(110px);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.banner-section-four p {
  margin: 0;
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.7;
  margin-top: 40px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
  background 500ms ease;
}

.banner-section-four .btn-style-three {
  min-width: 220px;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
  background 500ms ease;
}

.banner-section-four .btn-style-three:hover {
  background-color: #fff;
  color: var(--thm-black);
}

.banner-section-four .swiper-slide-active .btn-style-three,
.banner-section-four .swiper-slide-active h2,
.banner-section-four .swiper-slide-active p {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.banner-section-four__nav {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  z-index: 21;
}

@media (max-width: 425px) {
  .banner-section-four__nav {
    display: none;
  }
}

.banner-section-four__nav .swiper-button-next,
.banner-section-four__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #222429;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.3;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

@media (max-width: 991px) {

  .banner-section-four__nav .swiper-button-next,
  .banner-section-four__nav .swiper-button-prev {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

.banner-section-four__nav .swiper-button-next:hover,
.banner-section-four__nav .swiper-button-prev:hover {
  opacity: 1;
}

.banner-section-four__nav .swiper-button-next::after,
.banner-section-four__nav .swiper-button-prev::after {
  display: none;
}

.banner-section-four__nav .swiper-button-prev {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .banner-section-four__nav .swiper-button-prev {
    margin-top: 10px;
  }
}


.banner-four {
  margin-top: 76px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

@media(min-width:992px) {
  .banner-four {
    margin-top: 120px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media(min-width: 1200px) {
  .banner-four {
    padding-top: 185px;
    padding-bottom: 200px;
  }
}

.banner-four__title {
  margin: 0;
  color: var(--thm-black);
  font-size: 40px;
  line-height: 1.5;
  font-weight: 500;
}

@media(min-width: 768px) {

  .banner-four__title {
    font-size: 32px;
  }
}

@media(min-width: 1200px) {
  .banner-four__title {
    font-size: 46px;
  }
}

.banner-four__title br {
  display: none;
}

@media(min-width: 768px) {

  .banner-four__title br {
    display: inherit;
  }
}

.banner-four__text {
  margin: 0;
  color: var(--thm-text);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6em;
  margin-top: 20px;
}

@media(min-width: 768px) {

  .banner-four__text {
    margin-top: 20px;
    font-size: 24px;
  }
}

.banner-four__text a {
  color: var(--thm-base);
  transition: all 500ms ease;
}

.banner-four__text a:hover {
  color: var(--thm-black);
}

.banner-four__scroll {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--thm-base);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  margin-top: 20px;
  transition: all 500ms ease;
}

@media(min-width: 768px) {
  .banner-four__scroll {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@media(min-width: 1200px) {
  .banner-four__scroll {
    font-size: 34px;
    width: 90px;
    height: 90px;
    margin-top: 35px;
  }
}

.banner-four__scroll:hover {
  background-color: var(--thm-black);
  color: #fff;
}

.banner-four__social {
  position: absolute;
  top: 50%;
  left: 30px;
  display: none;
  transform-origin: left bottom;
  transform: rotate(-90deg);
}

.banner-four__social a {
  font-size: 20px;
  color: var(--thm-black);
  transition: all 500ms ease;
}

.banner-four__social a+a {
  margin-top: 30px;
}

.banner-four__social a:hover {
  color: var(--thm-base);
}

@media (min-width: 1200px) {
  .banner-four__social {
    display: flex;
    flex-direction: column;
    left: 20px;
  }
}

.banner-four__info {
  position: absolute;
  display: none;
  left: 30px;
  top: 67%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
}

.banner-four__info span {
  font-size: 20px;
  color: var(--thm-text);
  font-weight: 400;i
}

.banner-four__info span+span {
  margin-left: 30px;
}

@media(min-width: 1200px) {
  .banner-four__info {
    display: flex;
    left: 30px;
  }
}


/* about section three */

.about-section-three {
  padding-top: 90px;
  padding-bottom: 80px;
  background: #ffffff url(/web/images/bg/pattern-2.png) left top repeat;
}

.about-section-three__image {
  position: relative;
  display: inline-block;
}

.about-section-three__image img {
  position: relative;
  border-radius: 10px;
}

.about-section-three__image::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  right: 0;
  left: -30px;
  background-color: var(--thm-base);
  border-radius: 10px;
}

.about-section-three__content .sec-title-two {
  margin-bottom: 35px;
}

.about-section-three__content .sec-title-two h2 {
  margin-top: 10px;
}

.about-section-three__summery p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  color: #222222;
  margin-bottom: 10px;
}

.about-section-three__list {
  margin-bottom: 50px;
}

.about-section-three__list li {
  position: relative;
  padding-left: 30px;
  color: #697280;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.about-section-three__list li>i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--thm-base);
  font-size: 16px;
}

.about-section-three__content .progress-box {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 50px;
}

.about-section-three__content .progress-box .bar-title {
  position: relative;
  font-size: 18px;
  line-height: 1.1em;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--thm-black);
}

.about-section-three__content .progress-box .bar {
  position: relative;
  width: 100%;
  height: 7px;
  background: #eff1f4;
  border-radius: 4px;
}

.about-section-three__content .progress-box .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 7px;
  background: var(--thm-base);
  transition: all 1500ms ease;
}

.about-section-three__content .progress-box .count-box {
  position: absolute;
  right: 0px;
  margin-right: -40px;
  bottom: 18px;
  width: 40px;
  height: 22px;
  color: #697280;
  line-height: 22px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: all 500ms ease;
}

.about-section-three__content .progress-box .counted .count-box {
  opacity: 1;
}

.about-section-three__name {
  position: relative;
  padding-top: 15px;
}

.about-section-three__name>img {
  position: absolute;
  top: -5px;
  left: 0;
  width: 150px;
}

.about-section-three__name h3 {
  margin: 0;
  font-size: 20px;
  color: var(--thm-black);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
}

.about-section-three__name p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1;
  font-weight: 600;
  font-size: 14px;
  color: var(--thm-base);
  position: relative;
}
.text {
  text-align: left;
}
.inner-box h5,
.inner-box h6 {
  text-align: center;
}
.inner-box .flag {
  text-align: center;
  height: 42px;
}
.inner-box .flag img {
  width: 45px;
  box-shadow: 1px 1px 7px 1px #cccccc;
  margin: 15px auto 0;
}

/***

====================================================================
25.	Main Footer
====================================================================

***/

.main-footer {
  position: relative;
  color: #999b9f;
  background: #1b1b1b url("../../web/image/bg/footer-bg.png") center top no-repeat;
}

.main-footer .widgets-section {
  position: relative;
  padding: 170px 0px 70px;
}

.main-footer.normal-padding .widgets-section {
  padding: 120px 0px 70px;
}

.main-footer .column {
  position: relative;
  margin-bottom: 35px;
}

.main-footer .footer-widget {
  position: relative;
}

.main-footer .footer-logo {
  position: relative;
  margin-top: -10px;
  margin-bottom: 20px;
}

.main-footer h6 {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 30px;
}

.main-footer .logo-widget {
  position: relative;
}

.main-footer .logo-widget .logo {
  position: relative;
  margin-bottom: 26px;
}

.main-footer .logo-widget .logo img {
  height: 50px;
}

.main-footer .logo-widget .text {
  position: relative;
  display: block;
  margin: 0 0 30px;
}

.main-footer .links-widget ul li {
  position: relative;
  margin-bottom: 3px;
}

.main-footer .links-widget ul li:last-child {
  margin: 0;
}

.main-footer .links-widget ul li a {
  position: relative;
  color: #d0d0d0;
  line-height: 30px;
  text-transform: none;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.main-footer .links-widget ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.main-footer .links-widget ul li a:hover:before {
  transform: scaleX(1);
}

.main-footer .links-widget ul li a:hover {
  color: #ffffff;
}

.main-footer .social-links {
  position: relative;
  text-align: center;
  margin-top: 15px;
}

.main-footer .social-links li {
  position: relative;
  margin-right: 8px;
  display: inline-block;
}

.main-footer .social-links li a {
  position: relative;
  display: block;
  color: #efefef;
  font-size: 16px;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
  transition: all 300ms ease;
}
.main-footer .social-links li a.facebook {
  background-color: #1877f2;
}
.main-footer .social-links li a.telegram {
  background-color: #3390ec;
}
.main-footer .social-links li a.youtube {
  background-color: #f00;
}

.main-footer .social-links li a span {
  vertical-align: middle;
}

.main-footer .social-links li a:hover {
  color: #ffffff;
  background: var(--thm-base);
}

.main-footer .info-widget ul li {
  position: relative;
  display: block;
  line-height: 32px;
  padding-left: 30px;
  margin-bottom: 5px;
}

.main-footer .info-widget ul li.address {
  margin-bottom: 0;
  color: #d0d0d0;
}

.main-footer .info-widget ul li .icon {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 30px;
  font-size: 16px;
  color: #5db462;
}

.main-footer .info-widget ul li:last-child {
  margin: 0;
}

.main-footer .info-widget ul li a {
  position: relative;
  color: #d0d0d0;
  line-height: 28px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.main-footer .info-widget ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--thm-base);
  text-decoration-color: var(--thm-base);
}

.main-footer .newsletter-widget .text {
  position: relative;
  display: block;
  margin: 25px 0 0;
  font-size: 14px;
  line-height: 32px;
  color: #d0d0d0;
}

.main-footer .newsletter-form {
  position: relative;
}

.main-footer .newsletter-form form {
  position: relative;
}

.main-footer .newsletter-form {
  position: relative;
  margin: 0;
}

.main-footer .newsletter-form .form-group input[type="text"],
.main-footer .newsletter-form .form-group input[type="tel"],
.main-footer .newsletter-form .form-group input[type="email"] {
  position: relative;
  width: 100%;
  line-height: 30px;
  padding: 20px 60px 20px 25px;
  height: 70px;
  display: block;
  font-size: 18px;
  background: #1c1e22;
  color: #ffffff;
  border-radius: 5px;
  font-family: var(--thm-b-font);
  border: 1px solid #1c1e22;
  transition: all 300ms ease;
  font-size: 14px;
}

.main-footer .newsletter-form .form-group input[type="text"]:focus,
.main-footer .newsletter-form .form-group input[type="email"]:focus,
.main-footer .newsletter-form .form-group input[type="tel"]:focus {
  border-color: var(--thm-base);
}

.newsletter-form .form-group input::-webkit-input-placeholder {
  color: #999b9f;
}

.newsletter-form .theme-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  background:  #5db462;
  color: #ffffff;
  border-radius: 50%;
}

.newsletter-form .theme-btn span {
  vertical-align: middle;
  font-size: 14px;
}

.newsletter-form .theme-btn:hover {
  background: #ffffff;
  color: var(--thm-base);
}

.main-footer .footer-bottom {
  position: relative;
  text-align: center;
}

.main-footer .footer-bottom .inner {
  position: relative;
  display: block;
  padding: 35px 0px;
  line-height: 30px;
  color: #999b9f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer .footer-bottom .copyright {
  position: relative;
  line-height: 1.5em;
}