/* Base CSS */
.alignleft {
    float: left;
    margin-right: 15px;
}
.alignright {
    float: right;
    margin-left: 15px;
}
.aligncenter {
    display: block;
    margin: 0 auto 15px;
}
a:focus { outline: 0 solid }
*{box-sizing: border-box;}
img {
    max-width: 100%;
    height: auto;
    transition: .3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  color: #1B1B21;
  font-family: 'Montserrat', sans-serif;
}
body {
  color: #545051;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}

@font-face {
    font-family:RusticLoveTattoo;
    src: url(../fonts/RusticLoveTattoo.otf);
}

.selector-for-some-widget {
  box-sizing: content-box;
}
a:hover { text-decoration: none }

button:focus {
	outline: 0;
	outline: 5px auto -webkit-focus-ring-color;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}


/* hero-area-start */

.hero-area {
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero-logo {
  margin-bottom: 30px;
}
.hero-text h3 {
  font-size: 110px;
  color: #222222;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;
  color: #222222;
  font-weight: 400;
  margin-bottom: 35px;
}
.hero-btn {
  width: 220px;
  margin: auto;
}

.theme-btn {
  width: 100%;
  height: 50px;
  border-radius: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222222;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: .3s;
  border: 1px solid #222222;
}.theme-btn:hover {
	background: transparent;
	border: 1px solid #222222;
	color: #222222;
}
/* hero-area-end */



/* mission-area-start */

.all-section {
  background: #222222;
  padding-left: 21%;
}
.mission-fl {
  max-width: 1345px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}
.mission-area {
  padding: 100px 0;
}
.mission-containt {
  width: 63%;
}

.section-title h3 {
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  margin-bottom: 10px;
}
.section-title h4 {
  font-size: 70px;
  color: #222222;
  -webkit-text-fill-color: #222222;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-weight: 700;
  margin: 0;
  line-height: 61px;
}
.mission-text {
  padding-top: 40px;
  position: relative;
}
.mission-text:before {
  position: absolute;
  content: "";
  background: #fff;
  height: 3px;
  width: 30px;
  border-radius: 10px;
}
.mission-text h3 {
  margin-top: 20px;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 50px;
}
.mission-text p {
  font-size: 16px;
  color: #BFBFBF;
  font-weight: 400;
}
.mission-text p:last-child {
  margin: 0;
}

/* -----------------------------------------------------
	CSS Progress Bars
-------------------------------------------------------- */
.cssProgress {
  width: 100%;
  margin-bottom: 33px;
}
.cssProgress .progress1,
.cssProgress .progress2,
.cssProgress .progress3 {
  position: relative;
  overflow: hidden;
  width: 100%;
  font-family: "Roboto", sans-serif;
}
.cssProgress .cssProgress-bar {
  display: block;
  float: left;
  width: 0%;
  height: 100%;
  background: #3798d9;
  box-shadow: inset 0px -1px 2px rgba(0, 0, 0, 0.1);
  transition: width 0.8s ease-in-out;
}
.cssProgress .cssProgress-label {
  position: absolute;
  overflow: hidden;
  left: 0px;
  right: 0px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.7em;
  text-align: center;
  text-shadow: 0px 1px rgba(0, 0, 0, 0.3);
}
.cssProgress .cssProgress-info {
  background-color: #9575cd !important;
}
.cssProgress .cssProgress-danger {
  background-color: #ef5350 !important;
}
.cssProgress .cssProgress-success {
  background-color: #66bb6a !important;
}
.cssProgress .cssProgress-warning {
  background-color: #FFFFFF !important;
  height: 100% !important;
}
.cssProgress .cssProgress-right {
  float: right !important;
}
.cssProgress .cssProgress-label-left {
  margin-left: 10px;
  text-align: left !important;
}
.cssProgress .cssProgress-label-right {
  margin-right: 10px;
  text-align: right !important;
}
.cssProgress .cssProgress-label2 {
  display: block;
  margin: 2px 0;
  padding: 0 8px;
  font-size: 0.8em;
}
.cssProgress .cssProgress-label2.cssProgress-label2-right {
  text-align: right;
}
.cssProgress .cssProgress-label2.cssProgress-label2-center {
  text-align: center;
}
.cssProgress .cssProgress-stripes,
.cssProgress .cssProgress-active,
.cssProgress .cssProgress-active-right {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
  background-size: 35px 35px;
}
.cssProgress .cssProgress-active {
  -webkit-animation: cssProgressActive 2s linear infinite;
  animation: cssProgressActive 2s linear infinite;
}
.cssProgress .cssProgress-active-right {
  -webkit-animation: cssProgressActiveRight 2s linear infinite;
  animation: cssProgressActiveRight 2s linear infinite;
}
@-webkit-keyframes cssProgressActive {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 35px 35px;
  }
}
@keyframes cssProgressActive {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 35px 35px;
  }
}
@-webkit-keyframes cssProgressActiveRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -35px -35px;
  }
}
@keyframes cssProgressActiveRight {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -35px -35px;
  }
}

/* -----------------------------------------------------
	Progress Bar 1
-------------------------------------------------------- */
.progress1 {
  background-color: #EEE;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.progress1 .cssProgress-bar {
  height: 18px;
}
.progress1 .cssProgress-label {
  line-height: 18px;
}

/* -----------------------------------------------------
	Progress Bar 2
-------------------------------------------------------- */
.progress2 {
  background-color: #EEE;
  border-radius: 9px;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.progress2 .cssProgress-bar {
  height: 18px;
  border-radius: 9px;
}
.progress2 .cssProgress-label {
  line-height: 18px;
}

/* -----------------------------------------------------
	Progress Bar 3
-------------------------------------------------------- */
.progress3 {
  width: auto !important;
  padding: 0;
  background-color: #BFBFBF;
  box-shadow: #BFBFBF;
  border-radius: 3px;
  height: 4px;
}
.progress3 .cssProgress-bar {
  height: 16px;
  border-radius: 3px;
}
.progress3 .cssProgress-label {
  line-height: 16px;
}

/* -----------------------------------------------------
	Progress Bar 4
-------------------------------------------------------- */
.progress4 {
  position: relative;
  width: 100%;
  background-color: #EEE;
}
.progress4.cssProgress-bg {
  background-color: #bbdefb !important;
}
.progress4.cssProgress-bg-info {
  background-color: #d1c4e9 !important;
}
.progress4.cssProgress-bg-danger {
  background-color: #ffcdd2 !important;
}
.progress4.cssProgress-bg-success {
  background-color: #c8e6c9 !important;
}
.progress4.cssProgress-bg-warning {
  background-color: #ffecb3 !important;
}
.progress4 .cssProgress-bar {
  display: block;
  float: none;
  width: 0%;
  height: 4px;
  background: #3798d9;
}
.progress4 .cssProgress-bar.cssProgress-lg {
  height: 6px;
}
.progress4 .cssProgress-bar.cssProgress-2x {
  height: 8px;
}
.progress4 .cssProgress-bar.cssProgress-3x {
  height: 10px;
}
.progress4 .cssProgress-bar.cssProgress-4x {
  height: 12px;
}
.progress4 .cssProgress-bar.cssProgress-5x {
  height: 14px;
}
.progress4 .cssProgress-bar.cssProgress-glow {
  box-shadow: 5px 0px 15px 0px #3798D9;
}
.progress4 .cssProgress-bar.cssProgress-glow.cssProgress-info {
  box-shadow: 5px 0px 15px 0px #9575cd;
}
.progress4 .cssProgress-bar.cssProgress-glow.cssProgress-danger {
  box-shadow: 5px 0px 15px 0px #ef5350;
}
.progress4 .cssProgress-bar.cssProgress-glow.cssProgress-success {
  box-shadow: 5px 0px 15px 0px #66bb6a;
}
.progress4 .cssProgress-bar.cssProgress-glow.cssProgress-warning {
  box-shadow: 5px 0px 15px 0px #ffb74d;
}
.progress4 .cssProgress-bar.cssProgress-glow-active {
  -webkit-animation: cssProgressGlowActive1 3s linear infinite;
  animation: cssProgressGlowActive1 3s linear infinite;
}
.progress4 .cssProgress-bar.cssProgress-glow-active.cssProgress-info {
  -webkit-animation: cssProgressGlowActive2 3s linear infinite;
  animation: cssProgressGlowActive2 3s linear infinite;
}
.progress4 .cssProgress-bar.cssProgress-glow-active.cssProgress-danger {
  -webkit-animation: cssProgressGlowActive3 3s linear infinite;
  animation: cssProgressGlowActive3 3s linear infinite;
}
.progress4 .cssProgress-bar.cssProgress-glow-active.cssProgress-success {
  -webkit-animation: cssProgressGlowActive4 3s linear infinite;
  animation: cssProgressGlowActive4 3s linear infinite;
}
.progress4 .cssProgress-bar.cssProgress-glow-active.cssProgress-warning {
  -webkit-animation: cssProgressGlowActive5 3s linear infinite;
  animation: cssProgressGlowActive5 3s linear infinite;
}
@-webkit-keyframes cssProgressGlowActive1 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #3798D9;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #3798D9;
  }
}
@keyframes cssProgressGlowActive1 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #3798D9;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #3798D9;
  }
}
@-webkit-keyframes cssProgressGlowActive2 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #9575cd;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #9575cd;
  }
}
@keyframes cssProgressGlowActive2 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #9575cd;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #9575cd;
  }
}
@-webkit-keyframes cssProgressGlowActive3 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ef5350;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ef5350;
  }
}
@keyframes cssProgressGlowActive3 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ef5350;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ef5350;
  }
}
@-webkit-keyframes cssProgressGlowActive4 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #66bb6a;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #66bb6a;
  }
}
@keyframes cssProgressGlowActive4 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #66bb6a;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #66bb6a;
  }
}
@-webkit-keyframes cssProgressGlowActive5 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ffb74d;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ffb74d;
  }
}
@keyframes cssProgressGlowActive5 {
  0%, 100% {
    box-shadow: 5px 0px 15px 0px #ffb74d;
  }
  45% {
    box-shadow: 1px 0px 4px 0px #ffb74d;
  }
}



.skill-title h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.skill-title {
  margin-bottom: 35px;
  padding: 0 15px;
}
.skill-area {
  padding-bottom: 70px;
  padding-top: 100px;
}
.skill-fl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1345px;
  padding: 0 15px;
}
.single-skill {
  width: 32.33%;
}
.prog-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prog-title h3 {
  font-size: 13px;
  color: #BFBFBF;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.cssProgress-label2 {
  color: #BFBFBF;
  font-size: 13px;
}
.prog-title {
  margin-bottom: 5px;
}
/* mission-area-end */



/* vision-area-start */

.vision-area {
  padding: 100px 0;
}
.vision-fl {
  max-width: 930px;
  padding: 0 15px;
}
.vision-containt {
  margin-top: 30px;
}
.vision-containt h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 40px;
}
.vision-containt p {
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 400;
  line-height: 30px;
}

/* vision-area-end */


/* project-area-start */

.project-fl {
  padding: 0 15px;
  padding-right: 0;
}

.project-title {
  margin-bottom: 90px;
}
.project-title h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.project-title p {
  font-size: 16px;
  color: #BFBFBF;
  margin: 0;
}
.peoject-img {
  height: 345px;
}
.peoject-img img {
  height: 100%;
}
.owl-dots {
  display: none;
}
.project-area {
  padding: 100px 0;
}

/* project-area-end */

/* about-area-start */

.about-containt {
  padding-top: 30px;
}

.about-top-text p {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  margin: 0;
  line-height: 40px;
}
.about-top-text {
  margin-bottom: 32px;
}
.about-text p {
  font-size: 16px;
  color: #BFBFBF;
  font-weight: 400;
  margin-bottom: 21px;
  line-height: 30px;
}
.about-text p:last-child {
  margin: 0;
}
.about-text {
  margin-bottom: 45px;
}
.about-last-text {
  padding-left: 40px;
  position: relative;
  height: 110px;
  display: flex;
  align-items: center;
}
.about-last-text:before {
  position: absolute;
  content: "";
  background: #fff;
  height: 100%;
  width: 1px;
  left: 0;
}
.about-last-text p {
  font-size: 18px;
  font-style: italic;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.about-area {
  padding: 100px 0;
}
.about-fl {
  max-width: 1345px;
  padding: 0 15px;
}

/* about-area-end */




/* brand-area-start */

.brand-title {
  padding: 0 15px;
  margin-bottom: 90px;
}
.brand-title h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.brand-title p {
  font-size: 16px;
  color: #BFBFBF;
  margin: 0;
}
.brand-fl {
  max-width: 1110px;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-brand {
  width: 25%;
  height: 270px;
  border: 1px solid #3A3A3A;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: .3s;
  cursor: pointer;
}

.single-brand .brand-img {
  margin-bottom: 20px;
}

.single-brand .brand-img img {
  transform: translate(100%, 85%);
}



.brand-text {
  opacity: 0;
  transition: 0.5s;
}

.brand-text h3 {
  font-size: 23px;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 10px !important;
}
.brand-text p {
  font-size: 12px !important;
  color: #fff;
  margin-bottom: 0;
}

.single-brand:hover .brand-img img {
  transform: translate(0px, 0px) ;
}

.single-brand:hover .brand-text {
  opacity: 1;
}



/* brand-area-end */

.mainNav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
}
.mainNav .mainNav_btn {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mainNav .mainNav_btn .mainNav_btn_icon {
  position: relative;
  height: 2px;
  width: 30px;
  background-color: #ccc;
  transition: 0.3s;
}
.mainNav .mainNav_btn .mainNav_btn_icon::after, .mainNav .mainNav_btn .mainNav_btn_icon::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 30px;
  background: #ccc;
  transition: 0.3s;
}
.mainNav .mainNav_btn .mainNav_btn_icon::before {
  top: -10px;
}
.mainNav .mainNav_btn .mainNav_btn_icon::after {
  top: 10px;
}
.mainNav .mainNav_btn._active .mainNav_btn_icon {
  transform: translateX(-50px);
  background-color: transparent;
  pointer-events: none;
}
.mainNav .mainNav_btn._active .mainNav_btn_icon::before {
  transform: translateX(50px) rotate(-45deg);
  top: 0;
}
.mainNav .mainNav_btn._active .mainNav_btn_icon::after {
  transform: translateX(50px) rotate(45deg);
  top: 0;
}

._offCanva {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  opacity: 0;
  z-index: 99;
  background-color: #222222;
  pointer-events: none;
  transition: 0.4s;
  box-shadow: 0 0 15px rgb(56, 56, 56);
}
._offCanva._active {
  pointer-events: all;
  opacity: 1;
}
._offCanva ._offCanva_menu_content {
  padding-top: 80%;
  padding-left: 25%;
  height: 100%;
}
._offCanva ._offCanva_menu_content ._offCanva_title {
  position: relative;
  font-size: 12px;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  text-transform: uppercase;
  color: #999;
  font-weight: 400;
}
._offCanva ._offCanva_menu_content ._offCanva_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 20px;
  background-color: #ccc;
  border-radius: 2px;
}
._offCanva ._offCanva_menu_content ._menu_links li {
  padding: 0.2rem 0;
}
._offCanva ._offCanva_menu_content ._menu_links li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  color: #999;
  transition: 0.3s;
}
._offCanva ._offCanva_menu_content ._menu_links li a._active {
  color: #f4f4f4;
}
._offCanva ._offCanva_menu_content ._menu_links li a:hover {
  color: #ccc;
}

/* Team area start  */
.team-area {
  padding: 5rem 0;
}
.team-area .team-area-container {
  max-width: 1180px;
}
.team-area .team-area-content {
  padding: 0 15px;
}
.team-area .team-area-content .team-area-header {
  padding-bottom: 2.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}
.team-area .team-area-content .team-area-header::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #fff;
  bottom: 0;
}
.team-area .team-area-content .team-area-header ._heading {
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.team-area .team-area-content .team {
  position: relative;
}
.team-area .team-area-content .team .team-members .team-member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.team-area .team-area-content .team .team-members .team-member .member-name-and-badge {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-area .team-area-content .team .team-members .team-member .member-name {
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}
.team-area .team-area-content .team .team-members .team-member .member-name:hover {
  text-decoration: underline;
}
.team-area .team-area-content .team .team-members .team-member .member-badge {
  color: #999;
  cursor: default;
}
.team-area .team-area-content .team .team-members .team-member .member-img {
  opacity: 0;
  position: absolute;
  right: 25%;
  top: 1.5rem;
  max-height: 400px;
  max-width: 300px;
  background-color: #fff;
  transition: 0.5s;
  pointer-events: none;
}
.team-area .team-area-content .team .team-members .team-member .member-img img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  -o-object-fit: contain;
     object-fit: contain;
}
.team-area .team-area-content .team .team-members .team-member:hover .member-img {
  opacity: 1;
  z-index: 999;
  pointer-events: all;
}

/* Team area start  */
/* Technologies area start */
.technologies-area {
  padding: 5rem 0;
}
.technologies-area .technologies-area-container {
  max-width: 1180px;
}
.technologies-area .technologies-area-container .technologies-area-content {
  padding: 0 15px;
}
.technologies-area .technologies-area-container .technologies-area-content .technologies-area-header ._heading {
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Technologies area end  */
/* Get in touch start */
.get-in-touch-area {
  padding: 5rem 0;
}
.get-in-touch-area .get-in-touch-area-container {
  max-width: 1180px;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content {
  padding: 0 15px;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .get-in-touch-area-header {
  margin-bottom: 3rem;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .get-in-touch-area-header ._heading {
  position: relative;
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 20px;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .get-in-touch-area-header ._heading ._text_stroke {
  -webkit-text-fill-color: #222222;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .get-in-touch-area-header ._heading::after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  height: 3px;
  width: 50px;
  background-color: #fff;
  border-radius: 3px;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .get-in-touch-area-header ._lead {
  font-size: 15px;
  color: #ccc;
  font-family: "Montserrat", sans-serif;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .get-in-touch-area-header ._lead a {
  text-decoration: none;
  color: #999;
  font-family: "Montserrat", sans-serif;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .get-in-touch-area-header ._lead a:hover {
  text-decoration: underline;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area {
  display: flex;
  align-items: flex-start;
  padding: 3rem 0;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel {
  flex: 1;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel .location_and_tel_context ._context_item {
  padding: 1.5rem 0;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel .location_and_tel_context ._context_item ul li {
  padding: 0.2rem 0;
  color: rgb(247, 245, 245);
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel .location_and_tel_context ._context_item ul li._icon {
  margin-bottom: 0.75rem;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel .location_and_tel_context ._context_item ul li._icon i {
  color: #fff;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel .location_and_tel_context ._context_item ul li._icon i svg {
  height: 24px;
  width: 24px;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel .location_and_tel_context ._context_item ul li._title {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel .location_and_tel_context ._context_item ul li._address, .get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area .location_and_tel .location_and_tel_context ._context_item ul li._number {
  font-size: 14px;
  color: #999;
  font-family: "Montserrat", sans-serif;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area ._contact_form {
  flex: 1.2;
  padding: 1.5rem 0;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area ._contact_form ._form_group:not(:last-child) {
  margin-bottom: 3.5rem;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area ._contact_form ._form_group ._contact_form_row {
  display: flex;
  align-items: center;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area ._contact_form ._form_group ._contact_form_col {
  padding: 0 0.75rem;
  flex: 1;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area ._contact_form ._form_group ._form_control {
  border: 0;
  border-bottom: 1px solid #4b4a4a;
  background-color: transparent;
  padding: 0.75rem 0;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  outline: none;
  color: #eee;
  transition: 0.3s;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area ._contact_form ._form_group ._form_control:focus {
  box-shadow: 0 1px 0 #fff;
}
.get-in-touch-area .get-in-touch-area-container .get-in-touch-area-content .contacnt_details-area ._contact_form ._form_group ._form_submit_btn {
  height: 40px;
  line-height: 40px;
  padding: 0 48px;
  border: none;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 400;
  font-family: "Montserrat", sans-serif;
  background-color: #555;
  color: #eee;
}

/* Get in touch end */
/* Footer copy area start */
.footer-copy-area {
  padding: 2.5rem 0;
}
.footer-copy-area .footer-copy-area-container {
  max-width: 1180px;
}
.footer-copy-area .footer-copy-area-container .footer-copy-area-content {
  padding: 0 15px;
}
.footer-copy-area .footer-copy-area-container .footer-copy-area-content .copy_text {
  font-size: 14px;
  color: rgb(197, 197, 197);
}
.footer-copy-area .footer-copy-area-container .footer-copy-area-content .copy_text .company_C {
  color: #fff;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

/* Footer copy end */
/* _goToTop start */
._goToTop {
  position: absolute;
  right: 18%;
  bottom: 36px;
  visibility: visible;
  pointer-events: none;
  z-index: 999;
}
#Top {
  position: relative;
}
._goToTop._active {
  visibility: visible;
  pointer-events: all;
}
._goToTop a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 600;
  color: #fff;
  text-decoration: none;
}
._goToTop a i {
  margin-left: 0.3rem;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}


