/*-----------------------------------------------------------------------------------
    CSS INDEX
    ===================

    01. Theme default CSS
	02. variables
    03. mixins
    04. common
    05. overlay
    06. header
    07. slider
    08. service
    09. breadcrumb
    10. mobile-menu
    11. about
    12. portfolio
    13. chose-us
    14. contact
    15. testimonial
    16. blog
    17. project
    18. team
    19. search
    20. price
    21. faq
    22. shop
    23. footer

    -----------------------------------------------------------------------------------*/
    /*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900&display=swap");
/* 1. Theme default css */
body {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  color: #616161;
}
.img-thumbnail img {max-width: 100%}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button {
  -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: medium none;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

.uppercase {
}

.capitalize {
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: #232323;
  line-height: 1.1;
  margin-top: 0px;
  font-style: normal;
  font-weight: 800;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Roboto", sans-serif;
  color: #616161;
  margin-bottom: 0;
}

hr {
  border-bottom: 1px solid #ebebeb;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: #1f242c;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #222222;
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background: #222222;
  color: white;
  text-shadow: none;
}

::selection {
  background: #222222;
  color: white;
  text-shadow: none;
}

/*--
    - Input Placeholder
    -----------------------------------------*/
    *::-moz-placeholder {
      color: #222222;
      font-size: 14px;
      opacity: 1;
    }

    *::placeholder {
      color: #222222;
      font-size: 14px;
      opacity: 1;
    }

/*--
    - position Classes
    -----------------------------------------*/
    .pos-rel {
      position: relative;
    }

    .pos-abl {
      position: absolute;
    }

/*--
    - Common Classes
    -----------------------------------------*/
    .fix {
      overflow: hidden;
    }

    .clear {
      clear: both;
    }

/*--
    - Background color
    -----------------------------------------*/
    .grey-bg {
      background: #f8f8f8;
    }

    .grey-bg2 {
      background: whitesmoke;
    }

    .white-bg {
      background: white;
    }

    .black-bg {
      background: #222222;
    }

    .heding-bg {
      background: #232323;
    }

    .black-soft-bg {
      background: #1f242c;
    }

    .black-soft-bg2 {
      background: #2b3039;
    }

    .theme-bg {
      background: rgb(82, 182, 71);
    }

    .theme-bg2 {
      background: #ff7029;
    }

/*--
    - color
    -----------------------------------------*/
    .white-color {
      color: white;
    }

    .black-color {
      color: #222222;
    }

    .theme-color {
      color: rgb(82, 182, 71);
    }

/*--
	-theme-btn
  ----------------------------------------*/
  .theme_btn {
    color: white;
    background: #ff7029;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    font-family: "Roboto", sans-serif;
    padding: 22px 40px 22px 40px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .theme_btn i {
    font-size: 18px;
    line-height: 1;
    margin-left: 5px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .theme_btn:hover {
    color: white;
    background: rgb(82, 182, 71);
  }
  .theme_btn:hover i {
    transform: translateX(10px);
  }

  .theme_btn2 {
    background: rgb(82, 182, 71);
  }
  .theme_btn2:hover {
    color: white;
    background: #ff7029;
  }
  .theme_btn2:hover i {
    transform: translateX(10px);
  }

  .line_btn {
    position: relative;
    margin-top: 0;
  }
  .line_btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 6px;
    top: 6px;
    border: 2px solid rgb(82, 182, 71);
    z-index: -1;
    opacity: 0;
    -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;
  }
  .line_btn:hover {
    background-color: rgb(82, 182, 71);
    margin-top: -3px;
  }
  .line_btn:hover::before {
    opacity: 1;
  }

/*--
section-title
----------------------------------------*/
.section-title h6 {
  color: #ff7029;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
  border-bottom: 2px solid #ff7029;
  display: inline-block;
  padding-bottom: 5px;
}
.section-title h6.white-text {
  color: #fff;
  border-color: #fff;
}
.section-title h2 {
  color: #232323;
  font-size: 35px;
  height: 70px;
  line-height: 1.3;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 25px;
  }
}
@media (max-width: 420px) {
  .section-title h2 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title h2 {
    font-size: 30px;
  }
}

.white-title h2 {
  color: white;
}

.semi-title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.popup-video {
  border-radius: 50%;
  background-color: #ff7029;
  color: white;
  font-size: 14px;
  line-height: 60px;
  width: 60px;
  height: 60px;
  text-align: center;
  display: inline-block;
  animation: pulseBig infinite 4s linear;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.popup-video:hover {
  color: white;
}

/*--
    - Margin & Padding
    -----------------------------------------*/
    /*-- Margin Top --*/
    .mt-5 {
      margin-top: 5px;
    }

    .mt-10 {
      margin-top: 10px;
    }

    .mt-15 {
      margin-top: 15px;
    }

    .mt-20 {
      margin-top: 20px;
    }

    .mt-25 {
      margin-top: 25px;
    }

    .mt-30 {
      margin-top: 30px;
    }

    .mt-35 {
      margin-top: 35px;
    }

    .mt-40 {
      margin-top: 40px;
    }

    .mt-45 {
      margin-top: 45px;
    }

    .mt-50 {
      margin-top: 50px;
    }

    .mt-55 {
      margin-top: 55px;
    }

    .mt-60 {
      margin-top: 60px;
    }

    .mt-65 {
      margin-top: 65px;
    }

    .mt-70 {
      margin-top: 70px;
    }

    .mt-75 {
      margin-top: 75px;
    }

    .mt-80 {
      margin-top: 80px;
    }

    .mt-85 {
      margin-top: 85px;
    }

    .mt-90 {
      margin-top: 90px;
    }

    .mt-95 {
      margin-top: 95px;
    }

    .mt-100 {
      margin-top: 100px;
    }

    .mt-105 {
      margin-top: 105px;
    }

    .mt-110 {
      margin-top: 110px;
    }

    .mt-115 {
      margin-top: 115px;
    }

    .mt-120 {
      margin-top: 120px;
    }

    .mt-125 {
      margin-top: 125px;
    }

    .mt-130 {
      margin-top: 130px;
    }

    .mt-135 {
      margin-top: 135px;
    }

    .mt-140 {
      margin-top: 140px;
    }

    .mt-145 {
      margin-top: 145px;
    }

    .mt-150 {
      margin-top: 150px;
    }

    .mt-155 {
      margin-top: 155px;
    }

    .mt-160 {
      margin-top: 160px;
    }

    .mt-165 {
      margin-top: 165px;
    }

    .mt-170 {
      margin-top: 170px;
    }

    .mt-175 {
      margin-top: 175px;
    }

    .mt-180 {
      margin-top: 180px;
    }

    .mt-185 {
      margin-top: 185px;
    }

    .mt-190 {
      margin-top: 190px;
    }

    .mt-195 {
      margin-top: 195px;
    }

    .mt-200 {
      margin-top: 200px;
    }

    /*-- Margin Bottom --*/
    .mb-5 {
      margin-bottom: 5px;
    }

    .mb-10 {
      margin-bottom: 10px;
    }

    .mb-15 {
      margin-bottom: 15px;
    }

    .mb-20 {
      margin-bottom: 20px;
    }

    .mb-25 {
      margin-bottom: 25px;
    }

    .mb-30 {
      margin-bottom: 30px;
    }

    .mb-35 {
      margin-bottom: 35px;
    }

    .mb-40 {
      margin-bottom: 40px;
    }

    .mb-45 {
      margin-bottom: 45px;
    }

    .mb-50 {
      margin-bottom: 50px;
    }

    .mb-55 {
      margin-bottom: 55px;
    }

    .mb-60 {
      margin-bottom: 60px;
    }

    .mb-65 {
      margin-bottom: 65px;
    }

    .mb-70 {
      margin-bottom: 70px;
    }

    .mb-75 {
      margin-bottom: 75px;
    }

    .mb-80 {
      margin-bottom: 80px;
    }

    .mb-85 {
      margin-bottom: 85px;
    }

    .mb-90 {
      margin-bottom: 90px;
    }

    .mb-95 {
      margin-bottom: 95px;
    }

    .mb-100 {
      margin-bottom: 100px;
    }

    .mb-105 {
      margin-bottom: 105px;
    }

    .mb-110 {
      margin-bottom: 110px;
    }

    .mb-115 {
      margin-bottom: 115px;
    }

    .mb-120 {
      margin-bottom: 120px;
    }

    .mb-125 {
      margin-bottom: 125px;
    }

    .mb-130 {
      margin-bottom: 130px;
    }

    .mb-135 {
      margin-bottom: 135px;
    }

    .mb-140 {
      margin-bottom: 140px;
    }

    .mb-145 {
      margin-bottom: 145px;
    }

    .mb-150 {
      margin-bottom: 150px;
    }

    .mb-155 {
      margin-bottom: 155px;
    }

    .mb-160 {
      margin-bottom: 160px;
    }

    .mb-165 {
      margin-bottom: 165px;
    }

    .mb-170 {
      margin-bottom: 170px;
    }

    .mb-175 {
      margin-bottom: 175px;
    }

    .mb-180 {
      margin-bottom: 180px;
    }

    .mb-185 {
      margin-bottom: 185px;
    }

    .mb-190 {
      margin-bottom: 190px;
    }

    .mb-195 {
      margin-bottom: 195px;
    }

    .mb-200 {
      margin-bottom: 200px;
    }

    /*-- Margin Left --*/
    .ml-5 {
      margin-left: 5px;
    }

    .ml-10 {
      margin-left: 10px;
    }

    .ml-15 {
      margin-left: 15px;
    }

    .ml-20 {
      margin-left: 20px;
    }

    .ml-25 {
      margin-left: 25px;
    }

    .ml-30 {
      margin-left: 30px;
    }

    .ml-35 {
      margin-left: 35px;
    }

    .ml-40 {
      margin-left: 40px;
    }

    .ml-45 {
      margin-left: 45px;
    }

    .ml-50 {
      margin-left: 50px;
    }

    .ml-55 {
      margin-left: 55px;
    }

    .ml-60 {
      margin-left: 60px;
    }

    .ml-65 {
      margin-left: 65px;
    }

    .ml-70 {
      margin-left: 70px;
    }

    .ml-75 {
      margin-left: 75px;
    }

    .ml-80 {
      margin-left: 80px;
    }

    .ml-85 {
      margin-left: 85px;
    }

    .ml-90 {
      margin-left: 90px;
    }

    .ml-95 {
      margin-left: 95px;
    }

    .ml-100 {
      margin-left: 100px;
    }

    .ml-105 {
      margin-left: 105px;
    }

    .ml-110 {
      margin-left: 110px;
    }

    .ml-115 {
      margin-left: 115px;
    }

    .ml-120 {
      margin-left: 120px;
    }

    .ml-125 {
      margin-left: 125px;
    }

    .ml-130 {
      margin-left: 130px;
    }

    .ml-135 {
      margin-left: 135px;
    }

    .ml-140 {
      margin-left: 140px;
    }

    .ml-145 {
      margin-left: 145px;
    }

    .ml-150 {
      margin-left: 150px;
    }

    .ml-155 {
      margin-left: 155px;
    }

    .ml-160 {
      margin-left: 160px;
    }

    .ml-165 {
      margin-left: 165px;
    }

    .ml-170 {
      margin-left: 170px;
    }

    .ml-175 {
      margin-left: 175px;
    }

    .ml-180 {
      margin-left: 180px;
    }

    .ml-185 {
      margin-left: 185px;
    }

    .ml-190 {
      margin-left: 190px;
    }

    .ml-195 {
      margin-left: 195px;
    }

    .ml-200 {
      margin-left: 200px;
    }

    /*-- Margin Right --*/
    .mr-5 {
      margin-right: 5px;
    }

    .mr-10 {
      margin-right: 10px;
    }

    .mr-15 {
      margin-right: 15px;
    }

    .mr-20 {
      margin-right: 20px;
    }

    .mr-25 {
      margin-right: 25px;
    }

    .mr-30 {
      margin-right: 30px;
    }

    .mr-35 {
      margin-right: 35px;
    }

    .mr-40 {
      margin-right: 40px;
    }

    .mr-45 {
      margin-right: 45px;
    }

    .mr-50 {
      margin-right: 50px;
    }

    .mr-55 {
      margin-right: 55px;
    }

    .mr-60 {
      margin-right: 60px;
    }

    .mr-65 {
      margin-right: 65px;
    }

    .mr-70 {
      margin-right: 70px;
    }

    .mr-75 {
      margin-right: 75px;
    }

    .mr-80 {
      margin-right: 80px;
    }

    .mr-85 {
      margin-right: 85px;
    }

    .mr-90 {
      margin-right: 90px;
    }

    .mr-95 {
      margin-right: 95px;
    }

    .mr-100 {
      margin-right: 100px;
    }

    .mr-105 {
      margin-right: 105px;
    }

    .mr-110 {
      margin-right: 110px;
    }

    .mr-115 {
      margin-right: 115px;
    }

    .mr-120 {
      margin-right: 120px;
    }

    .mr-125 {
      margin-right: 125px;
    }

    .mr-130 {
      margin-right: 130px;
    }

    .mr-135 {
      margin-right: 135px;
    }

    .mr-140 {
      margin-right: 140px;
    }

    .mr-145 {
      margin-right: 145px;
    }

    .mr-150 {
      margin-right: 150px;
    }

    .mr-155 {
      margin-right: 155px;
    }

    .mr-160 {
      margin-right: 160px;
    }

    .mr-165 {
      margin-right: 165px;
    }

    .mr-170 {
      margin-right: 170px;
    }

    .mr-175 {
      margin-right: 175px;
    }

    .mr-180 {
      margin-right: 180px;
    }

    .mr-185 {
      margin-right: 185px;
    }

    .mr-190 {
      margin-right: 190px;
    }

    .mr-195 {
      margin-right: 195px;
    }

    .mr-200 {
      margin-right: 200px;
    }

    /*-- Padding Top --*/
    .pt-5 {
      padding-top: 5px;
    }

    .pt-10 {
      padding-top: 10px;
    }

    .pt-15 {
      padding-top: 15px;
    }

    .pt-20 {
      padding-top: 20px;
    }

    .pt-25 {
      padding-top: 25px;
    }

    .pt-30 {
      padding-top: 30px;
    }

    .pt-35 {
      padding-top: 35px;
    }

    .pt-40 {
      padding-top: 40px;
    }

    .pt-45 {
      padding-top: 45px;
    }

    .pt-50 {
      padding-top: 50px;
    }

    .pt-55 {
      padding-top: 55px;
    }

    .pt-60 {
      padding-top: 60px;
    }

    .pt-65 {
      padding-top: 65px;
    }

    .pt-70 {
      padding-top: 70px;
    }

    .pt-75 {
      padding-top: 75px;
    }

    .pt-80 {
      padding-top: 80px;
    }

    .pt-85 {
      padding-top: 85px;
    }

    .pt-90 {
      padding-top: 90px;
    }

    .pt-95 {
      padding-top: 95px;
    }

    .pt-100 {
      padding-top: 100px;
    }

    .pt-105 {
      padding-top: 105px;
    }

    .pt-110 {
      padding-top: 110px;
    }

    .pt-115 {
      padding-top: 115px;
    }

    .pt-120 {
      padding-top: 120px;
    }

    .pt-125 {
      padding-top: 125px;
    }

    .pt-130 {
      padding-top: 130px;
    }

    .pt-135 {
      padding-top: 135px;
    }

    .pt-140 {
      padding-top: 140px;
    }

    .pt-145 {
      padding-top: 145px;
    }

    .pt-150 {
      padding-top: 150px;
    }

    .pt-155 {
      padding-top: 155px;
    }

    .pt-160 {
      padding-top: 160px;
    }

    .pt-165 {
      padding-top: 165px;
    }

    .pt-170 {
      padding-top: 170px;
    }

    .pt-175 {
      padding-top: 175px;
    }

    .pt-180 {
      padding-top: 180px;
    }

    .pt-185 {
      padding-top: 185px;
    }

    .pt-190 {
      padding-top: 190px;
    }

    .pt-195 {
      padding-top: 195px;
    }

    .pt-200 {
      padding-top: 200px;
    }

    /*-- Padding Bottom --*/
    .pb-5 {
      padding-bottom: 5px;
    }

    .pb-10 {
      padding-bottom: 10px;
    }

    .pb-15 {
      padding-bottom: 15px;
    }

    .pb-20 {
      padding-bottom: 20px;
    }

    .pb-25 {
      padding-bottom: 25px;
    }

    .pb-30 {
      padding-bottom: 30px;
    }

    .pb-35 {
      padding-bottom: 35px;
    }

    .pb-40 {
      padding-bottom: 40px;
    }

    .pb-45 {
      padding-bottom: 45px;
    }

    .pb-50 {
      padding-bottom: 50px;
    }

    .pb-55 {
      padding-bottom: 55px;
    }

    .pb-60 {
      padding-bottom: 60px;
    }

    .pb-65 {
      padding-bottom: 65px;
    }

    .pb-70 {
      padding-bottom: 70px;
    }

    .pb-75 {
      padding-bottom: 75px;
    }

    .pb-80 {
      padding-bottom: 80px;
    }

    .pb-85 {
      padding-bottom: 85px;
    }

    .pb-90 {
      padding-bottom: 90px;
    }

    .pb-95 {
      padding-bottom: 95px;
    }

    .pb-100 {
      padding-bottom: 100px;
    }

    .pb-105 {
      padding-bottom: 105px;
    }

    .pb-110 {
      padding-bottom: 110px;
    }

    .pb-115 {
      padding-bottom: 115px;
    }

    .pb-120 {
      padding-bottom: 120px;
    }

    .pb-125 {
      padding-bottom: 125px;
    }

    .pb-130 {
      padding-bottom: 130px;
    }

    .pb-135 {
      padding-bottom: 135px;
    }

    .pb-140 {
      padding-bottom: 140px;
    }

    .pb-145 {
      padding-bottom: 145px;
    }

    .pb-150 {
      padding-bottom: 150px;
    }

    .pb-155 {
      padding-bottom: 155px;
    }

    .pb-160 {
      padding-bottom: 160px;
    }

    .pb-165 {
      padding-bottom: 165px;
    }

    .pb-170 {
      padding-bottom: 170px;
    }

    .pb-175 {
      padding-bottom: 175px;
    }

    .pb-180 {
      padding-bottom: 180px;
    }

    .pb-185 {
      padding-bottom: 185px;
    }

    .pb-190 {
      padding-bottom: 190px;
    }

    .pb-195 {
      padding-bottom: 195px;
    }

    .pb-200 {
      padding-bottom: 200px;
    }

    /*-- Padding Left --*/
    .pl-5 {
      padding-left: 5px;
    }

    .pl-10 {
      padding-left: 10px;
    }

    .pl-15 {
      padding-left: 15px;
    }

    .pl-20 {
      padding-left: 20px;
    }

    .pl-25 {
      padding-left: 25px;
    }

    .pl-30 {
      padding-left: 30px;
    }

    .pl-35 {
      padding-left: 35px;
    }

    .pl-40 {
      padding-left: 40px;
    }

    .pl-45 {
      padding-left: 45px;
    }

    .pl-50 {
      padding-left: 50px;
    }

    .pl-55 {
      padding-left: 55px;
    }

    .pl-60 {
      padding-left: 60px;
    }

    .pl-65 {
      padding-left: 65px;
    }

    .pl-70 {
      padding-left: 70px;
    }

    .pl-75 {
      padding-left: 75px;
    }

    .pl-80 {
      padding-left: 80px;
    }

    .pl-85 {
      padding-left: 85px;
    }

    .pl-90 {
      padding-left: 90px;
    }

    .pl-95 {
      padding-left: 95px;
    }

    .pl-100 {
      padding-left: 100px;
    }

    .pl-105 {
      padding-left: 105px;
    }

    .pl-110 {
      padding-left: 110px;
    }

    .pl-115 {
      padding-left: 115px;
    }

    .pl-120 {
      padding-left: 120px;
    }

    .pl-125 {
      padding-left: 125px;
    }

    .pl-130 {
      padding-left: 130px;
    }

    .pl-135 {
      padding-left: 135px;
    }

    .pl-140 {
      padding-left: 140px;
    }

    .pl-145 {
      padding-left: 145px;
    }

    .pl-150 {
      padding-left: 150px;
    }

    .pl-155 {
      padding-left: 155px;
    }

    .pl-160 {
      padding-left: 160px;
    }

    .pl-165 {
      padding-left: 165px;
    }

    .pl-170 {
      padding-left: 170px;
    }

    .pl-175 {
      padding-left: 175px;
    }

    .pl-180 {
      padding-left: 180px;
    }

    .pl-185 {
      padding-left: 185px;
    }

    .pl-190 {
      padding-left: 190px;
    }

    .pl-195 {
      padding-left: 195px;
    }

    .pl-200 {
      padding-left: 200px;
    }

    /*-- Padding Right --*/
    .pr-5 {
      padding-right: 5px;
    }

    .pr-10 {
      padding-right: 10px;
    }

    .pr-15 {
      padding-right: 15px;
    }

    .pr-20 {
      padding-right: 20px;
    }

    .pr-25 {
      padding-right: 25px;
    }

    .pr-30 {
      padding-right: 30px;
    }

    .pr-35 {
      padding-right: 35px;
    }

    .pr-40 {
      padding-right: 40px;
    }

    .pr-45 {
      padding-right: 45px;
    }

    .pr-50 {
      padding-right: 50px;
    }

    .pr-55 {
      padding-right: 55px;
    }

    .pr-60 {
      padding-right: 60px;
    }

    .pr-65 {
      padding-right: 65px;
    }

    .pr-70 {
      padding-right: 70px;
    }

    .pr-75 {
      padding-right: 75px;
    }

    .pr-80 {
      padding-right: 80px;
    }

    .pr-85 {
      padding-right: 85px;
    }

    .pr-90 {
      padding-right: 90px;
    }

    .pr-95 {
      padding-right: 95px;
    }

    .pr-100 {
      padding-right: 100px;
    }

    .pr-105 {
      padding-right: 105px;
    }

    .pr-110 {
      padding-right: 110px;
    }

    .pr-115 {
      padding-right: 115px;
    }

    .pr-120 {
      padding-right: 120px;
    }

    .pr-125 {
      padding-right: 125px;
    }

    .pr-130 {
      padding-right: 130px;
    }

    .pr-135 {
      padding-right: 135px;
    }

    .pr-140 {
      padding-right: 140px;
    }

    .pr-145 {
      padding-right: 145px;
    }

    .pr-150 {
      padding-right: 150px;
    }

    .pr-155 {
      padding-right: 155px;
    }

    .pr-160 {
      padding-right: 160px;
    }

    .pr-165 {
      padding-right: 165px;
    }

    .pr-170 {
      padding-right: 170px;
    }

    .pr-175 {
      padding-right: 175px;
    }

    .pr-180 {
      padding-right: 180px;
    }

    .pr-185 {
      padding-right: 185px;
    }

    .pr-190 {
      padding-right: 190px;
    }

    .pr-195 {
      padding-right: 195px;
    }

    .pr-200 {
      padding-right: 200px;
    }

    .dark #preloader {
      background-color: #232323;
    }

    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #f7f7f7;
      z-index: 999999;
    }

    .preloader {
      width: 50px;
      height: 50px;
      display: inline-block;
      padding: 0px;
      text-align: left;
      box-sizing: border-box;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: -25px;
      margin-top: -25px;
    }

    .preloader span {
      position: absolute;
      display: inline-block;
      width: 50px;
      height: 50px;
      border-radius: 100%;
      background: rgb(82, 182, 71);
      -webkit-animation: preloader 1.3s linear infinite;
      animation: preloader 1.3s linear infinite;
    }

    .preloader span:last-child {
      animation-delay: -0.8s;
      -webkit-animation-delay: -0.8s;
    }

    @keyframes preloader {
      0% {
        transform: scale(0, 0);
        opacity: 0.5;
      }

      100% {
        transform: scale(1, 1);
        opacity: 0;
      }
    }
    @-webkit-keyframes preloader {
      0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
      }

      100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
      }
    }
    #scrollUp {
      background: rgb(82, 182, 71);
      width: 50px;
      height: 50px;
      position: absolute;
      right: 50px;
      bottom: 50px;
      border-radius: 10px;
      line-height: 50px;
      text-align: center;
    }
    #scrollUp i {
      color: white;
    }

    /* Move frame*/
    @keyframes moveRound {
      0% {
        background-color: #eee3ff;
        left: -24px;
        top: 0px;
      }

      25% {
        background-color: #feddfc;
        left: 100px;
        top: 0px;
      }

      50% {
        background-color: #efe4ff;
        left: 100px;
        top: 100px;
      }

      75% {
        background-color: #e2fcf4;
        left: -24px;
        top: 200px;
      }

      100% {
        background-color: #eee3ff;
        left: -24px;
        top: 0px;
      }
    }
    @-webkit-keyframes moveRound {
      0% {
        background-color: #eee3ff;
        left: -24px;
        top: 0px;
      }

      25% {
        background-color: #feddfc;
        left: 100px;
        top: 0px;
      }

      50% {
        background-color: #efe4ff;
        left: 100px;
        top: 200px;
      }

      75% {
        background-color: #e2fcf4;
        left: -24px;
        top: 100px;
      }

      100% {
        background-color: #eee3ff;
        left: -24px;
        top: 0px;
      }
    }
    @keyframes moveShap {
      0% {
        left: 0px;
        top: 0px;
      }

      25% {
        left: 100px;
        top: 0px;
      }

      50% {
        left: 100px;
        top: 100px;
      }

      75% {
        left: 0px;
        top: 200px;
      }

      100% {
        left: 0px;
        top: 0px;
      }
    }
    @keyframes moveShap2 {
      0% {
        right: 230px;
        top: 85px;
      }

      25% {
        right: 100px;
        top: 85px;
      }

      50% {
        right: 100px;
        top: 100px;
      }

      75% {
        right: 230px;
        top: 200px;
      }

      100% {
        right: 220px;
        top: 100px;
      }
    }
    /* Heartbeat frame*/
    @-webkit-keyframes heartbeat {
      to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
      }
    }
    @keyframes heartbeat {
      to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
      }
    }
    /* Rotation frame*/
    @keyframes rotation {
      to {
        transform: rotate(360deg);
      }
    }
    /* pulseBig */
    @keyframes pulseBig {
      0% {
        box-shadow: 0 0 0 0 #81ba71;
      }

      50% {
        box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
      }
    }
    /* pulseBig2 */
    @keyframes pulseBig2 {
      0% {
        box-shadow: 0 0 0 0 rgb(82, 182, 71);
      }

      50% {
        box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
      }
    }
    /* pulseBig2 */
    @keyframes pulseBig3 {
      0% {
        box-shadow: 0 0 0 0 #ffffff;
      }

      50% {
        box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
      }
    }
/*--
    - Overlay
    ------------------------------------------*/
    [data-overlay] {
      position: relative;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
    }
    [data-overlay]::before {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      content: "";
    }

    /*-- Overlay Color --*/
    [data-overlay="light"]::before {
      background-color: white;
    }

    [data-overlay="dark"]::before {
      background-color: #222222;
    }

    /*-- Overlay Opacity --*/
    [data-opacity="1"]::before {
      opacity: 0.1;
    }

    [data-opacity="2"]::before {
      opacity: 0.2;
    }

    [data-opacity="3"]::before {
      opacity: 0.3;
    }

    [data-opacity="4"]::before {
      opacity: 0.4;
    }

    [data-opacity="5"]::before {
      opacity: 0.5;
    }

    [data-opacity="6"]::before {
      opacity: 0.6;
    }

    [data-opacity="7"]::before {
      opacity: 0.7;
    }

    [data-opacity="8"]::before {
      opacity: 0.8;
    }

    [data-opacity="9"]::before {
      opacity: 0.9;
    }

    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .header-top-bg {
        padding-right: 15px;
        padding-left: 0;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .header-top-bg {
        padding-right: 15px;
        padding-left: 0;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .header-top-bg {
        padding-right: 0px;
        padding-left: 0;
      }
    }
    @media (max-width: 767px) {
      .header-top-bg {
        padding-right: 0px;
        padding-left: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .header-top-bg {
        padding-right: 0px;
        padding-left: 0;
      }
    }

    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .main-header-bg {
        padding-right: 15px;
        padding-left: 15px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .main-header-bg {
        padding-right: 15px;
        padding-left: 15px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .main-header-bg {
        padding-right: 15px;
        padding-left: 15px;
      }
    }
    @media (max-width: 767px) {
      .main-header-bg {
        padding-right: 15px;
        padding-left: 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .main-header-bg {
        padding-right: 15px;
        padding-left: 15px;
      }
    }

    .custom-container {
      max-width: 1430px;
      margin: 0 auto;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .custom-container {
        padding-left: 0;
        padding-right: 0;
      }
    }
    @media (max-width: 767px) {
      .custom-container {
        padding-left: 0;
        padding-right: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .custom-container {
        padding-left: 0;
        padding-right: 0;
      }
    }

    .main-header-area {
      position: relative;
      z-index: 111;
      left: 0;
      right: 0;
      margin-bottom: -50px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .main-header-area {
        padding: 15px 15px 15px 15px;
      }
    }
    @media (max-width: 767px) {
      .main-header-area {
        padding: 15px 0 15px 0;
        margin-bottom: 0px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .main-header-area {
        padding: 15px 0 15px 0;
        margin-bottom: 0px;
      }
    }

    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .hamburger-menu {
        padding-right: 0;
      }
    }
    @media (max-width: 767px) {
      .hamburger-menu {
        padding-right: 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .hamburger-menu {
        padding-right: 10px;
      }
    }

    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .headers2__cta__icon {
        margin-right: 7px;
      }
    }
    .headers2__cta a i{
      color: #fff;
      font-size: 20px;
      padding-left: 5px;
    }
    .headers2__cta__icon i {
      color: rgb(82, 182, 71);
      font-size: 43px;
    }
    .headers2__cta h6 {
      color: #616161;
      font-size: 15px;
      line-height: 1.1;
      margin-bottom: 0;
      font-weight: 700;
    }
    .headers2__cta > span {
      color: #232323;
      font-size: 18px;
      font-family: "Roboto", sans-serif;
      line-height: 1.1;
      font-weight: 700;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .headers2__cta > span {
        font-size: 15px;
      }
    }

    .headers {
      display: inline-block;
    }
    .headers__icon i {
      color: rgb(82, 182, 71);
      font-size: 13px;
    }
    .headers__icon a {
      font-size: 17px;
      font-family: "Roboto", sans-serif;
      line-height: 1;
      color: #616161;
    }
    .headers__lang {
      background: white;
      min-width: 200px;
      text-align: center;
      position: absolute;
      top: 120%;
      transition: .4s all;
      box-shadow: 1px 1px 0px 2px rgba(0, 0, 0, 0.2);
      opacity: 0;
      visibility: hidden;
      z-index: 1111;
    }
    .headers__lang li {
      border-bottom: 1px solid rgb(82, 182, 71);
    }
    .headers__lang li:last-child {
      border: 0;
    }
    .headers__lang li a {
      display: block;
      padding: 4px 0;
      color: rgb(82, 182, 71);
      font-size: 14px;
      font-family: "Roboto", sans-serif;
    }
    .headers:hover .headers__lang {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 767px) {
      .header2__social {
        /*text-align: center !important;*/
        margin-top: 15px;
      }
    }
    .header2__social > a {
      font-size: 15px;
      line-height: 28px;
      border-radius: 50%;
      background-color: #ececec;
      display: inline-block;
      text-align: center;
      line-height: 50px;
      width: 48px;
      height: 48px;
      margin: 0 2px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .header2__social > a {
        margin: 0 0px;
      }
    }
    .header2__social > a:hover {
      color: white;
      background: rgb(82, 182, 71);
    }

    .main-menu {
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .main-menu {
        margin: 0;
      }
    }
    .main-menu ul li {
      display: inline-block;
      position: relative;
    }
    .main-menu ul li:last-child a {
      margin-right: 0;
    }
    .main-menu ul li > a {
      color: #232323;
      font-size: 17px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      padding: 40px 0;
      margin: 0 37px 0 0;
      display: inline-block;
      position: relative;
      font-weight: 700;
    }
    .main-menu ul li > a::before {
      content: "";
      position: absolute;
      background: rgb(82, 182, 71);
      width: 0;
      left: 0;
      height: 3px;
      top: 0px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      z-index: 1;
    }
    .main-menu ul li > a i {
      font-size: 10px;
    }
    .main-menu ul li > a.active {
      color: rgb(82, 182, 71);
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .main-menu ul li > a {
        margin: 0 17px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .main-menu ul li > a {
        margin: 0 9px;
      }
    }
    .main-menu ul li:hover > a {
      color: rgb(82, 182, 71);
    }
    .main-menu ul li:hover > a::before {
      right: 0;
      width: 100%;
    }
    .main-menu ul li ul.submenu {
      background: #ffffff none repeat scroll 0 0;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
      left: 0;
      opacity: 0;
      position: absolute;
      top: 119%;
      transition: all 0.3s ease 0s;
      visibility: hidden;
      width: 250px;
      z-index: 9;
      border-top: 4px solid rgb(82, 182, 71);
      text-align: left;
      padding: 25px 0;
      left: -130px;
    }
    .main-menu ul li ul.submenu li {
      display: block;
    }
    .main-menu ul li ul.submenu li a {
      padding: 14px 10px;
      display: block;
      margin: 0;
      border: 0;
    }
    .main-menu ul li ul.submenu li a::before {
      display: none;
    }
    .main-menu ul li:hover .submenu {
      top: 100%;
      visibility: visible;
      opacity: 1;
    }

    .sticky {
      position: fixed;
      z-index: 999;
      width: 100%;
      background: #fff;
      top: 0;
      animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    }
    .sticky .logo {
      transform: translateY(2px);
    }
    .sticky .hamburger-menu {
      top: 17px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .sticky .hamburger-menu {
        top: 35px;
      }
    }

    /* Hamburger-menu */
    .hamburger-menu {
      display: inline-block;
    }
    .hamburger-menu > a {
      display: inline-block;
      font-size: 25px;
      color: #232323;
    }

    .side-mobile-menu {
      display: none;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .side-mobile-menu {
        display: block;
      }
    }
    @media (max-width: 767px) {
      .side-mobile-menu {
        display: block;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .side-mobile-menu {
        display: block;
      }
    }

    .offset-sidebar {
      display: block;
      margin-top: 30px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .offset-sidebar {
        display: none;
      }
    }
    @media (max-width: 767px) {
      .offset-sidebar {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .offset-sidebar {
        display: none;
      }
    }

    .custom-container3 {
      max-width: 1490px;
      margin: 0 auto;
    }

    .header-02 {
      padding-left: 10px;
    }
    .header-02 .headers2__cta__icon i {
      font-size: 18px;
      line-height: 1;
    }
    .header-02 .headers2__cta .cta-text {
      color: white;
      font-size: 15px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
    }
    .header-02 .headers2__cta .cta-text:hover {
      color: white;
    }

    @media (max-width: 767px) {
      .header02 {
        justify-content: center;
        margin: 10px 0;
      }
    }
    .header02__icon i {
      font-size: 25px;
    }
    .header02__cta span {
      color: white;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .header02__social {
        display: none;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .header02__social {
        display: none;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .header02__social {
        display: none;
      }
    }
    @media (max-width: 767px) {
      .header02__social {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .header02__social {
        display: none;
      }
    }
    .header02__social > a {
      width: 35px;
      height: 35px;
      line-height: 35px;
      color: #7e899b;
    }
    .header02__social > a i {
      font-size: 12px;
    }

    .main-header-area02 {
      margin-bottom: 0;
    }
    @media only screen and (min-width: 1601px) and (max-width: 1920px) {
      .main-header-area02 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .main-header-area02 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .main-header-area02 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .main-header-area02 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

    .logo .logo-img img {
      max-width: 100%;
      max-height: 100px;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .logo img {
        max-width: 100%;
      }
    }
    @media (max-width: 767px) {
      .logo img {
        max-width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .logo img {
        max-width: 100%;
      }
    }

    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .main-menu2 ul li a {
        margin: 0 9px;
      }
    }

    .right__nav--search > a {
      background: #ff7029;
      display: inline-block;
      text-align: center;
      font-size: 18px;
      line-height: 60px;
      width: 60px;
      height: 60px;
      color: white;
    }

    .right__btn {
      background: rgb(82, 182, 71);
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .right__btn i{
        display: none;
      }
    }
    .right__btn:hover {
      background: #ff7029;
    }

    .main-header-area03 {
      margin-bottom: 0;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .main-header-area03 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .main-header-area03 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    @media (max-width: 767px) {
      .main-header-area03 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .main-header-area03 {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .header-top-bg3 {
        padding-right: 15px;
        padding-left: 15px;
      }
    }

    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .left-menu .headers2 {
        margin-left: 5px;
      }
    }
    .left-menu .header-2-icon {
      width: 90px;
      height: 90px;
      line-height: 90px;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .left-menu .right__nav--search {
        margin-right: 0px;
      }
    }

    .head__lang {
      width: 285px;
      text-align: center;
      padding: 29px 0;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .head__lang {
        width: 190px;
      }
    }
    .head__lang i {
      color: white;
    }
    .head__lang a {
      color: white;
    }
    .head__lang a i {
      color: white;
    }

    .hambergur-3 {
      background: #1f242c;
      padding: 27px 29px;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .hambergur-3 {
        display: none;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .hambergur-3 {
        display: none;
        padding: 15px 20px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .hambergur-3 {
        display: none;
        padding: 15px 20px;
      }
    }
    @media (max-width: 767px) {
      .hambergur-3 {
        display: none;
        padding: 15px 20px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .hambergur-3 {
        display: none;
        padding: 15px 20px;
      }
    }
    .hambergur-3 a i {
      color: white;
    }

    @media only screen and (min-width: 1601px) and (max-width: 1920px) {
      .right__nav .header3__social {
        display: block;
      }
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .right__nav .header3__social {
        display: none;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .right__nav .header3__social {
        display: none;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .right__nav .header3__social {
        display: none;
      }
    }
    @media (max-width: 767px) {
      .right__nav .header3__social {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .right__nav .header3__social {
        display: none;
      }
    }
    @media only screen and (min-width: 1601px) and (max-width: 1920px) {
      .right__nav .hambergur-3 {
        display: none;
      }
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .right__nav .hambergur-3 {
        display: block;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .right__nav .hambergur-3 {
        display: block;
        padding: 5px 14px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .right__nav .hambergur-3 {
        display: block;
        padding: 5px 14px;
      }
    }
    @media (max-width: 767px) {
      .right__nav .hambergur-3 {
        display: block;
        padding: 5px 14px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .right__nav .hambergur-3 {
        display: block;
        padding: 5px 14px;
      }
    }

    .slider-area:hover button {
      opacity: 1;
    }

    .single-slider::before {
      content: "";
      background-color: black;
      opacity: 0.349;
      position: absolute;
      left: 0px;
      top: 0;
      width: 100%;
      height: 807px;
      z-index: -1;
    }

    .slider-height {
      min-height: 807px;
      background-size: cover;
      background-position: center;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider-height {
        min-height: 650px;
      }
    }
    @media (max-width: 767px) {
      .slider-height {
        min-height: 550px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider-height {
        min-height: 550px;
      }
    }

    .slider__content {
      position: relative;
      z-index: 5;
    }
    .slider__content h5 {
      color: white;
      font-size: 24px;
      line-height: 1.1;
      text-shadow: -3px 0px #475559;
      display: inline-block;
    }
    .slider__content h5.line::before {
      content: "";
      background: white;
      opacity: 0.4;
      position: absolute;
      left: -140px;
      top: 13px;
      width: 100px;
      height: 2px;
      z-index: 1;
      -webkit-transition: all 0.7s ease-out 0s;
      -moz-transition: all 0.7s ease-out 0s;
      -ms-transition: all 0.7s ease-out 0s;
      -o-transition: all 0.7s ease-out 0s;
      transition: all 0.7s ease-out 0s;
    }
    @media (max-width: 767px) {
      .slider__content h5.line::before {
        left: -40px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider__content h5.line::before {
        left: -40px;
      }
    }
    .slider__content h5.line::after {
      content: "";
      background: white;
      opacity: 0.4;
      position: absolute;
      right: -140px;
      top: 13px;
      width: 100px;
      height: 2px;
      z-index: 1;
      -webkit-transition: all 0.7s ease-out 0s;
      -moz-transition: all 0.7s ease-out 0s;
      -ms-transition: all 0.7s ease-out 0s;
      -o-transition: all 0.7s ease-out 0s;
      transition: all 0.7s ease-out 0s;
    }
    @media (max-width: 767px) {
      .slider__content h5.line::after {
        right: -40px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider__content h5.line::after {
        right: -40px;
      }
    }
    .slider__content h1 {
      color: #fff;
      font-size: 180px;
      line-height: 1;
      letter-spacing: 48px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider__content h1 {
        font-size: 100px;
      }
    }
    @media (max-width: 767px) {
      .slider__content h1 {
        font-size: 50px;
        letter-spacing: 20px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider__content h1 {
        font-size: 50px;
        letter-spacing: 20px;
      }
    }
    .slider__content .slider-para {
      color: #fff;
      font-size: 18px;
      line-height: 30px;
      font-weight: 700;
    }
    @media (max-width: 767px) {
      .slider__content .slider-para {
        font-size: 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider__content .slider-para {
        font-size: 15px;
      }
    }

    .btn-list li {
      display: inline-block;
      margin: 10px 5px;
    }

    .slider-active button {
      border: 0;
      background: none;
      font-size: 18px;
      line-height: 28px;
      color: #c7c7c7;
      border: 1px solid rgba(255, 255, 255, 0.251);
      border-radius: 50%;
      width: 73px;
      height: 73px;
      opacity: 0;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .slider-active button:hover {
      width: 98px;
      height: 98px;
      border-color: white;
    }
    .slider-active .slick-arrow {
      position: absolute;
      top: 50%;
      left: 0;
      z-index: 3;
    }
    .slider-active .slick-prev {
      left: 100px;
    }
    .slider-active .slick-next {
      left: auto;
      right: 100px !important;
    }

    .single-slider-02::before {
      opacity: 0.612;
    }

    .slider-height2 {
      min-height: 550px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider-height2 {
        min-height: 450px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider-height2 {
        min-height: 350px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider-height2 {
        min-height: 300px;
      }
    }
    @media (max-width: 767px) {
      .slider-height2 {
        min-height: 300px;
      }
    }

    .slider__content__02 h1 {
      font-size: 80px;
      line-height: 1;
      letter-spacing: 0;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .slider__content__02 h1 {
        font-size: 70px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider__content__02 h1 {
        font-size: 60px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider__content__02 h1 {
        font-size: 40px;
        margin-bottom: 25px;
      }
    }
    @media (max-width: 767px) {
      .slider__content__02 h1 {
        font-size: 40px;
        margin-bottom: 25px;
      }
    }

    .border-video {
      border: 1px solid rgba(255, 255, 255, 0.259);
      display: inline-block;
      padding: 9px;
    }
    .border-video .popup-video-03 {
      background-color: #ff7029;
      font-size: 18px;
      line-height: 75px;
      text-align: center;
      width: 75px;
      height: 75px;
      border-radius: 0;
      display: inline-block;
    }

    .slider-area .turbine__fan {
      right: 227px;
      top: 34px;
      width: 40%;
    }
    .slider-area .single-slider-03 {
      min-height: 751px;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      width: 100%;
      margin-top: 0;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .slider-area .single-slider-03 {
        min-height: 650px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .slider-area .single-slider-03 {
        min-height: 550px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider-area .single-slider-03 {
        min-height: 550px;
      }
    }
    @media (max-width: 767px) {
      .slider-area .single-slider-03 {
        min-height: 450px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider-area .single-slider-03 {
        min-height: 450px;
      }
    }
    .slider-area .single-slider-03::before {
      display: none;
    }

    .slider__content__03 {
      padding-left: 270px;
      padding-top: 140px;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .slider__content__03 {
        padding-left: 0;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .slider__content__03 {
        padding-left: 0;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .slider__content__03 {
        padding-left: 0;
        padding-top: 100px;
      }
    }
    @media (max-width: 767px) {
      .slider__content__03 {
        padding-left: 0;
        padding-top: 70px;
        padding-bottom: 50px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider__content__03 {
        padding-left: 0;
        padding-top: 70px;
        padding-bottom: 50px;
      }
    }
    .slider__content__03 h1 {
      font-size: 72px;
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: 0;
      color: #232323;
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .slider__content__03 h1 {
        font-size: 35px;
      }
    }
    @media (max-width: 767px) {
      .slider__content__03 h1 {
        font-size: 35px;
      }
    }
    .slider__content__03 .left-line {
      font-size: 18px;
      line-height: 30px;
      font-weight: 500;
      border-left: 5px solid rgb(82, 182, 71);
      max-width: 520px;
      padding-top: 15px;
      padding-bottom: 15px;
    }

    .service-shape {
      right: 0;
      bottom: -295px;
      animation: float-bob-y infinite 4s linear;
    }

    .service {
      border: 1px solid #e5e5e5;
      position: relative;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .service::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      right: -9px;
      top: 9px;
      border: 1px solid rgb(82, 182, 71);
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .service:hover::before {
      border-color: #ff7029;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .service {
        padding-right: 18px;
        padding-left: 18px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .service {
        padding-right: 18px;
        padding-left: 18px;
      }
    }
    @media (max-width: 767px) {
      .service {
        padding-right: 18px;
        padding-left: 18px;
      }
    }
    .service:hover .service__icon::before {
      transform: scale(1.2);
    }
    .service__icon::before {
      content: "";
      border-radius: 50%;
      background: rgb(82, 182, 71);
      opacity: 0.071;
      position: absolute;
      left: 0;
      top: 0;
      width: 120px;
      height: 120px;
      z-index: 1;
      right: 0;
      margin: 0 auto;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .service__text h5 {
      font-size: 24px;
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .service__text p {
      margin-bottom: 15px;
    }
    .service__text--list li {
      position: relative;
      color: #616161;
      font-size: 15px;
      line-height: 28px;
      font-weight: 500;
      margin-bottom: 9px;
      padding-left: 28px;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .service__text--list li {
        font-size: 14px;
      }
    }
    @media (max-width: 767px) {
      .service__text--list li {
        font-size: 14px;
      }
    }
    .service__text--list li::before {
      content: "\f00c";
      position: absolute;
      font-family: "Font awesome 5 pro";
      border: 2px solid #ff7029;
      border-radius: 50%;
      left: 0;
      top: 5px;
      width: 20px;
      height: 20px;
      font-size: 10px;
      text-align: center;
      line-height: 17px;
      color: #ff7029;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .service__text--list li:hover:before {
      background: rgb(82, 182, 71);
      color: white;
      border-color: rgb(82, 182, 71);
    }

    .promotion-area .promotion-shape-one {
      top: 0;
      left: 0;
    }
    .promotion-area .promotion-shape-two {
      top: 0;
      right: 0;
    }

    .promotion {
      background: #ff7029;
      padding: 50px 30px 45px;
      z-index: 3;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .promotion {
        padding: 50px 4px 45px;
      }
    }
    .promotion::before {
      content: "";
      position: absolute;
      background: #2e353f;
      height: 100%;
      width: 100%;
      left: -5px;
      bottom: 5px;
      z-index: -1;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion__thumb {
      border-radius: 50%;
      background: white;
      font-size: 40px;
      text-align: center;
      line-height: 80px;
      width: 80px;
      height: 80px;
      display: inline-block;
    }
    .promotion__thumb i {
      color: rgb(82, 182, 71);
    }
    .promotion__text h6 {
      color: white;
      font-size: 20px;
      line-height: 1.1;
    }
    .promotion__text p {
      color: #c1c6cd;
    }
    .promotion__text .more_btn {
      color: white;
      font-size: 16px;
      line-height: 1;
      font-weight: 800;
    }
    .promotion:hover {
      background-color: white;
    }
    .promotion:hover:before {
      background-color: rgb(82, 182, 71);
    }
    .promotion:hover .promotion__text p {
      color: white;
    }

    .statistics-area .explore_btn {
      color: #232323;
      font-size: 16px;
      line-height: 1;
      font-weight: 800;
    }
    .statistics-area .explore_btn i {
      padding-left: 5px;
    }

    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .counter-row {
        margin-left: 0;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .counter-row {
        margin-left: 0;
      }
    }
    @media (max-width: 767px) {
      .counter-row {
        margin-left: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .counter-row {
        margin-left: 0;
      }
    }

    .counter-box {
      padding: 55px 25px 48px 40px;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .counter-box {
        margin-top: 20px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .counter-box {
        margin-top: 20px;
      }
    }
    @media (max-width: 767px) {
      .counter-box {
        margin-top: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .counter-box {
        margin-top: 30px;
      }
    }
    .counter-box::before {
      content: "";
      position: absolute;
      background: #fff0e9;
      width: 96%;
      height: 37%;
      left: 13px;
      z-index: -1;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .counter-box::before {
        display: none;
      }
    }
    .counter-box h3 {
      color: white;
      font-size: 30px;
      line-height: 1.1;
      font-weight: 800;
    }
    .counter-box .membar {
      color: white;
      font-size: 13px;
      line-height: 1.1;
      font-weight: 700;
      display: inline-block;
    }
    .counter-box h2 {
      color: white;
      font-size: 50px !important;
      line-height: 1;
      font-weight: 900;
    }
    .counter-box.counter-box2 {
      width: 230px;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .counter-box.counter-box2 {
        width: 100%;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .counter-box.counter-box2 {
        width: 100%;
      }
    }
    @media (max-width: 767px) {
      .counter-box.counter-box2 {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .counter-box.counter-box2 {
        width: 100%;
      }
    }
    .counter-box.counter-box2::before {
      content: "";
      position: absolute;
      background: #ddf0d8;
      width: 230px;
      height: 87%;
      left: 27px;
      top: 4px;
      z-index: -1;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .counter-box.counter-box2::before {
        display: none;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .counter-box.counter-box2::before {
        display: none;
      }
    }
    @media (max-width: 767px) {
      .counter-box.counter-box2::before {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .counter-box.counter-box2::before {
        display: none;
      }
    }
    .counter-box.counter-box3 {
      width: 300px;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .counter-box.counter-box3 {
        max-width: 265px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .counter-box.counter-box3 {
        width: 100%;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .counter-box.counter-box3 {
        max-width: 300px;
      }
    }
    @media (max-width: 767px) {
      .counter-box.counter-box3 {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .counter-box.counter-box3 {
        width: 100%;
      }
    }
    .counter-box.counter-box3::before {
      content: "";
      position: absolute;
      background: #e8e9e9;
      width: 300px;
      height: 92%;
      left: 30px;
      top: 10px;
      z-index: -1;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .counter-box.counter-box3::before {
        display: none;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .counter-box.counter-box3::before {
        display: none;
      }
    }
    @media (max-width: 767px) {
      .counter-box.counter-box3::before {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .counter-box.counter-box3::before {
        display: none;
      }
    }

    .section-title .blog_btn2 {
      color: rgb(82, 182, 71);
      border-color: rgb(82, 182, 71);
    }
    .section-title .blog_btn2:hover {
      color: #ff7029;
      border-color: #ff7029;
    }

    .promotion-shape-four {
      right: 70px;
      top: 280px;
    }

    .promotion2 {
      background-size: cover;
      background-repeat: no-repeat;
      width: 100%;
      height: auto;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion2::before {
      content: "";
      position: absolute;
      background: white;
      left: 0;
      top: 0;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion2 .thumb2 {
      background: none;
    }
    .promotion2 .thumb2 i {
      color: rgb(82, 182, 71);
      font-size: 85px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion2 .text2 h6 {
      color: #232323;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      height: 44px;
    }
    .promotion2 .text2 p {
      color: #616161;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion2 .text2 .more_btn {
      color: #232323;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion2:hover::before {
      opacity: 0.85;
      background: rgb(82, 182, 71);
    }
    .promotion2:hover .thumb2 i {
      color: white;
    }
    .promotion2:hover .text2 h6 {
      color: white;
    }
    .promotion2:hover .text2 p {
      color: white;
    }
    .promotion2:hover .text2 .more_btn {
      color: white;
    }

    .promotion02__img {
      margin-left: 5px;
      margin-top: 25px;
      position: absolute;
    }
    @media (max-width: 767px) {
      .promotion02__img {
        position: relative;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .promotion02__img {
        position: relative;
      }
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .promotion02__img img {
        max-width: 100%;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .promotion02__img img {
        max-width: 100%;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .promotion02__img img {
        max-width: 100%;
      }
    }
    @media (max-width: 767px) {
      .promotion02__img img {
        max-width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .promotion02__img img {
        max-width: 100%;
      }
    }

    .h2-counter-box__icon i {
      color: rgb(82, 182, 71);
      font-size: 30px;
    }
    .h2-counter-box p {
      margin-bottom: 13px;
    }
    .h2-counter-box h2 span {
      font-size: 50px;
      line-height: 1;
      font-weight: 800;
      font-family: "Roboto", sans-serif;
      color: #ff7029;
    }

    @media (max-width: 767px) {
      .h2-counter-box h2 span {
        font-size: 27px;
      }
      .service__img__one img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .service__img__one img {
        width: 100%;
      }
    }

    .service__img__two {
      position: relative;
      z-index: 3;
    }
    @media (max-width: 767px) {
      .service__img__two img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .service__img__two img {
        width: 100%;
      }
    }

    .service__img__three .round-icon {
      right: 10px;
      z-index: -1;
      top: -55px;
      animation: zoomIn infinite 12s alternate;
    }
    @media (max-width: 767px) {
      .service__img__three img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .service__img__three img {
        width: 100%;
      }
    }

    .brand-area {
      position: relative;
    }
    .brand-area h1 {
      font-size: 180px;
      font-weight: 900;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .brand-area h1 {
        font-size: 100px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .brand-area h1 {
        font-size: 80px;
      }
    }

    .brand-logo {
      text-align: center;
    }
    .brand-logo a {
      display: inline-block;
    }
    .brand-logo a img {
      max-width: 100%;
    }

    .we__wrapper {
      width: 100%;
      height: 950px;
      background-size: cover;
      padding: 130px 156px 62px 115px;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .we__wrapper {
        padding: 70px 0 62px 40px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .we__wrapper {
        padding: 125px 6px 62px 40px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .we__wrapper {
        padding: 125px 6px 62px 40px;
      }
    }
    @media (max-width: 767px) {
      .we__wrapper {
        padding: 125px 15px 62px 15px;
        height: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .we__wrapper {
        padding: 125px 15px 62px 15px;
        height: 100%;
      }
    }
    @media (max-width: 767px) {
      .we__wrapper .section-title {
        padding-right: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .we__wrapper .section-title {
        padding-right: 0;
      }
    }

    .we__img {
      position: absolute;
      width: 50%;
      height: 950px;
      left: 0;
      top: 0;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .we__img {
        background-position: center center;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .we__img {
        position: relative;
        width: 100%;
        top: 0;
        height: 500px;
      }
    }
    @media (max-width: 767px) {
      .we__img {
        position: relative;
        width: 100%;
        top: 0;
        height: 400px;
        background-position: center top;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .we__img {
        position: relative;
        width: 100%;
        top: 0;
        height: 400px;
        background-position: center top;
      }
    }

    .title-orange h6 {
      color: rgb(82, 182, 71);
      border-color: rgb(82, 182, 71);
    }
    .title-orange h2 {
      color: white;
    }
    .title-orange p {
      color: #c5cdd8;
    }

    .skill-text-wrapper .left-line {
      position: relative;
    }
    .skill-text-wrapper .left-line::before {
      content: "";
      background: #ff7029;
      position: absolute;
      left: 0;
      top: 11px;
      width: 5px;
      height: 67px;
      z-index: 1;
    }

    .services {
      padding: 30px 20px 20px 20px;
    }
    .services__icon {
      margin-bottom: 25px;
    }
    .services__icon i {
      font-size: 70px;
      color: rgb(82, 182, 71);
      display: inline-block;
    }
    .services h6 {
      color: white;
      font-size: 22px;
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .services p {
      color: #c5cdd8;
    }

    .promotion3 {
      border: 1px solid #e1e1e1;
    }
    .promotion3__box--thumb {
      overflow: hidden;
    }
    .promotion3__box--thumb img {
      width: 100%;
      display: block;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion3__box h1 {
      font-size: 250px;
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: 25%;
      transform: translateY(-25%);
    }
    .promotion3__box--icon {
      line-height: 100px;
      display: inline-block;
      border-radius: 50%;
      background-color: white;
      box-shadow: 0px 10px 30px 0px rgba(240, 240, 240, 0.7);
      position: absolute;
      left: 0;
      bottom: -48px;
      width: 100px;
      height: 100px;
      z-index: 1;
      right: 0;
      margin: 0 auto;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion3__box--icon i {
      color: rgb(82, 182, 71);
      font-size: 55px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .promotion3:hover .promotion3__box--thumb img {
      transform: scale(1.1);
    }
    .promotion3:hover .promotion3__box--icon {
      background-color: rgb(82, 182, 71);
    }
    .promotion3:hover .promotion3__box--icon i {
      color: white;
    }
    .promotion3:hover .more_btn2 {
      color: rgb(82, 182, 71);
      border-color: rgb(82, 182, 71);
    }

    .promotion3__text {
      padding: 0 30px;
    }
    .promotion3__text h6 a {
      font-size: 22px;
      line-height: 1.4;
      font-weight: 800;
    }
    .promotion3__text .more_btn2 {
      color: #616161;
      font-size: 20px;
      border: 2px solid #e1e1e1;
      display: inline-block;
      padding: 20px 22px;
      line-height: 1;
      position: relative;
      bottom: -30px;
      background-color: white;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }

    .services2 {
      text-align: center;
    }
    @media (max-width: 767px) {
      .services2 {
        margin-bottom: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .services2 {
        margin-bottom: 30px;
      }
    }
    .services2__img {
      position: relative;
      overflow: hidden;
    }
    .services2__img img {
      width: 100%;
      display: block;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .services2__img::before {
      content: "";
      position: absolute;
      background: #071121;
      opacity: .7;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      z-index: 1;
    }
    .services2__content {
      position: absolute;
      top: 50%;
      left: 50px;
      right: 50px;
      margin: 0 auto;
      transform: translateY(-50%);
      z-index: 3;
    }
    @media (max-width: 767px) {
      .services2__content {
        left: 0;
        right: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .services2__content {
        left: 0;
        right: 0;
      }
    }
    .services2__content--icon i {
      font-size: 65px;
      color: white;
      display: inline-block;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .services2__content .semi-title {
      color: white;
      font-weight: 700;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      display: inline-block;
    }
    .services2__content p {
      color: white;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .services2:hover .services2__content--icon i {
      color: rgb(82, 182, 71);
    }
    .services2:hover .services2__content p {
      color: rgb(82, 182, 71);
    }
    .services2:hover .services2__content .semi-title {
      color: rgb(82, 182, 71);
    }
    .services2:hover .services2__img img {
      transform: scale(1.1);
    }

    .promotion-shape-three {
      right: 0;
      top: 0;
    }

    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .service-details__img img {
        max-width: 100%;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .service-details__img img {
        max-width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .service-details__img img {
        max-width: 100%;
      }
    }
    @media (max-width: 767px) {
      .service-details__img img {
        max-width: 100%;
      }
    }

    .service-details__text .service-details-title .details--icon i {
      color: rgb(82, 182, 71);
      font-size: 55px;
      line-height: 1;
      display: inline-block;
    }
    .service-details__text .service-details-title h3 {
      font-size: 45px;
      line-height: 1;
      font-weight: 700;
    }
    .service-details__text .details-list {
      overflow: hidden;
    }
    .service-details__text .details-list li {
      color: #616161;
      font-size: 18px;
      line-height: 1.3;
      font-family: "Roboto", sans-serif;
      font-weight: 600;
      display: block;
      width: 49%;
      float: left;
      padding-left: 35px;
      margin-bottom: 20px;
      position: relative;
    }
    @media (max-width: 767px) {
      .service-details__text .details-list li {
        width: 100%;
        float: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .service-details__text .details-list li {
        width: 100%;
        float: none;
      }
    }
    .service-details__text .details-list li::before {
      content: "\f058";
      position: absolute;
      font-family: 'Font Awesome 5 pro';
      line-height: 1;
      left: 0;
      top: 4px;
      color: rgb(82, 182, 71);
    }

    .service-details-gallery .details-gallery-img img {
      width: 100%;
    }
    .service-details-gallery .gallery-img-01 {
      object-fit: cover;
      width: 100%;
      height: 450px;
    }
    .service-details-gallery .gallery-img-01 img {
      width: 100%;
      height: 100%;
    }
    .service-details-gallery .video-gallery {
      position: relative;
    }
    .service-details-gallery .video-gallery::before {
      content: "";
      position: absolute;
      background: #0b1526;
      opacity: 0.5;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
    }
    .service-details-gallery .video-area-07 {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
    }
    .service-details-gallery .video-area-07 .popup-video5 {
      width: 76px;
      height: 76px;
      line-height: 76px;
      background: white;
      color: rgb(82, 182, 71);
      position: relative;
      animation: pulseBig3 infinite 4s linear;
    }
    .service-details-gallery .video-area-07 .popup-video5::before {
      content: "";
      border: 1px solid white;
      border-radius: 50%;
      position: absolute;
      left: -26px;
      top: -26px;
      width: 128px;
      height: 128px;
      z-index: 1;
    }

    .service-details-wrapper .service-line {
      position: relative;
    }
    .service-details-wrapper .service-line::before {
      content: "";
      position: absolute;
      background: #ff7029;
      left: 0;
      top: 10px;
      width: 5px;
      height: 68px;
    }

    .service-widget {
      border: 1px solid #f0f0f0;
      padding: 20px 20px 10px 20px;
    }
    .service-widget__list li a {
      display: block;
      color: #232323;
      font-size: 18px;
      line-height: 1.1;
      font-weight: 800;
      padding: 25px 30px;
      background: whitesmoke;
      margin-bottom: 10px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .service-widget__list li a i {
      position: absolute;
      right: 50px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .service-widget__list li a:hover {
      background: rgb(82, 182, 71);
      color: white;
    }
    .service-widget__list li a:hover i {
      position: absolute;
      right: 45px;
    }

    .service-widget__box {
      padding: 30px 26px;
      text-align: center;
    }
    .service-widget__box h6 {
      font-size: 22px;
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 18px;
    }
    .service-widget__box .service--social a {
      width: 40px;
      height: 40px;
      line-height: 40px;
    }

    .service-widget__cta {
      padding: 20px 0 30px 16px;
    }
    .service-widget__cta .widget-cta-icon i {
      color: rgb(82, 182, 71);
      font-size: 53px;
      display: inline-block;
    }
    .service-widget__cta .widget-cta-content p {
      margin-bottom: 5px;
      font-weight: 700;
    }
    .service-widget__cta .widget-cta-content span {
      color: #232323;
      font-size: 28px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      display: inline-block;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .service-widget__cta .widget-cta-content span {
        font-size: 20px;
      }
    }
    .service-widget__cta .service-cta-social a {
      width: 40px;
      height: 40px;
      line-height: 40px;
    }

    .page-title-area {
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      min-height: 580px;
      position: relative;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .page-title-area {
        min-height: 450px;
      }
    }
    @media (max-width: 767px) {
      .page-title-area {
        min-height: 400px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .page-title-area {
        min-height: 400px;
      }
    }
    .page-title-area::before {
      content: "";
      background-color: #050c18;
      opacity: 0.651;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
    }
    .page-title-area .page-shadow {
      font-size: 300px;
      top: 45%;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .page-title-area .page-shadow {
        font-size: 200px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .page-title-area .page-shadow {
        font-size: 200px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .page-title-area .page-shadow {
        font-size: 140px;
      }
    }
    @media (max-width: 767px) {
      .page-title-area .page-shadow {
        font-size: 40px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .page-title-area .page-shadow {
        font-size: 40px;
      }
    }

    .page-title {
      text-align: center;
      padding-top: 210px;
    }
    @media (max-width: 767px) {
      .page-title {
        padding-top: 150px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .page-title {
        padding-top: 150px;
      }
    }
    .page-title h1 {
      color: white;
      font-size: 85px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
      margin-bottom: 35px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .page-title h1 {
        font-size: 70px;
      }
    }
    @media (max-width: 767px) {
      .page-title h1 {
        font-size: 32px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .page-title h1 {
        font-size: 32px;
      }
    }

    .breadcrumb-list ul li {
      display: inline-block;
      color: white;
      font-size: 24px;
      line-height: 1.1;
      font-family: "Roboto", sans-serif;
      position: relative;
      padding: 0 30px;
    }
    @media (max-width: 767px) {
      .breadcrumb-list ul li {
        font-size: 20px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .breadcrumb-list ul li {
        font-size: 20px;
      }
    }
    .breadcrumb-list ul li:nth-child(2) {
      padding: 0px 30px;
    }
    .breadcrumb-list ul li:nth-child(2)::before {
      content: "";
      background: white;
      position: absolute;
      left: 0;
      top: 10px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      z-index: 1;
    }
    .breadcrumb-list ul li:nth-child(2)::after {
      content: "";
      position: absolute;
      left: -7px;
      top: 3px;
      width: 21px;
      height: 21px;
      border: 2px solid white;
      border-radius: 50%;
      z-index: 1;
    }
    .breadcrumb-list ul li a {
      color: white;
      font-size: 24px;
      font-family: "Roboto", sans-serif;
      display: inline-block;
    }
    @media (max-width: 767px) {
      .breadcrumb-list ul li a {
        font-size: 20px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .breadcrumb-list ul li a {
        font-size: 20px;
      }
    }

    .slide-bar {
      position: fixed;
      overflow-y: auto;
      top: 0;
      right: -370px;
      width: 350px;
      padding: 25px 30px;
      height: 100%;
      display: block;
      background-color: #1f242c;
      z-index: 1020;
      -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
      -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
      transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
      box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    }

    .slide-bar.show {
      right: 0;
    }

    .open-mobile-menu {
      display: inline-block;
    }
    .open-mobile-menu a {
      display: block;
      width: 50px;
      height: 50px;
      background: #212121;
      text-align: center;
      line-height: 50px;
      font-size: 20px;
      margin-left: 20px;
      color: #fff;
    }
    .open-mobile-menu a:hover {
      background: rgb(82, 182, 71);
    }
    .open-mobile-menu a.active {
      background: rgb(82, 182, 71);
    }

    .close-mobile-menu a {
      color: white;
      position: relative;
      z-index: 2;
      font-size: 16px;
      top: -10px;
      left: 0;
    }
    .close-mobile-menu a:hover {
      color: #ff0000;
    }

    .on-side {
      overflow: hidden;
    }

    .body-overlay {
      background-color: rgba(0, 0, 0, 0.5);
      height: 100%;
      width: 100%;
      position: fixed;
      top: 0;
      z-index: 1010;
      left: 0;
      opacity: 0;
      display: none;
      -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.active {
      opacity: 1;
      display: block;
    }

    .side-mobile-menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .side-mobile-menu ul li a {
      padding: 13px 0;
      display: block;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      font-size: 16px;
      color: white;
      font-weight: 700;
      position: relative;
    }
    .side-mobile-menu ul li a:hover {
      color: rgb(82, 182, 71);
      padding-left: 5px;
    }
    .side-mobile-menu ul li a[aria-expanded="true"] {
      color: rgb(82, 182, 71);
    }
    .side-mobile-menu ul li a[aria-expanded="true"]:before {
      background: rgb(82, 182, 71);
      border-color: rgb(82, 182, 71);
    }
    .side-mobile-menu ul li ul {
      padding-left: 0;
      list-style: none;
    }
    .side-mobile-menu ul li ul li {
      padding-left: 15px;
    }
    .side-mobile-menu ul li ul li:hover > a {
      color: rgb(82, 182, 71);
      padding-left: 20px;
    }
    .side-mobile-menu ul li ul li:hover > a:before {
      background: rgb(82, 182, 71);
      border-color: rgb(82, 182, 71);
    }
    .side-mobile-menu ul li ul li a {
      position: relative;
      padding-left: 15px;
      font-size: 16px;
    }
    .side-mobile-menu ul li ul li a:before {
      content: "";
      width: 8px;
      height: 8px;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      border: 2px solid white;
      border-radius: 50%;
    }
    .side-mobile-menu ul li ul li a[aria-expanded="true"] {
      padding-left: 20px;
    }
    .side-mobile-menu ul li.has-dropdown > a:after {
      position: absolute;
      content: "";
      width: 8px;
      height: 8px;
      border-width: 2px 0 0 2px;
      border-style: solid;
      border-color: initial;
      right: 16px;
      top: 50%;
      -webkit-transform: rotate(-45deg) translateY(-50%);
      transform: rotate(-45deg) translateY(-50%);
      -webkit-transform-origin: top;
      transform-origin: top;
      transition: all .3s ease-out;
    }
    .side-mobile-menu ul li.has-dropdown a[aria-expanded="true"]:after {
      -webkit-transform: rotate(-135deg) translateY(-50%);
      transform: rotate(-135deg) translateY(-50%);
    }

    .offset-widget.offset-logo {
      border-bottom: 1px solid #eeecec;
      padding-bottom: 20px;
    }
    .offset-widget .info-widget .offset-title {
      font-size: 20px;
      font-weight: 800;
      color: white;
    }
    .offset-widget .info-widget p {
      color: white;
    }
    .offset-widget .info-widget.info-widget2 p {
      margin-bottom: 15px;
    }
    .offset-widget .info-widget.info-widget2 p i {
      margin-right: 7px;
      color: white;
    }

    .history-area::before {
      content: "";
      background: #f8f8f8;
      position: absolute;
      left: 0px;
      top: 0;
      width: 39%;
      height: 770px;
    }

    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .history-wrapper {
        padding-left: 100px;
      }
    }
    @media (max-width: 767px) {
      .history-wrapper {
        padding-left: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .history-wrapper {
        padding-left: 0;
      }
    }

    .history__thumb img {
      width: 100%;
    }
    .history__progress {
      padding: 30px 40px;
      border-radius: 20px 20px 0 20px;
      z-index: 1;
      margin-top: -140px;
      right: -40px;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .history__progress {
        margin-left: 0;
        right: 0;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .history__progress {
        right: 0;
      }
    }
    @media (max-width: 767px) {
      .history__progress {
        margin-left: 0;
        right: 0;
        margin-top: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .history__progress {
        margin-left: 0;
        right: 0;
        margin-top: 30px;
      }
    }
    .history__progress__text h5 {
      color: white;
      line-height: 1.1;
      font-weight: 800;
      font-size: 24px;
    }
    .history__progress__text p {
      color: white;
    }

    .chart {
      display: inline-block;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .chart {
        margin-right: 10px;
      }
    }
    .chart__number {
      color: white;
      font-size: 35px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
    }
    .chart__number span {
      font-size: 15px;
      line-height: 1;
    }

    .history__content__title {
      color: rgb(82, 182, 71);
      font-size: 45px;
      line-height: 35px;
      font-weight: 800;
      border-color: rgb(82, 182, 71);
      border-style: solid;
      text-align: center;
      display: inline-block;
      padding: 13px 16px;
      float: left;
    }
    .history__content__para {
      color: #232323;
      font-size: 18px;
      line-height: 32px;
      font-weight: 600;
    }

    .histories {
      padding: 40px 50px 40px 0;
    }
    @media (max-width: 767px) {
      .histories {
        padding: 40px 10px 40px 0;
      }
    }
    .histories__text p {
      font-size: 18px;
      line-height: 1.5;
    }
    .histories__text .left-line::before {
      content: "";
      position: absolute;
      background: #ff7029;
      left: 0;
      top: 5px;
      width: 5px;
      height: 102px;
      z-index: 1;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .histories__text .blog_btn {
      color: rgb(82, 182, 71);
      border-color: rgb(82, 182, 71);
    }
    .histories__text .blog_btn:hover {
      color: #ff7029;
      border-color: #ff7029;
    }
    .histories:hover .left-line::before {
      background: rgb(82, 182, 71);
    }

    .about-company-area .round-shape1 {
      left: 285px;
      top: 260px;
      animation: rotation infinite 59s linear;
    }
    .about-company-area .experience-box {
      position: relative;
      z-index: 3;
    }
    .about-company-area .experience-box .experience-inner {
      border-radius: 70px 0 70px 0;
      margin-top: -60px;
      right: -60px;
      padding: 40px 0 50px 0;
      text-align: center;
      position: relative;
      z-index: 3;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .about-company-area .experience-box .experience-inner {
        margin-top: 0;
        right: 0;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .about-company-area .experience-box .experience-inner {
        margin-top: 30px;
        right: 0;
      }
    }
    @media (max-width: 767px) {
      .about-company-area .experience-box .experience-inner {
        margin-top: 30px;
        right: 0;
      }
    }
    .about-company-area .experience-box .experience-inner .ex-title {
      color: white;
      font-size: 130px;
      line-height: 1;
      font-weight: 800;
    }
    .about-company-area .experience-box .experience-inner h3 {
      color: white;
      font-size: 30px;
      line-height: 1.1;
      font-weight: 700;
    }

    @media (max-width: 767px) {
      .about-wrapper {
        padding-left: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .about-wrapper {
        padding-left: 0;
      }
    }
    .about-wrapper .about-line {
      position: relative;
      padding-left: 25px;
    }
    .about-wrapper .about-line::before {
      content: "";
      position: absolute;
      background-color: #ff7029;
      position: absolute;
      left: 0;
      top: 10px;
      width: 3px;
      height: 70px;
      z-index: 1;
    }

    .nav-tabs {
      margin-bottom: 40px;
      border: 0;
    }
    .nav-tabs .nav-link {
      color: #232323;
      font-size: 18px;
      line-height: 1.3;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      border: 0;
      padding: 0 32px 20px 0;
      border-bottom: 2px solid #e0e0e0;
      display: inline-block;
    }
    .nav-tabs .nav-link.active {
      color: rgb(82, 182, 71);
      background-color: none;
      border-bottom: 2px solid rgb(82, 182, 71);
    }

    .about__text--child .child-icon {
      margin-right: 14px;
    }
    .about__text--child .child-icon i {
      font-size: 30px;
      line-height: 1;
      display: inline-block;
      color: #ff7029;
    }

    .service-history .history__desc {
      color: #232323;
      padding: 0 35px;
    }
    .service-history .video-area-06 {
      background-size: cover;
      height: 227px;
      max-width: 542px;
      margin-top: 24px;
      margin-left: 45px;
    }
    @media (max-width: 767px) {
      .service-history .video-area-06 {
        width: 100%;
        margin-left: 0;
      }
    }
    .service-history .video-area-06::before {
      content: "";
      background: #ff7029;
      position: absolute;
      opacity: 0.85;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    .service-history .video-area-06 .video-shadow {
      font-size: 130px;
      z-index: 1;
      line-height: 1;
    }

    .service__history__row {
      padding: 70px 30px 20px 40px;
      margin-right: 15px;
    }
    @media (max-width: 767px) {
      .service__history__row {
        margin-right: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .service__history__row {
        margin-right: 0;
      }
    }
    .service__history__row .service-03 h6 {
      color: #232323;
    }
    .service__history__row .service-03 p {
      color: #9399a3;
    }

    .history-area-03 {
      position: relative;
    }
    .history-area-03::before {
      content: "";
      position: absolute;
      width: 1875px;
      height: 774px;
      left: 0;
      top: 30%;
    }
    @media only screen and (min-width: 1601px) and (max-width: 1920px) {
      .history-area-03::before {
        width: 1500px;
      }
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .history-area-03::before {
        width: 1200px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .history-area-03::before {
        display: none;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .history-area-03::before {
        display: none;
      }
    }
    @media (max-width: 767px) {
      .history-area-03::before {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .history-area-03::before {
        display: none;
      }
    }
    .history-area-03 .history-shape-one {
      position: absolute;
      right: 70px;
      top: 66px;
      animation: rotation infinite 55s linear;
    }
    .history-area-03 .histories {
      max-width: 350px;
      margin: 0 auto 45px auto;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .history-area-03 .histories {
        margin-right: 0;
        padding: 40px 43px 35px 40px;
      }
    }
    @media (max-width: 767px) {
      .history-area-03 .histories {
        max-width: 100%;
        margin-right: 0;
        padding: 40px 15px 35px 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .history-area-03 .histories {
        max-width: 100%;
        margin-right: 0;
        padding: 40px 43px 35px 40px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .history-area-03 .section-title {
        padding-left: 0;
        padding-right: 0;
      }
    }
    @media (max-width: 767px) {
      .history-area-03 .section-title {
        padding-left: 0;
        padding-right: 0;
      }
    }

    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .hostory-wrapper {
        margin-right: 0;
      }
    }
    @media (max-width: 767px) {
      .hostory-wrapper {
        margin-right: 0;
      }
    }

    .histories {
      position: relative;
      padding: 40px 43px 35px 40px;
    }
    @media (max-width: 767px) {
      .histories {
        padding: 40px 5px 35px 8px;
      }
    }
    .histories h1 {
      font-size: 200px;
      line-height: 1;
      z-index: 33;
      -webkit-text-stroke-color: #282828;
      opacity: 0.04;
      right: -85px;
      bottom: -130px;
    }
    .histories__year {
      position: relative;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .histories__year::before {
      content: "";
      position: absolute;
      background-color: rgb(82, 182, 71);
      left: -40px;
      top: 5px;
      width: 5px;
      height: 54px;
      z-index: 1;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .histories__year h5 {
      color: rgb(82, 182, 71);
      margin-bottom: 15px;
    }
    .histories__desc .histories-title {
      font-size: 20px;
      line-height: 1.1;
      font-weight: 800;
      font-family: "Roboto", sans-serif;
      margin-bottom: 14px;
    }
    .histories:hover .histories__year h5 {
      color: #ff7029;
    }
    .histories:hover .histories__year::before {
      background: #ff7029;
      height: 100px;
    }

    .timeline-icon {
      position: relative;
      display: inline-block;
      margin: 0 27px;
    }
    .timeline-icon .alt-icon {
      color: white;
      font-size: 24px;
      line-height: 85px;
      border-radius: 50%;
      background: #ff7029;
      display: inline-block;
      text-align: center;
      width: 85px;
      height: 85px;
      position: relative;
    }
    .timeline-icon::before {
      content: "";
      border-radius: 50%;
      background: #e5eee2;
      position: absolute;
      left: -15px;
      top: -15px;
      width: 115px;
      height: 115px;
    }

    @media (max-width: 767px) {
      .portfolio-area {
        padding-left: 0;
        padding-right: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .portfolio-area {
        padding-left: 0;
        padding-right: 0;
      }
    }

    .portfolio__thumb {
      overflow: hidden;
    }
    @media (max-width: 767px) {
      .portfolio__thumb {
        margin-bottom: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .portfolio__thumb {
        margin-bottom: 30px;
      }
    }
    .portfolio__thumb img {
      display: block;
      width: 100%;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolio__thumb img:hover {
      transform: scale(1.1);
    }
    .portfolio__thumb::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      background: rgb(82, 182, 71);
      opacity: 0;
      width: 100%;
      height: 100%;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
      z-index: 1;
    }
    .portfolio:hover .portfolio__thumb img {
      transform: scale(1.1);
    }
    .portfolio__content {
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      opacity: 0;
      visibility: hidden;
      z-index: 3;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolio__content h6 {
      color: white;
      font-size: 18px;
      line-height: 40px;
      font-weight: 700;
    }
    .portfolio__content h3 a {
      color: white;
      font-size: 35px;
      line-height: 1.1;
      font-weight: 900;
    }
    .portfolio__content a i {
      color: white;
      font-size: 35px;
      font-weight: 300;
      line-height: 1;
    }
    .portfolio h1 {
      font-size: 300px;
      line-height: 1;
      font-weight: 900;
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke-width: 2px;
      -webkit-text-stroke-color: rgba(255, 255, 255, 0);
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      z-index: 2;
      transform: translateY(-50%);
      text-align: center;
      margin: 0 auto;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .portfolio h1 {
        font-size: 150px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .portfolio h1 {
        font-size: 150px;
      }
    }
    @media (max-width: 767px) {
      .portfolio h1 {
        font-size: 150px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .portfolio h1 {
        font-size: 150px;
      }
    }
    .portfolio:hover h1 {
      -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
    }
    .portfolio:hover .portfolio__thumb::before {
      opacity: 0.902;
    }
    .portfolio:hover .portfolio__content {
      opacity: 1;
      visibility: visible;
    }

    .chart2 {
      display: inline-block;
    }

    .chart3 {
      display: inline-block;
    }

    .skill .number2 {
      color: rgb(82, 182, 71);
    }
    .skill .number3 {
      color: #ff7029;
    }

    .history-area-02{
      background: #f8f8f8;
    }
    .history-area-02::before {
      content: "";
      position: absolute;
      width: 100%;
      min-height: 630px;
      left: 0;
      top: 0;
    }
    .history-area-02 .history-shape-one {
      right: 70px;
      top: 0;
      animation: rotation 50s infinite linear;
    }
    .history-area-02 .histories {
      position: relative;
      padding: 40px 43px 35px 40px;
    }
    @media (max-width: 767px) {
      .history-area-02 .histories {
        padding: 40px 5px 35px 8px;
      }
    }
    @media (max-width: 767px) {
      .history-area-02 .histories__text p {
        padding-left: 15px;
      }
    }

    .portfolios h1 {
      font-size: 150px;
      z-index: 2;
    }

    .portfolio-menu .pf_btn {
      border: 0;
      background: none;
      color: #232323;
      font-size: 18px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
      display: inline-block;
      padding: 10px 18px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolio-menu .pf_btn.active {
      border-radius: 5px;
      background-color: rgb(82, 182, 71);
      padding: 10px 18px;
      color: white;
    }

    .portfolis {
      position: relative;
    }
    .portfolis__thumb {
      position: relative;
      overflow: hidden;
    }
    .portfolis__thumb img {
      display: block;
      width: 100%;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolis__thumb::before {
      content: "";
      position: absolute;
      background: rgb(82, 182, 71);
      opacity: 0.9;
      z-index: 1;
      margin: 0;
      top: 100%;
      right: 100%;
      left: 0;
      bottom: 0;
      visibility: hidden;
      z-index: 1;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolis__content {
      text-align: center;
      top: 90%;
      left: 0;
      right: 100%;
      transform: translateY(-50%);
      z-index: 5;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolis__content .plus-icon {
      display: inline-block;
      border: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
      line-height: 48px;
      width: 48px;
      height: 48px;
    }
    .portfolis__content .plus-icon i {
      color: #e5eee2;
      font-size: 15px;
      line-height: 1;
    }
    .portfolis__content h5 a {
      color: #e5eee2;
      font-weight: 800;
    }
    .portfolis__content p {
      color: #e5eee2;
      font-weight: 600;
    }
    .portfolis:hover .portfolis__thumb img {
      transform: scale(1.1);
    }
    .portfolis:hover .portfolis__thumb::before {
      top: 0;
      right: 0;
      visibility: visible;
      margin: 30px;
    }
    .portfolis:hover .portfolis__content {
      top: 50%;
      right: 0;
      visibility: visible;
      opacity: 1;
    }
    .portfolis .thumb2::before {
      display: none;
    }

    .portfolis2__content2 {
      background: rgb(82, 182, 71);
      opacity: 0.902;
      position: absolute;
      left: 45px;
      bottom: 20px;
      padding: 30px 35px;
      z-index: 1;
      visibility: hidden;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .portfolis2__content2 {
        left: 20px;
        right: 20px;
        padding: 30px 10px;
      }
    }
    @media (max-width: 767px) {
      .portfolis2__content2 {
        left: 20px;
        right: 20px;
        padding: 30px 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .portfolis2__content2 {
        left: 20px;
        right: 20px;
        padding: 30px 10px;
      }
    }
    .portfolis2__content2--text {
      margin-right: 128px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .portfolis2__content2--text {
        margin-right: 50px;
      }
    }
    @media (max-width: 767px) {
      .portfolis2__content2--text {
        margin-right: 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .portfolis2__content2--text {
        margin-right: 10px;
      }
    }
    .portfolis2__content2--text h5 a {
      color: white;
      font-weight: 800;
    }
    .portfolis2__content2 p {
      color: white;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolis2__content2--btn .plus-icon2 {
      background-color: white;
      display: inline-block;
      text-align: center;
      line-height: 50px;
      width: 50px;
      height: 50px;
      color: rgb(82, 182, 71);
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolis2:hover .portfolis2__thumb2 img {
      transform: scale(1.1);
    }
    .portfolis2:hover .portfolis2__content2 {
      bottom: 60px;
      visibility: visible;
    }

    .portfolio-details-area .port-details-title {
      font-size: 30px;
      line-height: 1.3;
      font-weight: 800;
    }
    .portfolio-details-area .portfolio-desc__icon span {
      color: white;
      font-size: 45px;
      line-height: 28px;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
      background: rgb(82, 182, 71);
      display: inline-block;
      padding: 12px 20px 32px 20px;
      text-align: center;
    }
    .portfolio-details-area .details-list li {
      color: #616161;
      font-size: 18px;
      line-height: 1.3;
      font-family: "Roboto", sans-serif;
      font-weight: 600;
      margin-bottom: 28px;
      padding-left: 50px;
      position: relative;
    }
    .portfolio-details-area .details-list li::before {
      content: "\f00c";
      font-family: "Font Awesome 5 pro";
      position: absolute;
      color: rgb(82, 182, 71);
      font-size: 18px;
      line-height: 1;
      left: 0;
      top: -3px;
      border: 1px solid rgb(82, 182, 71);
      padding: 7px;
      font-weight: 400;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolio-details-area .details-list li:hover::before {
      border-color: #ff7029;
      color: #ff7029;
    }

    .portfolio-progress .port-line {
      position: relative;
    }
    @media (max-width: 767px) {
      .portfolio-progress .port-line {
        padding-right: 0;
      }
    }
    .portfolio-progress .port-line::before {
      content: "";
      position: absolute;
      background-color: #ff7029;
      position: absolute;
      left: 0;
      top: 7px;
      width: 5px;
      height: 156px;
      z-index: 1;
    }

    .portfolio-right-content .portfolio-right-img img {
      max-width: 100%;
    }
    @media (max-width: 767px) {
      .portfolio-right-content .portfolio-right-img img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .portfolio-right-content .portfolio-right-img img {
        width: 100%;
      }
    }
    .portfolio-right-content img {
      max-width: 100%;
    }
    .portfolio-right-content .client-list {
      padding: 65px 50px;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .portfolio-right-content .client-list {
        padding: 65px 20px;
      }
    }
    @media (max-width: 767px) {
      .portfolio-right-content .client-list {
        padding: 65px 20px;
      }
    }
    .portfolio-right-content .client-list li {
      color: #e5eee2;
      font-size: 24px;
      line-height: 1.3;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .portfolis.style-2 .portfolis__content {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.1);
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.1s ease-out 0s;
      -moz-transition: all 0.1s ease-out 0s;
      -ms-transition: all 0.1s ease-out 0s;
      -o-transition: all 0.1s ease-out 0s;
      transition: all 0.1s ease-out 0s;
    }
    .portfolis.style-2 .portfolis__content .plus-icon {
      background: white;
    }
    .portfolis.style-2 .portfolis__content .plus-icon i {
      color: rgb(82, 182, 71);
    }
    @media (max-width: 767px) {
      .portfolis.style-2 .portfolis__content .semi-title {
        font-size: 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .portfolis.style-2 .portfolis__content .semi-title {
        font-size: 15px;
      }
    }
    .portfolis.style-2 .portfolis__thumb::before {
      width: 100%;
      height: 100%;
      margin: 0;
      left: 0;
      top: 0;
      transform: scale(0.5);
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .portfolis.style-2:hover .portfolis__thumb::before {
      transform: scale(1);
      visibility: visible;
      opacity: 0.851;
    }
    .portfolis.style-2:hover .portfolis__content {
      visibility: visible;
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .chose-us-area .left-line {
      border-left: 5px solid #ff7029;
    }
    .chose-us-area .chose-shape {
      right: 72px;
      top: -217px;
      z-index: -1;
      animation: rotation infinite 54s linear;
    }
    .chose-us-area .chose-shape2 {
      left: 280px;
      top: 122px;
      animation: rotation infinite 50s linear;
    }

    @media (max-width: 767px) {
      .chose-wrapper {
        padding-right: 0;
        margin-left: 0;
      }
    }
    @media (max-width: 767px) {
      .chose-wrapper .section-title {
        margin-right: 0;
      }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .chose__img__one img {
        width: 100%;
      }
    }
    @media (max-width: 767px) {
      .chose__img__one img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .chose__img__one img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .chose__img__two img {
        width: 100%;
      }
    }
    @media (max-width: 767px) {
      .chose__img__two img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .chose__img__two img {
        width: 100%;
      }
    }
    .chose__img__two::before {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 0 123px 123px;
      border-color: transparent transparent rgb(82, 182, 71) transparent;
      top: -150px;
      left: 50px;
      animation: heartbeat infinite 8s alternate;
    }
    @media (max-width: 767px) {
      .chose__img__two::before {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .chose__img__two::before {
        display: none;
      }
    }
    .chose__img__two::after {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 0 123px 123px;
      border-color: transparent transparent #ff7029 transparent;
      bottom: -30px;
      right: 30px;
      animation: heartbeat infinite 8s alternate;
    }
    @media (max-width: 767px) {
      .chose__img__two::after {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .chose__img__two::after {
        display: none;
      }
    }

    .skills__icon i {
      font-size: 40px;
      color: rgb(82, 182, 71);
      font-weight: 700;
      margin-top: 11px;
      display: inline-block;
    }
    .skills__text h6 {
      font-size: 20px;
      line-height: 1.1;
      font-weight: 700;
    }

    .chose__img__three img {
      max-width: 100%;
    }
    @media (max-width: 767px) {
      .chose__img__three img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .chose__img__three img {
        width: 100%;
      }
    }

    .chose__img__four img {
      max-width: 100%;
    }
    @media (max-width: 767px) {
      .chose__img__four img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .chose__img__four img {
        width: 100%;
      }
    }

    .chose__img__five img {
      max-width: 100%;
    }
    @media (max-width: 767px) {
      .chose__img__five img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .chose__img__five img {
        width: 100%;
      }
    }

    .chose-wrapper-02 {
      width: 100%;
      min-height: 871px;
      position: relative;
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 3;
      padding: 125px 180px 0 135px;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .chose-wrapper-02 {
        padding: 125px 50px 0 60px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .chose-wrapper-02 {
        padding: 125px 0px 0 35px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .chose-wrapper-02 {
        padding: 125px 0px 0 35px;
        min-height: 650px;
      }
    }
    @media (max-width: 767px) {
      .chose-wrapper-02 {
        min-height: 800px;
        padding: 125px 15px 0 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .chose-wrapper-02 {
        min-height: 800px;
        padding: 125px 15px 0 15px;
      }
    }
    .chose-wrapper-02::before {
      content: "";
      background-color: #1f242c;
      opacity: 0.871;
      position: absolute;
      left: 0px;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .video-area4 {
      min-height: 871px;
      position: absolute;
      right: 0;
      width: 58.5%;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .video-area4 {
        position: relative;
        top: 0;
        width: 100%;
        min-height: 600px;
      }
    }
    @media (max-width: 767px) {
      .video-area4 {
        position: relative;
        top: 0;
        width: 100%;
        min-height: 400px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .video-area4 {
        position: relative;
        top: 0;
        width: 100%;
        min-height: 400px;
      }
    }

    .popup-video4 {
      color: rgb(82, 182, 71);
      font-size: 18px;
      line-height: 150px;
      background-color: white;
      width: 150px;
      height: 150px;
      animation: pulseBig3 infinite 4s linear;
    }
    .popup-video4:hover {
      color: rgb(82, 182, 71);
    }

    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .skill-text-wrapper {
        padding: 100px 0 90px 10px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .skill-text-wrapper {
        padding: 100px 0 90px 10px;
      }
    }
    @media (max-width: 767px) {
      .skill-text-wrapper {
        padding: 100px 0 90px 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .skill-text-wrapper {
        padding: 100px 0 90px 10px;
      }
    }

    .skill-img {
      width: 50%;
      min-height: 921px;
      position: absolute;
      left: 0;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .skill-img {
        position: relative;
        width: 100%;
        min-height: 600px;
      }
    }
    @media (max-width: 767px) {
      .skill-img {
        position: relative;
        width: 100%;
        min-height: 400px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .skill-img {
        position: relative;
        width: 100%;
        min-height: 450px;
      }
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .skill-img .shadow-text3 {
        font-size: 150px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .skill-img .shadow-text3 {
        font-size: 50px;
      }
    }

    @media only screen and (min-width: 1601px) and (max-width: 1920px) {
      .chose-wrapper {
        padding-bottom: 37px;
      }
    }

    @media (max-width: 767px) {
      .skill .chart4 {
        text-align: center;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .skill .chart4 {
        text-align: center;
      }
    }
    @media (max-width: 767px) {
      .skill .chart5 {
        text-align: center;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .skill .chart5 {
        text-align: center;
      }
    }
    .skill__number3 {
      color: #fff;
      font-size: 45px;
      line-height: 1;
      font-weight: 800;
      top: 20px;
      right: -195px;
      background: #282f39;
      width: 122px;
      height: 102px;
      text-align: center;
      line-height: 102px;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .skill__number3 {
        top: -30px;
        right: -83px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .skill__number3 {
        top: -30px;
        right: -83px;
      }
    }
    @media (max-width: 767px) {
      .skill__number3 {
        top: -30px;
        right: -83px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .skill__number3 {
        top: -30px;
        right: -83px;
      }
    }
    .skill__number3::before {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 18px 18px 0 0;
      border-color: #282f39 transparent transparent transparent;
      bottom: -18px;
      left: 10px;
    }
    .skill__number3 span {
      color: rgb(82, 182, 71);
      font-size: 16px;
      font-weight: 800;
      line-height: 1;
      font-family: "Roboto", sans-serif;
    }
    .skill__number3 span.color-02 {
      color: #ff7029;
    }
    .skill__icon {
      left: 0;
      right: 0;
      margin: 0 auto;
      display: inline-block;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
    }
    .skill__icon i {
      color: rgb(82, 182, 71);
      font-size: 75px;
      line-height: 1;
    }
    .skill .semi-white {
      color: white;
      text-align: center;
      margin-top: 20px;
    }

    .skill-area2 .title-orange h2 {
      color: #232323;
    }

    .skills {
      position: relative;
    }
    .skills .chart6 {
      display: inline-block;
      margin-bottom: 25px;
    }
    .skills .chart7 {
      display: inline-block;
      margin-bottom: 25px;
    }
    .skills .chart7 .skill__icon i {
      color: #ff7029;
    }
    .skills__num4 {
      position: relative;
      width: 85px;
      height: 60px;
      font-size: 35px;
      line-height: 60px;
      background: rgb(82, 182, 71);
      right: -150px;
      font-size: 35px;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
      color: white;
      text-align: center;
    }
    .skills__num4::before {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-style: solid;
      border-color: rgb(82, 182, 71) transparent transparent transparent;
      border-width: 10px 13px 0 0;
      bottom: -10px;
    }
    .skills__num4 span {
      color: white;
      font-size: 16px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
    }
    .skills__num4.num04 {
      background-color: #ff7029;
    }
    .skills__num4.num04::before {
      border-color: #ff7029 transparent transparent transparent;
    }

    .video-area .video-area-05 {
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      height: 675px;
      position: relative;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .video-area .video-area-05 {
        height: 600px;
      }
    }
    @media (max-width: 767px) {
      .video-area .video-area-05 {
        height: 440px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .video-area .video-area-05 {
        height: 440px;
      }
    }
    .video-area .video-area-05::before {
      content: "";
      position: absolute;
      background: #0c1421;
      opacity: 0.2;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
    }
    .video-area .video-area-05 .popup-video5 {
      width: 150px;
      height: 150px;
      line-height: 150px;
      left: 0;
      right: 0;
      margin: 0 auto;
      text-align: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }
    .video-area .video-area-05 .popup-video5::before {
      content: "";
      position: absolute;
      border: 3px solid white;
      border-radius: 50%;
      left: -53px;
      top: -54px;
      width: 254px;
      height: 254px;
      z-index: 1;
    }

    .cta-wrapper {
      background-size: cover;
      width: 100%;
      height: 401px;
    }
    .cta-wrapper::before {
      content: "";
      position: absolute;
      background: #1f242c;
      opacity: 0.749;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
    }
    @media (max-width: 767px) {
      .cta-wrapper .white-title {
        padding-top: 40px;
        margin-bottom: 0;
      }
    }

    .custom-container2 {
      max-width: 1575px;
      margin: 0 auto;
    }

    .subscribe-area .subscribe__btn {
      z-index: 3;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .subscribe-area .subscribe__btn {
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
      }
    }
    @media (max-width: 767px) {
      .subscribe-area .subscribe__btn {
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .subscribe-area .subscribe__btn {
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
      }
    }
    .subscribe-area .subscribe__btn .sub-btn {
      border: 0;
      background: #fff;
      color: #232323;
      font-size: 16px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
      padding: 19px 38px;
      cursor: pointer;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .subscribe-area .subscribe__btn .sub-btn i {
      padding-left: 5px;
    }
    .subscribe-area .subscribe__btn .sub-btn:hover {
      color: white;
      background: rgb(82, 182, 71);
    }
    .subscribe-area .sub-shape {
      right: 70px;
      animation: rotation infinite 40s linear;
      top: 18px;
    }
    .subscribe-area .shadow-text {
      z-index: 3;
      font-size: 220px;
      right: 70px;
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke-color: #fff;
      -webkit-text-stroke-width: 2px;
      opacity: 0.1;
      top: 50%;
      line-height: 1;
      transform: translateY(-50%);
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .subscribe-area .shadow-text {
        font-size: 100px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .subscribe-area .shadow-text {
        font-size: 100px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .subscribe-area .shadow-text {
        font-size: 35px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .subscribe-area .shadow-text {
        font-size: 45px;
      }
    }

    .video-area2 {
      background-size: cover;
      width: 100%;
      height: 319px;
      text-align: center;
    }
    .video-area2::before {
      content: "";
      background: #1f242c;
      opacity: 0.749;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .popup-video2 {
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: 50%;
      transform: translateY(-50%);
      background: rgb(82, 182, 71);
      animation: pulseBig2 infinite 6s linear;
      z-index: 3;
    }

    .subscribe__content {
      position: relative;
      z-index: 3;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .subscribe__content {
        margin-left: 0;
      }
    }
    @media (max-width: 767px) {
      .subscribe__content {
        margin-left: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .subscribe__content {
        margin-left: 0;
      }
    }
    .subscribe__content .sub-title {
      color: #fff;
      font-size: 40px;
      line-height: 1.3;
      font-weight: 900;
    }
    .subscribe__content .input-area {
      position: relative;
    }
    .subscribe__content .input-area::before {
      content: "\f2b6";
      position: absolute;
      font-family: "Font awesome 5 pro";
      left: 0;
      top: 5px;
      font-size: 15px;
      line-height: 17px;
      color: white;
    }
    .subscribe__content .input-area input:focus {
      box-shadow: none;
    }
    .subscribe__content .input-area ::placeholder {
      color: white;
    }
    .subscribe__content .input-area ::-webkit-placeholder {
      color: white;
    }
    .subscribe__content .input-area ::-moz-placeholder {
      color: white;
    }
    .subscribe__content .input-area .form-control {
      background: no-repeat;
      border: 0;
      font-size: 15px;
      line-height: 30px;
      font-family: "Roboto", sans-serif;
      font-weight: 600;
      color: white;
      border-bottom: 3px solid white;
      border-radius: 0;
      padding: 10px 30px;
      width: 100%;
      display: block;
    }

    .cta-area2 {
      width: 100%;
      min-height: 620px;
      position: relative;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .cta-area2 {
        min-height: 430px;
      }
    }
    @media (max-width: 767px) {
      .cta-area2 {
        min-height: 430px;
      }
    }
    @media (max-width: 767px) {
      .cta-area2 {
        min-height: 430px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .cta-area2 .white-title {
        padding-top: 80px;
      }
    }
    @media (max-width: 767px) {
      .cta-area2 .white-title {
        padding-top: 50px;
      }
    }
    @media (max-width: 767px) {
      .cta-area2 .white-title {
        padding-top: 50px;
      }
    }
    .cta-area2::before {
      content: "";
      position: absolute;
      background: #1f242c;
      opacity: 0.85;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
    }

    .shadow-text3 {
      font-size: 350px;
      line-height: 1;
      font-weight: 900;
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke-width: 2px;
      -webkit-text-stroke-color: rgba(255, 255, 255, 0.15);
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
      margin: 0 auto;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .shadow-text3 {
        font-size: 150px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .shadow-text3 {
        font-size: 80px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .shadow-text3 {
        font-size: 70px;
      }
    }
    @media (max-width: 767px) {
      .shadow-text3 {
        display: none;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .shadow-text3 {
        display: none;
      }
    }

    .subscribe-area .subscribe__btn .sub-btn2 {
      background: #232323;
      color: white;
    }

    .video-area3 {
      max-width: 960px;
      min-height: 550px;
    }
    @media (max-width: 767px) {
      .video-area3 {
        min-height: 450px;
        margin-bottom: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .video-area3 {
        min-height: 450px;
        margin-bottom: 30px;
      }
    }
    .video-area3 h1 {
      font-size: 220px;
      line-height: 1;
      z-index: 1;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .video-area3 h1 {
        font-size: 100px;
      }
    }
    .video-area3::before {
      content: "";
      background: #1f242c;
      opacity: 0.749;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .popup-video3 {
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: 50%;
      transform: translateY(-50%);
      z-index: 7;
      font-size: 15px;
      font-weight: 700;
      width: 100px;
      height: 100px;
      line-height: 100px;
      text-align: center;
    }

    .sub__content2 {
      max-width: 960px;
      min-height: 550px;
      position: relative;
    }
    @media (max-width: 767px) {
      .sub__content2 {
        min-height: 450px;
        margin-bottom: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .sub__content2 {
        min-height: 450px;
        margin-bottom: 30px;
      }
    }
    .sub__content2::before {
      content: "";
      background: rgb(82, 182, 71);
      opacity: 0.85;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .subscribe__content--inner-text {
      position: relative;
      z-index: 3;
      max-width: 580px;
      margin: 0 auto;
    }
    @media (max-width: 767px) {
      .subscribe__content--inner-text .section-title {
        padding-top: 50px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .subscribe__content--inner-text .section-title {
        padding-top: 50px;
      }
    }
    .subscribe__content--inner-text h1 {
      font-size: 220px;
      top: 64%;
      line-height: 1;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .subscribe__content--inner-text h1 {
        font-size: 180px;
      }
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .subscribe__content--inner-text h1 {
        font-size: 80px;
      }
    }

    .input-area2 {
      position: relative;
    }
    .input-area2 ::placeholder {
      color: #232323 !important;
    }
    .input-area2 ::-webkit-placeholder {
      color: #232323 !important;
    }
    .input-area2 ::-moz-placeholder {
      color: #232323 !important;
    }
    .input-area2::before {
      color: rgb(82, 182, 71) !important;
      right: 35px !important;
      left: auto !important;
      top: 50% !important;
      transform: translateY(-50%);
    }
    .input-area2 .form-control {
      background: white !important;
      color: #232323 !important;
      height: 70px;
      width: 100%;
      display: block;
    }

    #contact-map {
      height: 217px;
      width: 100%;
    }

    .sub-bg3 .sub-shape {
      top: -106px;
      right: 52px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .sub-bg3 .white-title {
        margin-left: 15px;
      }
    }
    @media (max-width: 767px) {
      .sub-bg3 .white-title {
        margin-left: 15px;
        margin-bottom: 40px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .sub-bg3 .white-title {
        margin-left: 15px;
        margin-bottom: 40px;
      }
    }
    .sub-bg3 .white-title h6 {
      color: white;
      border-color: white;
    }
    .sub-bg3 h1 {
      left: 135px;
      right: auto;
      position: absolute;
      text-align: center;
      margin: 0 auto;
    }
    @media only screen and (min-width: 1200px) and (max-width: 1600px) {
      .sub-bg3 h1 {
        font-size: 80px !important;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .sub-bg3 .subscribe__btn {
        margin-right: 15px;
      }
    }
    @media (max-width: 767px) {
      .sub-bg3 .subscribe__btn {
        margin-right: 0;
        text-align: center !important;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .sub-bg3 .subscribe__btn {
        margin-right: 0;
        text-align: center !important;
      }
    }

    .input-area3 {
      overflow: hidden;
    }
    .input-area3 input:focus {
      outline: none;
      box-shadow: none;
    }
    .input-area3 .form-control {
      background-color: white;
      position: relative;
      width: 100%;
      height: 60px;
      border-radius: 0;
      color: #616161;
      font-size: 15px;
      line-height: 1;
      font-weight: 400;
      font-family: "Roboto", sans-serif;
      padding: 12px;
    }
    .input-area3 span {
      background-color: #ff7029;
      position: absolute;
      right: 0;
      top: 0;
      width: 60px;
      height: 60px;
      z-index: 3;
      text-align: center;
      line-height: 60px;
    }
    .input-area3 span i {
      color: white;
      font-size: 18px;
      border: 1px solid #fff;
      border-radius: 50%;
      padding: 1px 7px;
      display: inline-block;
    }

    .contact-map-area #contact-map {
      height: 750px;
    }
    @media (max-width: 767px) {
      .contact-map-area #contact-map {
        height: 450px;
      }
    }
    @media (max-width: 767px) {
      .contact-map-area #contact-map {
        height: 450px;
      }
    }

    .contact-area {
      margin-top: -80px;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .contact-area {
        margin-top: 30px;
      }
    }
    @media (max-width: 767px) {
      .contact-area {
        margin-top: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .contact-area {
        margin-top: 30px;
      }
    }
    .contact-area .contact-box {
      padding: 60px 50px 50px 50px;
      position: relative;
      overflow: hidden;
    }
    .contact-area .contact-boxed {
      color: white;
      font-size: 24px;
      line-height: 68px;
      border: 1px solid #faf6f5;
      display: inline-block;
      text-align: center;
      width: 68px;
      height: 68px;
    }
    .contact-area .contact-box p {
      color: white;
      font-weight: 600;
    }
    .contact-area .contact-box .semi-title {
      color: white;
      font-weight: 600;
    }
    .contact-area .contact-box .shadow-icon {
      color: #fff;
      font-size: 190px;
      position: absolute;
      opacity: 0.06;
      right: -65px;
      top: -45px;
    }
    .contact-area .c-box {
      position: relative;
      background: #1d304f;
      padding: 60px 50px 50px 50px;
    }

    @media (max-width: 767px) {
      .contact-form-area .section-title {
        padding-left: 0;
        padding-right: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .contact-form-area .section-title {
        padding-left: 0;
        padding-right: 0;
      }
    }
    .contact-form-area .contact-form input:focus {
      background: whitesmoke;
      border-color: transparent;
      border-left: 5px solid rgb(82, 182, 71);
      border-radius: none;
    }
    .contact-form-area .contact-form .input-subject::before {
      content: "\f078";
    }
    .contact-form-area .contact-form .form-input .form-control {
      border-radius: 6px;
      height: 60px;
    }
    .contact-form-area .contact-form textarea:focus {
      background: whitesmoke;
      border-color: transparent;
      border-left: 5px solid rgb(82, 182, 71);
      border-radius: none;
    }
    .contact-form-area .contact-form textarea {
      height: 120px;
      border-radius: 6px;
    }
    .contact-form-area .cintact-form-btn a {
      display: inline-block;
      width: 570px;
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .contact-form-area .cintact-form-btn a {
        width: 270px;
      }
    }
    @media (max-width: 767px) {
      .contact-form-area .cintact-form-btn a {
        width: 270px;
      }
    }

    .testimonial-area .testimonial-img {
      right: 0;
      bottom: 0;
      z-index: 1;
      width: 45%;
      height: 100%;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .testimonial-area .testimonial-img {
        position: relative;
        top: 0;
        height: 586px;
        width: 100%;
        margin-bottom: 30px;
      }
    }
    @media (max-width: 767px) {
      .testimonial-area .testimonial-img {
        position: relative;
        top: 0;
        height: 430px;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 30px;
      }
    }
    .testimonial-area .testimonial-shape-one {
      left: 0;
      bottom: 0;
    }
    .testimonial-area .testimonial-shape-two {
      right: 0;
      top: 0;
    }

    .testimonial-box {
      position: relative;
    }

    .testimonial-img-active {
      position: relative;
      z-index: 3;
    }
    .testimonial-img-active .img-slide {
      text-align: center;
    }
    .testimonial-img-active .img-slide .img-item {
      display: inline-block;
      text-align: center;
      margin: 0 auto;
      margin-top: 15px;
      margin-bottom: 15px;
    }
    .testimonial-img-active .img-slide .img-item img {
      display: inline-block;
    }

    .img-slide.slick-slide.slick-current.slick-active.slick-center {
      text-align: center;
    }
    .img-slide.slick-slide.slick-current.slick-active.slick-center .img-item {
      position: relative;
    }
    .img-slide.slick-slide.slick-current.slick-active.slick-center .img-item::before {
      content: "";
      position: absolute;
      background-color: #f8732c;
      opacity: 0.7;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      left: 0;
      right: 0;
      top: 0;
      margin: 0;
      z-index: 1;
    }

    .testtimonial-item-active {
      position: relative;
      z-index: 3;
    }
    .testtimonial-item-active::before {
      position: absolute;
      background-color: rgb(82, 182, 71);
      position: absolute;
      right: -60px;
      bottom: -52px;
      width: 130px;
      height: 130px;
      content: "";
      border-radius: 50%;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .testtimonial-item-active::before {
        right: 0;
      }
    }
    @media (max-width: 767px) {
      .testtimonial-item-active::before {
        right: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testtimonial-item-active::before {
        right: 0;
      }
    }

    .item-inner {
      padding: 55px 44px 55px 55px;
      position: relative;
      z-index: 3;
    }
    @media (max-width: 767px) {
      .item-inner {
        padding: 55px 15px 55px 10px;
      }
    }
    .item-inner h6 {
      font-size: 20px;
      line-height: 1.5;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .item-inner .inner-para {
      font-size: 18px;
      line-height: 35px;
    }
    .item-inner .testimonial-author h5 {
      font-size: 20px;
      line-height: 1.1;
      font-weight: 800;
    }
    .item-inner .testimonial-author span {
      color: rgb(82, 182, 71);
      font-size: 14px;
      line-height: 1.1;
      font-weight: 700;
      display: inline-block;
    }

    .highlight-text2 {
      color: rgb(82, 182, 71);
    }

    .testtimonial-item-active2 .item {
      padding: 40px 45px;
      margin: 0 10px;
    }
    @media (max-width: 767px) {
      .testtimonial-item-active2 .item {
        padding: 40px 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testtimonial-item-active2 .item {
        padding: 40px 15px;
      }
    }

    .author__desig h6 {
      font-weight: 800;
      margin-bottom: 0;
    }
    .author__desig span {
      color: rgb(82, 182, 71);
      font-weight: 700;
    }

    .item__content--star a {
      color: rgb(82, 182, 71);
      font-size: 18px;
      margin: 0 4px;
    }
    .item__content--quote {
      font-size: 60px;
      color: #232323;
      opacity: 0.07;
    }

    .item.slick-slide.slick-current.slick-active .item__content--quote {
      color: rgb(82, 182, 71);
      opacity: 1;
    }

    .slick-dots {
      position: absolute;
      bottom: -95px;
      left: 0;
      right: 0;
      margin: 0 auto;
      z-index: 1;
      text-align: center;
    }
    .slick-dots li {
      display: inline-block;
      margin: 0 5px;
    }
    .slick-dots li button {
      border: 0;
      text-indent: -10000px;
      border-radius: 50%;
      background-color: #d1d1d1;
      width: 10px;
      height: 10px;
      display: inline-block;
      padding: 0;
    }
    .slick-dots li.slick-active button {
      background: #ff7029;
    }

    .testimonial-02 {
      position: relative;
    }
    .testimonial-02 .testimonial-shape-three {
      position: absolute;
      right: 90px;
      top: 210px;
      animation: rotation infinite 59s linear;
    }
    .testimonial-02 .testimonial-shape-four {
      content: "";
      border-radius: 50%;
      background-color: #ff7029;
      position: absolute;
      left: 286px;
      bottom: 123px;
      width: 170px;
      height: 170px;
    }
    @media (max-width: 767px) {
      .testimonial-02 .section-title {
        margin-right: 0;
        margin-left: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .testimonial-02 .section-title {
        margin-right: 0;
        margin-left: 0;
      }
    }

    .about-testimonial {
      padding-top: 305px;
    }

    .position-video {
      position: relative;
      z-index: 3;
      margin-bottom: -180px;
    }

    .blog__content {
      padding: 50px 80px 60px 70px;
      margin-top: -265px;
      z-index: 3;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .blog__content {
        margin-left: 0;
        margin-right: 0;
      }
    }
    @media (max-width: 767px) {
      .blog__content {
        margin-left: 0;
        margin-right: 0;
        padding: 50px 15px 60px 15px;
        margin-top: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog__content {
        margin-left: 0;
        margin-right: 0;
        padding: 50px 15px 60px 15px;
        margin-top: 30px;
      }
    }
    .blog__content--meta span {
      color: white;
      font-size: 15px;
      line-height: 45px;
      font-weight: 600;
      font-family: "Roboto", sans-serif;
      margin-right: 35px;
    }
    @media (max-width: 767px) {
      .blog__content--meta span {
        margin-right: 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog__content--meta span {
        margin-right: 10px;
      }
    }
    .blog__content h5 a {
      color: white;
      display: inline-block;
      line-height: 1.4;
    }
    .blog__content p {
      color: white;
    }

    .border_btn {
      background: transparent;
      border: 3px solid white;
    }
    .border_btn:hover {
      background: #ff7029;
      border: 3px solid #ff7029;
    }

    .blog__content2 {
      padding: 28px 23px 40px 40px;
      margin-top: -110px;
    }
    @media (max-width: 767px) {
      .blog__content2 {
        padding: 28px 10px 40px 15px;
        margin-top: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog__content2 {
        padding: 28px 10px 40px 15px;
        margin-top: 30px;
      }
    }
    .blog__content2 .meta-02 span {
      margin-right: 20px;
    }
    @media (max-width: 767px) {
      .blog__content2 .meta-02 span {
        margin-right: 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog__content2 .meta-02 span {
        margin-right: 10px;
      }
    }
    .blog__content2 h5 a {
      font-size: 20px;
    }

    .blog_btn {
      background: transparent;
      text-align: left;
      padding: 0;
      padding-bottom: 5px;
      border-bottom: 2px solid white;
      display: inline-block;
    }
    .blog_btn:hover, .blog_btn:focus {
      background: transparent;
      color: rgb(82, 182, 71);
    }

    .blog__thumb {
      overflow: hidden;
    }
    .blog__thumb img {
      display: block;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .blog__thumb img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .blog__thumb img {
        width: 100%;
      }
    }
    @media (max-width: 767px) {
      .blog__thumb img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog__thumb img {
        width: 100%;
      }
    }
    .blog:hover .blog__thumb img {
      transform: scale(1.1);
    }
    .blog:hover .blog__thumb .position_btn {
      opacity: 1;
      visibility: visible;
    }

    .blog__thumb .position_btn {
      position: absolute;
      z-index: 2;
      bottom: 20px;
      right: 20px;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }

    .blog__content3 {
      padding: 30px 40px 20px 40px;
      border: 1px solid #eaeaea;
    }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .blog__content3 {
        padding: 30px 10px 20px 10px;
      }
    }
    @media (max-width: 767px) {
      .blog__content3 {
        padding: 30px 10px 20px 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog__content3 {
        padding: 30px 10px 20px 10px;
      }
    }
    .blog__content3 h5 a {
      line-height: 1.5;
      display: inline-block;
      position: relative;
    }
    .blog__content3 h5 a::before {
      content: "";
      background: #e2e2e2;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      z-index: 1;
    }
    .blog__content3 h5 a::after {
      content: "";
      background: rgb(82, 182, 71);
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 95px;
      height: 4px;
      z-index: 1;
    }
    .blog__content3--meta span {
      font-weight: 600;
    }
    .blog__content3--meta span:nth-child(1) {
      margin-right: 24px;
    }
    .blog__content3--meta span i {
      margin-right: 3px;
    }

    .blog:hover .blog__content3 h5 a {
      color: rgb(82, 182, 71);
    }
    .blog .section-title {
      padding-left: 0;
      padding-right: 0;
    }

    .blog__content4 {
      position: absolute;
      bottom: 0;
      margin: 0 30px 25px 50px;
    }
    @media (max-width: 767px) {
      .blog__content4 {
        padding: 0px 10px 30px 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog__content4 {
        padding: 0px 10px 30px 10px;
      }
    }
    .blog__content4 h3 a {
      color: white;
      font-size: 30px;
      line-height: 1.3;
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog__content4 h3 a {
        font-size: 20px;
      }
    }
    @media (max-width: 767px) {
      .blog__content4 h3 a {
        font-size: 20px;
      }
    }
    .blog__content4 .blog__content3--meta span {
      color: white;
      display: inline-block;
      font-size: 15px;
    }

    .blog_content04 {
      border: 0;
      padding: 40px 40px 35px 40px;
    }
    @media (max-width: 767px) {
      .blog_content04 {
        padding: 40px 10px 35px 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog_content04 {
        padding: 40px 15px 35px 15px;
      }
    }
    .blog_content04 .blog__content3--meta span {
      font-size: 15px;
    }
    .blog_content04 .blog__content3--meta span i {
      color: rgb(82, 182, 71);
    }
    .blog_content04 h5 a::before {
      display: none;
    }
    .blog_content04 h5 a::after {
      display: none;
    }

    .h3-blog {
      width: 100%;
      height: 320px;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
    }
    .h3-blog::before {
      content: "";
      position: absolute;
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.904) 100%);
      -webkit-background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.904) 100%);
      -moz-background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.904) 100%);
      left: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
    }
    @media (max-width: 767px) {
      .h3-blog img {
        max-width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .h3-blog img {
        max-width: 100%;
      }
    }
    @media (max-width: 767px) {
      .h3-blog .blog__content4 {
        margin: 0 10px 30px 10px;
      }
    }
    .h3-blog:hover .blog__content4 h3 a {
      color: rgb(82, 182, 71);
    }

    .blog .h3-blog2 img {
      width: 100%;
    }
    .blog .meta-icon i {
      color: rgb(82, 182, 71);
    }

    .more_btn3 {
      color: rgb(82, 182, 71);
      font-size: 16px;
      line-height: 1;
      font-weight: 800;
      padding-bottom: 5px;
      border-bottom: 2px solid rgb(82, 182, 71);
    }
    .more_btn3:hover {
      color: rgb(82, 182, 71);
      border-color: rgb(82, 182, 71);
    }

    @media (max-width: 767px) {
      .blog-grid-area .section-title {
        padding-right: 0;
        padding-left: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-grid-area .section-title {
        padding-right: 0;
        padding-left: 0;
      }
    }

    .blog-grid .blog__thumb {
      position: relative;
    }
    .blog-grid .blog__thumb::before {
      content: "";
      position: absolute;
      background: #1f242c;
      opacity: 0;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      z-index: 1;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .blog-grid:hover .blog__thumb::before {
      opacity: 0.35;
    }
    .blog-grid:hover .blog-grid-content h3 a {
      color: rgb(82, 182, 71);
    }

    .pagination li a.page-link {
      border: 2px solid #dddddd;
      border-radius: 50%;
      color: #0d3c00;
      font-size: 20px;
      line-height: 35px;
      text-align: center;
      width: 56px;
      height: 56px;
      display: inline-block;
      margin-right: 10px;
    }
    @media (max-width: 767px) {
      .pagination li a.page-link {
        margin-right: 5px;
        width: 46px;
        height: 46px;
        line-height: 24px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .pagination li a.page-link {
        margin-right: 5px;
        width: 46px;
        height: 46px;
      }
    }
    .pagination li a.page-link:hover {
      color: white;
      background: #ff7029;
      border-color: #ff7029;
    }
    .pagination li a.page-link:first-child {
      border-radius: 0;
      border-radius: 50%;
    }
    .pagination li a.page-link:last-child {
      border-radius: 0;
      border-radius: 50%;
    }
    .pagination li .page-link:focus {
      box-shadow: none;
    }

    .blog-grid-content {
      padding: 40px 40px 30px 40px;
    }
    @media (max-width: 767px) {
      .blog-grid-content {
        padding: 40px 10px 30px 10px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-grid-content {
        padding: 40px 10px 30px 10px;
      }
    }
    .blog-grid-content .meta-btn {
      color: white;
      background-color: rgb(82, 182, 71);
      font-size: 13px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      padding: 10px 15px;
      display: inline-block;
    }
    .blog-grid-content h3 {
      font-size: 30px;
      line-height: 1.3;
      font-weight: 800;
    }
    .blog-grid-content h3.grid-bottom-line {
      position: relative;
    }
    .blog-grid-content h3.grid-bottom-line::before {
      content: "";
      background: #e2e2e2;
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      z-index: 1;
    }
    .blog-grid-content h3.grid-bottom-line::after {
      content: "";
      background: rgb(82, 182, 71);
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 95px;
      height: 4px;
      z-index: 1;
    }
    .blog-grid-content .blog__content3--meta span {
      margin-right: 30px;
    }
    @media (max-width: 767px) {
      .blog-grid-content .blog__content3--meta span {
        margin-right: 14px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-grid-content .blog__content3--meta span {
        margin-right: 14px;
      }
    }

    .grid-video {
      z-index: 5;
      top: 50%;
      left: 0;
      right: 0;
      text-align: center;
      margin: 0 auto;
      position: absolute;
      transform: translateY(-50%);
    }

    .blog-quote-area .quote__box {
      padding: 55px 70px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
    }
    @media (max-width: 767px) {
      .blog-quote-area .quote__box {
        padding: 55px 12px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-quote-area .quote__box {
        padding: 55px 12px;
      }
    }
    .blog-quote-area .quote__box .quote-title {
      color: white;
      font-size: 30px;
      line-height: 1.3;
      font-weight: 800;
    }
    .blog-quote-area .quote__box .quote-name {
      color: white;
      font-size: 18px;
      line-height: 1.3;
      font-weight: 800;
      position: relative;
    }
    .blog-quote-area .quote__box .quote-name::before {
      content: "";
      background: white;
      position: absolute;
      left: 0;
      top: 10px;
      width: 40px;
      height: 3px;
      z-index: 1;
    }
    .blog-quote-area .quote__box .quote-name span {
      font-size: 55px;
      position: absolute;
      top: -47px;
      left: 64%;
    }

    .bottom-blog {
      background-size: cover;
      background-repeat: no-repeat;
      height: 100%;
      padding: 95px 40px 40px 40px;
      background-position: center;
      position: relative;
    }
    @media (max-width: 767px) {
      .bottom-blog {
        padding: 95px 5px 40px 5px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .bottom-blog {
        padding: 95px 5px 40px 5px;
      }
    }
    .bottom-blog::before {
      position: absolute;
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.304) 100%);
      -webkit-background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.304) 100%);
      -moz-background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.304) 100%);
      left: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      content: "";
    }
    .bottom-blog .bottom-blog-text {
      position: relative;
      z-index: 3;
    }
    .bottom-blog .grid-bottom-line {
      color: white;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .bottom-blog .grid-bottom-line::before {
      display: none;
    }
    .bottom-blog .grid-bottom-line::after {
      display: none;
    }
    .bottom-blog .blog__content3--meta {
      color: white;
    }
    .bottom-blog:hover .grid-bottom-line {
      color: rgb(82, 182, 71);
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .blog-standard-right {
        margin-top: 30px;
      }
    }
    @media (max-width: 767px) {
      .blog-standard-right {
        margin-top: 30px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-standard-right {
        margin-top: 30px;
      }
    }
    .blog-standard-right .blog-widget {
      position: relative;
    }
    .blog-standard-right .blog-widget input:focus {
      box-shadow: none;
    }
    .blog-standard-right .blog-widget ::placeholder {
      color: #616161;
    }
    .blog-standard-right .blog-widget ::-moz-placeholder {
      color: #616161;
    }
    .blog-standard-right .blog-widget ::-webkit-placeholder {
      color: #616161;
    }
    .blog-standard-right .blog-widget .form-control {
      border: 0;
      background: 0;
      color: #616161;
      font-size: 18px;
      line-height: 1.1;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      background-color: whitesmoke;
      position: relative;
      padding-left: 35px;
      height: 80px;
      border-radius: 0;
      display: block;
      width: 100%;
      border-left: 5px solid rgb(82, 182, 71);
    }
    .blog-standard-right .blog-widget span {
      position: absolute;
      right: 35px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      line-height: 1;
      color: rgb(82, 182, 71);
      z-index: 3;
      display: inline-block;
      cursor: pointer;
    }
    .blog-standard-right .blog-widget-list {
      padding: 40px 35px 25px 35px;
    }
    @media (max-width: 767px) {
      .blog-standard-right .blog-widget-list {
        padding: 40px 15px 25px 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-standard-right .blog-widget-list {
        padding: 40px 15px 25px 15px;
      }
    }
    .blog-standard-right .blog-widget-list .semi-title {
      border-left: 5px solid rgb(82, 182, 71);
      margin-left: -35px;
      padding-left: 35px;
    }
    .blog-standard-right .blog-widget-list .service-widget__list li a i {
      color: rgb(82, 182, 71);
      right: 75px;
      font-size: 18px;
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-standard-right .blog-widget-list .service-widget__list li a i {
        right: 50px;
      }
    }
    @media (max-width: 767px) {
      .blog-standard-right .blog-widget-list .service-widget__list li a i {
        right: 50px;
      }
    }
    .blog-standard-right .blog-widget-list .service-widget__list li:hover a i {
      color: white;
    }

    .blog-list2 .service-widget__list li a {
      color: #616161;
    }
    .blog-list2 .service-widget__list li a:hover {
      color: white;
    }

    .blog-widget-post {
      padding: 40px 35px 25px 35px;
      border: 1px solid #ebebeb;
    }
    .blog-widget-post .semi-title {
      border-left: 5px solid rgb(82, 182, 71);
      margin-left: -35px;
      padding-left: 35px;
    }
    .blog-widget-post .post {
      border-bottom: 1px solid #ebebeb;
    }
    .blog-widget-post .post:last-child {
      border-bottom: 0;
    }
    .blog-widget-post .post__content h6 {
      font-size: 18px;
      line-height: 1.3;
      font-weight: 800;
    }
    .blog-widget-post .post__content h6 a {
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .blog-widget-post .post .coment-date {
      color: #616161;
      font-size: 14px;
      line-height: 1.3;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
    }
    .blog-widget-post .post .coment-date i {
      color: rgb(82, 182, 71);
    }
    .blog-widget-post .post:hover .post__content h6 a {
      color: rgb(82, 182, 71);
    }

    .blog-widget-instagram {
      padding: 40px 35px 25px 35px;
      border: 1px solid #ebebeb;
    }
    .blog-widget-instagram .semi-title {
      border-left: 5px solid rgb(82, 182, 71);
      margin-left: -35px;
      padding-left: 35px;
    }

    .blog-widget-tag .tag-btn {
      color: #616161;
      font-size: 14px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 600;
      background: whitesmoke;
      padding: 8px 15px;
      margin: 0 7px 7px 0;
      display: inline-block;
    }
    .blog-widget-tag .tag-btn:hover {
      color: white;
      background: rgb(82, 182, 71);
    }

    .blog-widget-add {
      position: relative;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
    }
    .blog-widget-add::before {
      content: "";
      position: absolute;
      background: #1f242c;
      opacity: 0.8;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      z-index: 1;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }

    .add-content {
      position: relative;
      z-index: 5;
      padding: 100px 55px 112px 55px;
    }
    @media (max-width: 767px) {
      .add-content {
        padding: 100px 15px 112px 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .add-content {
        padding: 100px 15px 112px 15px;
      }
    }
    .add-content span i {
      color: rgb(82, 182, 71);
      font-size: 15px;
      line-height: 1;
      display: inline-block;
      margin-bottom: 10px;
    }
    .add-content h6 {
      color: white;
      font-size: 16px;
      line-height: 1.3;
      font-weight: 600;
    }
    .add-content h3 {
      color: white;
      font-size: 35px;
      line-height: 1.3;
      font-weight: 700;
    }

    .blog-standard-border {
      border: 2px solid #efefef;
      border-top: 0;
      padding: 30px 38px 0 44px;
    }
    @media (max-width: 767px) {
      .blog-standard-border {
        padding: 30px 0 0 5px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-standard-border {
        padding: 30px 0 0 5px;
      }
    }
    .blog-standard-border .blog-grid-content {
      padding: 0;
      border: 0;
    }
    @media (max-width: 767px) {
      .blog-standard-border .blog-grid-content .blog__content3--meta span {
        margin-right: 20px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .blog-standard-border .blog-grid-content .blog__content3--meta span {
        margin-right: 20px;
      }
    }

    .blog-desc3 .blog-desc3-icon span {
      color: white;
      font-size: 50px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      background: #ff7029;
      padding: 8px 27px;
    }

    .blog-details-row .blog-details-img img {
      width: 100%;
    }

    .blog-details-list-desc .details-desc-title {
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
    }
    .blog-details-list-desc .desc-list li {
      color: #616161;
      font-size: 18px;
      line-height: 1.3;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      margin-bottom: 15px;
      padding-left: 33px;
      position: relative;
      display: inline-block;
    }
    .blog-details-list-desc .desc-list li::before {
      content: "\f00c";
      position: absolute;
      font-family: "Font Awesome 5 pro";
      left: 0;
      top: 0;
      font-size: 18px;
      line-height: 1;
      color: rgb(82, 182, 71);
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .blog-details-list-desc .desc-list li:hover::before {
      left: 5px;
    }

    .quote__box2 {
      padding: 50px 80px 45px 40px;
    }
    @media (max-width: 767px) {
      .quote__box2 {
        padding: 50px 15px 45px 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .quote__box2 {
        padding: 50px 15px 45px 15px;
      }
    }
    .quote__box2 .quote-icon span {
      color: rgb(82, 182, 71);
      font-size: 65px;
      line-height: 1;
    }
    .quote__box2 .quote-text .semi-title {
      line-height: 1.3;
    }
    .quote__box2 .quote-text .quote-name {
      color: rgb(82, 182, 71);
      font-size: 18px;
      line-height: 1;
      font-weight: 700;
      position: relative;
    }
    .quote__box2 .quote-text .quote-name::before {
      content: "";
      position: absolute;
      background: #282828;
      position: absolute;
      left: 0;
      top: 9px;
      width: 35px;
      height: 2px;
    }

    .blog-post-tag .post-tag-list span {
      color: #232323;
      font-family: "Roboto", sans-serif;
      font-size: 18px;
      line-height: 1.3;
      font-weight: 800;
    }
    .blog-post-tag .post-tag-list a {
      color: #616161;
      font-size: 15px;
      line-height: 1.3;
      font-family: "Roboto", sans-serif;
      font-weight: 600;
    }
    .blog-post-tag .post-social {
      text-align: right;
    }
    .blog-post-tag .post-social span {
      color: #232323;
      font-family: "Roboto", sans-serif;
      font-size: 18px;
      line-height: 1.3;
      font-weight: 800;
    }
    .blog-post-tag .post-social a {
      color: #616161;
      line-height: 1;
      font-size: 14px;
      display: inline-block;
      margin-right: 18px;
    }
    .blog-post-tag .post-social a:hover {
      color: rgb(82, 182, 71);
    }

    .authors {
      padding: 50px 54px 50px 45px;
    }
    @media (max-width: 767px) {
      .authors {
        padding: 50px 15px 50px 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .authors {
        padding: 50px 15px 50px 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .authors .authors-img {
        margin-bottom: 30px;
      }
    }
    @media (max-width: 767px) {
      .authors .authors-img {
        margin-bottom: 30px;
      }
    }
    .authors .authors-name {
      font-size: 20px;
      line-height: 1.1;
      font-weight: 800;
    }
    .authors .authors-social a {
      display: inline-block;
      margin-right: 20px;
    }
    .authors .authors-social a:hover {
      color: rgb(82, 182, 71);
    }

    .blog-related-post {
      border: 2px solid #efefef;
    }
    .blog-related-post .relate-title {
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
    }
    .blog-related-post .post .coment-date {
      color: #616161;
      display: inline-block;
      margin-right: 10px;
    }
    .blog-related-post .post .coment-date i {
      color: #616161;
      font-size: 13px;
      margin-right: 3px;
    }

    .post-comment {
      border: 2px solid #efefef;
      padding: 50px 50px 0 40px;
    }
    @media (max-width: 767px) {
      .post-comment {
        padding: 50px 15px 0 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .post-comment {
        padding: 50px 15px 0 15px;
      }
    }
    .post-comment .post-comment-title {
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
    }
    .post-comment .children {
      margin-left: 100px;
    }
    @media (max-width: 767px) {
      .post-comment .children {
        margin-left: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .post-comment .children {
        margin-left: 0;
      }
    }

    .comment-box .comment-text h6 {
      font-size: 18px;
      line-height: 1.3;
      font-weight: 800;
      margin-bottom: 0;
    }
    .comment-box .comment-text .comment-desig {
      color: rgb(82, 182, 71);
      font-size: 15px;
      line-height: 1.3;
      display: inline-block;
    }
    .comment-box .comment-text .comment_btn {
      color: #616161;
      font-size: 14px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
    }
    .comment-box .comment-text .comment_btn:hover {
      color: rgb(82, 182, 71);
    }

    .post-form-area {
      border: 2px solid #efefef;
      padding: 45px 45px 48px 45px;
    }
    @media (max-width: 767px) {
      .post-form-area {
        padding: 45px 15px 48px 15px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .post-form-area {
        padding: 45px 15px 48px 15px;
      }
    }
    .post-form-area .form-title {
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
    }
    .post-form-area .post-form .input-mail::before {
      content: "\f040";
    }
    .post-form-area .post-form .form-input input:focus {
      border: 2px solid rgb(82, 182, 71);
    }
    .post-form-area .post-form .form-input textarea:focus {
      border: 2px solid rgb(82, 182, 71);
    }
    .post-form-area .post-form .form-input textarea {
      border: 2px solid #dcdcdc;
      border-radius: 6px;
      height: 120px;
    }
    .post-form-area .post-form .form-input .form-control {
      border: 2px solid #dcdcdc;
      border-radius: 6px;
    }

    .select_btn ul li {
      display: inline-block;
    }
    .select_btn ul li a {
      color: #232323;
      font-size: 18px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
      display: inline-block;
      margin-left: 35px;
      position: relative;
    }
    .select_btn ul li a::before {
      content: "";
      position: absolute;
      background-color: rgb(82, 182, 71);
      position: absolute;
      left: 0;
      bottom: -15px;
      width: 0;
      height: 3px;
      z-index: 1;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .select_btn ul li a:hover {
      color: rgb(82, 182, 71);
    }
    .select_btn ul li a:hover::before {
      width: 42px;
    }

    .project__item {
      position: relative;
      margin: 50px 0;
    }
    .project__item--content {
      max-width: 480px;
      padding: 30px 40px;
      margin: 0 auto;
      position: absolute;
      bottom: -35px;
      left: 0;
      right: 0;
      z-index: 5;
      opacity: 0;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .project__item--content h5 {
      color: white;
    }
    .project__item--content span {
      color: white;
      font-size: 13px;
      line-height: 1;
      font-family: "Roboto", sans-serif;
      font-weight: 800;
    }
    .project__item .white_btn i {
      color: rgb(82, 182, 71);
      font-size: 20px;
      border-radius: 50%;
      background-color: white;
      text-align: center;
      line-height: 55px;
      top: 4173px;
      width: 55px;
      height: 55px;
      z-index: 507;
    }

    .project-slide.slick-slide.slick-current.slick-center .project__item .project__item--content {
      opacity: 1;
    }

    .team-area {
      position: relative;
    }
    .team-area::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 479px;
      top: 0;
    }
    .team-area .team-shape-one {
      left: 170px;
      top: 90px;
      animation: rotation infinite 30s linear;
    }
    .team-area .team-shape-two {
      bottom: 0;
      right: 0;
    }
    @media (max-width: 767px) {
      .team-area .section-title {
        margin-left: 0;
        margin-right: 0;
      }
    }

    .team .team__thumb1 {
      display: inline-block;
    }
    @media (max-width: 767px) {
      .team .team__thumb1 {
        display: block;
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .team .team__thumb1 {
        display: block;
        width: 100%;
      }
    }
    .team__thumb {
      position: relative;
      z-index: 3;
      overflow: hidden;
    }
    .team__thumb img {
      display: block;
      max-width: 100%;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .team__thumb img {
        width: 100%;
      }
    }
    @media (max-width: 767px) {
      .team__thumb img {
        width: 100%;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .team__thumb img {
        width: 100%;
      }
    }
    .team__content {
      margin-top: -120px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team__content h5 {
      font-size: 20px;
      line-height: 1.1;
      font-weight: 800;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team__content span {
      color: rgb(82, 182, 71);
      font-size: 14px;
      line-height: 1.2;
      font-weight: 600;
      font-family: "Roboto", sans-serif;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team--social a {
      border-radius: 50%;
      background-color: #ececec;
      font-size: 12px;
      line-height: 35px;
      text-align: center;
      width: 35px;
      height: 35px;
      display: inline-block;
      margin: 0 3px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team--social a:hover {
      color: rgb(82, 182, 71);
      background: white;
    }
    .team:hover .team__thumb img {
      transform: scale(1.1);
    }
    .team:hover .team__content {
      background: rgb(82, 182, 71);
    }
    .team:hover .team__content h5 {
      color: white;
    }
    .team:hover .team__content span {
      color: white;
    }

    .team-area2::before {
      display: none;
    }

    .team__content2 {
      margin-top: 0;
      border: 1px solid #e7e7e7;
      border-top: 0;
    }

    .team-details {
      border: 2px solid #eeeeee;
      padding: 50px 50px 40px 40px;
      position: relative;
    }
    @media (max-width: 767px) {
      .team-details {
        padding: 50px 30px 40px 20px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .team-details {
        padding: 50px 30px 40px 20px;
      }
    }
    .team-details::before {
      content: "";
      position: absolute;
      background: rgb(82, 182, 71);
      left: 0;
      top: 0;
      width: 1%;
      height: 100%;
      z-index: -1;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team-details:hover:before {
      width: 100%;
      right: 0;
    }
    .team-details:hover .name-title {
      color: white;
    }
    .team-details:hover h6 {
      color: white;
    }
    .team-details:hover p {
      color: white;
    }
    .team-details:hover .team-list li {
      color: white;
    }
    .team-details:hover .team-list li span {
      color: white;
    }
    .team-details .name-title {
      font-size: 30px;
      line-height: 1.1;
      font-weight: 800;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team-details h6 {
      color: rgb(82, 182, 71);
      font-size: 14px;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 18px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team-details p {
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team-details .team-list li {
      color: #616161;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 700;
      font-family: "Roboto", sans-serif;
      margin-bottom: 15px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team-details .team-list li span {
      color: rgb(82, 182, 71);
      font-size: 16px;
      line-height: 1;
      background-color: rgba(255, 112, 41, 0.102);
      text-align: center;
      line-height: 35px;
      width: 35px;
      height: 35px;
      display: inline-block;
      margin-right: 7px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }

    .team-detail-area .team-details-img img {
      max-width: 100%;
    }
    @media (max-width: 767px) {
      .team-detail-area .team-details-img img {
        width: 100%;
      }
    }
    @media (max-width: 767px) {
      .team-detail-area .team-skill {
        margin-right: 0;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .team-detail-area .team-skill {
        margin-right: 0;
      }
    }

    .team-content-right .team-desc__icon span {
      color: white;
      font-size: 55px;
      line-height: 55px;
      font-family: "Roboto", sans-serif;
      font-weight: 900;
      background-color: #ff7029;
      display: inline-block;
      text-align: center;
      width: 70px;
      height: 70px;
      z-index: 235;
    }
    .team-content-right .team-details-social a {
      color: #8b8b8b;
      font-size: 12px;
      border: 1px solid #d9d9d9;
      border-radius: 50%;
      text-align: center;
      line-height: 33px;
      background: none;
      width: 33px;
      height: 33px;
      -webkit-transition: all 0.4s ease-out 0s;
      -moz-transition: all 0.4s ease-out 0s;
      -ms-transition: all 0.4s ease-out 0s;
      -o-transition: all 0.4s ease-out 0s;
      transition: all 0.4s ease-out 0s;
    }
    .team-content-right .team-details-social a:hover {
      background: rgb(82, 182, 71);
      color: white;
      border-color: rgb(82, 182, 71);
    }

    .team-testimonial-area {
      padding: 35px 20px 90px 20px;
    }
    @media (max-width: 767px) {
      .team-testimonial-area {
        padding: 35px 0 90px 0px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .team-testimonial-area {
        padding: 35px 0 90px 0px;
      }
    }
    .team-testimonial-area .team-item {
      padding: 40px 37px;
      margin: 0 10px;
    }
    @media (max-width: 767px) {
      .team-testimonial-area .team-item {
        padding: 40px 17px;
      }
    }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .team-testimonial-area .team-item {
        padding: 40px 17px;
      }
    }
    .team-testimonial-area .slick-dots {
      bottom: -62px;
    }

    .team-skill-area .team-title2 {
      font-size: 35px;
      line-height: 1.1;
      font-weight: 800;
    }

    .single-skill .bar-title {
      color: #232323;
      font-size: 18px;
      line-height: 1.3;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .single-skill .progress {
      background-color: transparent;
      height: 3px;
      position: relative;
      overflow: visible;
    }
    .single-skill .progress .progress-bar {
      background-color: rgb(82, 182, 71);
      width: 603px;
      position: relative;
    }
    .single-skill .progress .progress-bar span {
      color: white;
      font-size: 18px;
      line-height: 40px;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      background-color: rgb(82, 182, 71);
      text-align: center;
      width: 47px;
      height: 40px;
      display: inline-block;
      position: absolute;
      right: 0;
      top: -60px;
    }
    .single-skill .progress .progress-bar span::before {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 7px 0 0;
      border-color: rgb(82, 182, 71) transparent transparent transparent;
      position: absolute;
      left: 4px;
      bottom: -7px;
    }

    .message-area .team-title2 {
      font-size: 35px;
      line-height: 1.1;
      font-weight: 800;
    }

    .form-area input:focus {
      box-shadow: none;
    }
    .form-area ::placeholder {
      color: #616161;
    }
    .form-area ::-webkit-placeholder {
      color: #616161;
    }
    .form-area ::-moz-placeholder {
      color: #616161;
    }
    .form-area .form-input {
      position: relative;
    }
    .form-area .form-input::before {
      content: "\f007";
      position: absolute;
      right: 25px;
      top: 19px;
      font-family: "Font Awesome 5 pro";
      font-size: 15px;
      color: rgb(82, 182, 71);
    }
    .form-area .form-input .form-control {
      border: 2px solid #eeeeee;
      background: none;
      border-radius: 0;
      width: 100%;
      height: 71px;
      color: #616161;
      font-size: 15px;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      line-height: 1;
      padding: 23px;
      display: block;
    }
    .form-area .form-input textarea {
      border: 2px solid #eeeeee;
      width: 100%;
      height: 186px;
      color: #616161;
      font-size: 15px;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
      line-height: 1;
      padding: 23px;
      resize: none;
    }
    .form-area .input-number::before {
      content: "\f095";
    }
    .form-area .input-mail::before {
      content: "\f0e0";
    }
    .form-area .form-btn a {
      padding: 30px 80px;
    }

/* Menu Search
-------------------------------------------------------*/
.header-2-icon {
  color: white;
}

.nav-search.search-trigger.header-2-icon {
  color: white;
  display: inline-block;
}

.nav-search {
  position: relative;
  display: block;
  color: inherit;
}

.nav-search:hover {
  color: inherit;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
  background: rgba(0, 0, 0, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp .3s;
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  background: transparent;
  font-size: 25px;
  color: #fff;
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: #fff;
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
input.main-search-input::-webkit-input-placeholder {
  color: #fff;
  font-size: 25px;
}

input.main-search-input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
  color: #fff;
  font-size: 25px;
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.plan-area .plane-shape-one {
  position: absolute;
  bottom: 0;
  left: 0;
}
.plan-area .plane-shape-two {
  position: absolute;
  right: 75px;
  top: 0;
  animation: rotation infinite 50s linear;
}

.plan {
  text-align: center;
  background: white;
  box-shadow: 0px 10px 60px 0px rgba(233, 233, 233, 0.45);
  padding: 45px 0 50px 0;
  position: relative;
}
.plan::before {
  content: "";
  position: absolute;
  width: 302px;
  height: 313px;
  left: 0;
  top: 33%;
  transform: translateY(-33%);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media (max-width: 767px) {
  .plan::before {
    width: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .plan::before {
    width: 250px;
  }
}
.plan:hover::before {
}
@media (max-width: 767px) {
  .plan:hover::before {
    width: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .plan:hover::before {
    width: 250px;
  }
}
.plan__head p {
  color: rgb(82, 182, 71);
  font-weight: 800;
  margin-left: 100px;
}
.plan__head h1 {
  color: #ff7029;
  font-size: 65px;
  line-height: 1;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  margin-bottom: 25px;
}
.plan__head h1 span {
  font-size: 24px;
}
.plan__head h5 {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 7px;
}
.plan__head .tag {
  color: white;
  background: rgb(82, 182, 71);
  clip-path: polygon(23% 6%, 78% 13%, 100% 100%, 0% 94%);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  padding: 10px 30px;
  display: inline-block;
  transform: rotate(-48deg);
  position: absolute;
  left: -31px;
  top: -26px;
}
.plan__list li {
  color: #616161;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}
.plan__list li del {
  border-color: rgb(82, 182, 71);
}

.plane-shape-three {
  content: "";
  border-radius: 50%;
  background-color: rgb(82, 182, 71);
  position: absolute;
  left: 289px;
  bottom: 55px;
  width: 200px;
  height: 200px;
}

.plane-shape-four {
  position: absolute;
  right: 90px;
  top: 120px;
  animation: rotation 54s infinite linear;
}

.card {
  background: 0;
  border: 0;
  border-radius: 0;
}
.card .card-header {
  background: none;
  padding: 0;
  border: 0;
  padding-bottom: 25px;
}
.card .card-header button:focus {
  outline: none;
  border: 0;
  box-shadow: none;
  text-decoration: none;
}
.card .card-header button {
  display: block;
  border: 0;
  font-size: 18px;
  line-height: 1.1;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  color: #ff7029;
  width: 100%;
  text-align: left;
  background: 0;
  padding: 0;
  padding-left: 45px;
  white-space: normal;
  position: relative;
}
.card .card-header button.collapsed {
  position: relative;
}
.card .card-header button.collapsed::after {
  content: "+";
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 15px;
  color: #fff;
  background: #ff7029;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.card .card-header button.btn-link {
  position: relative;
}
.card .card-header button.btn-link::before {
  content: "-";
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 15px;
  color: #fff;
  background: #ff7029;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.card .card-header .btn {
  border: 0;
  white-space: normal;
}
.card .card-header .btn-link:hover {
  color: none;
  text-decoration: none;
}
.card .card-body {
  color: white;
  padding: 0;
  margin-bottom: 36px;
}

.faq-area .card .card-header {
  padding-bottom: 0;
  border: 3px solid #ff7029;
}
.faq-area .card .card-header button {
  color: white;
  background: rgb(82, 182, 71);
  padding: 25px 30px;
  border-radius: 0;
  white-space: normal;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.faq-area .card span {
  display: inline-block;;
  line-height: 30px;
  text-align: center;
  width: 40px;
  height: 40px;
  color: rgb(82, 182, 71);
  margin-right: 10px;
  border: 5px dashed #ff7029
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .faq-area .card .card-header button {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .faq-area .card .card-header button {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-area .card .card-header button {
    font-size: 14px;
  }
}
.faq-area .card .card-header button i {
  font-size: 18px;
  line-height: 1;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.faq-area .card .card-header button.btn-link::before {
  display: none !important;
  visibility: 0;
  color: rgb(82, 182, 71);
  right: 30px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media (max-width: 767px) {
  .faq-area .card .card-header button.btn-link::before {
    right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-area .card .card-header button.btn-link::before {
    right: 10px;
  }
}
.faq-area .card .card-header button.collapsed {
  color: #232323;
  background: whitesmoke;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.faq-area .card .card-header button.collapsed::after {
  display: none !important;
  visibility: 0;
  color: white;
  right: 30px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(82, 182, 71);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media (max-width: 767px) {
  .faq-area .card .card-header button.collapsed::after {
    right: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-area .card .card-header button.collapsed::after {
    right: 10px;
  }
}
.faq-area .card .card-body {
  color: #616161;
  border: 1px solid #e4e4e4;
  padding: 30px 30px 25px 40px;
  border-top: 0;
  margin-bottom: 0;
}

.faqs-list li {
  color: #232323;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  float: left;
  width: 49%;
  padding-left: 30px;
  margin-bottom: 20px;
  position: relative;
}
.faqs-list li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 5 pro";
  left: 0;
  top: 0;
  font-size: 15px;
  line-height: 1;
  color: rgb(82, 182, 71);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.faqs-list li:hover::before {
  left: 5px;
}

.catagory-search {
  position: relative;
}
.catagory-search input:focus {
  box-shadow: none;
}
.catagory-search .form-control {
  color: #616161;
  font-size: 16px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: block;
  border: 2px solid #ededed;
  border-radius: 5px;
  background: white;
  position: relative;
  padding-left: 25px;
  width: 100%;
  height: 61px;
}
.catagory-search span {
  color: white;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  background-color: rgb(82, 182, 71);
  display: inline-block;
  line-height: 61px;
  text-align: center;
  width: 60px;
  height: 60px;
  z-index: 345;
}

.shop-widget {
  border: 2px solid #ededed;
  padding: 35px 0 25px 35px;
}
.shop-widget .shop-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  position: relative;
}
.shop-widget .shop-title::before {
  content: "";
  position: absolute;
  background: rgb(82, 182, 71);
  left: 20px;
  bottom: 0;
  width: 25px;
  height: 2px;
  z-index: 1;
}
.shop-widget .shop-title::after {
  content: "";
  position: absolute;
  background: rgb(82, 182, 71);
  left: 0;
  bottom: 0;
  width: 10px;
  height: 2px;
  z-index: 1;
}
.shop-widget .cat-list li a {
  color: #616161;
  font-size: 16px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
}
.shop-widget .tag-list2 .tag-btn {
  color: #616161;
  font-size: 14px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  background: whitesmoke;
  padding: 14px 20px;
  margin: 0 7px 7px 0;
  display: inline-block;
  border-radius: 6px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.shop-widget .tag-list2 .tag-btn:hover {
  color: white;
  background: rgb(82, 182, 71);
}
.shop-widget .shop-widget-price .price-meter {
  color: #232323;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}
.shop-widget .shop-widget-price .price-meter span {
  color: #616161;
}
.shop-widget .progress {
  overflow: visible;
  background: #dfdfdf;
  height: 4px;
  width: 195px;
  position: relative;
}
.shop-widget .progress .progress-bar {
  background: rgb(82, 182, 71);
  width: 158px;
  height: 4px;
  position: absolute;
  right: 0;
}
.shop-widget .progress .progress-bar .empty-box {
  background: rgb(82, 182, 71);
  position: absolute;
  left: 0;
  top: -3px;
  width: 10px;
  height: 10px;
  z-index: 1;
  display: inline-block;
}

.product__img {
  padding: 30px 0 30px 0;
}
.product__text--icon a {
  color: rgb(82, 182, 71);
  font-size: 15px;
  line-height: 1;
  margin: 0 4px;
  margin-bottom: 10px;
  display: inline-block;
}
.product__text h6 {
  margin-bottom: 0;
}
.product__text h6 a {
  color: #232323;
  font-size: 18px;
  line-height: 1.3;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  margin-bottom: 4px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.product__text .product-price {
  color: rgb(82, 182, 71);
  font-size: 15px;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
}
.product:hover .product__text h6 a {
  color: rgb(82, 182, 71);
}

.shop-fileter {
  border: 2px solid #ededed;
  width: 149px;
  height: 55px;
  padding-top: 5px;
  padding-left: 30px;
  position: relative;
}
.shop-fileter::before {
  content: "\f078";
  font-family: "Font Awesome 5 pro";
  position: absolute;
  color: #232323;
  font-size: 16px;
  line-height: 1;
  right: 30px;
  top: 16px;
}
.shop-fileter::after {
  display: none;
}
.shop-fileter .current {
  color: #232323;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #ededed !important;
}

.shop-thumb-tab {
  float: left;
  width: 170px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-thumb-tab {
    float: none;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .shop-thumb-tab {
    float: none;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-thumb-tab {
    float: none;
    width: 100%;
  }
}
.shop-thumb-tab ul li {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shop-thumb-tab ul li {
    float: left;
    width: 30.33%;
    margin: 0 5px;
  }
}
@media (max-width: 767px) {
  .shop-thumb-tab ul li {
    float: left;
    width: 29.33%;
    margin: 0 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-thumb-tab ul li {
    float: left;
    width: 29.33%;
    margin: 0 5px;
  }
}
.shop-thumb-tab ul li a {
  padding: 0;
}
.shop-thumb-tab ul li a img {
  max-width: 100%;
}

.product-details-img {
  text-align: center;
  margin-left: 200px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-img {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .product-details-img {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-details-img {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product-details-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-details-img img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .product-details-img img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-details-img img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .product-details {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product-details {
    margin-left: 0;
  }
}
.product-details .product-title h3 {
  color: #232323;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
}
.product-details .product-title .new-price {
  color: #232323;
  font-size: 18px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  display: inline-block;
}

.cart-plus-minus {
  position: relative;
  display: inline-block;
}
.cart-plus-minus input {
  border: 1px solid #dddddd;
  width: 124px;
  height: 31px;
  appearance: none;
  text-align: center;
  font-size: 14px;
  color: #232323;
  font-weight: 700;
}
.cart-plus-minus .qtybutton {
  position: absolute;
  top: 0;
  left: 16px;
}
.cart-plus-minus .dec.qtybutton {
  left: 15px;
  border-right: 1px solid #dddddd;
  padding-right: 15px;
  line-height: 1.99;
}
.cart-plus-minus .inc.qtybutton {
  left: auto;
  right: 15px;
  border-left: 1px solid #dddddd;
  padding-left: 15px;
  line-height: 1.99;
}

.plus-minus .cart_btn {
  border: 0;
  background: #ff7029;
  font-size: 14px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  color: white;
  padding: 13px 26px;
  display: inline-block;
}

.product-social .share {
  color: #232323;
  font-size: 16px;
  line-height: 1.1;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
}
.product-social a {
  font-size: 15px;
  line-height: 1;
  color: #616161;
  margin-right: 10px;
}
.product-social a:hover {
  color: rgb(82, 182, 71);
}

.product-details-tab-02 .nav-tabs {
  border: 0;
  margin-bottom: 30px;
}
.product-details-tab-02 .nav-tabs .nav-link {
  font-size: 24px;
  padding: 0 55px 15px 0;
  border-bottom: 2px solid #dddddd;
}
.product-details-tab-02 .nav-tabs .nav-link.active {
  border-bottom: 2px solid rgb(82, 182, 71);
}

.footer-top-cta .footer__widget {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.footer-top-cta .footer__widget__icon {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  display: inline-block;
}
.footer-top-cta .footer__widget__icon__block {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  display: none;
}
.footer-top-cta .footer__widget:hover {
  background: rgb(82, 182, 71);
}
.footer-top-cta .footer__widget:hover .footer__widget__icon {
  display: none;
}
.footer-top-cta .footer__widget:hover .footer__widget__icon__block {
  display: inline-block;
}
.footer-top-cta .footer__widget h6 {
  color: white;
  font-size: 18px;
  line-height: 1.1;
}
.footer-top-cta .footer__widget span {
  color: white;
  font-size: 24px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.footer-area .fot-shape {
  left: 0;
  top: 0;
}
.footer-area .fot-shape-two {
  right: 0;
  bottom: 0;
}
.footer-area .scroll-target {
  border-radius: 23px;
  background-color: #ff7029;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  top: -68px;
  width: 50px;
  height: 70px;
  z-index: 1;
}
.footer-area .scroll-target i {
  color: white;
  font-size: 25px;
  line-height: 70px;
}

.footer-bottom-area {
  border-bottom: 1px solid #2a303a;
}
.footer-bottom-area .footer__widget h5 {
  color: white;
  font-size: 20px;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
}
.footer-bottom-area .footer__widget h5.bottom-line {
  position: relative;
}
.footer-bottom-area .footer__widget h5.bottom-line::before {
  content: "";
  background-color: #dedede;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 2px;
  z-index: 1;
}
.footer-bottom-area .footer__widget h5.bottom-line::after {
  content: "";
  background: rgb(82, 182, 71);
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 4px;
  z-index: 2;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.footer-bottom-area .footer__widget:hover h5.bottom-line::after {
  width: 40px;
}
.footer-bottom-area .footer__widget p {
  color: #c1c6ce;
}
.footer-bottom-area .footer__widget .foter__social > a {
  width: 35px;
  height: 35px;
  font-size: 12px;
  line-height: 35px;
}
.footer-bottom-area .footer__widget .fot-list li a {
  color: #c1c6ce;
  font-size: 15px;
  line-height: 32px;
  font-family: "Roboto", sans-serif;
  position: relative;
  -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;
}
.footer-bottom-area .footer__widget .fot-list li a i {
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 4px;
  display: none;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.footer-bottom-area .footer__widget .fot-list li a:hover, .footer-bottom-area .footer__widget .fot-list li a.active {
  padding-left: 17px;
  color: rgb(82, 182, 71);
}
.footer-bottom-area .footer__widget .fot-list li a:hover i, .footer-bottom-area .footer__widget .fot-list li a.active i {
  display: block;
  color: rgb(82, 182, 71);
}
.footer-bottom-area .blogs__content h6 {
  margin-bottom: 0;
}
.footer-bottom-area .blogs__content h6 a {
  color: #c1c6ce;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.footer-bottom-area .blogs__content h6 a i {
  font-size: 18px;
}
.footer-bottom-area .blogs__content .coment-name {
  color: #c1c6ce;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  padding-left: 35px;
  position: relative;
}
.footer-bottom-area .blogs__content .coment-name::before {
  content: "";
  background: #ff7029;
  position: absolute;
  left: 0;
  top: 7px;
  width: 25px;
  height: 2px;
  z-index: 1;
}

.instagram {
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
@media (max-width: 767px) {
  .instagram {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .instagram {
    margin: 0;
  }
}
.instagram__thumb {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.instagram__thumb img {
  display: block;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.instagram__thumb img:hover {
  transform: scale(1.1);
}
.instagram__thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(82, 182, 71);
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  z-index: 1;
}
.instagram__icon {
  font-size: 30px;
  color: #fff;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.instagram:hover .instagram__thumb::before {
  opacity: 0.85;
}
.instagram:hover .instagram__icon {
  opacity: 1;
  visibility: visible;
}

.copyright p {
  color: #c1c6ce;
}
.copyright a {
  color: rgb(82, 182, 71);
}

@media (max-width: 767px) {
  .bottom-nav {
    text-align: left !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bottom-nav {
    text-align: left !important;
  }
}
.bottom-nav ul li {
  display: inline-block;
}
.bottom-nav ul li > a {
  color: #c1c6ce;
  font-size: 15px;
  line-height: 32px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-left: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bottom-nav ul li > a {
    margin-left: 13px;
  }
}
@media (max-width: 767px) {
  .bottom-nav ul li > a {
    margin-left: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bottom-nav ul li > a {
    margin-left: 5px;
  }
}
.bottom-nav ul li > a:hover {
  color: rgb(82, 182, 71);
}

.fot-bottom-a2 {
  border-bottom: 1px solid #eaeaea;
}
.fot-bottom-a2 .widget2 h5 {
  color: #232323;
}
.fot-bottom-a2 .widget2 p {
  color: #616161;
}
.fot-bottom-a2 .widget2 .fot-list li a {
  color: #616161;
}
.fot-bottom-a2 .widget2 .fot-list li a i {
  color: rgb(82, 182, 71);
}
.fot-bottom-a2 .addres-bar__icon i {
  color: rgb(82, 182, 71);
  font-size: 18px;
  margin-top: 8px;
  display: inline-block;
}
.fot-bottom-a2 .addres-bar .direction {
  color: #616161;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.fot-bottom-a2 .addres-bar .direction small{
  font-size: 12px;
}

.copy-area2 .scroll-target {
  background: rgb(82, 182, 71);
}
.copy-area2 .copyright2 p {
  color: #616161;
}
.copy-area2 .bottom-nav ul li a {
  color: #616161;
}

@media (max-width: 767px) {
  .sub__widget {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sub__widget {
    margin-left: 0;
  }
}