/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:focus {
  outline: 0 none;
}
a:focus {
  outline: 0 none;
}
a img {
  border: none;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  text-decoration: none !important;
}

.btn {
  white-space: normal;
}
.btn-info.focus,
.btn-info:focus {
  box-shadow: none;
}

img,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
input,
textarea,
select {
  -webkit-border-radius: 0;
  border-radius: 0;
  appearance: none;
}

input[type="checkbox"] {
  -webkit-border-radius: 0;
  border-radius: 0;
  appearance: checkbox !important;
}
input[type="radio"] {
  -webkit-border-radius: 0;
  border-radius: 0;
  appearance: radio !important;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}
::selection {
  background-color: #000;
  color: #fff;
}

input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
  color: #2b3241;
}
input[type="text"]::-moz-placeholder {
  opacity: 1;
  color: #2b3241;
}
input[type="text"]::-ms-input-placeholder {
  opacity: 1;
  color: #2b3241;
}
input[type="email"]::-webkit-input-placeholder {
  opacity: 1;
  color: #2b3241;
}
input[type="email"]::-moz-placeholder {
  opacity: 1;
  color: #2b3241;
}
input[type="email"]::-ms-input-placeholder {
  opacity: 1;
  color: #2b3241;
}
input[type="password"]::-webkit-input-placeholder {
  opacity: 1;
  color: #2b3241;
}
input[type="password"]::-moz-placeholder {
  opacity: 1;
  color: #2b3241;
}
input[type="password"]::-ms-input-placeholder {
  opacity: 1;
  color: #2b3241;
}
textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #2b3241;
}
textarea::-moz-placeholder {
  opacity: 1;
  color: #2b3241;
}
textarea::-ms-input-placeholder {
  opacity: 1;
  color: #2b3241;
}

select::-ms-expand {
  display: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

@font-face {
  font-family: "Helvetica";
  font-style: normal;
  font-weight: normal;
  src: url("assets/fonts/Helvetica.woff") format("woff");
}

@font-face {
  font-family: "HelveticaBold";
  font-style: normal;
  font-weight: normal;
  src: url("assets/fonts/HelveticaBold.woff") format("woff");
}

@font-face {
  font-family: "HelveticaLight";
  font-style: normal;
  font-weight: normal;
  src: url("assets/fonts/HelveticaLight.woff") format("woff");
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1e1e1e;
  transition: 0.3s;
}
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: inherit;
  color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li,
a,
p {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
strike {
  text-decoration: line-through;
}
.form-control:focus {
  box-shadow: none;
}

ul,
ol {
  list-style-position: inside;
}

html {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  font-family: "Helvetica";
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
}
p {
  margin: 0 0 25px;
}

.slicknav_menu {
  display: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  width: 60px;
  display: flex;
  justify-content: space-evenly;
}
.ball {
  list-style: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000;
}
.ball:nth-child(1) {
  animation: bounce-1 2.1s ease-in-out infinite;
}

@keyframes bounce-1 {
  50% {
    transform: translateY(-90px);
    scale: 0.3;
  }
}

.ball:nth-child(2) {
  animation: bounce-3 2.1s ease-in-out 0.3s infinite;
}

@keyframes bounce-2 {
  50% {
    transform: translateY(-90px);
    scale: 0.3;
  }
}

.ball:nth-child(3) {
  animation: bounce-3 2.1s ease-in-out 0.6s infinite;
}

@keyframes bounce-3 {
  50% {
    transform: translateY(-90px);
    scale: 0.3;
  }
}

/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 10px; /* width of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #888; /* color of the thumb */
  border-radius: 6px; /* roundness of the thumb */
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* color of the track */
}

/* For Firefox */
/* Note: Firefox currently only supports scrollbar styling in the dark theme. */
/* You may need to enable it manually in about:config by setting 'ui.systemUsesDarkTheme' to 1. */
/* Refer to Firefox documentation for the latest updates. */

/* width of the scrollbar */
html {
  scrollbar-width: thin;
}

/* color of the thumb */
html {
  scrollbar-color: #888 #f1f1f1;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.back-to-top {
  position: fixed;
  z-index: 9999;
  bottom: 35px;
  right: 35px;
  width: 40px;
  height: 40px;
  background: #044686;
  color: #fff !important;
  visibility: hidden;
  opacity: 0;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn {
  transition: 0.4s;
  position: relative;
}
.btn i {
  transition: 0.4s;
}

.btn.btn-primary {
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  padding: 10px 25px;
  background: #044686;
  color: #fff;
  border-radius: 0;
  border: 0;
  text-transform: uppercase;
  font-family: "HelveticaBold";
  min-width: unset;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #212121;
  color: #fff;
}

.header-main {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}
.header-main ul li {
  display: inline-block;
  margin: 0 12px;
}
.header-main ul li a {
  font-size: 15px;
  color: #000;
  font-family: "HelveticaBold";
  text-transform: uppercase;
}
.header-main ul li:hover a {
  color: #044686;
}
.header-main ul li:last-child {
  margin-right: 0;
}
.header-main.header-scrolled {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#menu li a.active {
  color: #044686;
}

.lang-select .dropdown-toggle {
  background: transparent;
  border: 0;
  display: flex;
  color: #000;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.lang-select .dropdown-menu li {
  margin: 0;
  padding: 0;
  display: block;
}
.lang-select .dropdown-menu li a {
  font-size: 15px;
  font-family: "Helvetica";
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.dropdown-menu {
  width: 85px;
  min-width: unset;
}

.hm-banner {
  position: relative;
  min-height: 100vh;
  background-size: cover !important;
  z-index: 1;
}
.hm-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 37px;
  background: url(assets/img/vector.png) bottom center no-repeat;
  background-size: cover;
}
.hm-banner h1 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  color: #fff;
  font-family: "HelveticaBold";
  text-align: center;
}

section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
section h3 {
  font-size: 28px;
  color: #000;
  font-family: "HelveticaBold";
  margin: 0 0 35px;
}

.about-sec h2 {
  font-size: 28px;
  color: #000;
  font-family: "HelveticaBold";
  margin: 0 0 30px;
}
.about-img > div {
  display: flex;
  gap: 10px;
  height: 182px;
  overflow: hidden;
}
.about-img {
  width: 100%;
  max-width: 480px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.ab-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.ab-img-block:hover img {
  transform: scale(1.1);
}
.top-img > div:nth-child(1) {
  width: 40%;
}
.top-img > div:nth-child(2) {
  width: 60%;
}
.bottom-img > div:nth-child(1) {
  width: 60%;
}
.bottom-img > div:nth-child(2) {
  width: 40%;
}
.ab-img-block {
  overflow: hidden;
}

.about-sec .inner {
  max-width: 80%;
}
.about-sec .inner p {
  text-align: justify;
}

.service-block {
  margin: 0 30px 0 0;
}
.service-img {
  width: 100%;
  height: 270px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.service-img:hover img {
  transform: scale(1.1);
}
.service-block h4 {
  font-size: 20px;
  line-height: 28px;
  color: #000;
  font-family: "HelveticaBold";
  margin: 0 0 20px;
}
.service-block a {
  font-size: 17px;
  text-decoration: underline;
  text-transform: uppercase;
  color: #044686;
  font-family: "HelveticaBold";
}
.service-sec .slick-list {
  overflow: visible !important;
}
.service-sec .slick-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: -9999px;
  width: 9999px;
  height: 100%;
  background: #fff;
}
.service-block p {
  text-align: justify;
  margin: 0;
}

.our-clients {
  background: #f2f9f9;
  padding: 60px 0;
}

.portfolio-sec .slick-list {
  overflow: visible !important;
}
.portfolio-sec .slick-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: -9999px;
  width: 9999px;
  height: 100%;
  background: #fff;
}
.portfolio-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.portfolio-block a {
  overflow: hidden;
  height: 247px !important;
  z-index: 1 !important;
  position: relative;
  display: block;
}
.portfolio-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.portfolio-block a:hover img {
  transform: scale(1.1);
}
.portfolio-block a::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 9;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background: #ffffff80;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
  font-size: 30px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}
.portfolio-block a:hover::after {
  opacity: 1;
  visibility: visible;
}
section.portfolio-sec {
  overflow: inherit;
}
.portfolio-sec .swiper-wrapper {
  margin: 0 0 30px;
}

.sgl-ct-block {
  max-width: 235px;
}
.sgl-ct-block h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  font-family: "HelveticaBold";
  margin: 0 0 10px;
}
.sgl-ct-block h4 i {
  color: #044686;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
.contact-info a:hover {
  color: #044686;
}
.contact-form {
  margin-top: 35px;
}
.form-control,
.form-select {
  width: 100%;
  border-radius: 0;
  height: 54px;
  background-color: #eff7f7 !important;
  border: 2px solid transparent !important;
  padding: 10px 25px;
}
textarea.form-control {
  height: 123px;
}

.footer-main {
  background: #044686;
  padding: 10px 0;
}
.footer-main p {
  color: #fff;
  margin: 0;
  text-align: center;
}
.logo-block {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.logo-block img {
  max-height: 65px;
  object-fit: contain;
}
.slick-arrow {
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border: 0;
  background: transparent;
  top: 50%;
  margin-top: -25px;
  left: -150px;
}
.slick-next.slick-arrow {
  left: auto;
  right: -150px;
}
.slick-arrow::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #787c7c;
}
.slick-prev.slick-arrow::after {
  transform: rotate(180deg);
}

.gt-main {
  z-index: 999;
  position: relative;
}
.gt-btn {
  display: inline-block;
  font-size: 15px;
  line-height: 22px;
  padding: 10px 20px;
  background: #044686;
  color: #fff;
  border-radius: 0;
  border: 0;
  text-transform: uppercase;
  font-family: "HelveticaBold";
  min-width: 180px;
  transform: rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  text-align: center;
  position: fixed;
  bottom: 280px;
  right: -68px;
}
.gt-btn:hover,
.gt-btn:focus {
  background: #212121;
  color: #fff;
}

.form-control:focus {
  border: 2px solid #222 !important;
}
.fancybox-container {
  z-index: 999999999 !important;
}
.swiper-horizontal > .swiper-scrollbar {
  background-color: #ebebeb;
  height: 7px !important;
}
.service-block {
  margin: 0 0 40px;
}
.service-desc {
  padding: 15px;
  border: 1px solid #ddd;
}

.lang-select {
  display: none;
}
.custom-logo-link {
  display: block;
  max-width: 154px;
}
.custom-logo-link img {
  width: auto !important;
  height: auto !important;
}
header.header-main.header-scrolled .custom-logo-link {
  max-width: 130px;
}
.testi-slider-block {
	text-align: center;
	padding: 60px 40px;
	background: #f2f9f9;
	position: relative;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.testi-info h4 {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 400;
}
.testi-info p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.testi-slider-block::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  right: 30px;
  bottom: 0;
  font-size: 120px;
  line-height: 134px;
  opacity: 0.1;
  pointer-events: none;
}
@media only screen and (max-width: 1470.98px) {
  .about-sec h2 {
    font-size: 24px;
  }
  .service-img {
    height: 250px;
  }
  .service-block h4 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 15px;
  }
  .slick-arrow {
    left: -60px;
  }
  .slick-next.slick-arrow {
    right: -60px;
  }
  section h3 {
    font-size: 24px;
    margin: 0 0 25px;
  }
  .btn.btn-primary {
    font-size: 14px;
  }
  .header-main ul li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1340.98px) {
  .client-slider {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1170.98px) {
  .header-main ul li a {
    font-size: 15px;
  }
  body {
    font-size: 16px;
    line-height: 26px;
  }
  p {
    margin: 0 0 15px;
  }
  .hm-banner h1 {
    font-size: 28px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 991.98px) {
  .js #menu {
    display: none;
  }
  .js .slicknav_menu {
    display: block;
    z-index: 999999;
  }
  .slicknav_menu {
    position: fixed;
    top: 11px;
    left: 0;
    width: 100%;
    z-index: 99999;
    pointer-events: none;
  }
  .slicknav_btn {
    pointer-events: all;
    top: 7px;
    background: #044686 !important;
    margin: 0 10px 0 0 !important;
  }
  .slicknav_nav {
    pointer-events: all;
    background: #2c2e2f;
    margin-top: 52px !important;
    border: 0 !important;
  }
  .slicknav_nav a:hover {
    color: #044686 !important;
  }
  .header-main ul li a {
    font-size: 15px;
  }
  .lang-select {
    margin-right: 60px;
  }
  .sgl-ct-block h4 {
    font-size: 15px;
  }
  section.testi-sec .container {
    max-width: 93% !important;
  }
  .testi-slider-block {
    padding: 40px 20px;
  }
  .testi-slider-block::after {
    font-size: 90px;
    line-height: 90px;
  }
}

@media only screen and (max-width: 767.98px) {
  .about-img {
    margin: 0 auto;
    margin-top: 40px;
  }
  section {
    padding: 40px 0;
  }
  .slick-arrow {
    left: -35px;
  }
  .slick-next.slick-arrow {
    right: -35px;
  }
  .logo-block img {
    max-height: 45px;
  }
  .portfolio-block a {
    height: 210px !important;
  }
  .contact-info {
    flex-wrap: wrap;
  }
  .about-sec .inner {
    max-width: unset;
  }
  .testi-info h4 {
    font-size: 14px;
  }
  .testi-info p {
    font-size: 12px;
  }
  .testi-slider-block::after {
    right: 15px;
    font-size: 66px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 640.98px) {
  .about-sec h2 {
    font-size: 20px;
    margin: 0 0 10px;
  }
  .lang-select .dropdown-toggle {
    gap: 8px;
  }
  .hm-banner h1 {
    font-size: 14px;
    line-height: 18px;
    padding-top: 60px;
  }
  .hm-banner {
    min-height: 60vh;
  }
  .hm-banner::after {
    background-size: contain;
  }
  .gt-btn {
    font-size: 16px;
    line-height: 28px;
    padding: 10px 30px;
    bottom: 200px;
    right: -63px;
    min-width: unset;
  }
  section h3 {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .contact-sec {
    text-align: center;
  }
  .contact-info {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .about-sec {
    text-align: center;
  }
  .service-sec {
    text-align: center;
  }
  .portfolio-sec {
    text-align: center;
  }
  .sgl-ct-block {
    max-width: unset;
    width: calc(50% - 10px);
  }
  .sgl-ct-block h4 {
    font-size: 14px;
  }
  body {
    font-size: 14px;
    line-height: 24px;
  }
}
