/*-----------------------------------------------------------------------------------

    Theme Name: Ezze Technology Limited | Best Software Development Company in Bangladesh
    Author: Ezze Technology Limited.
    Support: founders@etl.com.bd
    Description: Ezze Technology Ltd. is a Bangladesh based software company. We offer specialized website development, mobile apps development, domain registration service, web hosting solution, dedicated server and more at cheapest prices backed by 24x7 support.
	Developer: Ab Naeem
	Designation: Sr. Frontend Developer
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

    01. THEME DEFAULT CSS
    02. HEADER CSS
	03. MEANMENU CSS
	04. SLIDER CSS 
	05. ABOUT CSS
	06. FUN FACT CSS
	07. SERVICES CSS
	08. PORTFOLIO CSS
	09. VISION & MISSION CSS
	10. PRESS CSS
	11. CONTACT CSS


**********************************************/
/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Space+Grotesk:wght@300..700&display=swa");
:root {
  /**
     @font family declaration
     */
  --etl-ff-body: 'Space Grotesk', sans-serif;
  --etl-ff-heading: 'Space Grotesk', sans-serif;
  --etl-ff-p: 'Space Grotesk', sans-serif;
  --etl-ff-poppins: 'Poppins', sans-serif;
  --etl-ff-fontAwesome: "Font Awesome 6 Pro";
  /**
     @color declaration
     */
  --etl-common-white: #fff;
  --etl-common-black: #212121;
  --etl-heading-primary: #212121;
  --etl-grey-1: #f7f7f7;
  --etl-grey-2: #f5f6f8;
  --etl-grey-3: #f4f4f4;
  --etl-text-body: #777;
  --etl-text-p: #777;
  --etl-theme-1: #178be9;
  --etl-border-1: #000;
  /**
     @font weight declaration
     */
  --etl-fw-normal: normal;
  --etl-fw-light: 300;
  --etl-fw-regular: 400;
  --etl-fw-medium: 500;
  --etl-fw-sbold: 600;
  --etl-fw-bold: 700;
  /**
     @font size declaration
     */
  --etl-fz-body: 16px;
  --etl-fz-p: 16px;
  --etl-fz-h1: 40px;
  --etl-fz-h2: 36px;
  --etl-fz-h3: 24px;
  --etl-fz-h4: 20px;
  --etl-fz-h5: 16px;
  --etl-fz-h6: 14px;
}

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

/*---------------------------------
    typography css start 
---------------------------------*/
body {
  font-family: var(--etl-ff-body);
  font-size: var(--etl-fz-body);
  font-weight: normal;
  color: var(--etl-text-body);
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--etl-ff-heading);
  color: var(--etl-heading-primary);
  margin-top: 0px;
  font-weight: var(--etl-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: var(--etl-fz-h1);
}

h2 {
  font-size: var(--etl-fz-h2);
}

h3 {
  font-size: var(--etl-fz-h3);
}

h4 {
  font-size: var(--etl-fz-h4);
}

h5 {
  font-size: var(--etl-fz-h5);
}

h6 {
  font-size: var(--etl-fz-h6);
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p {
  font-family: var(--etl-ff-p);
  font-size: var(--etl-fz-p);
  font-weight: var(--etl-fw-normal);
  color: var(--etl-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--etl-common-black);
  color: var(--etl-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--etl-common-black);
  color: var(--etl-common-white);
  text-shadow: none;
}

::selection {
  background: var(--etl-common-black);
  color: var(--etl-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--etl-common-black);
  font-size: var(--etl-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--etl-common-black);
  font-size: var(--etl-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

img {
  max-width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

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

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bb {
  border-bottom: 1px solid #e7e6e6;
}

.br {
  border-right: 1px solid #e7e6e6;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

.basic-pagination ul li {
  display: inline-block;
}
.basic-pagination ul li:not(:last-child) {
  margin-right: 10px;
}
.basic-pagination ul li a, .basic-pagination ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  border: 2px solid #f1f1f1;
  font-size: 18px;
  font-weight: 600;
}
.basic-pagination ul li a:hover, .basic-pagination ul li a.current, .basic-pagination ul li span:hover, .basic-pagination ul li span.current {
  background: var(--etl-theme-1);
  border-color: var(--etl-theme-1);
  color: var(--etl-common-white);
}

.nice-select::after {
  border: none;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  right: 0;
  content: "\f107";
  font-family: var(--etl-ff-fontAwesome);
  transform-origin: center;
  color: var(--etl-common-white);
  font-weight: 500;
  height: auto;
  width: auto;
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

/*---------------------------------------
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--etl-grey-1);
}

.grey-bg-2 {
  background: var(--etl-grey-2);
}

.white-bg {
  background: var(--etl-common-white);
}

.black-bg {
  background: var(--etl-common-black);
}

.theme-bg {
  background: var(--etl-theme-1);
}

.footer-bg {
  background-color: #111111;
}

/* pulse btn */
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--etl-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--etl-common-black);
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: var(--etl-common-black);
  color: var(--etl-common-black);
}
.pulse-btn i {
  padding-left: 2px;
}

/* hambur btn */
.hamurger-btn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
}
.hamurger-btn span {
  display: inline-block;
  width: 100%;
  background: var(--etl-common-black);
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  z-index: 1;
}
.hamurger-btn span:nth-child(1) {
  top: 0;
}
.hamurger-btn span:nth-child(2) {
  top: 10px;
}
.hamurger-btn span:nth-child(3) {
  top: 20px;
}

/* theme btn */
.etl-btn {
  display: inline-block;
  font-weight: var(--etl-fw-bold);
  color: var(--etl-common-white);
  background: var(--etl-theme-1);
  height: 60px;
  line-height: 62px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.etl-btn i {
  padding-left: 5px;
}
.etl-btn:hover {
  color: var(--etl-common-white);
  background-color: var(--etl-common-black);
}
.etl-btn:focus {
  color: var(--etl-common-white);
}

.etl-btn-white {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--etl-fw-bold);
  color: var(--etl-common-black);
  background: var(--etl-common-white);
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 0 38px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.etl-btn-white i {
  padding-left: 5px;
}
.etl-btn-white:hover {
  color: var(--etl-common-white);
  background-color: var(--etl-common-black);
}
.etl-btn-white:focus {
  color: var(--etl-common-white);
}

/* link btn style 1 */
.link-btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--etl-text-3);
  background: transparent;
  border: 1px solid var(--etl-border-2);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  padding-right: 25px;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  overflow: hidden;
}
.link-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn i:last-child {
  left: 0%;
  visibility: hidden;
  opacity: 0;
}
.link-btn:hover {
  color: var(--etl-common-white);
  background-color: var(--etl-theme-1);
  border-color: var(--etl-theme-1);
}
.link-btn:hover i {
  left: 100%;
  visibility: hidden;
  opacity: 0;
}
.link-btn:hover i:last-child {
  left: 50%;
  visibility: visible;
  opacity: 1;
}

/* link btn style 2 */
.link-btn-2 {
  position: relative;
  font-size: 16px;
  color: var(--etl-text-1);
  font-weight: 500;
  padding-right: 21px;
  display: inline-block;
}
.link-btn-2 i {
  font-size: 14px;
  position: absolute;
  top: 12px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: var(--etl-theme-1);
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.link-prev {
  padding-right: 0;
  padding-left: 21px;
}
.link-btn-2.link-prev i:first-child {
  left: 10%;
  right: auto;
}
.link-btn-2.link-prev i:last-child {
  left: 0;
  right: auto;
}
.link-btn-2.link-prev:hover i:first-child {
  left: 0%;
  right: auto;
}
.link-btn-2.link-prev:hover i:last-child {
  left: -10%;
  right: auto;
}

/*---------------------------------
    Section title css here 
---------------------------------*/
.etl-section-big-text {
  font-size: 160px;
  color: transparent;
  -webkit-text-stroke: 1px var(--etl-grey-3);
  position: absolute;
  top: -70px;
  left: -40px;
  z-index: -1;
}
@media (max-width: 575px) {
  .etl-section-big-text {
    font-size: 50px;
    top: -49px;
    left: -10px;
  }
}
.etl-section-subtitle {
  background: var(--etl-theme-1);
  color: var(--etl-common-white);
  font-weight: 700;
  padding: 3px 10px;
  text-transform: uppercase;
}
.etl-section-title {
  font-size: 48px;
  letter-spacing: -2.5px;
}
.etl-section-title span {
  color: var(--etl-theme-1);
}
@media (max-width: 575px) {
  .etl-section-title {
    font-size: 30px;
  }
}

.text-center .etl-section-big-text {
  z-index: -1;
  right: 0;
}

.etl-section-box-2 .etl-section-subtitle {
  color: var(--etl-theme-1);
  font-weight: 700;
  text-transform: uppercase;
  background: 0;
  padding: 0;
}

.right {
  position: relative;
}
.right::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -37px;
  width: 30px;
  height: 2px;
  background-color: var(--etl-theme-1);
}

/*---------------------------------
    counter css here 
---------------------------------*/
.counter-row {
  counter-reset: count;
}
.counter-row .num__count {
  position: absolute;
  right: 0;
  z-index: 1;
}
.counter-row .num__count::before {
  text-align: center;
  color: #2e87cf;
  font-size: 100px;
  border-radius: 50%;
  font-weight: 700;
  counter-increment: count;
  content: "0" counter(count);
  transition: all 500ms ease;
  display: inline-block;
}

/*---------------------------------------
    - breadcrumb style
-----------------------------------------*/
.etl-breadcrumb-title {
  font-size: 80px;
  font-weight: 700;
  color: var(--etl-common-white);
}
@media (max-width: 575px) {
  .etl-breadcrumb-title {
    font-size: 30px;
  }
}
.etl-breadcrumb-list {
  background-color: var(--etl-theme-1);
  display: inline-block;
  padding: 0px 10px;
}
.etl-breadcrumb-list span {
  font-size: 16px;
  color: var(--etl-common-white);
  font-weight: 500;
  text-transform: uppercase;
}
.etl-breadcrumb-list .dvdr i {
  font-size: 12px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes bounceleft {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}
@keyframes bounceleft {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
  display: none;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #loading-center-absolute {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #loading-center-absolute {
    width: 45%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  #loading-center-absolute {
    width: 50%;
  }
}
@media (max-width: 575px) {
  #loading-center-absolute {
    width: 60%;
  }
}
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.object {
  width: 20px;
  height: 20px;
  background-color: #5f3afc;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  margin-right: 20px;
  margin-bottom: 20px;
  position: absolute;
}

#object_one {
  -webkit-animation: object 2s linear infinite;
  animation: object 2s linear infinite;
}

#object_two {
  -webkit-animation: object 2s linear infinite -0.4s;
  animation: object 2s linear infinite -0.4s;
}

#object_three {
  -webkit-animation: object 2s linear infinite -0.8s;
  animation: object 2s linear infinite -0.8s;
}

#object_four {
  -webkit-animation: object 2s linear infinite -1.2s;
  animation: object 2s linear infinite -1.2s;
}

#object_five {
  -webkit-animation: object 2s linear infinite -1.6s;
  animation: object 2s linear infinite -1.6s;
}

@-webkit-keyframes object {
  0% {
    left: 100px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  90% {
    width: 40px;
    height: 15px;
  }
  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
@keyframes object {
  0% {
    left: 100px;
    top: 0;
  }
  80% {
    left: 0;
    top: 0;
  }
  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  90% {
    width: 40px;
    height: 15px;
  }
  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
.loading-icon .loading-logo {
  width: 64px;
  height: 64px;
  -webkit-animation: ghurche 4s linear infinite -1.2s;
  animation: ghurche 4s linear infinite -1.2s;
}

@media (max-width: 575px) {
  .loading-icon .loading-logo {
    margin-bottom: 10px;
  }
}
@-webkit-keyframes ghurche {
  0% {
    left: 100px;
    top: 0;
  }
  100% {
    left: 100px;
    top: 0;
  }
}
@keyframes ghurche {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.header-top-area {
  background: var(--etl-theme-1);
  padding: 5px 0;
}
.header-top-wrap ul li, .header-top-wrap ul li a {
  color: var(--etl-common-white);
  font-family: var(--etl-ff-poppins);
  font-size: 13px;
  text-align: center;
}
.header-area {
  padding: 10px 0px;
}
.header-area .logo img {
  width: 140px;
}
.header-sticky {
  left: 0;
  margin: auto;
  position: fixed !important;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  background: #fff !important;
  transition: 0.5s;
  z-index: 999 !important;
  -webkit-animation: 500ms running fadeInDown;
  animation: 500ms running fadeInUp;
  animation-name: slideInDown;
}

.etl-main-menu ul li {
  display: inline-block;
}
.etl-main-menu ul li:not(:last-child) {
  margin-right: 30px;
}
.etl-main-menu ul li a {
  font-weight: var(--etl-fw-bold);
  color: var(--etl-common-black);
  display: inline-block;
  padding: 21px 0px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.etl-main-menu ul li a.active {
  color: var(--etl-theme-1);
}
.etl-main-menu ul li:hover a {
  color: var(--etl-theme-1);
}

.etl-header-icon {
  height: 48px;
  width: 48px;
  border: 1px solid var(--etl-theme-1);
  display: inline-block;
  text-align: center;
  font-size: 20px;
  line-height: 48px;
  margin-left: 10px;
}
.etl-header-icon:hover {
  background-color: var(--etl-theme-1);
  color: #fff;
}

.etl-sidebar-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 320px;
  height: 100%;
  background: var(--etl-common-white) none repeat scroll 0 0;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
  padding: 30px;
  min-width: 300px;
  overflow-y: scroll;
}
@media (max-width: 575px) {
  .etl-sidebar-menu {
    width: 290px;
  }
}
.etl-sidebar-menu .sidebar-close {
  position: absolute;
  left: -45px;
  top: 28px;
  height: 40px;
  width: 40px;
  background: #fff;
  color: #000;
}
.etl-sidebar-menu.sidebar-opened {
  right: 0;
}

/*----------------------------------------*/
/*  03. MOBILE MENU CSS START HERE
/*----------------------------------------*/
/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  overflow: hidden;
  margin-bottom: 30px;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul li:first-child > a {
  border-top: 0;
}
.mean-container .mean-nav > ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--etl-common-black);
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.mean-container .mean-nav > ul li a:hover {
  color: var(--etl-theme-1);
}
.mean-container .mean-nav > ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--etl-common-black);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav > ul li a.mean-expand:hover {
  background: var(--etl-theme-1);
  color: var(--etl-common-white);
  border-color: var(--etl-theme-1);
}
.mean-container .mean-nav > ul li a.mean-expand.mean-clicked {
  color: var(--etl-common-black);
}
.mean-container .mean-nav > ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--etl-common-black);
}
.mean-container .mean-nav ul li > a .mean-expand i {
  display: inline-block;
}
/*----------------------------------------*/
/*  04. SLIDER CSS START
/*----------------------------------------*/
.etl-slider-overlay {
  position: relative;
  z-index: 1;
}
.etl-slider-overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/slider/blur.png);
  background-repeat: no-repeat;
}
.etl-slider-overlay .slider-btn {
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}
.etl-slider-height {
  min-height: 700px;
  background-position: right center;
}
@media (max-width: 575px) {
  .etl-slider-height {
    background-position: center;
  }
}
@media (max-width: 575px) {
  .etl-slider-height {
    min-height: 600px;
  }
}
.etl-slider-subtitle {
  background-color: var(--etl-theme-1);
  color: var(--etl-common-white);
  text-transform: uppercase;
  font-size: 14px;
  font-family: var(--etl-ff-poppins);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.etl-slider-title {
  font-size: 65px;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -2.5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .etl-slider-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .etl-slider-title {
    font-size: 40px;
  }
}
.etl-slider-content p {
  color: #696868;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 50px;
}
.etl-slider-btn-box {
  line-height: 1;
}
@media (max-width: 575px) {
  .etl-slider-btn-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .etl-slider-service {
    margin-bottom: 10px;
  }
}
.etl-slider-service h4 {
  font-size: 48px;
  color: var(--etl-theme-1);
  margin-right: 12px;
  margin-bottom: 0;
}
.etl-slider-service span {
  font-size: 14px;
  line-height: 18px;
  color: var(--etl-heading-primary);
}

.slick-active .etl-slider-subtitle {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.slick-active .etl-slider-title {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.slick-active .etl-slider-content p {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}
.slick-active .etl-slider-btn-box {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.slick-active .etl-slider-subtitle, .slick-active .etl-slider-title, .slick-active .etl-slider-content p, .slick-active .etl-slider-btn-box {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.etl-slider-area:hover .slider-arrow-style button {
  opacity: 1;
  visibility: visible;
}

.slider-arrow-style button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--etl-common-white);
  height: 60px;
  width: 60px;
  line-height: 64px;
  border-radius: 50%;
  border: 2px solid var(--etl-theme-1);
  color: var(--etl-heading-primary);
  left: 60px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.slider-arrow-style button i {
  font-size: 25px;
}
.slider-arrow-style button:hover {
  background-color: var(--etl-theme-1);
  color: var(--etl-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .slider-arrow-style button {
    height: 40px;
    width: 40px;
    left: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-arrow-style button {
    top: auto;
    bottom: 20px;
  }
}
.slider-arrow-style button.slick-next {
  right: 60px;
  left: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .slider-arrow-style button.slick-next {
    left: auto;
    right: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-arrow-style button.slick-next {
    left: 128px;
    right: auto;
  }
}

/*----------------------------------------*/
/*  05. ABOUT CSS START
/*----------------------------------------*/
.etl-about-left .left-content-title {
  background: var(--etl-theme-1);
  display: inline-block;
  text-align: center;
  padding: 15px 30px;
  top: 3px;
  left: 5px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .etl-about-left .left-content-title {
    padding: 15px 20px;
  }
}
@media (max-width: 575px) {
  .etl-about-left .left-content-title {
    padding: 15px 5px;
  }
}
.etl-about-left .left-content-title::before {
  position: absolute;
  content: "";
  width: 170px;
  height: 170px;
  left: -2px;
  top: -48px;
  background: #1164ed;
  border-radius: 50%;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .etl-about-left .left-content-title::before {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 575px) {
  .etl-about-left .left-content-title::before {
    width: 130px;
    height: 130px;
  }
}
.etl-about-left .left-content-title h4, .etl-about-left .left-content-title span {
  font-size: 56px;
  color: var(--etl-common-white);
  font-weight: var(--etl-fw-bold);
  padding: 0 0 20px 0;
  margin: 10px 0px 15px;
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .etl-about-left .left-content-title h4, .etl-about-left .left-content-title span {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .etl-about-left .left-content-title h4, .etl-about-left .left-content-title span {
    font-size: 30px;
  }
}
.etl-about-left .left-content-title p {
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding-top: 10px;
}
@media (max-width: 575px) {
  .etl-about-left .left-content-title p {
    margin-bottom: 0px;
    padding-top: 0px;
  }
}
.etl-about-left .about-shape {
  right: 76px;
  bottom: 27px;
  animation: bounceleft 4s linear infinite;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .etl-about-left .about-shape {
    right: 0;
  }
}
@media (max-width: 575px) {
  .etl-about-left .about-shape img {
    width: 115px;
  }
}
.etl-about-content ul li {
  font-size: 18px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--etl-heading-primary);
  font-weight: var(--etl-fw-medium);
}
.etl-about-content ul li:not(:last-child) {
  margin-bottom: 8px;
}
.etl-about-content ul li svg {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
  stroke: rgb(24, 139, 233);
  fill: rgba(24, 139, 233, 0.1);
}

/*----------------------------------------*/
/*  06. FUN FACT CSS START
/*----------------------------------------*/
.etl-fact {
  display: flex;
  align-items: center;
  position: relative;
}
.etl-fact .fact-number {
  display: inline-block;
  text-align: center;
  width: 130px;
}
.etl-fact .fact-number h2 {
  font-size: 70px;
  color: transparent;
  -webkit-text-stroke: 1px var(--etl-common-white);
  line-height: 1;
  margin: 0;
}
.etl-fact .fact-number span {
  background-color: var(--etl-common-white);
  height: 40px;
  width: 40px;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  color: var(--etl-heading-primary);
  font-size: 20px;
  border-radius: 50%;
  line-height: 38px;
  transform: translateY(-26px);
}
.etl-fact .fact-content {
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
.etl-fact .fact-content h4 {
  color: var(--etl-common-white);
  font-size: 21px;
}
@media (max-width: 575px) {
  .etl-fact .fact-content h4 {
    font-size: 25px;
  }
}

/*----------------------------------------*/
/*  07. SERVICES CSS START
/*----------------------------------------*/
.etl-services {
  margin-bottom: 30px;
}
.etl-services-thumb::before {
  background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 90px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.etl-services-thumb:hover img {
  transform: scale(1.1);
}
.etl-services-content {
  padding: 40px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  background: var(--etl-common-white);
  z-index: 2;
  height: 223px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .etl-services-content {
    padding: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .etl-services-content {
    height: auto;
  }
}
.etl-services-content i {
  margin-top: -30px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: var(--etl-theme-1);
  font-size: 75px;
}
.etl-services-content p {
  font-size: 14px;
  margin: 0;
}
.etl-services-title {
  font-size: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .etl-services-title {
    font-size: 20px;
  }
}
.etl-services-btn {
  transform: translateY(-100%);
  transition: 0.3s;
  z-index: 1;
  position: relative;
}
.etl-services:hover .etl-services-btn {
  transform: translateY(0);
}

/*----------------------------------------*/
/*  08. PORTFOLIO CSS START
/*----------------------------------------*/
.etl-portfolio-text {
  -webkit-text-stroke: 1px #ededed;
}

.etl-port-item::before {
  position: absolute;
  content: "";
  background-color: var(--etl-common-black);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.etl-port-item:hover .etl-case-img {
  transition: 0.3s;
}
.etl-port-item:hover .etl-case-img img {
  transform: scale(1.1) rotate(-2deg);
}
.etl-port-item .etl-port-content {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  padding: 0 40px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}
.etl-port-item .etl-port-content .port-subtitle {
  font-size: 14px;
  font-weight: var(--etl-fw-regular);
  color: var(--etl-common-white);
}
.etl-port-item .etl-port-content .port-title {
  font-weight: var(--etl-fw-bold);
  font-size: 20px;
  color: var(--etl-common-white);
}
.etl-port-item:hover .etl-port-content {
  top: 40px;
  opacity: 1;
  visibility: visible;
}
.etl-port-item:hover .etl-port-icon {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}
.etl-port-item:hover::before {
  opacity: 0.6;
  visibility: visible;
}
.etl-port-item .etl-port-icon {
  position: absolute;
  bottom: 20px;
  left: 40px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
.etl-port-item .etl-port-icon a {
  height: 50px;
  width: 50px;
  background-color: var(--etl-common-white);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  display: inline-block;
}
.etl-port-item .etl-port-icon a:hover {
  background: var(--etl-theme-1);
  color: var(--etl-common-white);
}

/*----------------------------------------*/
/*  09. VISION & MISSION CSS START
/*----------------------------------------*/
.etl-vision-mission-wrap {
  flex-wrap: wrap;
}
.etl-vision-mission-wrap .values {
  margin-bottom: 20px;
}
.etl-vision-mission-wrap .values ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.etl-vision-mission-wrap .values ul li {
  color: var(--etl-heading-primary);
}
.etl-vision-mission-wrap .values ul li svg {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
  stroke: rgb(24, 139, 233);
  fill: rgba(24, 139, 233, 0.1);
}
.etl-vision-mission-wrap .values, .etl-vision-mission-wrap .vision, .etl-vision-mission-wrap .mission {
  width: 432px;
  text-align: center;
  padding: 0px 40px;
}
.etl-vision-mission-wrap .values h3, .etl-vision-mission-wrap .vision h3, .etl-vision-mission-wrap .mission h3 {
  font-size: 30px;
}
.etl-vision-mission-wrap .values h3 span, .etl-vision-mission-wrap .vision h3 span, .etl-vision-mission-wrap .mission h3 span {
  color: var(--etl-theme-1);
}
.etl-vision-mission-wrap .values p, .etl-vision-mission-wrap .vision p, .etl-vision-mission-wrap .mission p {
  color: var(--etl-heading-primary);
}

/*----------------------------------------*/
/*  10. PRESS CSS START
/*----------------------------------------*/
.etl-press-kit {
  text-align: center;
  padding: 20px;
  box-shadow: 0px 0px 40px rgba(204, 204, 204, 0.31);
  border-radius: 10px;
}
.etl-press-kit-img img {
  width: 200px;
}
.etl-press-kit-content a {
  text-transform: uppercase;
  background-color: var(--etl-heading-primary);
  color: var(--etl-common-white);
  padding: 3px 15px;
  letter-spacing: 1.1px;
  font-size: 14px;
  border-radius: 5px;
  display: inline-block;
}
.etl-press-kit-content a:hover {
  background-color: var(--etl-theme-1);
}
.etl-press-kit-content a:not(:last-child) {
  margin-right: 10px;
}

/*----------------------------------------*/
/*  11. CONTACT CSS START HERE
/*----------------------------------------*/
.contact-bg {
  padding: 50px;
}
@media (max-width: 575px) {
  .contact-bg {
    padding: 20px;
  }
}

.contact-us {
  padding-left: 80px;
  padding-top: 25px;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-us {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-us {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-us {
    padding-left: 0px;
  }
}
@media (max-width: 575px) {
  .contact-us {
    padding-left: 0px;
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .contact-map iframe {
    height: 400px;
  }
}

.contact__input {
  position: relative;
  margin-bottom: 15px;
}
.contact__input i {
  font-size: 17px;
  color: var(--tp-theme-1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 23px;
}
.contact__input input {
  padding: 25px 55px;
  border: 0;
  height: 60px;
  background-color: rgb(255, 255, 255);
  color: #999999;
}
.contact__input input::placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.contact__input textarea {
  padding: 22px 55px;
  border: 0;
  background-color: rgb(255, 255, 255);
  color: #999999;
  outline: none;
  resize: none;
  height: 150px;
}
.contact__input textarea::placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.contact__input .pen {
  position: absolute;
  top: 36px;
  left: 23px;
}

.contact-info-item {
  position: relative;
}
.contact-info-item::after {
  position: absolute;
  width: 1px;
  background-color: #dcdcdc;
  height: 150px;
  content: "";
  top: 0;
  right: -15px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 575px) {
  .contact-info-item::after {
    display: none;
  }
}
.contact-info-item i {
  height: 120px;
  width: 120px;
  background-color: var(--tp-theme-1);
  border-radius: 50%;
  text-align: center;
  line-height: 120px;
  color: var(--tp-common-white);
  font-size: 50px;
  margin-bottom: 40px;
}
.contact-info-item h5 {
  font-weight: 700;
  color: var(--tp-common-black);
  font-size: 24px;
  margin-bottom: 10px;
}
.contact-info-item a {
  color: #777777;
  font-weight: 400;
  font-size: 16px;
  transition: 0.3s;
}
.contact-info-item a:hover {
  color: var(--tp-theme-1);
}

.contact-map iframe {
  height: 570px;
  width: 100%;
}

.contact-last-child .col-xl-3:last-child .contact-info-item::after {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-last-child .col-xl-3:nth-child(2) .contact-info-item::after {
    display: none;
  }
}

.footer-widget-title {
  color: var(--etl-common-white);
  font-size: 16px;
  margin-bottom: 30px;
}
.footer-widget p {
  color: #aeaeae;
}
.footer-widget .footer-social a {
  margin-right: 20px;
  font-size: 20px;
  height: 50px;
  width: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.3s;
}
.footer-widget .footer-social a:hover {
  background-color: var(--etl-theme-1);
  color: var(--etl-common-white);
}
.footer-widget ul li {
  margin-bottom: 8px;
  color: #aeaeae;
  list-style: none;
  transition: 0.3s;
}
.footer-widget ul li:hover {
  color: var(--etl-theme-1);
}

.copyright-text p {
  color: var(--etl-common-white);
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
