/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --conalz-font     : 'Kumbh Sans', sans-serif;
  --conalz-font-two : 'Titillium Web', sans-serif;
  --conalz-reey-font: "reeyregular";
  --conalz-gray     : #232323;
  --conalz-gray-rgb : 35, 35, 35;
  --conalz-white    : #ffffff;
  --conalz-white-rgb: 255, 255, 255;
  --conalz-base     : #005cff;
  --conalz-base-rgb : 0, 92, 255;
  --conalz-black    : #13121d;
  --conalz-black-rgb: 19, 18, 29;

}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--conalz-font);
  color      : var(--conalz-gray);
  font-size  : 16px;
  line-height: 32px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--conalz-gray);
}

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

::-webkit-input-placeholder {
  color  : inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color  : inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color  : inherit;
  opacity: 1;
}

::placeholder {
  color  : inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color      : var(--conalz-black);
  margin     : 0;
  font-family: var(--conalz-font-two);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top   : 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color  : inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color  : inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color  : inherit;
  opacity: 1;
}

::placeholder {
  color  : inherit;
  opacity: 1;
}

.page-wrapper {
  position : relative;
  margin   : 0 auto;
  width    : 100%;
  min-width: 300px;
  overflow : hidden;
}

.container {
  padding-left : 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color  : inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color  : inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color  : inherit;
  opacity: 1;
}

::placeholder {
  color  : inherit;
  opacity: 1;
}

.section-separator {
  border-color : var(--conalz-border);
  border-width : 1px;
  margin-top   : 0;
  margin-bottom: 0;
}


#particles-js {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  width              : 100%;
  height             : 100%;
  background-position: 50% 50%;
  opacity            : 0.4;
  z-index            : -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width             : 25px;
  height            : 25px;
  border-radius     : 100%;
  border            : 1px solid var(--conalz-base, #a47c68);
  -webkit-transition: all 200ms ease-out;
  transition        : all 200ms ease-out;
  position          : fixed;
  pointer-events    : none;
  left              : 0;
  top               : 0;
  -webkit-transform : translate(calc(-50% + 5px), -50%);
  transform         : translate(calc(-50% + 5px), -50%);
  z-index           : 999991;
}

.custom-cursor__cursor-two {
  width             : 10px;
  height            : 10px;
  border-radius     : 100%;
  background-color  : var(--conalz-base);
  opacity           : .3;
  position          : fixed;
  -webkit-transform : translate(-50%, -50%);
  transform         : translate(-50%, -50%);
  pointer-events    : none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition        : width .3s, height .3s, opacity .3s;
  z-index           : 999991;
}

.custom-cursor__hover {
  background-color: var(--conalz-base);
  opacity         : 0.4;
}

.custom-cursor__innerhover {
  width  : 25px;
  height : 25px;
  opacity: .4;
}


.thm-btn {
  position          : relative;
  display           : inline-block;
  vertical-align    : middle;
  -webkit-appearance: none;
  outline           : none !important;
  background-color  : var(--conalz-base);
  color             : var(--conalz-white);
  font-family       : var(--conalz-font-two);
  text-transform    : uppercase;
  font-size         : 15px;
  font-weight       : 600;
  padding           : 17px 60px 16px;
  transition        : all 0.3s linear;
  overflow          : hidden;
  z-index           : 1;
}

.thm-btn span {
  position    : relative;
  top         : 3px;
  padding-left: 7px;
}

.thm-btn:hover {
  color           : var(--conalz-white);
  background-color: transparent;
}

.thm-btn::before {
  position        : absolute;
  content         : '';
  background-color: var(--conalz-black);
  width           : 100%;
  height          : 0%;
  left            : 50%;
  top             : 50%;
  transform       : translate(-50%, -50%) rotate(45deg);
  z-index         : -1;
  transition      : all 500ms ease;
}

.thm-btn:hover::before {
  height: 380%;
}

.section-title {
  position     : relative;
  display      : block;
  margin-top   : -12px;
  margin-bottom: 59px;
}

.section-title__tagline {
  font-size     : 15px;
  color         : var(--conalz-black);
  text-transform: uppercase;
  font-weight   : 600;
  font-family   : var(--conalz-font-two);
  position      : relative;
  display       : inline-block;
  padding-left  : 15px;
}

.section-title__tagline:before {
  position        : absolute;
  height          : 14px;
  width           : 8px;
  background-color: var(--conalz-base);
  content         : "";
  top             : 8px;
  left            : 0;
}

.section-title__title {
  margin        : 0;
  color         : var(--conalz-black);
  font-size     : 60px;
  line-height   : 70px;
  font-weight   : 600;
  margin-top    : 3px;
  text-transform: uppercase;
}

.section-title__title span {
  position: relative;
  display : inline-block;
}

.section-title__title span:before {
  position: absolute;
  content : "";
  bottom  : 0;
  left    : 0;
  right   : 0;
  border  : 1px solid var(--conalz-black);
}

.section-title-two {
  position     : relative;
  display      : block;
  margin-top   : -10px;
  margin-bottom: 49px;
  z-index      : 1;
}

.section-title-two__tagline {
  position   : relative;
  display    : inline-block;
  font-size  : 16px;
  color      : var(--conalz-black);
  font-weight: 500;
  z-index    : 1;
}

.section-title-two__tagline:before {
  position        : absolute;
  top             : 0;
  left            : -4px;
  height          : 30px;
  width           : 30px;
  content         : "";
  background-color: #f2e6e3;
  z-index         : -1;
}

.section-title-two__tagline:after {
  position        : absolute;
  top             : -2px;
  left            : -3px;
  height          : 6px;
  width           : 6px;
  content         : "";
  background-color: var(--conalz-base);
  z-index         : -1;
}

.section-title-two__title {
  margin     : 0;
  color      : var(--conalz-black);
  font-size  : 65px;
  line-height: 70px;
  font-weight: 700;
  margin-top : 5px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow        : none !important;
  outline           : none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow        : none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border        : 0;
  padding-top   : 0;
  padding-bottom: 0;
  margin-top    : 0;
  z-index       : 991;
  border-radius : 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--conalz-primary);
  color     : #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size         : 16px;
  font-weight       : 500;
  padding           : 4px 20px;
  color             : #ffffff;
  background        : var(--conalz-base);
  -webkit-transition: all 0.4s ease;
  transition        : all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--conalz-white);
  color     : var(--conalz-base);
  cursor    : pointer;
}

.preloader {
  position           : fixed;
  background-color   : #fff;
  background-position: center center;
  background-repeat  : no-repeat;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  z-index            : 99999;
  display            : -webkit-box;
  display            : -ms-flexbox;
  display            : flex;
  -webkit-box-pack   : center;
  -ms-flex-pack      : center;
  justify-content    : center;
  -webkit-box-align  : center;
  -ms-flex-align     : center;
  align-items        : center;
  text-align         : center;
}

.preloader__image {
  -webkit-animation-fill-mode      : both;
  animation-fill-mode              : both;
  -webkit-animation-name           : flipInY;
  animation-name                   : flipInY;
  -webkit-animation-duration       : 2s;
  animation-duration               : 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count        : infinite;
  background-image                 : url(../images/loader.png);
  background-repeat                : no-repeat;
  background-position              : center center;
  background-size                  : 60px auto;
  width                            : 100%;
  height                           : 100%;
}

/* scroll to top */
.scroll-to-top {
  display           : inline-block;
  width             : 45px;
  height            : 45px;
  background        : var(--conalz-base);
  position          : fixed;
  bottom            : 40px;
  right             : 40px;
  z-index           : 99;
  text-align        : center;
  -webkit-transition: all 0.4s ease;
  transition        : all 0.4s ease;
  display           : none;
  border-radius     : 50%;
  transition        : all 0.4s ease;
  z-index:99999;
}

.scroll-to-top i {
  color      : #ffffff;
  font-size  : 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--conalz-base);
}

.scroll-to-top:hover i {
  color: #fff;
}

.swiper-slide-active .main-slider-overly-two,
.main-slider-overly-one,
.main-slider-shape-1,
.main-slider-shape-3 {
  display: none;
}

.main-slider .swiper-slide {
  background-color: transparent!important;
}

.whatsapp-btn {
  background: url('/img/WAlogo3.png')!important;
  position:unset!important;
}

.wp-cont {
  position:fixed;
  bottom:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  z-index:9999;
  transition:.2s;
}
.wp-cont:focus, .wp-cont:hover {
  transform:scale(.9);
  transition:.2s;
}

.site_tag {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 15px;
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.site_tag li {
  margin: 0 4px;
  padding: 5px;
}
/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display : block;
  z-index : 99;
}

.main-header__top {
  position: relative;
  display : block;
}

.main-header__top-inner {
  position: relative;
  display : block;
  padding : 0 35px;
  display : none;
}

.main-header__top-left {
  position: relative;
  display : block;
  float   : left;
}

.main-header__top-address-list {
  position   : relative;
  display    : flex;
  align-items: center;
  padding    : 19px 0;
}

.main-header__top-address-list li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.main-header__top-address-list li+li {
  margin-left: 20px;
}

.main-header__top-address-list li .icon {
  position   : relative;
  display    : flex;
  align-items: center;
}

.main-header__top-address-list li .icon span {
  position : relative;
  font-size: 22px;
  color    : #727276;
}

.main-header__top-address-list li .text {
  margin-left: 10px;
}

.main-header__top-address-list li .text p {
  font-size  : 15px;
  color      : var(--conalz-black);
  opacity    : .80;
  line-height: 15px;
}

.main-header__top-address-list li .text p a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.main-header__top-address-list li .text p a:hover {
  color: var(--conalz-base);
}

.main-header__top-right {
  position   : relative;
  float      : right;
  display    : flex;
  align-items: center;
}

.main-header__btn-box {
  position    : relative;
  display     : block;
  margin-right: 7px;
}

.main-header__btn {
  font-weight: 600;
  font-family: var(--conalz-font-two);
  padding    : 15px 30px 13px;
}

.main-header__top-social {
  position   : relative;
  display    : flex;
  align-items: center;
}

.main-header__top-social a {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 35px;
  width             : 35px;
  background-color  : transparent;
  border-radius     : 50%;
  color             : var(--conalz-black);
  font-size         : 15px;
  overflow          : hidden;
  z-index           : 1;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.main-header__top-social a:hover {
  color: var(--conalz-white);
}

.main-header__top-social a:after {
  position                          : absolute;
  content                           : "";
  top                               : 0;
  left                              : 0;
  right                             : 0;
  height                            : 100%;
  background-color                  : var(--conalz-black);
  -webkit-transition-delay          : .1s;
  transition-delay                  : .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function        : ease-in-out;
  -webkit-transition-duration       : .4s;
  transition-duration               : .4s;
  -webkit-transition-property       : all;
  transition-property               : all;
  opacity                           : 1;
  -webkit-transform-origin          : top;
  transform-origin                  : top;
  -webkit-transform-style           : preserve-3d;
  transform-style                   : preserve-3d;
  -webkit-transform                 : scaleY(0);
  transform                         : scaleY(0);
  border-radius                     : 50%;
  z-index                           : -1;
}

.main-header__top-social a:hover:after {
  opacity          : 1;
  -webkit-transform: scaleY(1);
  transform        : scaleY(1);
}

.main-header__top-social a+a {
  margin-left: 15px;
}

.main-menu {
  position        : relative;
  display         : block;
  background-color: #f8f8f8;
  z-index         : 1;
}

.main-menu__wrapper {
  position: relative;
  display : block;
  padding : 0 35px;
}

.main-menu__wrapper-inner {
  position: relative;
  display: block;
  display: flex;
  justify-content: center;
  justify-content: space-between;
  width: 100%;
}

.main-menu__left {
  position: relative;
  display : block;
  float   : left;
}

.main-menu__logo {
  position    : relative;
  display     : block;
  float       : left;
  padding     : 28px 0;
  margin-right: 145px;
  z-index     : 1;
}

.main-menu__logo:before {
  content         : "";
  position        : absolute;
  top             : 0;
  bottom          : -17px;
  left            : 0;
  right           : -110px;
  background-color: var(--conalz-white);
  z-index         : -1;
  clip-path       : polygon(0 0, 100% 0%, 77% 100%, 0% 100%);
}

/*
.main-menu__logo:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -17px;
  left: -100000000px;
  right: 0;
  background-color: var(--conalz-white);
  z-index: -1;
  display: none;
}

*/
.main-menu__logo:after {
  content         : "";
  position        : absolute;
  top             : 0;
  bottom          : -17px;
  right           : 0;
  left            : -110px;
  background-color: var(--conalz-white);
  z-index         : -1;
  clip-path       : polygon(23% 100%, 100% 100%, 100% 0%, 0% 0%);
}

.main-menu__main-menu-box {
  position: relative;
  display : block;
  float   : left;
}

.main-menu__right {
  position: relative;
  display : block;
  float   : right;
}

.main-menu__call-search {
  position   : relative;
  display    : flex;
  align-items: center;
}

.main-menu__call {
  position   : relative;
  display    : flex;
  align-items: center;
  padding    : 20px 0;
}

.main-menu__call-icon {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 70px;
  width             : 70px;
  background-color  : var(--conalz-white);
  border-radius     : 50%;
  font-size         : 35px;
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.main-menu__call-icon:hover {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.main-menu__call-content {
  margin-left: 15px;
}

.main-menu__call-content span {
  font-size  : 15px;
  display    : block;
  line-height: 20px;
  color      : var(--conalz-base);
}

.main-menu__call-content p {
  font-size  : 16px;
  font-weight: 600;
  line-height: 20px;
}

.main-menu__call-content p a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.main-menu__call-content p a:hover {
  color: var(--conalz-base);
}

.main-menu__search-box {
  position   : relative;
  display    : flex;
  align-items: center;
  margin-left: 35px;
  padding    : 25px 0;
}

.main-menu__search-text {
  font-size  : 18px;
  color      : var(--conalz-black);
  line-height: 20px;
}

.main-menu__search {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 60px;
  width             : 70px;
  background-color  : #ededed;
  font-size         : 25px;
  color             : var(--conalz-black);
  margin-left       : 15px;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.main-menu__search:hover {
  background-color: var(--conalz-black);
  color           : var(--conalz-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin           : 0;
  padding          : 0;
  list-style-type  : none;
  -webkit-box-align: center;
  -ms-flex-align   : center;
  align-items      : center;
  display          : none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top   : 39px;
  padding-bottom: 39px;
  position      : relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 40px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size         : 16px;
  display           : -webkit-box;
  display           : -ms-flexbox;
  display           : flex;
  -webkit-box-align : center;
  -ms-flex-align    : center;
  align-items       : center;
  color             : var(--conalz-black);
  position          : relative;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  font-weight       : 600;
  text-transform    : uppercase;
  font-family       : var(--conalz-font-two);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--conalz-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position                : absolute;
  top                     : 100%;
  left                    : 0;
  min-width               : 250px;
  -webkit-box-orient      : vertical;
  -webkit-box-direction   : normal;
  -ms-flex-direction      : column;
  flex-direction          : column;
  -webkit-box-pack        : start;
  -ms-flex-pack           : start;
  justify-content         : flex-start;
  -webkit-box-align       : start;
  -ms-flex-align          : start;
  align-items             : flex-start;
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform-origin: top center;
  transform-origin        : top center;
  -webkit-transform       : scaleY(0) translateZ(100px);
  transform               : scaleY(0) translateZ(100px);
  -webkit-transition      : opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition              : opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition              : opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition              : opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index                 : 99;
  background-color        : #fff;
  box-shadow              : 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity          : 1;
  visibility       : visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform        : scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex        : 1 1 100%;
  flex            : 1 1 100%;
  width           : 100%;
  position        : relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position          : relative;
  font-size         : 15px;
  line-height       : 30px;
  color             : var(--conalz-black);
  font-weight       : 600;
  display           : -webkit-box;
  display           : -ms-flexbox;
  display           : flex;
  padding           : 10px 20px 10px;
  -webkit-transition: 500ms;
  transition        : 500ms;
  text-transform    : uppercase;
  font-family       : var(--conalz-font-two);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top : 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top  : 0;
  left : auto;
  right: 100%;
}


.stricky-header {
  position          : fixed;
  z-index           : 991;
  top               : 0;
  left              : 0;
  background-color  : #fff;
  width             : 100%;
  visibility        : hidden;
  -webkit-transform : translateY(-120%);
  transform         : translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition        : visibility 500ms ease, -webkit-transform 500ms ease;
  transition        : transform 500ms ease, visibility 500ms ease;
  transition        : transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow        : 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform        : translateY(0);
  visibility       : visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow        : none;
  padding-right     : 0;
  max-width         : 1170px;
  width             : 100%;
  margin            : 0 auto;
}

.mobile-nav__buttons {
  display     : -webkit-box;
  display     : -ms-flexbox;
  display     : flex;
  margin-left : auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color    : var(--conalz-base);
  cursor   : pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--conalz-base);
}

.main-menu .mobile-nav__toggler {
  font-size         : 20px;
  color             : var(--conalz-base);
  cursor            : pointer;
  -webkit-transition: 500ms;
  transition        : 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--conalz-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position                : fixed;
  top                     : 0;
  left                    : 0;
  width                   : 100vw;
  height                  : 100vh;
  z-index                 : 999;
  -webkit-transform       : translateX(-100%);
  transform               : translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin        : left center;
  -webkit-transition      : visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition              : visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition              : transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition              : transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility              : hidden;
}

.mobile-nav__wrapper .container {
  padding-left : 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity           : 1;
  -webkit-transform : translateX(0%);
  transform         : translateX(0%);
  visibility        : visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition        : visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition        : transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition        : transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  background-color: #000000;
  opacity         : 0.5;
  cursor          : pointer;
}

.mobile-nav__content {
  width             : 300px;
  background-color  : var(--conalz-black);
  z-index           : 10;
  position          : relative;
  height            : 100%;
  overflow-y        : auto;
  padding-top       : 30px;
  padding-bottom    : 30px;
  padding-left      : 15px;
  padding-right     : 15px;
  opacity           : 0;
  visibility        : hidden;
  -webkit-transform : translateX(-100%);
  transform         : translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition        : opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition        : opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition        : opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity           : 1;
  visibility        : visible;
  -webkit-transform : translateX(0);
  transform         : translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition        : opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition        : opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition        : opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display      : -webkit-box;
  display      : -ms-flexbox;
  display      : flex;
}

.mobile-nav__close {
  position : absolute;
  top      : 20px;
  right    : 15px;
  font-size: 18px;
  color    : var(--conalz-white);
  cursor   : pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin         : 0;
  padding        : 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display    : none;
  border-top : 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display           : -webkit-box;
  display           : -ms-flexbox;
  display           : flex;
  -webkit-box-pack  : justify;
  -ms-flex-pack     : justify;
  justify-content   : space-between;
  line-height       : 30px;
  color             : #ffffff;
  font-size         : 14px;
  font-family       : var(--conalz-font, "Rubik", sans-serif);
  font-weight       : 500;
  height            : 46px;
  -webkit-box-align : center;
  -ms-flex-align    : center;
  align-items       : center;
  -webkit-transition: 500ms;
  transition        : 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--conalz-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width             : 30px;
  height            : 30px;
  background-color  : var(--conalz-primary);
  border            : none;
  outline           : none;
  color             : #fff;
  display           : -webkit-box;
  display           : -ms-flexbox;
  display           : flex;
  -webkit-box-align : center;
  -ms-flex-align    : center;
  align-items       : center;
  -webkit-box-pack  : center;
  -ms-flex-pack     : center;
  justify-content   : center;
  text-align        : center;
  -webkit-transform : rotate(-90deg);
  transform         : rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition        : -webkit-transform 500ms ease;
  transition        : transform 500ms ease;
  transition        : transform 500ms ease, -webkit-transform 500ms ease;
  padding           : 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform        : rotate(0deg);
  background-color : #fff;
  color            : var(--conalz-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position         : relative;
  top              : auto;
  right            : auto;
  -webkit-transform: translate(0, 0);
  transform        : translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display          : -webkit-box;
  display          : -ms-flexbox;
  display          : flex;
  -webkit-box-align: center;
  -ms-flex-align   : center;
  align-items      : center;
  -webkit-box-pack : justify;
  -ms-flex-pack    : justify;
  justify-content  : space-between;
  margin-bottom    : 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--conalz-text-dark);
}

.mobile-nav__container {
  border-top   : 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display          : -webkit-box;
  display          : -ms-flexbox;
  display          : flex;
  -webkit-box-align: center;
  -ms-flex-align   : center;
  align-items      : center;
}

.mobile-nav__social a {
  font-size         : 16px;
  color             : var(--conalz-white);
  -webkit-transition: 500ms;
  transition        : 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--conalz-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top   : 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color            : var(--conalz-text-dark);
  font-size        : 14px;
  font-weight      : 500;
  position         : relative;
  display          : -webkit-box;
  display          : -ms-flexbox;
  display          : flex;
  -webkit-box-align: center;
  -ms-flex-align   : center;
  align-items      : center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color             : #ffffff;
  -webkit-transition: 500ms;
  transition        : 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--conalz-base);
}

.mobile-nav__contact li>i {
  width            : 30px;
  height           : 30px;
  border-radius    : 50%;
  background-color : var(--conalz-primary);
  display          : -webkit-box;
  display          : -ms-flexbox;
  display          : flex;
  -webkit-box-pack : center;
  -ms-flex-pack    : center;
  justify-content  : center;
  -webkit-box-align: center;
  -ms-flex-align   : center;
  align-items      : center;
  text-align       : center;
  font-size        : 11px;
  margin-right     : 10px;
  color            : #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display : block;
}


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  background: transparent;
  position  : absolute;
  left      : 0px;
  top       : 0px;
  width     : 100%;
  transition: all 500ms ease;
  z-index   : 999;
}

.main-menu-three {
  background-color: transparent;
}

.main-menu-three:before {
  content         : "";
  position        : absolute;
  top             : 0;
  bottom          : 0;
  left            : 0;
  right           : 0;
  background-color: rgba(248, 248, 248, 0.05);
  z-index         : -1;
}

.main-menu-three .main-menu__logo:before {
  content         : "";
  position        : absolute;
  top             : 0;
  bottom          : 0;
  left            : 0;
  right           : -110px;
  background-color: var(--conalz-white);
  z-index         : -1;
  clip-path       : polygon(0 0, 100% 0%, 77% 100%, 0% 100%);
}

.main-menu-three .main-menu__logo:after {
  content         : "";
  position        : absolute;
  top             : 0;
  bottom          : 0;
  left            : -100000000px;
  right           : 0;
  background-color: var(--conalz-white);
  z-index         : -1;
}

.main-menu-three .main-menu__call-content span {
  color: var(--conalz-white);
}

.main-menu-three .main-menu__call-content p a {
  color: var(--conalz-white);
}

.main-menu-three .main-menu__call-content p a:hover {
  color: var(--conalz-base);
}

.main-menu-three .main-menu__search-text {
  color: var(--conalz-white);
}

.main-menu-three .main-menu__search {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.main-menu-three .main-menu__search:hover {
  background-color: var(--conalz-white);
  color           : var(--conalz-base);
}

.stricky-header.main-menu-three {
  background-color: #f8f8f8;
}

.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--conalz-white);
}

.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--conalz-black);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: var(--conalz-base);
}

.stricky-header.main-menu-three .main-menu__call-content span {
  color: var(--conalz-black);
}

.stricky-header.main-menu-three .main-menu__call-content p a {
  color: var(--conalz-black);
}

.stricky-header.main-menu-three .main-menu__search-text {
  color: var(--conalz-black);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position          : fixed;
  top               : 0;
  left              : 0;
  width             : 100vw;
  height            : 100vh;
  z-index           : 9999;
  padding-left      : 20px;
  padding-right     : 20px;
  display           : -webkit-box;
  display           : -ms-flexbox;
  display           : flex;
  -webkit-box-pack  : center;
  -ms-flex-pack     : center;
  justify-content   : center;
  -webkit-box-align : center;
  -ms-flex-align    : center;
  align-items       : center;
  -webkit-transform : translateY(-110%);
  transform         : translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition        : opacity 500ms ease, -webkit-transform 500ms ease;
  transition        : transform 500ms ease, opacity 500ms ease;
  transition        : transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform        : translateY(0%);
}

.search-popup__overlay {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  background-color: #000000;
  opacity         : 0.75;
  cursor          : pointer;
}

.search-popup__content {
  width    : 100%;
  max-width: 560px;
}

.search-popup__content form {
  display         : -webkit-box;
  display         : -ms-flexbox;
  display         : flex;
  -ms-flex-wrap   : wrap;
  flex-wrap       : wrap;
  position        : relative;
  background-color: #fff;
  border-radius   : 0px;
  overflow        : hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width           : 100%;
  background-color: #fff;
  font-size       : 16px;
  border          : none;
  outline         : none;
  height          : 66px;
  padding-left    : 30px;
}

.search-popup__content .thm-btn {
  padding          : 0;
  width            : 68px;
  height           : 66px;
  display          : -webkit-box;
  display          : -ms-flexbox;
  display          : flex;
  -webkit-box-pack : center;
  -ms-flex-pack    : center;
  justify-content  : center;
  -webkit-box-align: center;
  -ms-flex-align   : center;
  align-items      : center;
  text-align       : center;
  position         : absolute;
  top              : 0;
  right            : -1px;
  border-radius    : 0;
  background-color : var(--conalz-base);
  border           : 0;
  font-size        : 20px;
  color            : var(--conalz-white);
}

.search-popup__content .thm-btn:hover {
  background-color: var(--conalz-black);
}

.search-popup__content .thm-btn:before,
.search-popup__content .thm-btn:after {
  display: none;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display : block;
  z-index : 91;
}

.main-slider .swiper-slide {
  position        : relative;
  background-color: #212235;
}

.main-slider .container {
  position      : relative;
  padding-top   : 170px;
  padding-bottom: 190px;
  z-index       : 30;
}

.main-slider .image-layer {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  background-repeat  : no-repeat;
  background-size    : cover;
  background-position: center;
  mix-blend-mode     : overlay;
  -webkit-transform  : scale(1);
  transform          : scale(1);
  -webkit-transition : opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition         : opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition         : transform 7000ms ease, opacity 1500ms ease-in;
  transition         : transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index            : 1;
}

.clearfix::after {
  display:none;
}
.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform        : scale(1.15);
  height:100vh;
}

.main-slider-overly-one {
  position        : absolute;
  left            : -557px;
  bottom          : -310px;
  border-radius   : 50%;
  background-color: rgb(0, 92, 255);
  mix-blend-mode  : overlay;
  width           : 797px;
  height          : 797px;
  transform       : translateX(-250px);
  opacity         : 0;
}

.swiper-slide-active .main-slider-overly-one {
  opacity         : 1;
  transform       : translateX(0px);
  transition      : all 1000ms ease;
  transition-delay: 1200ms;
}

.main-slider-overly-two {
  position        : absolute;
  right           : -515px;
  top             : -175px;
  border-radius   : 50%;
  background-color: rgb(0, 92, 255);
  mix-blend-mode  : overlay;
  width           : 797px;
  height          : 797px;
  transform       : translateX(300px);
  opacity         : 0;
}

.swiper-slide-active .main-slider-overly-two {
  opacity   : 1;
  transform : translateX(0px);
  transition: all 1000ms ease;
}

.main-slider-shape-1 {
  position: absolute;
  bottom  : 0;
  left    : 0;
}

.main-slider-shape-1 img {
  width: auto;
}

.main-slider-shape-2 {
  position: absolute;
  bottom  : -20px;
  left    : 335px;
}

.main-slider-shape-2 img {
  width: auto;
}

.main-slider-shape-3 {
  position: absolute;
  top     : 0;
  right   : 0;
}

.main-slider-shape-3 img {
  width: auto;
}

.main-slider__content {
  position: relative;
  display : block;
}

.main-slider__video-link {
  position                : relative;
  display                 : block;
  margin-bottom           : 10px;
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(-120px);
  transform               : translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  z-index                 : 3;
}

.main-slider__video-icon {
  position                  : relative;
  display                   : -webkit-box;
  display                   : -ms-flexbox;
  display                   : flex;
  -webkit-box-align         : center;
  -ms-flex-align            : center;
  align-items               : center;
  -webkit-box-pack          : center;
  -ms-flex-pack             : center;
  justify-content           : center;
  width                     : 80px;
  height                    : 80px;
  line-height               : 80px;
  text-align                : center;
  font-size                 : 15px;
  color                     : var(--conalz-white);
  background-color          : #192d51;
  border-top-left-radius    : 10px;
  border-bottom-left-radius : 10px;
  border-bottom-right-radius: 10px;
  transition                : all 0.5s ease;
  -moz-transition           : all 0.5s ease;
  -webkit-transition        : all 0.5s ease;
  -ms-transition            : all 0.5s ease;
  -o-transition             : all 0.5s ease;
}

.main-slider__video-icon:hover {
  background-color: var(--conalz-white);
  color           : var(--conalz-base);
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
  position                  : absolute;
  top                       : 50%;
  left                      : 50%;
  width                     : 80px;
  height                    : 80px;
  -webkit-transform         : translate(-50%, -50%);
  transform                 : translate(-50%, -50%);
  -ms-box-shadow            : 0 0 0 0 rgba(var(--conalz-white-rgb), 0.6);
  -o-box-shadow             : 0 0 0 0 rgba(var(--conalz-white-rgb), 0.6);
  -webkit-box-shadow        : 0 0 0 0 rgba(var(--conalz-white-rgb), 0.6);
  box-shadow                : 0 0 0 0 rgba(var(--conalz-white-rgb), 0.6);
  -webkit-animation         : ripple 3s infinite;
  animation                 : ripple 3s infinite;
  border-top-left-radius    : 10px;
  border-bottom-left-radius : 10px;
  border-bottom-right-radius: 10px;
}

.main-slider__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay        : 0.9s;
  content                : "";
  position               : absolute;
}

.main-slider__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay        : 0.6s;
  content                : "";
  position               : absolute;
}

.main-slider__sub-title {
  position                : relative;
  display                 : inline-block;
  font-size               : 16px;
  color                   : var(--conalz-white);
  font-weight             : 300;
  letter-spacing          : 0.35em;
  line-height             : 30px;
  text-transform          : uppercase;
  font-family             : var(--conalz-font-two);
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(-120px);
  transform               : translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__title {
  position                : relative;
  font-size               : 122px;
  color                   : var(--conalz-white);
  font-weight             : 700;
  line-height             : 124px;
  margin-top              : 21px;
  margin-bottom           : 53px;
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(-120px);
  transform               : translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn-box {
  position                : relative;
  display                 : block;
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(120px);
  transform               : translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn:hover {
  color: var(--conalz-base);
}

.main-slider__btn::before {
  background-color: var(--conalz-white);
}

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__video-link,
.main-slider .swiper-slide-active .main-slider__btn-box {
  visibility       : visible;
  opacity          : 1;
  -webkit-transform: translateY(0) translateX(0);
  transform        : translateY(0) translateX(0);
}

.main-slider__nav {
  position      : absolute;
  top           : 74.5%;
  left          : 50%;
  z-index       : 100;
  transform     : translateY(-50%) translateX(-50%);
  display       : flex;
  align-items   : flex-end;
  flex-direction: column;
  max-width     : 1200px;
  width         : 100%;
  padding       : 0 15px;
  height        : 0;
  line-height   : 0;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position                  : relative;
  top                       : auto;
  left                      : auto;
  right                     : auto;
  bottom                    : auto;
  z-index                   : 100;
  width                     : 80px;
  height                    : 100px;
  display                   : flex;
  justify-content           : center;
  align-items               : center;
  font-size                 : 40px;
  color                     : rgba(var(--conalz-white-rgb), 1);
  background-color          : rgba(98, 77, 75, .15);
  margin                    : 0;
  text-align                : center;
  transition                : all 500ms ease;
  padding                   : 30px 0;
  border-top-left-radius    : 10px;
  border-bottom-left-radius : 10px;
  border-bottom-right-radius: 10px;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color           : rgba(var(--conalz-white-rgb), 1);
  background-color: rgba(39, 37, 50, 1);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider__nav .swiper-button-prev i {
  position : relative;
  display  : inline-block;
  transform: rotate(-90deg);
}

.main-slider__nav .swiper-button-next i {
  position : relative;
  display  : inline-block;
  transform: rotate(90deg);
}


/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display : block;
}

.main-slider-two .swiper-slide {
  position        : relative;
  background-color: #212235;
}

.main-slider-two .container {
  position      : relative;
  padding-top   : 210px;
  padding-bottom: 190px;
  z-index       : 30;
}

.image-layer-two {
  position           : absolute;
  top                : 0;
  right              : 0;
  bottom             : 0;
  left               : 0;
  background-repeat  : no-repeat;
  background-size    : cover;
  background-position: center;
  mix-blend-mode     : overlay;
  -webkit-transform  : scale(1);
  transform          : scale(1);
  -webkit-transition : opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition         : opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition         : transform 7000ms ease, opacity 1500ms ease-in;
  transition         : transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index            : 1;
}

.main-slider-two .swiper-slide-active .image-layer-two {
  -webkit-transform: scale(1.15);
  transform        : scale(1.15);
}

.main-slider-two-overly-one {
  position        : absolute;
  left            : -557px;
  bottom          : -315px;
  border-radius   : 50%;
  background-color: rgb(0, 92, 255);
  mix-blend-mode  : overlay;
  width           : 797px;
  height          : 797px;
  transform       : translateX(-250px);
  opacity         : 0;
}

.swiper-slide-active .main-slider-two-overly-one {
  opacity         : 1;
  transform       : translateX(0px);
  transition      : all 1000ms ease;
  transition-delay: 1200ms;
}

.main-slider-tow-overly-two {
  position        : absolute;
  right           : -504px;
  bottom          : -350px;
  border-radius   : 50%;
  background-color: rgb(0, 92, 255);
  width           : 797px;
  height          : 797px;
  transform       : translateX(300px);
  opacity         : 0;
}

.swiper-slide-active .main-slider-tow-overly-two {
  opacity   : 1;
  transform : translateX(0px);
  transition: all 1000ms ease;
}

.main-slider-two-shape-1 {
  position : absolute;
  top      : 178px;
  left     : -52px;
  transform: translateX(-300px);
  opacity  : 0;
}

.swiper-slide-active .main-slider-two-shape-1 {
  opacity   : 1;
  transform : translateX(0px);
  transition: all 1000ms ease;
}

.main-slider-two-shape-1 img {
  width: auto;
}

.main-slider-two__content {
  position  : relative;
  display   : block;
  text-align: center;
}

.main-slider-two__curved-circle-box {
  position        : relative;
  display         : block;
  height          : 150px;
  width           : 150px;
  border-radius   : 50%;
  background-color: var(--conalz-white);
  margin          : 0 auto;

  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(-120px);
  transform               : translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__curved-circle-box .curved-circle {
  position       : absolute;
  top            : -44px;
  right          : -44px;
  bottom         : -44px;
  left           : -44px;
  font-size      : 16px;
  font-weight    : 300;
  color          : var(--conalz-black);
  text-transform : uppercase;
  display        : flex;
  justify-content: center;
  align-items    : center;
  font-family    : var(--conalz-font-two);
  letter-spacing : .005em;
}

.main-slider-two__curved-circle-icon {
  position       : absolute;
  top            : 0;
  bottom         : 0;
  left           : 0;
  right          : 0;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.main-slider-two__curved-circle-icon img {
  width: auto;
}

.main-slider-two__title {
  position                : relative;
  font-size               : 122px;
  color                   : var(--conalz-white);
  font-weight             : 700;
  line-height             : 124px;
  margin-top              : 26px;
  margin-bottom           : 59px;
  text-transform          : uppercase;
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(-120px);
  transform               : translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn-box {
  position                : relative;
  display                 : block;
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(120px);
  transform               : translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__title,
.main-slider-two .swiper-slide-active .main-slider-two__curved-circle-box,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  visibility       : visible;
  opacity          : 1;
  -webkit-transform: translateY(0) translateX(0);
  transform        : translateY(0) translateX(0);
}

.main-slider-two .main-slider__nav {
  top: 76.5%;
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display : block;
  z-index : 91;
}

.main-slider-three .swiper-slide {
  position        : relative;
  background-color: #2a2a2f;
}

.main-slider-three .container {
  position      : relative;
  padding-top   : 316px;
  padding-bottom: 245px;
  z-index       : 30;
}

.image-layer-three {
  position           : absolute;
  top                : 0;
  right              : 0;
  bottom             : 0;
  left               : 0;
  background-repeat  : no-repeat;
  background-size    : cover;
  background-position: center;
  mix-blend-mode     : overlay;
  -webkit-transform  : scale(1);
  transform          : scale(1);
  -webkit-transition : opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition         : opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition         : transform 7000ms ease, opacity 1500ms ease-in;
  transition         : transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index            : 1;
}

.main-slider-three .swiper-slide-active .image-layer-three {
  -webkit-transform: scale(1.15);
  transform        : scale(1.15);
}

.main-slider-three__content {
  position: relative;
  display : block;
}

.main-slider-three__title {
  position                : relative;
  font-size               : 122px;
  color                   : var(--conalz-white);
  font-weight             : 700;
  line-height             : 124px;
  margin-bottom           : 56px;
  text-transform          : uppercase;
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(-120px);
  transform               : translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn-box {
  position                : relative;
  display                 : block;
  opacity                 : 0;
  visibility              : hidden;
  -webkit-transform       : translateY(120px);
  transform               : translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay        : 1000ms;
  -webkit-transition      : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease;
  transition              : transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn {
  padding: 17px 25px 16px;
}

.main-slider-three__btn:hover {
  color: var(--conalz-base);
}

.main-slider-three__btn:before {
  background-color: var(--conalz-white);
}

.main-slider-three__btn:hover::before {
  height: 450%;
}

.main-slider-three-shape-1 {
  position: absolute;
  top     : -88px;
  left    : -230px;
}

.main-slider-three-shape-1 img {
  width: auto;
}

.main-slider-three-shape-2 {
  position: absolute;
  bottom  : -106px;
  right   : 90px;
}

.main-slider-three-shape-2 img {
  width: auto;
}

.main-slider-three-shape-3 {
  position: absolute;
  top     : -76px;
  right   : -57px;
}

.main-slider-three-shape-3 img {
  width: auto;
}

.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-two__curved-circle-box,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  visibility       : visible;
  opacity          : 1;
  -webkit-transform: translateY(0) translateX(0);
  transform        : translateY(0) translateX(0);
}

.main-slider-three__right {
  position    : relative;
  display     : block;
  margin-left : 140px;
  margin-right: 85px;
  margin-top  : 100px;
}

.main-slider-three__right .main-slider-two__curved-circle-box {
  -webkit-transform: translateX(300px);
  transform        : translateX(300px);
}

.main-slider-three__nav {
  width          : 100%;
  max-width      : 100%;
  padding-left   : 30px;
  padding-right  : 30px;
  position       : absolute;
  top            : 50%;
  left           : 50%;
  z-index        : 100;
  transform      : translateY(-50%) translateX(-50%);
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  height         : 0;
  line-height    : 0;
}

.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
  position                  : relative;
  top                       : auto;
  left                      : auto;
  right                     : auto;
  bottom                    : auto;
  z-index                   : 100;
  width                     : 80px;
  height                    : 100px;
  display                   : flex;
  justify-content           : center;
  align-items               : center;
  font-size                 : 40px;
  color                     : rgba(var(--conalz-white-rgb), 1);
  background-color          : rgba(98, 77, 75, .15);
  margin                    : 0;
  text-align                : center;
  transition                : all 500ms ease;
  padding                   : 30px 0;
  border-top-left-radius    : 10px;
  border-bottom-left-radius : 10px;
  border-bottom-right-radius: 10px;
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  color           : rgba(var(--conalz-white-rgb), 1);
  background-color: rgba(39, 37, 50, 1);
}

.main-slider-three__nav .swiper-button-prev i {
  position : relative;
  display  : inline-block;
  transform: rotate(-90deg);
}

.main-slider-three__nav .swiper-button-next i {
  position : relative;
  display  : inline-block;
  transform: rotate(90deg);
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
  display: none;
}

#main-slider-pagination {
  bottom           : 69px;
  left             : 50%;
  width            : 100%;
  max-width        : 1200px;
  -webkit-transform: translate(-50%, calc(-50% + 95px));
  transform        : translate(-50%, calc(0% + 0px));
  text-align       : left;
  padding          : 0 15px;
  height           : 0;
  line-height      : 0;
  z-index          : 10;
}

#main-slider-pagination .swiper-pagination-bullet {
  position        : relative;
  width           : 6px;
  height          : 12px;
  opacity         : 1;
  background-color: #757579;
  border-radius   : 0;
  margin-left     : 0;
  margin-right    : 0;
  padding         : 0;
  transition      : all 500ms ease;
}

#main-slider-pagination .swiper-pagination-bullet:before {
  position        : absolute;
  top             : -3px;
  bottom          : -3px;
  left            : 0;
  right           : 0;
  content         : "";
  background-color: var(--conalz-base);
  transform       : scaleY(0);
  transition      : all 500ms ease;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: 6px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  transform: scaleY(1);
}


/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.about-one__left {
  position: relative;
  display : block;
}

.about-one__left .section-title__title {
  margin-bottom: -26px;
}

.about-one__left-text {
  font-size    : 18px;
  font-weight  : 500;
  color        : var(--conalz-base);
  line-height  : 34px;
  margin-right : 50px;
  margin-bottom: 45px;
}

.about-one__points {
  position: relative;
  display : block;
}

.about-one__points li {
  position: relative;
  display : flex;
}

.about-one__points li+li {
  margin-top: 49px;
}

.about-one__points li .icon {
  position : relative;
  display  : inline-block;
  font-size: 82px;
  top      : -2px;
}

.about-one__points li .icon span {
  position        : relative;
  display         : inline-block;
  color           : #3d3d63;
  padding-right   : 32px;
  transition      : all 500ms linear;
  transition-delay: 0.1s;
  transform       : scale(1);
}

.about-one__points li:hover .icon span {
  color    : var(--conalz-base);
  transform: scale(0.9);
}

.about-one__points li .content {
  position: relative;
  display : block;
}

.about-one__points li .content h4 {
  font-size    : 20px;
  font-weight  : 600;
  font-family  : var(--conalz-font);
  margin-bottom: 7px;
}

.about-one__points li .content p {
  color      : var(--conalz-gray);
  opacity    : .80;
  line-height: 29px;
}

.about-one__bottom {
  position    : relative;
  display     : block;
  padding-left: 178px;
  min-height  : 132px;
  margin-top  : 70px;
}

.about-one__bottom-left {
  position: absolute;
  top     : -9px;
  left    : 0;
}

.about-one__bottom-img {
  position               : relative;
  display                : block;
  max-width              : 150px;
  width                  : 100%;
  background-color       : #1c3a6e;
  border-top-right-radius: 60px;
}

.about-one__bottom-img img {
  width                  : 100%;
  border-top-right-radius: 60px;
  mix-blend-mode         : overlay;
}

.about-one__bottom-expert {
  position       : absolute;
  top            : 0;
  bottom         : 0;
  left           : 25px;
  right          : 0;
  display        : flex;
  align-items    : flex-start;
  justify-content: center;
  flex-direction : column;
}

.about-one__bottom-expert-count-box {
  position   : relative;
  display    : flex;
  align-items: center;
}

.about-one__bottom-expert-count-box h3 {
  font-size  : 40px;
  color      : var(--conalz-white);
  font-weight: 600;
  line-height: 40px !important;
  font-family: var(--conalz-font-two) !important;
}

.about-one__bottom-expert-plus {
  font-size  : 40px;
  color      : var(--conalz-white);
  font-weight: 600;
  line-height: 40px;
  font-family: var(--conalz-font-two);
  position   : relative;
  top        : -2px;
}

.about-one__bottom-expert-text {
  color      : var(--conalz-white);
  line-height: 26px;
}

.about-one__bottom-text-box {
  position: relative;
  display : block;
}

.about-one__bottom-text {
  font-size  : 18px;
  color      : var(--conalz-gray);
  opacity    : .80;
  line-height: 33px;
}

.about-one__right {
  position    : relative;
  display     : block;
  margin-right: 71px;
  margin-left : 24px;
}

.about-one__right-img-box {
  position: relative;
  display : block;
  z-index : 1;
}

.about-one__right-img-box::before {
  position        : absolute;
  width           : 5px;
  height          : 64px;
  background-color: #c5c3c3;
  content         : "";
  top             : 20px;
  left            : 46px;
  z-index         : 2;
}

.about-one__right-img-one-box {
  position: relative;
  display : block;
}

.about-one__right-shape {
  position: absolute;
  bottom  : -46px;
  right   : 7px;
}

.about-one__right-shape img {
  -webkit-animation-name           : shapeMover;
  animation-name                   : shapeMover;
  -webkit-animation-duration       : 9s;
  animation-duration               : 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function        : linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count        : infinite;
}

.about-one__right-img-one-box:before {
  position        : absolute;
  width           : 10px;
  height          : 227px;
  background-color: #e8eaee;
  content         : "";
  bottom          : 162px;
  left            : -8px;
  z-index         : 2;
}

.about-one__right-img-one-box:after {
  position        : absolute;
  width           : 10px;
  height          : 101px;
  background-color: var(--conalz-base);
  content         : "";
  top             : 131px;
  left            : -8px;
  z-index         : 3;
}

.about-one__right-img-1 {
  position: relative;
  display : block;
  overflow: hidden;
}

.about-one__right-img-1::before {
  position        : absolute;
  height          : 247px;
  width           : 247px;
  background-color: #3c3e8d;
  border-radius   : 50%;
  mix-blend-mode  : overlay;
  bottom          : -33px;
  right           : -86px;
  content         : "";
}

.about-one__right-img-1 img {
  border-top-left-radius: 182px;
  width                 : 100%;
}

.about-one__right-img-2 {
  position: absolute;
  bottom  : -200px;
  left    : -39px;
}

.about-one__right-img-2::before {
  position        : absolute;
  width           : 10px;
  height          : 227px;
  top             : -10px;
  left            : -4px;
  background-color: var(--conalz-base);
  content         : "";
}

.about-one__right-img-2 img {
  width: 100%;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position        : relative;
  display         : block;
  background-color: #08080e;
  padding         : 120px 0 180px;
  z-index         : 1;
}

.services-one__bg {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  background-position: center;
  background-size    : cover;
  background-repeat  : no-repeat;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.services-one__top {
  position     : relative;
  display      : block;
  margin-bottom: 54px;
}

.services-one__top .section-title {
  margin-bottom: 24px;
}

.services-one__top .section-title__title span:before {
  border: none;
}

.services-one__top .section-title__tagline {
  color: var(--conalz-white);
}

.services-one__top .section-title__title {
  color: var(--conalz-white);
}

.services-one__top .section-title__text {
  font-size  : 18px;
  color      : var(--conalz-white);
  line-height: 32px;
  opacity    : .80;
}

.services-one__single {
  position: relative;
  display : block;
}

.services-one__img {
  position: relative;
  display : block;
  overflow: hidden;
  z-index : 1;
}

.services-one__img:before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  content         : "";
  background-color: rgba(var(--conalz-black-rgb), .30);
  transform       : scaleY(0);
  transform-origin: center;
  transform-style : preserve-3d;
  transition      : all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index         : 1;
}

.services-one__single:hover .services-one__img:before {
  transform: scaleY(1);
}

.services-one__img img {
  width             : 100%;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.05);
}

.services-one__content {
  position        : relative;
  display         : block;
  background-color: rgb(255, 255, 255);
  box-shadow      : 0px 0px 35px 0px rgba(201, 199, 205, 0.35);
  text-align      : center;
  padding-top     : 55px;
  padding-left    : 25px;
  padding-right   : 30px;
  padding-bottom  : 62px;
}

.services-one__icon {
  position          : absolute;
  top               : -56px;
  left              : 50%;
  width             : 85px;
  height            : 85px;
  background-color  : var(--conalz-base);
  border-radius     : 50%;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  text-align        : center;
  transform         : translateX(-50%);
  border            : 2px solid var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  display:none;
  z-index           : 2;
}

.services-one__single:hover .services-one__icon {
  border-color: var(--conalz-base);
}

.services-one__icon span {
  font-size       : 46px;
  color           : var(--conalz-white);
  position        : relative;
  display         : inline-block;
  transition      : all 500ms linear;
  transition-delay: 0.1s;
  transform       : scale(1);
}

.services-one__single:hover .services-one__icon span {
  transform: scale(0.9);
  color    : var(--conalz-base);
}

.services-one__title {
  font-size     : 24px;
  font-weight   : 700;
  line-height   : 24px;
  text-transform: uppercase;
}

.services-one__title a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.services-one__single:hover .services-one__title a {
  color: var(--conalz-base);
}

.services-one__text {
  color      : var(--conalz-black);
  opacity    : .80;
  padding-top: 12px;
  line-height: 30px;
}

.services-one__arrow {
  position : absolute;
  left     : 50%;
  bottom   : -31px;
  transform: translateX(-50px);
}

.services-one__arrow a {
  position               : relative;
  width                  : 78px;
  height                 : 65px;
  display                : flex;
  background-color       : #f6f2f2;
  align-items            : center;
  justify-content        : center;
  border-top-right-radius: 16px;
  color                  : var(--conalz-black);
  font-size              : 16px;
  -webkit-transition     : all 500ms ease;
  transition             : all 500ms ease;
}

.services-one__single:hover .services-one__arrow a {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.services-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.services-one__carousel.owl-carousel .owl-item {
  opacity   : 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.services-one__carousel.owl-carousel .owl-item.active {
  opacity   : 1;
  visibility: visible;
}

.services-one__carousel.owl-carousel .owl-dots {
  position       : absolute;
  bottom         : -95px;
  left           : 0px;
  right          : 0;
  text-align     : center;
  margin         : 0 !important;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.services-one__carousel.owl-carousel .owl-dots .owl-dot {
  position        : relative;
  display         : inline-block;
  width           : 17px;
  height          : 6px;
  background-color: #343246;
  border-radius   : 5px;
  margin          : 0px 5px;
  padding         : 0px;
  transition      : all 100ms linear;
  transition-delay: 0.1s;
}


.services-one__carousel.owl-carousel .owl-dot.active {
  height          : 10px;
  background-color: var(--conalz-base);
}

.services-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.services-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Cta One
--------------------------------------------------------------*/
.cta-one {
  position        : relative;
  display         : block;
  background-color: #13131d;
  padding-top     : 65px;
  padding-bottom  : 56px;
  z-index         : 1;
}

.cta-one__bg-img {
  position           : absolute;
  top                : 0;
  left               : 0;
  bottom             : 0;
  right              : 0;
  background-position: center;
  background-repeat  : no-repeat;
  background-size    : cover;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.cta-one__inner {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  padding-left   : 12px;
  padding-right  : 23px;
}

.cta-one__left {
  position   : relative;
  display    : flex;
  align-items: center;
  z-index    : 1;
}

.cta-one__img-box {
  position               : relative;
  display                : block;
  border-top-right-radius: 94px;
}

.cta-one__img-box:before {
  position               : absolute;
  top                    : -8px;
  left                   : 8px;
  bottom                 : 8px;
  right                  : -8px;
  background-color       : var(--conalz-base);
  border-top-right-radius: 94px;
  content                : "";
  z-index                : -1;
}

.cta-one__img-box img {
  width                  : 100%;
  border-top-right-radius: 94px;
}

.cta-one__content {
  position   : relative;
  display    : block;
  margin-left: 72px;
}

.cta-one__title {
  font-size     : 32px;
  font-weight   : 600;
  color         : var(--conalz-white);
  line-height   : 46px;
  text-transform: uppercase;
}

.cta-one__text {
  font-size  : 18px;
  color      : var(--conalz-white);
  opacity    : .80;
  line-height: 34px;
  padding-top: 20px;
}

.cta-one__right {
  position: relative;
  display : block;
}

.cta-one__right::before {
  position        : absolute;
  top             : -34px;
  bottom          : -38px;
  left            : -90px;
  width           : 1px;
  background-color: #3e3e58;
  content         : "";
}

.cta-one__right-count {
  position     : relative;
  display      : block;
  margin-bottom: 31px;
}

.cta-one__right-count-box {
  position   : relative;
  display    : flex;
  align-items: center;
}

.cta-one__right-icon {
  font-size    : 38px;
  color        : var(--conalz-white);
  position     : relative;
  display      : inline-block;
  padding-right: 6px;
}

.cta-one__right-count-box h3 {
  font-size  : 36px;
  color      : var(--conalz-white);
  font-weight: 600;
  line-height: 40px !important;
  font-family: var(--conalz-font-two) !important;
}

.cta-one__right-expert-plus {
  font-size   : 24px;
  color       : var(--conalz-white);
  font-weight : 600;
  line-height : 40px;
  font-family : var(--conalz-font-two);
  position    : relative;
  display     : inline-block;
  padding-left: 8px;
  margin-top  : -3px;
}

.cta-one__right-text {
  font-size  : 20px;
  font-weight: 600;
  color      : var(--conalz-white);
  font-family: var(--conalz-font-two);
  margin-top : -5px;
}

.cta-one__right-btn {
  font-size     : 16px;
  font-weight   : 600;
  padding       : 17px 48px 16px;
  font-family   : var(--conalz-font-two);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Why-Choose-One
--------------------------------------------------------------*/

.why-choose-one {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.why-choose-one__left {
  position    : relative;
  display     : block;
  margin-left : 50px;
  margin-right: 45px;
}

.why-choose-one__img-box {
  position: relative;
  display : block;
}

.why-choose-one__img-box::before {
  position        : absolute;
  bottom          : 0;
  left            : -8px;
  height          : 579px;
  width           : 10px;
  background-color: #e8eaee;
  content         : "";
  z-index         : 1;
}

.why-choose-one__img-box::after {
  position        : absolute;
  bottom          : 0;
  left            : -8px;
  height          : 101px;
  width           : 10px;
  background-color: var(--conalz-base);
  content         : "";
  z-index         : 2;
}

.why-choose-one__img {
  position: relative;
  display : block;
}

.why-choose-one__img::before {
  position        : absolute;
  height          : 162px;
  width           : 10px;
  background-color: #e8eaee;
  right           : -3px;
  top             : 180px;
  content         : "";
  z-index         : 2;
}

.why-choose-one__img:after {
  position        : absolute;
  height          : 214px;
  width           : 10px;
  background-color: var(--conalz-base);
  right           : -3px;
  top             : 6px;
  content         : "";
  z-index         : 1;
}

.why-choose-one__img-box img {
  width                  : 100%;
  border-top-right-radius: 182px;
}

.why-choose-one__right {
  position    : relative;
  display     : block;
  margin-left : 20px;
  margin-right: 42px;
}

.why-choose-one__content {
  position      : relative;
  display       : block;
  padding-left  : 143px;
  padding-bottom: 36px;
}

.why-choose-one__icon {
  height          : 108px;
  width           : 118px;
  background-color: var(--conalz-base);
  position        : absolute;
  left            : 0;
  top             : 0;
  align-items     : center;
  justify-content : center;
  display         : flex;
}

.why-choose-one__icon span {
  position        : relative;
  display         : inline-block;
  font-size       : 84px;
  color           : var(--conalz-white);
  transition      : all 500ms linear;
  transition-delay: 0.1s;
  transform       : scale(1);
}

.why-choose-one__icon:hover span {
  transform: scale(0.9);
}

.why-choose-one__text-box {
  position: relative;
  display : block;
  top     : 11px;
}

.why-choose-one__tagline {
  font-size    : 20px;
  font-weight  : 600;
  font-family  : var(--conalz-font);
  margin-bottom: 8px;
}

.why-choose-one__title {
  color      : var(--conalz-gray);
  opacity    : .80;
  line-height: 30px;
}

.why-choose-one-text {
  font-size  : 18px;
  font-weight: 500;
  color      : var(--conalz-base);
  line-height: 32px;
}

.why-choose-one__progress {
  position     : relative;
  display      : block;
  width        : 100%;
  margin-top   : 49px;
  padding-left : 105px;
  padding-right: 35px;
}

.why-choose-one__progress-single {
  position: relative;
  display : block;
}

.why-choose-one__progress-title {
  font-size    : 20px;
  line-height  : 20px;
  margin-bottom: 19px;
  font-weight  : 600;
  font-family  : var(--conalz-font);
}

.why-choose-one__progress .bar {
  position     : relative;
  width        : 100%;
  height       : 36px;
  border-radius: 0;
  border       : 1px solid #e0e4ef;
  display      : flex;
  align-items  : center;
}

.why-choose-one__progress .bar-inner {
  position          : relative;
  display           : block;
  width             : 0;
  height            : 6px;
  top               : 0px;
  left              : 9px;
  background        : var(--conalz-black);
  -webkit-transition: all 1500ms ease;
  -ms-transition    : all 1500ms ease;
  -o-transition     : all 1500ms ease;
  -moz-transition   : all 1500ms ease;
  transition        : all 1500ms ease;
}

.why-choose-one__progress .count-text {
  position                  : absolute;
  width                     : 84px;
  height                    : 78px;
  background-color          : var(--conalz-base);
  color                     : var(--conalz-white);
  font-weight               : 500;
  font-family               : var(--conalz-font);
  font-size                 : 21px;
  display                   : flex;
  justify-content           : center;
  align-items               : center;
  border-top-left-radius    : 7px;
  border-bottom-left-radius : 7px;
  border-bottom-right-radius: 7px;
  -webkit-transition        : all 500ms ease;
  -ms-transition            : all 500ms ease;
  -o-transition             : all 500ms ease;
  -moz-transition           : all 500ms ease;
  transition                : all 500ms ease;
  top                       : -52px;
  left                      : -115px;
}

.why-choose-one__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.why-choose-one__progress .bar.marb-0 {
  margin-bottom: 0;
}

.why-choose-one__contact {
  position  : relative;
  display   : block;
  margin-top: 60px;
}

.why-choose-one__contact li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.why-choose-one__contact .icon {
  position          : relative;
  height            : 83px;
  width             : 83px;
  background-color  : #f3f4f6;
  align-items       : center;
  justify-content   : center;
  display           : flex;
  font-size         : 41px;
  color             : var(--conalz-black);
  border            : 1px solid #e9eef7;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.why-choose-one__contact li:hover .icon {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
  border          : 1px solid var(--conalz-base);
}

.why-choose-one__contact .content {
  position      : relative;
  display       : block;
  padding-top   : 23px;
  padding-bottom: 23px;
  padding-left  : 25px;
  padding-right : 30px;
  border        : 1px solid #e9eef7;
  top           : -6px;
  border-left   : 0;
}

.why-choose-one__contact .content h4 {
  font-size  : 20px;
  font-weight: 500;
  font-family: var(--conalz-font);
}

.why-choose-one__contact .content a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.why-choose-one__contact li:hover .content a {
  color: var(--conalz-base);
}

/*--------------------------------------------------------------
# Project-One
--------------------------------------------------------------*/
.project-one {
  position        : relative;
  display         : block;
  padding         : 120px 0 150px;
  background-color: #fbfafb;
  z-index         : 1;
}

.project-one-bg {
  position           : absolute;
  top                : 0;
  bottom             : 0;
  left               : 0;
  right              : 0;
  background-repeat  : no-repeat;
  background-size    : cover;
  background-position: center;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.project-one__top {
  position     : relative;
  display      : block;
  margin-bottom: 67px;
}

.project-one__left {
  position: relative;
  display : block;
}

.project-one__left .section-title__title span:before {
  border: none;
}

.project-one__left .section-title {
  margin-bottom: 0;
}

.project-one__bottom {
  position: relative;
  display : block;
}

.project-one__carousel {
  position: relative;
  display : block;
}

.project-one__single {
  position     : relative;
  display      : block;
  margin-bottom: 40px;
}

.project-one__img {
  position: relative;
  display : block;
  overflow: hidden;
}

.project-one__img:before {
  position                  : absolute;
  top                       : 0;
  bottom                    : 0;
  left                      : 0;
  right                     : 0;
  content                   : "";
  background-color          : rgba(var(--conalz-black-rgb), .30);
  -webkit-transform         : perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform             : perspective(400px) rotateX(90deg) scaleY(0.5);
  transform                 : perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin  : center;
  -ms-transform-origin      : center;
  transform-origin          : center;
  transition-delay          : .1s;
  transition-timing-function: ease-in-out;
  transition-duration       : .5s;
  transition-property       : all;
  z-index                   : 1;
}

.project-one__single:hover .project-one__img:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform    : perspective(400px) rotateX(0deg) scaleY(1.0);
  transform        : perspective(400px) rotateX(0deg) scaleY(1.0);
}

.project-one__img img {
  width            : 100%;
  -webkit-transform: scale(1);
  transform        : scale(1);
  transition       : all 500ms ease;
}

.project-one__single:hover .project-one__img img {
  transform: scale(1.05);
}

.project-one__right {
  position    : relative;
  display     : block;
  margin-left : 56px;
  margin-right: 25px;
  margin-top  : 30px;
}

.project-one__text {
  color      : #433838;
  opacity    : .80;
  font-size  : 18px;
  line-height: 32px;
  font-family: var(--conalz-font);
}

.project-one__content {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  background-color: var(--conalz-white);
}

.project-one__content-left {
  position   : relative;
  display    : flex;
  align-items: center;
}

.project-one__content-arrow-box {
  position        : relative;
  display         : block;
  background-color: #eeeef0;
  padding-top     : 28px;
  padding-left    : 20px;
  padding-right   : 38px;
  padding-bottom  : 20px;
}

.project-one__content-arrow-box:before {
  content         : "";
  position        : absolute;
  bottom          : -10px;
  left            : 0;
  right           : 0;
  height          : 10px;
  background-color: #eeeef0;
}

.project-one__content-arrow-box-inner {
  position        : relative;
  display         : block;
  background-color: var(--conalz-white);
  padding-left    : 25px;
  padding-right   : 45px;
  padding-top     : 22.5px;
  padding-bottom  : 22.5px;
}

.project-one__content-arrow-text {
  font-size  : 15px;
  color      : #433838;
  line-height: 15px;
}

.project-one__content-arrow {
  position        : absolute;
  top             : 50%;
  right           : -17px;
  height          : 45px;
  width           : 50px;
  background-color: var(--conalz-base);
  font-size       : 15px;
  color           : var(--conalz-white);
  display         : flex;
  align-items     : center;
  justify-content : center;
  transform       : translateY(-50%);
  transition      : all 500ms ease;
}

.project-one__content-arrow:hover {
  background-color: var(--conalz-black);
  color           : var(--conalz-white);
}

.project-one__content-title-box {
  position   : relative;
  margin-left: 25px;
}

.project-one__content-title-sub-title {
  font-size  : 15px;
  color      : var(--conalz-base);
  line-height: 24px;
}

.project-one__content-title {
  font-size     : 22px;
  text-transform: uppercase;
  font-weight   : 700;
  line-height   : 32px;
}

.project-one__content-title a {
  color     : var(--conalz-black);
  transition: all 500ms ease;
}

.project-one__content-title a:hover {
  color: var(--conalz-base);
}

.project-one__content-right {
  position     : relative;
  display      : block;
  padding-right: 2px;
}

.project-one__content-icon-box {
  position: relative;
  display : block;
}

.project-one__content-icon-box li+li {
  margin-top: 2px;
}

.project-one__content-icon {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : center;
  height          : 53px;
  width           : 65px;
  background-color: #eeeef0;
  font-size       : 25px;
  color           : var(--conalz-black);
  transition      : all 500ms ease;
}

.project-one__content-icon-box li:hover .project-one__content-icon {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.project-one__content-icon a {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : center;
  height          : 53px;
  width           : 65px;
  background-color: #eeeef0;
  font-size       : 25px;
  color           : var(--conalz-black);
  transition      : all 500ms ease;
}

.project-one__content-icon-box li:hover .project-one__content-icon a {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}


.project-one__carousel.owl-carousel .owl-dots {
  position       : absolute;
  bottom         : -33px;
  left           : 0px;
  right          : 0;
  text-align     : center;
  margin         : 0 !important;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot {
  position        : relative;
  display         : inline-block;
  width           : 17px;
  height          : 6px;
  background-color: #dfdbdb;
  border-radius   : 5px;
  margin          : 0px 5px;
  padding         : 0px;
  transition      : all 100ms linear;
  transition-delay: 0.1s;
}


.project-one__carousel.owl-carousel .owl-dot.active {
  height          : 10px;
  background-color: var(--conalz-base);
}

.project-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}


/*--------------------------------------------------------------
# Testimonials-One
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.testimonials-one .section-title__title span:before {
  border: none;
}

.testimonials-one .section-title {
  margin-bottom: 65px;
}

.testimonials-one__bottom {
  position: relative;
  display : block;
}

.testimonials-one__single {
  position        : relative;
  display         : block;
  background-color: #f9f9fa;
  padding-top     : 49px;
  padding-left    : 43px;
  padding-right   : 42px;
  padding-bottom  : 35px;
}

.testimonials-one__top {
  position: relative;
  display : block;
}

.testimonials-one__tagline {
  font-size     : 28px;
  font-weight   : 600;
  color         : var(--conalz-black);
  line-height   : 40px;
  padding-bottom: 11px;
}

.testimonials-one__icon {
  position   : relative;
  display    : flex;
  align-items: center;
}

.testimonials-one__icon i {
  font-size: 21px;
  color    : #ed8a19;
}

.testimonials-one__icon i+i {
  margin-left: 5px;
}

.testimonials-one__text {
  font-size     : 22px;
  font-family   : var(--conalz-font);
  color         : var(--conalz-black);
  opacity       : .80;
  line-height   : 38px;
  padding-top   : 29px;
  padding-bottom: 35px;
}

.testimonials-one__client-info {
  position   : relative;
  display    : flex;
  align-items: center;
  border-top : 1px solid #e3e3e5;
  padding-top: 29px;
}

.testimonials-one__client-img {
  position: relative;
  width   : 75px;
}

.testimonials-one__client-img img {
  border-radius: 50%;
}

.testimonials-one__client-content {
  position: relative;
  display : block;
  left    : 13px;
}

.testimonials-one__client-name {
  font-size     : 20px;
  font-weight   : 700;
  text-transform: uppercase;
}

.testimonials-one__client-sub-title {
  font-size  : 15px;
  color      : var(--conalz-black);
  opacity    : .80;
  line-height: 25px;
}


/*--------------------------------------------------------------
# CTA Project
--------------------------------------------------------------*/
.cta-project {
  position        : relative;
  display         : block;
  background-color: #041534;
  padding         : 112px 0 120px;
  z-index         : 1;
}

.cta-project-bg {
  position           : absolute;
  top                : 0;
  bottom             : 0;
  left               : 0;
  right              : 0;
  background-size    : cover;
  background-position: center;
  background-repeat  : no-repeat;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.cta-project__top {
  position: relative;
  display : block;
}

.cta-project__top-left {
  position: relative;
  display : block;
}

.cta-project__tagline {
  font-size    : 20px;
  color        : var(--conalz-white);
  font-weight  : 500;
  line-height  : 32px;
  margin-bottom: 22px;
}

.cta-project__title {
  font-size     : 60px;
  color         : var(--conalz-white);
  font-weight   : 600;
  text-transform: uppercase;
  line-height   : 78px;
}

.cta-project__top-right {
  position    : relative;
  display     : block;
  margin-left : 55px;
  margin-right: 120px;
  margin-top  : 118px;
}

.cta-project__video-link {
  position: relative;
  display : inline-block;
  z-index : 3;
}

.cta-project__video-icon {
  position          : relative;
  display           : -webkit-box;
  display           : -ms-flexbox;
  display           : flex;
  -webkit-box-align : center;
  -ms-flex-align    : center;
  align-items       : center;
  -webkit-box-pack  : center;
  -ms-flex-pack     : center;
  justify-content   : center;
  width             : 95px;
  height            : 95px;
  line-height       : 90px;
  text-align        : center;
  font-size         : 20px;
  color             : var(--conalz-white);
  background-color  : var(--conalz-base);
  transition        : all 0.5s ease;
  -moz-transition   : all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition    : all 0.5s ease;
  -o-transition     : all 0.5s ease;
}

.cta-project__video-icon:hover {
  background-color: var(--conalz-white);
  color           : var(--conalz-base);
}

.cta-project__video-icon:before {
  position: absolute;
  top     : -25px;
  left    : -25px;
  right   : -25px;
  bottom  : -25px;
  content : "";
  border  : 1px solid #dbd8d8;
  z-index : 1;
}

.cta-project__video-link .ripple,
.cta-project__video-icon .ripple:before,
.cta-project__video-icon .ripple:after {
  position          : absolute;
  top               : 50%;
  left              : 50%;
  width             : 145px;
  height            : 145px;
  -webkit-transform : translate(-50%, -50%);
  transform         : translate(-50%, -50%);
  -ms-box-shadow    : 0 0 0 0 rgba(var(--conalz-white-rgb), 0.6);
  -o-box-shadow     : 0 0 0 0 rgba(var(--conalz-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--conalz-white-rgb), 0.6);
  box-shadow        : 0 0 0 0 rgba(var(--conalz-white-rgb), 0.6);
  -webkit-animation : ripple 3s infinite;
  animation         : ripple 3s infinite;
}

.cta-project__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay        : 0.9s;
  content                : "";
  position               : absolute;
}

.cta-project__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay        : 0.6s;
  content                : "";
  position               : absolute;
}

.cta-project__bottom {
  position  : relative;
  display   : block;
  margin-top: 58px;
}

.cta-project__bottom-inner {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.cta-project__bottom-left {
  position        : relative;
  display         : block;
  background-color: var(--conalz-base);
  max-width       : 585px;
  width           : 100%;
  z-index         : 1;
}

.cta-project-counter-shape {
  position           : absolute;
  top                : 7px;
  bottom             : -7px;
  left               : 7px;
  width              : 331px;
  z-index            : -1;
  background-repeat  : no-repeat;
  background-position: top center;
  background-size    : cover;
}

.cta-project-counter-bg {
  position           : absolute;
  top                : 0;
  bottom             : 0;
  left               : 0;
  right              : 0;
  background-repeat  : no-repeat;
  background-position: center;
  background-size    : cover;
  mix-blend-mode     : overlay;
  opacity            : .20;
  z-index            : -1;
}

.cta-project__counter {
  position: relative;
  display : block;
}

.cta-project__counter-list {
  position   : relative;
  display    : flex;
  align-items: center;
  flex-wrap  : wrap;
}

.cta-project__counter-list li {
  position  : relative;
  flex      : 0 0 50%;
  max-width : 50%;
  width     : 100%;
  text-align: center;
}

.cta-project__counter-single {
  position: relative;
  display : block;
  padding : 65px 0 65px;
}

.cta-project__counter-top {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.cta-project__counter-icon {
  position   : relative;
  display    : flex;
  align-items: center;
}

.cta-project__counter-icon span {
  position : relative;
  display  : inline-block;
  font-size: 45px;
  color    : var(--conalz-white);
}

.cta-project__counter-count-box {
  margin-left: 10px;
}

.cta-project__counter-count-box h3 {
  font-size  : 52px;
  color      : var(--conalz-white);
  font-weight: 700;
  font-family: var(--conalz-font) !important;
  line-height: 52px !important;
}

.cta-project__counter-plus {
  position   : relative;
  display    : inline-block;
  font-size  : 25px;
  color      : var(--conalz-white);
  font-weight: 600;
  top        : 13px;
  left       : -2px;
}

.cta-project__counter-text {
  font-size: 16px;
  color    : var(--conalz-white);
}

.cta-project__bottom-right {
  position   : relative;
  display    : flex;
  align-items: center;
  max-width  : 535px;
  width      : 100%;
}

.cta-project__bottom-text {
  font-size  : 24px;
  color      : var(--conalz-white);
  line-height: 38px;
}

.cta-project__bottom-img {
  position: relative;
  display : block;
}

.cta-project__bottom-img img {
  width: auto;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display : block;
  padding : 120px 0 90px;
  overflow: hidden;
  z-index : 1;
}

.blog-one__top {
  position: relative;
  display : block;
}

.blog-one__top .section-title__title span:before {
  border: none;
}

.blog-one__single {
  position     : relative;
  display      : block;
  margin-bottom: 30px;
}

.blog-one__img {
  position: relative;
  display : block;
  overflow: hidden;
}

.blog-one__img:before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  content         : "";
  background-color: rgba(var(--conalz-black-rgb), .30);
  transform       : scale(1, 0);
  transition      : transform 500ms ease;
  transform-origin: top center;
  z-index         : 1;
}

.blog-one__single:hover .blog-one__img:before {
  transform       : scale(1, 1);
  transform-origin: bottom center;
}

.blog-one__img img {
  width             : 100%;
  transform         : scale(1);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05);
}

.blog-one__date-and-arrow {
  position   : absolute;
  bottom     : 0;
  left       : 23px;
  display    : flex;
  align-items: center;
  z-index    : 1;
}

.blog-one__date {
  height          : 63px;
  width           : 53px;
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : center;
  text-align      : center;
  flex-direction  : column;
  background-color: #e2e2e7;
  margin-right    : 3px;
}

.blog-one__date span {
  font-size  : 26px;
  line-height: 26px;
  font-weight: 500;
}

.blog-one__date p {
  font-size  : 13px;
  color      : var(--conalz-black);
  line-height: 13px;
  margin-top : 3px;
}

.blog-one__date-and-arrow a {
  font-size         : 14px;
  background-color  : var(--conalz-base);
  height            : 63px;
  width             : 53px;
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-one__single:hover .blog-one__date-and-arrow a {
  color           : var(--conalz-black);
  background-color: #e2e2e7;
}

.blog-one__content {
  position: relative;
  display : block;
}

.blog-one__content-box {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  background-color: #faf6f6;
  padding-top     : 18px;
  padding-bottom  : 18px;
  padding-left    : 24px;
  padding-right   : 24px;
}

.blog-one__tag {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : center;
  background-color: var(--conalz-black);
  padding         : 5px 10px;
}

.blog-one__tag p {
  font-size  : 14px;
  color      : var(--conalz-white);
  line-height: 14px;
}

.blog-one__meta {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-one__meta li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-one__meta li+li {
  margin-left: 15px;
}

.blog-one__meta li a {
  position          : relative;
  font-size         : 14px;
  color             : #433838;
  opacity           : .88;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  display           : flex;
  align-items       : center;
}

.blog-one__meta li a:hover {
  color: var(--conalz-base);
}

.blog-one__meta li a i {
  font-size         : 20px;
  color             : #4c4b58;
  opacity           : 1;
  padding-right     : 6px;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-one__title-box {
  position        : relative;
  display         : block;
  background-color: rgb(255, 255, 255);
  box-shadow      : 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
  padding-top     : 20px;
  padding-bottom  : 40px;
  padding-left    : 24px;
  padding-right   : 24px;
}

.blog-one__title {
  font-size     : 24px;
  font-weight   : 700;
  line-height   : 36px;
  text-transform: uppercase;
  margin-bottom : 12px;
}

.blog-one__title a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-one__single:hover .blog-one__title a {
  color: var(--conalz-base);
}

.blog-one__text {
  color  : var(--conalz-black);
  opacity: .80;
}

/*--------------------------------------------------------------
# Newsletter One
--------------------------------------------------------------*/
.newsletter-one {
  position     : relative;
  display      : block;
  z-index      : 3;
  margin-bottom: -68px;
}

.newsletter-one__inner {
  position        : relative;
  display         : flex;
  background-color: var(--conalz-base);
  padding-top     : 36px;
  padding-bottom  : 24px;
  padding-left    : 53px;
  padding-right   : 53px;
  align-items     : center;
  justify-content : space-between;
}

.newsletter-one__left {
  position   : relative;
  display    : flex;
  align-items: center;
}

.newsletter-one__title h4 {
  font-size     : 28px;
  font-weight   : 700;
  color         : var(--conalz-white);
  text-transform: uppercase;
}

.newsletter-one__title p {
  font-size: 15px;
  color    : #fefefe;
}

.newsletter-one__email-box {
  position   : relative;
  display    : block;
  margin-left: 53px;
}

.newsletter-one__form-input-box input[type="email"] {
  width           : 100%;
  background-color: #1567f8;
  outline         : none;
  font-size       : 16px;
  color           : var(--conalz-white);
  border          : 1px solid #2d79ff;
  padding-left    : 25px;
  padding-right   : 100px;
  height          : 74px;
  opacity         : .40;
}

.newsletter-one__newsletter-btn {
  position                  : absolute;
  right                     : 8px;
  top                       : 8px;
  bottom                    : 8px;
  width                     : 54px;
  height                    : 59px;
  background-color          : var(--conalz-white);
  border                    : none;
  border-top-left-radius    : 4px;
  border-bottom-left-radius : 4px;
  border-bottom-right-radius: 4px;
  -webkit-transition        : all 500ms ease;
  transition                : all 500ms ease;
}

.newsletter-one__newsletter-btn:hover {
  background-color: var(--conalz-black);
  color           : var(--conalz-white);
}

.newsletter-one__right {
  position: relative;
  display : block;
}

.newsletter-one__button {
  background-color: #f2f2f2;
  color           : var(--conalz-base);
  padding-left    : 49px;
  padding-right   : 49px;

}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position        : relative;
  display         : block;
  background-color: #080e19;
  z-index         : 1;
  padding-top     : 173px;
}

.site-footer-bg {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  background-repeat  : no-repeat;
  background-size    : cover;
  background-position: center;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.site-footer__top {
  position      : relative;
  display       : block;
  padding-bottom: 100px;
}

.footer-widget__about {
  position  : relative;
  display   : block;
  margin-top: 5px;
}

.footer-widget__about-logo-box {
  position   : relative;
  display    : flex;
  align-items: center;
}

.footer-widget__about-logo a {
  position: relative;
  display : block;
}

.footer-widget__about-logo a img {
  width: 100%;
}

.footer-widget__about-content {
  font-size  : 16px;
  color      : var(--conalz-white);
  line-height: 31px;
  margin-top : 20px;
}

.footer-widget__latest-post {
  position    : relative;
  display     : block;
  margin-right: 44px;
  margin-left : -26px;
}

.footer-widget__tag {
  font-size     : 20px;
  font-weight   : 700;
  color         : var(--conalz-white);
  margin-bottom : 35px;
  text-transform: uppercase;
}

.footer-widget__content {
  position  : relative;
  display   : block;
  margin-top: -2px;
}

.footer-widget__content li {
  border-bottom: 1px solid #45526b;
  margin-top   : 15px;
}

.footer-widget__content li:last-child {
  border: none;
}

.footer-widget__content li span {
  font-size  : 14px;
  color      : #888888;
  font-family: var(--conalz-font);
}

.footer-widget__content li p {
  font-size    : 16px;
  font-weight  : 500;
  color        : var(--conalz-white);
  line-height  : 30px;
  margin-bottom: 23px;
  margin-top   : -4px;
}

.footer-widget__content li p a {
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.footer-widget__content li p a:hover {
  color: var(--conalz-base);
}

.footer-widget__services {
  position    : relative;
  display     : block;
  margin-right: 23px;
}

.footer-widget__services-list {
  position: relative;
  display : block;
}

.footer-widget__services-list li+li {
  margin-top: 7px;
}

.footer-widget__services-list li a {
  font-size         : 16px;
  color             : #959595;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.footer-widget__services-list li a:hover {
  color: var(--conalz-white);
}

.footer-widget__contact {
  position   : relative;
  display    : block;
  margin-left: 14px;
}

.footer-widget__contact-box {
  position   : relative;
  display    : block;
  padding-top: 5px;
}

.footer-widget__contact-box li {
  position: relative;
  display : flex;
}

.footer-widget__contact-box li+li {
  margin-top: 19px;
}

.footer-widget__contact-box li .icon {
  font-size         : 20px;
  margin-right      : 15px;
  color             : #f6f6f7;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.footer-widget__contact-box li:hover .icon {
  color: var(--conalz-white);
}

.footer-widget__contact-box li .text p {
  font-size: 16px;
  color    : #959595;
}

.footer-widget__contact-box li .text p a {
  color             : #959595;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.footer-widget__contact-box li:hover .text p a {
  color: var(--conalz-white);
}

.footer-widget__social-box {
  position  : relative;
  display   : flex;
  margin-top: 30px;
}

.footer-widget__social-box li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.footer-widget__social-box li+li {
  margin-left: 10px;
}

.footer-widget__social-box li a {
  width             : 50px;
  height            : 50px;
  background-color  : #2d3951;
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  font-size         : 16px;
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.footer-widget__social-box li:hover a {
  background-color: var(--conalz-base);
}

.site-footer__bottom {
  position        : relative;
  display         : block;
  background-color: #0d1729;
  padding-top     : 36px;
  padding-bottom  : 32px;
}

.site-footer__bottom-inner {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
}

.site-footer__bottom-text {
  font-size: 15px;
}

.site-footer__bottom-text p {
  color  : var(--conalz-white);
  opacity: .80;
}

.site-footer__bottom-text-two {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.site-footer__bottom-text-two li {
  font-size: 15px;
  position : relative;
}

.site-footer__bottom-text-two li+li {
  margin-left: 30px;
}

.site-footer__bottom-text-two a {
  color             : var(--conalz-white);
  opacity           : .80;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.site-footer__bottom-text-two a:hover {
  color: var(--conalz-base);
}

.site-footer__bottom-text-two:before {
  position        : absolute;
  width           : 6px;
  height          : 2px;
  background-color: var(--conalz-white);
  opacity         : .80;
  top             : 16px;
  left            : 105px;
  content         : "";
}

.site-footer-two {
  padding-top: 115px;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display : block;
  padding : 120px 0 225px;
  overflow: hidden;
}

.services-two .container {
  max-width: 1600px;
}

.services-two .section-title {
  margin-bottom: 35px;
}

.services-two .section-title__title span:before {
  border: none;
}

.services-two__text-1 {
  color         : var(--conalz-black);
  opacity       : .80;
  text-align    : center;
  font-size     : 18px;
  padding-bottom: 50px;
}

.services-two__carousel {
  position: relative;
  display : block;
}

.services-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;

}

.services-two__carousel.owl-carousel .owl-item {
  opacity   : 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.services-two__carousel.owl-carousel .owl-item.active {
  opacity   : 1;
  visibility: visible;
}

.services-two__single {
  position        : relative;
  display         : block;
  background-color: rgb(255, 255, 255);
  box-shadow      : 0px 0px 35px 0px rgba(201, 199, 205, 0.35);
  padding         : 20px 20px 0;
}

.services-two__img {
  position: relative;
  display : block;
  overflow: hidden;
}

.services-two__img:before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  content         : "";
  background-color: rgba(var(--conalz-black-rgb), .30);
  transform       : scaleY(0);
  transform-origin: center;
  transform-style : preserve-3d;
  transition      : all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index         : 1;
}

.services-two__single:hover .services-two__img:before {
  transform: scaleY(1);
}

.services-two__img img {
  width             : 100%;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.services-two__single:hover .services-two__img img {
  transform: scale(1.05);
}

.services-two__content {
  position  : relative;
  display   : block;
  text-align: center;
  padding   : 38px 0 135px;
  z-index   : 1;
}

.services-two__shape-1 {
  position             : absolute;
  bottom               : 0;
  left                 : -20px;
  width                : 225px;
  height               : 95px;
  background-repeat    : no-repeat;
  background-position  : bottom center;
  background-size      : cover;
  background-color     : #d0d0d0;
  background-blend-mode: overlay;
  z-index              : -1;
}

.services-two__title {
  font-size     : 24px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 30px;
  margin-bottom : 20px;
}

.services-two__title a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.services-two__title a:hover {
  color: var(--conalz-base);
}

.services-two__text-2 {
  color  : var(--conalz-black);
  opacity: .80;
}

.services-two__bottom {
  position: absolute;
  bottom  : 0;
  left    : 65px;
}

.services-two__icon-btn-box {
  position   : relative;
  display    : flex;
  align-items: center;
}

.services-two__icon {
  position              : relative;
  display               : flex;
  align-items           : center;
  justify-content       : center;
  height                : 95px;
  width                 : 80px;
  background-color      : var(--conalz-black);
  font-size             : 40px;
  color                 : var(--conalz-white);
  border-top-left-radius: 20px;
}

.services-two__btn-box {
  position   : relative;
  display    : block;
  margin-left: 20px;
}

.services-two__btn-box a {
  position               : relative;
  display                : flex;
  align-items            : center;
  background-color       : var(--conalz-white);
  box-shadow             : 0px 0px 29px 0px rgba(195, 193, 193, 0.4);
  font-size              : 16px;
  color                  : var(--conalz-black);
  padding                : 14px 25px;
  border-top-right-radius: 20px;
  transition             : all 500ms ease;
}

.services-two__btn-box a i {
  font-size   : 15px;
  padding-left: 13px;
  position    : relative;
  top         : 1px;
}

.services-two__btn-box a:hover {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.services-two__carousel.owl-carousel .owl-dots {
  position       : absolute;
  bottom         : -107px;
  left           : 0px;
  right          : 0;
  text-align     : center;
  margin         : 0 !important;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.services-two__carousel.owl-carousel .owl-dots .owl-dot {
  position        : relative;
  display         : inline-block;
  width           : 17px;
  height          : 6px;
  background-color: #343246;
  border-radius   : 5px;
  margin          : 0px 5px;
  padding         : 0px;
  transition      : all 100ms linear;
  transition-delay: 0.1s;
}


.services-two__carousel.owl-carousel .owl-dot.active {
  height          : 10px;
  background-color: var(--conalz-base);
}

.services-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.services-two__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}


/*--------------------------------------------------------------
# Why-Choose__Two
--------------------------------------------------------------*/
.why-choose__two {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.why-choose__two .section-title {
  margin-bottom: 80px;
}

.why-choose__two-shape-one {
  position: absolute;
  top     : 22px;
  right   : 122px;
}

.why-choose__two-shape-one img {
  width                            : auto;
  -webkit-animation-name           : shapeMover;
  animation-name                   : shapeMover;
  -webkit-animation-duration       : 9s;
  animation-duration               : 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function        : linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count        : infinite;
}

.why-choose__two-left {
  position: relative;
  display : block;
}

.why-choose__two-img-box {
  position: relative;
  display : block;
}

.why-choose__two-img-one {
  position: absolute;
  top     : 0;
  left    : 59px;
  display : inline-block;

}

.why-choose__two-img-one:before {
  position        : absolute;
  bottom          : 30px;
  left            : -30px;
  width           : 10px;
  height          : 101px;
  background-color: var(--conalz-base);
  content         : "";
}

.why-choose__two-img-one img {
  width                 : 100%;
  border-top-left-radius: 98px;
}

.why-choose__two-img-two {
  position: absolute;
  display : inline-block;
  top     : 73px;
  left    : 278px;
  z-index : 1;
}

.why-choose__two-img-two img {
  width                  : 100%;
  border-top-right-radius: 100px;
}

.why-choose__two-img-three {
  position   : relative;
  display    : inline-block;
  margin-left: 8px;
  z-index    : -1;
  margin-top : 224px;
}

.why-choose__two-img-three:before {
  position        : absolute;
  bottom          : 20px;
  left            : -8px;
  height          : 445px;
  width           : 10px;
  background-color: #e8eaee;
  content         : "";
  z-index         : 1;
}

.why-choose__two-img-three:after {
  position        : absolute;
  bottom          : 0px;
  left            : -8px;
  height          : 101px;
  width           : 10px;
  background-color: var(--conalz-base);
  content         : "";
  z-index         : 2;
}

.why-choose__two-img-three img {
  width                  : 100%;
  border-top-right-radius: 190px;
}

.why-choose__two-shape {
  position: absolute;
  right   : 14px;
  bottom  : 88px;
}

.why-choose__two-shape img {
  width                            : auto;
  -webkit-animation-name           : shapeMover;
  animation-name                   : shapeMover;
  -webkit-animation-duration       : 9s;
  animation-duration               : 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function        : linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count        : infinite;
}

.why-choose__two .why-choose-one__right {
  margin-top  : 54px;
  margin-left : 42px;
  margin-right: 54px;
}

.why-choose__two .why-choose-one__content {
  padding-bottom: 54px;
}

.why-choose__two-icon {
  background-color: var(--conalz-black);
}

.why-choose__two .why-choose-one__progress {
  margin-top: 41px;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
  position        : relative;
  display         : block;
  background-color: #f9f9fa;
  padding         : 120px 0 240px;
  z-index         : 1;
}

.project-two__bg-img {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  background-size    : cover;
  background-repeat  : no-repeat;
  background-position: center;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.project-two__top {
  position: relative;
  display : block;
}

.project-two__top .section-title__title span:before {
  border: none;
}

.project-two__bottom {
  position: relative;
  display : block;
}

.project-two__bottom .container {
  max-width: 1600px;
}

.project-two__single {
  position: relative;
  display : block;
}

.project-two__img-box {
  position: relative;
  display : block;
}

.project-two__img {
  position: relative;
  display : block;
  overflow: hidden;
}

.project-two__img:before {
  position                  : absolute;
  top                       : 0;
  bottom                    : 0;
  left                      : 0;
  right                     : 0;
  content                   : "";
  background-color          : rgba(var(--conalz-black-rgb), .30);
  -webkit-transform         : perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform             : perspective(400px) rotateX(90deg) scaleY(0.5);
  transform                 : perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin  : center;
  -ms-transform-origin      : center;
  transform-origin          : center;
  transition-delay          : .1s;
  transition-timing-function: ease-in-out;
  transition-duration       : .5s;
  transition-property       : all;
  z-index                   : 1;
}

.project-two__single:hover .project-two__img:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform    : perspective(400px) rotateX(0deg) scaleY(1.0);
  transform        : perspective(400px) rotateX(0deg) scaleY(1.0);
}

.project-two__img img {
  width            : 100%;
  -webkit-transform: scale(1);
  transform        : scale(1);
  transition       : all 500ms ease;
}

.project-two__single:hover .project-two__img img {
  transform: scale(1.05);
}

.project-two__content {
  position   : absolute;
  display    : flex;
  align-items: center;
  bottom     : -50px;
  left       : 0;
  right      : 7px;
  z-index    : 2;
}

.project-two__content-left {
  position        : relative;
  max-width       : 222px;
  width           : 100%;
  top             : 7px;
  background-color: var(--conalz-white);
  padding-left    : 18px;
  padding-right   : 18px;
  padding-top     : 24px;
  padding-bottom  : 25px;
}

.project-two__title-box {
  position: relative;
  display : block;
}

.project-two__subtitle {
  font-size  : 15px;
  color      : var(--conalz-base);
  line-height: 25px;
}

.project-two__title {
  font-size     : 22px;
  font-weight   : 700;
  line-height   : 32px;
  text-transform: uppercase;
}

.project-two__title a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.project-two__title a:hover {
  color: var(--conalz-base);
}

.project-two__details {
  position               : relative;
  display                : block;
  text-align             : center;
  background-color       : rgb(249, 249, 250);
  box-shadow             : 0px 0px 35px 0px rgba(189, 188, 191, 0.43);
  padding                : 23px 16px 16px;
  border-top-right-radius: 17px;
}

.project-two__details p {
  font-size     : 15px;
  font-weight   : 500;
  color         : #433838;
  line-height   : 25px;
  padding-bottom: 7px;
}

.project-two__details-box {
  position   : relative;
  display    : flex;
  align-items: center;
}

.project-two__icon {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 50px;
  width             : 50px;
  background-color  : var(--conalz-base);
  font-size         : 15px;
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.project-two__icon:hover {
  background-color: var(--conalz-black);
  color           : var(--conalz-white);
}

.project-two__icon-2 {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 50px;
  width             : 50px;
  background-color  : #e7e7e8;
  font-size         : 25px;
  color             : var(--conalz-black);
  margin-left       : 10px;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.project-two__icon-2:hover {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.project-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;

}

.project-two__carousel.owl-carousel .owl-item {
  opacity   : 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.project-two__carousel.owl-carousel .owl-item.active {
  opacity   : 1;
  visibility: visible;
}


.project-two__carousel.owl-carousel .owl-dots {
  position       : absolute;
  bottom         : -123px;
  left           : 0px;
  right          : 0;
  text-align     : center;
  margin         : 0 !important;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot {
  position        : relative;
  display         : inline-block;
  width           : 17px;
  height          : 6px;
  background-color: #dfdbdb;
  border-radius   : 5px;
  margin          : 0px 5px;
  padding         : 0px;
  transition      : all 100ms linear;
  transition-delay: 0.1s;
}


.project-two__carousel.owl-carousel .owl-dot.active {
  height          : 10px;
  background-color: var(--conalz-base);
}

.project-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.project-two__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}


/*--------------------------------------------------------------
# About-Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.about-two .section-title {
  margin-bottom: 50px;
}

.about-two__left {
  position: relative;
  display : block;
}

.about-two__left-text {
  font-size  : 18px;
  color      : var(--conalz-base);
  font-weight: 500;
  line-height: 34px;
}

.about-two__icon-box {
  position     : relative;
  display      : block;
  margin-top   : 42px;
  margin-bottom: 61px;
  margin-left  : 15px;
}

.about-two__icon-box li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.about-two__icon-box li:last-child {
  margin-left: 45px;
}

.about-two__icon-box li+li {
  margin-top: 36px;
}

.about-two__icon-box li .icon {
  position : relative;
  display  : block;
  font-size: 73px;
}

.about-two__icon-box .small-icon {
  font-size       : 24px;
  height          : 40px;
  width           : 40px;
  background-color: var(--conalz-base);
  border-radius   : 50%;
  color           : var(--conalz-white);
  display         : flex;
  align-items     : center;
  justify-content : center;
  position        : absolute;
  bottom          : -3px;
  left            : 34px;
}

.about-two__icon-box .content {
  margin-left: 24px;
  position   : relative;
  display    : block;
  top        : 2px;
}

.about-two__icon-box h4 {
  font-size  : 20px;
  font-weight: 500;
  color      : var(--conalz-black);
  font-family: var(--conalz-font);
  line-height: 41px;
}

.about-two__icon-box p {
  font-size  : 16px;
  color      : var(--conalz-gray);
  opacity    : .80;
  line-height: 31px;
}

.about-two__icon-box .icon-two {
  bottom: 26px;
  left  : 49px;
}

.about-two__icon-box .content-two {
  margin-left: 40px;
}

.about-two__left-btn {
  font-size       : 16px;
  font-weight     : 600;
  font-family     : var(--conalz-font-two);
  text-transform  : uppercase;
  background-color: transparent;
  color           : var(--conalz-black);
  border          : 2px solid var(--conalz-black);
  padding-top     : 17px;
  padding-bottom  : 17px;
  padding-left    : 45px;
  padding-right   : 45px;
}

.about-two__right {
  position    : relative;
  display     : block;
  margin-right: 71px;
  margin-left : 95px;
}

.about-two__right-img-box {
  position: relative;
  display : block;
}

.about-two__img-one {
  position: relative;
  display : block;
  z-index : 1;
}

.about-two__img-one:before {
  position        : absolute;
  bottom          : 0;
  left            : 0px;
  width           : 10px;
  height          : 227px;
  background-color: #e8eaee;
  content         : "";
}

.about-two__img-one:after {
  position        : absolute;
  width           : 10px;
  height          : 144px;
  background-color: var(--conalz-base);
  top             : 21px;
  left            : -16px;
  content         : "";
}

.about-two__shape {
  position: absolute;
  left    : -57px;
  bottom  : -15px;
}

.about-two__shape img {
  width                            : auto;
  -webkit-animation-name           : shapeMover;
  animation-name                   : shapeMover;
  -webkit-animation-duration       : 9s;
  animation-duration               : 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function        : linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count        : infinite;
}

.about-two__img-one img {
  width                 : 100%;
  border-top-left-radius: 183px;
}

.about-two__img-two {
  position: absolute;
  left    : -81px;
  bottom  : -291px;
}

.about-two__img-two img {
  width                 : auto;
  border-top-left-radius: 100px;
}

.about-two__img-three-box {
  position: absolute;
  top     : 418px;
  right   : -30px;
}



.about-two__img-three-box:before {
  position        : absolute;
  height          : 227px;
  width           : 10px;
  background-color: #e8eaee;
  bottom          : 0;
  left            : -3px;
  content         : "";
}

.about-two__img-three-box:after {
  position        : absolute;
  height          : 101px;
  width           : 10px;
  background-color: var(--conalz-base);
  top             : -14px;
  left            : -3px;
  content         : "";
}

.about-two__img-three {
  overflow                  : hidden;
  border-bottom-right-radius: 155px;
}

.about-two__img-three img {
  width                     : auto;
  border-bottom-right-radius: 155px;
}

.about-two__shape-two {
  position        : absolute;
  bottom          : -105px;
  left            : 89px;
  height          : 247px;
  width           : 247px;
  background-color: #6f5eef;
  border-radius   : 50%;
  z-index         : 1;
  mix-blend-mode  : overlay;
}

.about-two__shape-three {
  position: absolute;
  bottom  : 0px;
  right   : 0;
  z-index : -1;
}

/*--------------------------------------------------------------
# Testimonials Two
--------------------------------------------------------------*/
.testimonials-two {
  position: relative;
  display : block;
}

.testimonials-two .section-title span:before {
  border: none;
}

.testimonials-two .section-title {
  margin-bottom: 65px;
}

.testimonials-two__top {
  position: relative;
  display : block;
}

.testimonials-two__bottom .container {
  max-width: 1800px;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display : block;
  padding : 120px 0 0;
}

.team-one__top {
  position: relative;
  display : block;
}

.team-one__bottom {
  position: relative;
  display : block;
}

.team-one__bottom .container {
  max-width: 1600px;
}

.team-one__carousel {
  position: relative;
  display : block;
}

.team-one__single {
  position: relative;
  display : block;
}

.team-one__img {
  position: relative;
  display : block;
  overflow: hidden;
}

.team-one__img:before {
  position               : absolute;
  top                    : 0;
  left                   : 0;
  right                  : 0;
  bottom                 : 0;
  content                : "";
  background-color       : rgba(var(--conalz-black-rgb), .30);
  width                  : 0%;
  transform              : translateY(100%);
  border-top-left-radius : var(--conalz-bdr-radius);
  border-top-right-radius: var(--conalz-bdr-radius);
  transition             : all 500ms ease;
  z-index                : 1;
}

.team-one__single:hover .team-one__img:before {
  transform: translateY(0);
  width    : 100%;
}

.team-one__img img {
  width             : 100%;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.05);
}

.team-one__content {
  position               : absolute;
  left                   : 0;
  bottom                 : 0;
  right                  : 85px;
  background-color       : var(--conalz-base);
  border-top-right-radius: 36px;
  padding-left           : 25px;
  padding-top            : 41px;
  padding-bottom         : 16px;
  padding-right          : 25px;
  transform              : scaleY(0.0);
  transform-origin       : center;
  transform-style        : preserve-3d;
  -webkit-transition     : all 0.4s linear;
  -o-transition          : all 0.4s linear;
  transition             : all 0.4s linear;
  transform-origin       : bottom center;
  z-index                : 1;
}

.team-one__single:hover .team-one__content {
  transform               : scaleY(1.0);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay   : 500ms;
  -ms-transition-delay    : 500ms;
  -o-transition-delay     : 500ms;
  transition-delay        : 500ms;
}

.team-one__content::before {
  position               : absolute;
  top                    : 10px;
  bottom                 : 0;
  left                   : 0;
  right                  : 3px;
  background-color       : #f5f6f7;
  border-top-right-radius: 36px;
  content                : "";
  z-index                : -1;
}

.team-one__title {
  font-size     : 20px;
  font-weight   : 700;
  color         : var(--conalz-black);
  text-transform: uppercase;
}

.team-one__title a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.team-one__title a:hover {
  color: var(--conalz-base);
}

.team-one__tagline {
  font-size  : 15px;
  color      : var(--conalz-black);
  opacity    : .80;
  line-height: 26px;
}

.team-one__social {
  position   : absolute;
  display    : flex;
  align-items: center;
  top        : -30px;
  left       : 25px;
}

.team-one__social li+li {
  margin-left: 5px;
}

.team-one__social a {
  width                     : 49px;
  height                    : 53px;
  color                     : var(--conalz-white);
  display                   : flex;
  align-items               : center;
  justify-content           : center;
  background-color          : var(--conalz-black);
  border                    : 2px solid var(--conalz-white);
  border-top-left-radius    : 9px;
  border-bottom-left-radius : 9px;
  border-bottom-right-radius: 9px;
  font-size                 : 15px;
  -webkit-transition        : all 500ms ease;
  transition                : all 500ms ease;
}

.team-one__social a:hover {
  background-color: var(--conalz-base);
}

.team-one__carousel.owl-theme .owl-nav {
  position: absolute;
  top     : -125px;
  right   : 200px;
  margin  : 0;
}

.team-one__carousel.owl-theme .owl-nav:before {
  position      : absolute;
  top           : -37px;
  left          : 0;
  right         : 0;
  content       : "Slide team";
  font-size     : 16px;
  font-weight   : 600;
  text-transform: uppercase;
  font-family   : var(--conalz-font-two);
}

.team-one__carousel.owl-theme .owl-nav .owl-next {
  height                : 55px;
  width                 : 70px;
  line-height           : 55px;
  color                 : var(--conalz-black);
  background-color      : #efefef;
  border-radius         : 7px;
  border-top-left-radius: 0;
  font-size             : 15px;
  margin                : 0;
  text-align            : center;
  -webkit-transition    : all 500ms ease;
  transition            : all 500ms ease;
}

.team-one__carousel.owl-theme .owl-nav .owl-prev {
  height                : 55px;
  width                 : 70px;
  line-height           : 55px;
  color                 : var(--conalz-black);
  background-color      : #efefef;
  border-radius         : 7px;
  border-top-left-radius: 0;
  font-size             : 15px;
  margin                : 0;
  text-align            : center;
  -webkit-transition    : all 500ms ease;
  transition            : all 500ms ease;
}

.team-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.team-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.team-one__carousel.owl-theme .owl-nav .owl-next:hover,
.team-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}




/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display : block;
  padding : 120px 0 82px;
  overflow: hidden;
  z-index : 1;
}

.blog-two__top {
  position: relative;
  display : block;
}

.blog-two__top .section-title__title span:before {
  border: none;
}

.blog-two__single {
  position     : relative;
  display      : block;
  margin-bottom: 30px;
}

.blog-two__img {
  position: relative;
  display : block;
  overflow: hidden;
}

.blog-two__img:before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  content         : "";
  background-color: rgba(var(--conalz-black-rgb), .30);
  transform       : scale(1, 0);
  transition      : transform 500ms ease;
  transform-origin: top center;
  z-index         : 1;
}

.blog-two__single:hover .blog-two__img:before {
  transform       : scale(1, 1);
  transform-origin: bottom center;
}

.blog-two__img img {
  width             : 100%;
  transform         : scale(1);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-two__single:hover .blog-two__img img {
  transform: scale(1.05);
}

.blog-two__date-and-arrow {
  position   : absolute;
  top        : -33px;
  left       : 23px;
  display    : flex;
  align-items: center;
  z-index    : 1;
}

.blog-two__date {
  height          : 63px;
  width           : 53px;
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : center;
  text-align      : center;
  flex-direction  : column;
  background-color: #e2e2e7;
  margin-right    : 3px;
}

.blog-two__date span {
  font-size  : 26px;
  line-height: 26px;
  font-weight: 500;
}

.blog-two__date p {
  font-size  : 13px;
  color      : var(--conalz-black);
  line-height: 13px;
  margin-top : 3px;
}

.blog-two__date-and-arrow a {
  font-size         : 14px;
  background-color  : var(--conalz-base);
  height            : 63px;
  width             : 53px;
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-two__single:hover .blog-two__date-and-arrow a {
  color           : var(--conalz-black);
  background-color: #e2e2e7;
}

.blog-two__content {
  position: relative;
  display : block;
}

.blog-two__content-box {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  background-color: #faf6f6;
  padding-top     : 18px;
  padding-bottom  : 18px;
  padding-left    : 24px;
  padding-right   : 24px;
}

.blog-two__tag {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : center;
  background-color: var(--conalz-black);
  padding         : 5px 10px;
}

.blog-two__tag p {
  font-size  : 14px;
  color      : var(--conalz-white);
  line-height: 14px;
}

.blog-two__meta {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-two__meta li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-two__meta li+li {
  margin-left: 15px;
}

.blog-two__meta li a {
  position          : relative;
  font-size         : 14px;
  color             : #433838;
  opacity           : .88;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  display           : flex;
  align-items       : center;
}

.blog-two__meta li a:hover {
  color: var(--conalz-base);
}

.blog-two__meta li a i {
  font-size         : 20px;
  color             : #4c4b58;
  opacity           : 1;
  padding-right     : 6px;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-two__title-box {
  position        : relative;
  display         : block;
  background-color: rgb(255, 255, 255);
  box-shadow      : 0px 0px 40px 0px rgba(233, 226, 226, 0.35);
  padding-top     : 50px;
  padding-bottom  : 11px;
  padding-left    : 24px;
  padding-right   : 24px;
}

.blog-two__title {
  font-size     : 24px;
  font-weight   : 700;
  line-height   : 36px;
  text-transform: uppercase;
  margin-bottom : 12px;
}

.blog-two__title a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-two__single:hover .blog-two__title a {
  color: var(--conalz-base);
}

.blog-two__text {
  color  : var(--conalz-black);
  opacity: .80;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.about-three .section-title {
  margin-bottom: 50px;
}

.about-three__left {
  position    : relative;
  display     : block;
  margin-right: -7px;
}

.about-three__left-text-one {
  font-size  : 18px;
  color      : var(--conalz-base);
  font-weight: 500;
  line-height: 34px;
}

.about-three__left-text-two {
  color         : var(--conalz-black);
  opacity       : .80;
  padding-top   : 30px;
  line-height   : 30px;
  padding-bottom: 50px;
}

.about-three__left-btn {
  font-size       : 16px;
  font-weight     : 600;
  font-family     : var(--conalz-font-two);
  text-transform  : uppercase;
  background-color: transparent;
  color           : var(--conalz-black);
  border          : 2px solid var(--conalz-black);
  padding-top     : 17px;
  padding-bottom  : 17px;
  padding-left    : 45px;
  padding-right   : 45px;
}

.about-three__right {
  position   : relative;
  display    : block;
  margin-left: 57px;
  margin-top : 43px;
}

.about-three__right-content-box {
  position: relative;
  display : flex;
}

.about-three__img-box {
  position: relative;
  display : block;
}

.about-three__img {
  position: relative;
  display : block;
}

.about-three__img img {
  width                     : auto;
  border-bottom-left-radius : 15px;
  border-bottom-right-radius: 15px;
  border-top-right-radius   : 15px;
}

.about-three__experience {
  border-bottom-left-radius : 24px;
  position                  : absolute;
  left                      : -28px;
  bottom                    : -41px;
  background-color          : var(--conalz-base);
  padding-left              : 29px;
  padding-right             : 20px;
  padding-top               : 31px;
  padding-bottom            : 34px;
  border-top-right-radius   : 24px;
  border-bottom-right-radius: 24px;
}

.about-three__experience-title {
  font-size    : 30px;
  font-weight  : 600;
  color        : var(--conalz-white);
  line-height  : 38px;
  margin-bottom: 15px;
}

.about-three__experience-text {
  color      : var(--conalz-white);
  opacity    : .80;
  line-height: 32px;
}

.about-three__experience-count {
  font-family: var(--conalz-font) !important;
  line-height: 32px !important;
}

.about-three__points {
  margin-left: 59px;
  position   : relative;
  display    : block;
  margin-top : 18px;
}

.about-three__points li+li {
  margin-top: 53px;
}

.about-three__points li .icon {
  font-size: 70px;
  color    : var(--conalz-black);
  position : relative;
}

.about-three__points .small-icon {
  position        : absolute;
  font-size       : 24px;
  height          : 40px;
  width           : 40px;
  color           : var(--conalz-white);
  background-color: var(--conalz-base);
  top             : 21px;
  left            : 49px;
  border-radius   : 50%;
  display         : flex;
  align-items     : center;
  justify-content : center;
}

.about-three__points .content {
  position  : relative;
  display   : block;
  margin-top: 20px;
}

.about-three__points .content h4 {
  font-size  : 20px;
  font-weight: 600;
  font-family: var(--conalz-font);
  line-height: 38px;
}

.about-three__points .content p {
  color      : var(--conalz-gray);
  opacity    : .80;
  line-height: 31px;
}

.about-three__points .icon-two {
  top : 50px;
  left: 32px;
}

.about-three__points .content-two {
  margin-top: 38px;
}



/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
  position        : relative;
  display         : block;
  background-color: #f5f5f5;
  z-index         : 1;
}

.services-three__bg-img {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  background-size    : cover;
  background-position: center;
  background-repeat  : no-repeat;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-two {
  padding-bottom: 120px;
}

/*--------------------------------------------------------------
# Project Three
--------------------------------------------------------------*/
.project-three {
  position        : relative;
  display         : block;
  background-color: #d0d0d0;
}

.project-three__bg-img {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  background-size    : cover;
  background-position: center;
  background-repeat  : no-repeat;
  mix-blend-mode     : overlay;
}

.project-three .section-title__title span:before {
  display: none;
}

/*--------------------------------------------------------------
# Join Us
--------------------------------------------------------------*/
.join-us {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.join-us .section-title {
  margin-bottom: 36px;
}

.join-us__left {
  position    : relative;
  display     : block;
  margin-left : 18px;
  margin-right: 78px;
}

.join-us__img-box {
  position: relative;
  display : block;
}

.join-us__img-box:before {
  position        : absolute;
  height          : 373PX;
  width           : 17PX;
  bottom          : 0;
  left            : 0;
  background-color: var(--conalz-base);
  content         : "";
  z-index         : 1;
}

.join-us__img {
  position: relative;
  display : block;
}

.join-us__img img {
  width: 100%;
}

.join-us__img:before {
  position        : absolute;
  top             : -10px;
  right           : -5px;
  width           : 34px;
  height          : 32px;
  background-color: var(--conalz-base);
  content         : "";
}

.join-us__img:after {
  position        : absolute;
  top             : 22px;
  right           : -25px;
  width           : 21px;
  height          : 26px;
  background-color: var(--conalz-black);
  content         : "";
}

.join-us__right {
  position   : relative;
  display    : block;
  margin-left: 40px;
  margin-top : -26px;
}

.join-us__right .section-title__title span:before {
  border: none;
}

.join-us__text-one {
  opacity     : .80;
  margin-right: 100px;
}

.join-us__text-two {
  opacity      : .80;
  margin-top   : 25px;
  margin-bottom: 40px;
  margin-right : 100px;
}

.join-us__right-btn {
  font-size       : 16px;
  font-weight     : 600;
  font-family     : var(--conalz-font-two);
  text-transform  : uppercase;
  background-color: transparent;
  color           : var(--conalz-black);
  border          : 2px solid var(--conalz-black);
  padding-top     : 16px;
  padding-bottom  : 16px;
  padding-left    : 49px;
  padding-right   : 49px;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display : block;
  padding : 0 0 120px;
}

.blog-three .section-title__title span:before {
  border: none;
}

.blog-three__single {
  position     : relative;
  display      : block;
  margin-bottom: 30px;
}

.blog-three__img {
  position: relative;
  display : block;
  overflow: hidden;
}

.blog-three__img img {
  width             : 100%;
  transform         : scale(1);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-three__single:hover .blog-three__img img {
  transform: scale(1.05);
}

.blog-three__img:before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  content         : "";
  background-color: rgba(var(--conalz-black-rgb), .30);
  transform       : scale(1, 0);
  transition      : transform 500ms ease;
  transform-origin: top center;
  z-index         : 1;
}

.blog-three__single:hover .blog-three__img:before {
  transform       : scale(1, 1);
  transform-origin: bottom center;
}

.blog-three__content {
  position        : relative;
  display         : block;
  background-color: rgb(255, 255, 255);
  box-shadow      : 0px 0px 40px 0px rgba(173, 173, 173, 0.35);
  padding-top     : 25px;
}

.blog-three__date {
  position        : absolute;
  left            : 24px;
  top             : -53px;
  height          : 63px;
  width           : 53px;
  display         : flex;
  align-items     : center;
  justify-content : center;
  text-align      : center;
  flex-direction  : column;
  background-color: var(--conalz-base);
  z-index         : 2;
}

.blog-three__date span {
  font-size  : 26px;
  line-height: 26px;
  font-weight: 500;
  color      : var(--conalz-white);
}

.blog-three__date p {
  font-size  : 13px;
  color      : var(--conalz-white);
  line-height: 13px;
  margin-top : 3px;
}

.blog-three__title-box {
  position      : relative;
  display       : block;
  padding-bottom: 11px;
  padding-left  : 24px;
  padding-right : 24px;
}

.blog-three__tag {
  position        : relative;
  display         : inline-block;
  background-color: var(--conalz-black);
  padding         : 5px 15px;
  margin-bottom   : 22px;
}

.blog-three__tag p {
  font-size  : 14px;
  color      : var(--conalz-white);
  line-height: 14px;
}

.blog-three__title {
  font-size     : 24px;
  font-weight   : 700;
  line-height   : 36px;
  text-transform: uppercase;
  margin-bottom : 14px;
}

.blog-three__title a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-three__content-box {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  background-color: #faf6f6;
  padding-top     : 7px;
  padding-bottom  : 7px;
  padding-right   : 7px;
  padding-left    : 24px;
}

.blog-three__meta {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-three__meta li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-three__meta li+li {
  margin-left: 15px;
}

.blog-three__meta li a {
  position          : relative;
  font-size         : 14px;
  color             : #433838;
  opacity           : .88;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  display           : flex;
  align-items       : center;
}

.blog-three__meta li a:hover {
  color: var(--conalz-base);
}

.blog-three__meta li a i {
  font-size         : 20px;
  color             : #4c4b58;
  opacity           : 1;
  padding-right     : 6px;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-three__btn-box {
  position: relative;
  display : block;
}

.blog-three__btn-box a {
  position               : relative;
  display                : flex;
  align-items            : center;
  background-color       : var(--conalz-black);
  font-size              : 16px;
  font-weight            : 500;
  color                  : #dededf;
  padding                : 12px 20px;
  border-top-right-radius: 16px;
  transition             : all 500ms ease;
}

.blog-three__btn-box a:hover {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.blog-three__btn-box a i {
  font-size   : 14px;
  padding-left: 10px;
  position    : relative;
  top         : 1px;
  transition  : all 500ms ease;
}

.blog-three__btn-box a:hover .blog-three__btn-box a i {
  color: var(--conalz-white);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position        : relative;
  display         : block;
  padding         : 20px 0;
  background-color: #212235;
  overflow        : hidden;
  z-index         : 1;
}

.page-header__bg {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 0;
  background-size    : cover;
  background-position: center;
  background-repeat  : no-repeat;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.page-header__bg {
  background-image: url(./assets/images/page_title.png)!important;
}

.page-header__shape-one {
  position        : absolute;
  top             : 50%;
  right           : -505px;
  width           : 790px;
  height          : 790px;
  background-color: var(--conalz-base);
  mix-blend-mode  : overlay;
  border-radius   : 50%;
  transform       : translateY(-50%);
}

.page-header__shape-2 {
  position: absolute;
  top     : 0;
  right   : 0;
  z-index : -1;
}

.page-header__shape-2 img {
  width: auto;
}

.page-header__shape-3 {
  position: absolute;
  bottom  : 0;
  left    : 0;
  z-index : -1;
}

.page-header__shape-3 img {
  width: auto;
}

.page-header__shape-4 {
  position: absolute;
  bottom  : -20px;
  left    : 415px;
  z-index : -1;
}

.page-header__shape-4 img {
  width: auto;
}

.page-header__inner {
  position: relative;
  display : block;
}

.page-header__inner h2 {
  font-size     : 75px;
  font-weight   : 700;
  color         : var(--conalz-white);
  line-height   : 80px;
  text-transform: uppercase;
}

.thm-breadcrumb {
  position: relative;
  display : block;
}

.thm-breadcrumb li {
  position          : relative;
  display           : inline-block;
  color             : var(--conalz-white);
  font-size         : 16px;
  font-weight       : 400;
  text-transform    : uppercase;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 26px;
}

.thm-breadcrumb li:before {
  position        : absolute;
  top             : 13px;
  right           : -18px;
  width           : 7px;
  height          : 7px;
  background-color: var(--conalz-white);
  content         : "";
  transform       : rotate(45deg);
}

.thm-breadcrumb li:last-child:before {
  display: none;
}

.thm-breadcrumb li a {
  position          : relative;
  display           : inline-block;
  color             : var(--conalz-white);
  font-size         : 16px;
  font-weight       : 400;
  text-transform    : uppercase;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.blog-page {
  position: relative;
  display : block;
  padding : 120px 0 90px;
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.blog-list__left {
  position: relative;
  display : block;
}

.blog-list__single {
  position     : relative;
  display      : block;
  margin-bottom: 50px;
}

.blog-list__img-box {
  position: relative;
  display : block;
}

.blog-list__img {
  position: relative;
  display : block;
  overflow: hidden;
}

.blog-list__img:before {
  position        : absolute;
  top             : 0;
  left            : 0;
  right           : 0;
  bottom          : 0;
  content         : "";
  background-color: rgba(var(--conalz-black-rgb), .30);
  transform       : scale(1, 0);
  transition      : transform 500ms ease;
  transform-origin: top center;
  z-index         : 1;
}

.blog-list__single:hover .blog-list__img:before {
  transform       : scale(1, 1);
  transform-origin: bottom center;
}

.blog-list__img img {
  width             : 100%;
  transform         : scale(1);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-list__single:hover .blog-list__img img {
  transform: scale(1.05);
}

.blog-list__date {
  position        : absolute;
  left            : 24px;
  bottom          : 16px;
  height          : 63px;
  width           : 53px;
  display         : flex;
  align-items     : center;
  justify-content : center;
  text-align      : center;
  flex-direction  : column;
  background-color: var(--conalz-base);
  z-index         : 2;
}

.blog-list__date span {
  font-size  : 26px;
  line-height: 26px;
  font-weight: 500;
  color      : var(--conalz-white);
}

.blog-list__date p {
  font-size  : 13px;
  color      : var(--conalz-white);
  line-height: 13px;
  margin-top : 3px;
}

.blog-list__tag {
  position        : absolute;
  display         : inline-block;
  background-color: var(--conalz-black);
  padding         : 5px 15px;
  left            : 24px;
  bottom          : -10px;
  z-index         : 2;
}

.blog-list__tag p {
  font-size  : 14px;
  color      : var(--conalz-white);
  line-height: 14px;
}

.blog-list__content {
  position     : relative;
  display      : block;
  margin-top   : 38px;
  border-bottom: 1px solid #e5e5e5;
}

.blog-list__title {
  font-size     : 36px;
  font-weight   : 600;
  line-height   : 48px;
  text-transform: uppercase;
  margin-bottom : 21px;
}

.blog-list__title a {
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-list__title a:hover {
  color: var(--conalz-base);
}

.blog-list__text {
  color      : var(--conalz-black);
  opacity    : .80;
  line-height: 32px;
}

.blog-list__meta-box {
  position        : relative;
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  background-color: #faf6f6;
  padding-top     : 8px;
  padding-bottom  : 8px;
  padding-right   : 22px;
  padding-left    : 10px;
  max-width       : 370px;
  width           : 100%;
  margin-top      : 26px;
}

.blog-list__meta {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-list__meta li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-list__meta li+li {
  margin-left: 15px;
}

.blog-list__meta li a {
  position          : relative;
  font-size         : 14px;
  color             : #433838;
  opacity           : .88;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  display           : flex;
  align-items       : center;
}

.blog-list__meta li a:hover {
  color: var(--conalz-base);
}

.blog-list__meta li a i {
  font-size         : 20px;
  color             : #4c4b58;
  opacity           : 1;
  padding-right     : 6px;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-list__btn-box {
  position: relative;
  display : block;
}

.blog-list__btn-box a {
  position               : relative;
  display                : flex;
  align-items            : center;
  background-color       : var(--conalz-black);
  font-size              : 16px;
  font-weight            : 500;
  color                  : var(--conalz-white);
  padding                : 12px 20px;
  border-top-right-radius: 16px;
  transition             : all 500ms ease;
}

.blog-list__btn-box a:hover {
  background-color: var(--conalz-base);
}

.blog-list__btn-box a i {
  font-size   : 14px;
  padding-left: 10px;
  position    : relative;
  top         : 1px;
}

.blog-page__pagination {
  position: relative;
  display : block;
  padding : 12px 0 0px;
}

.blog-page__pagination .pg-pagination li {
  display     : inline-block;
  margin-right: 6px;
}

.blog-page__pagination .pg-pagination li:last-child {
  margin-right: 0;
}

.blog-page__pagination .pg-pagination li a {
  height                 : 50px;
  width                  : 60px;
  text-align             : center;
  line-height            : 50px;
  display                : inline-block;
  color                  : #433838;
  background-color       : #faf6f6;
  border-top-right-radius: 7px;
  font-weight            : 400;
  font-size              : 16px;
  -webkit-transition     : all 500ms ease;
  transition             : all 500ms ease;
}

.blog-page__pagination .pg-pagination li a:hover {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

/*--------------------------------------------------------------
# Sideber
--------------------------------------------------------------*/
.sideber {
  position    : relative;
  display     : block;
  margin-right: 10px;
}

.sidebar__single+.sidebar__single {
  margin-top: 50px;
}

.sidebar__search {
  position        : relative;
  display         : block;
  padding         : 35px 30px 35px;
  background-color: #f1f3f6;
  z-index         : 1;
}

.sidebar__search:before {
  position: absolute;
  top     : 5px;
  left    : 8px;
  right   : -8px;
  bottom  : -5px;
  color   : #2f3235;
  content : "";
  z-index : -1;
  border  : 2px solid #7f8184;
}

.sidebar__search-form {
  position: relative;
  display : block;
}

.sidebar__search-form:before {
  position     : absolute;
  bottom       : 0;
  left         : 0;
  right        : 0;
  border-bottom: 1px solid var(--conalz-base);
  content      : "";
  z-index      : 1;
}

.sidebar__search-form input[type="search"] {
  display         : block;
  outline         : none;
  background-color: #f1f3f6;
  color           : #25242e;
  opacity         : .80;
  font-size       : 16px;
  font-weight     : 400;
  padding-left    : 20px;
  height          : 70px;
  width           : 100%;
  padding-right   : 60px;
  border          : 1px solid #e7e7e7;
}

.sidebar__search-form button[type="submit"] {
  background-color      : var(--conalz-base);
  border-top-left-radius: 12px;
  color                 : var(--conalz-white);
  font-size             : 20px;
  position              : absolute;
  top                   : 0;
  right                 : 0;
  bottom                : 0;
  width                 : 50px;
  outline               : none;
  border                : none;
  display               : -webkit-box;
  display               : -ms-flexbox;
  display               : flex;
  -webkit-box-align     : center;
  -ms-flex-align        : center;
  align-items           : center;
  justify-content       : center;
  padding               : 0;
  -webkit-transition    : all 500ms ease;
  transition            : all 500ms ease;
}

.sidebar__search-form button[type="submit"]:hover {
  background-color: var(--conalz-black);
}

.sidebar__category {
  position        : relative;
  display         : block;
  background-color: #f1f3f6;
  padding         : 44px 30px 38px;
  z-index         : 1;
}

.sidebar__category:before {
  position: absolute;
  top     : 7px;
  left    : 8px;
  right   : -7px;
  bottom  : -7px;
  content : "";
  border  : 2px solid #7f8184;
  z-index : -1;
}

.sidebar__title {
  position      : relative;
  display       : inline-block;
  margin        : 0;
  font-size     : 24px;
  margin-bottom : 39px;
  font-weight   : 700;
  text-transform: uppercase;
  margin-left   : 8px;
}

.sidebar__title:before {
  position        : absolute;
  top             : 5px;
  left            : -8px;
  width           : 5px;
  height          : 19px;
  background-color: var(--conalz-base);
  content         : "";
}

.sidebar__category-list {
  position: relative;
  display : block;
}

.sidebar__category-list li {
  position       : relative;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  border         : 1px solid transparent;
  border-bottom  : 1px solid #e7e7e7;
  transition     : transform 500ms ease;
}

.sidebar__category-list li:hover {
  border: 1px solid #e7e7e7;
}

.sidebar__category-list li+li {
  margin-top: 10px;
}


.sidebar__category-list li:before {
  position        : absolute;
  bottom          : 0;
  left            : 0;
  right           : 0;
  height          : 1px;
  background-color: var(--conalz-base);
  content         : "";
  transition      : transform 500ms ease;
  transform       : scale(0, 1);
  transform-origin: right center;
  z-index         : 1;
}

.sidebar__category-list li:hover:before {
  transform       : scale(1, 1);
  transform-origin: left center;
}

.sideber__category-left {
  position: relative;
  display : block;
}

.sideber__category-left a {
  font-size   : 16px;
  font-weight : 500;
  color       : var(--conalz-base);
  position    : relative;
  display     : flex;
  align-items : center;
  padding     : 11px 0;
  padding-left: 15px;
}

.sideber__category-right {
  position   : relative;
  display    : flex;
  align-items: center;
}

.sideber__category-count {
  position          : relative;
  font-size         : 16px;
  font-weight       : 400;
  color             : var(--conalz-black);
  display           : flex;
  align-items       : center;
  margin-right      : 20px;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.sidebar__category-list li:hover .sideber__category-count {
  color: var(--conalz-base);
}

.sideber__category-arrow {
  position              : relative;
  font-size             : 15px;
  top                   : 0;
  right                 : 0;
  bottom                : 0;
  width                 : 50px;
  height                : 54px;
  display               : flex;
  align-items           : center;
  justify-content       : center;
  border-top-left-radius: 12px;
  -webkit-transition    : all 500ms ease;
  transition            : all 500ms ease;
  color                 : var(--conalz-black);
  z-index               : 1;
}

.sidebar__category-list li:hover .sideber__category-arrow {
  color: var(--conalz-white);
}

.sideber__category-arrow:before {
  position              : absolute;
  top                   : 0;
  bottom                : 0;
  left                  : 0;
  right                 : 0;
  content               : "";
  background-color      : var(--conalz-base);
  transition            : transform 500ms ease;
  transform             : scale(0, 1);
  transform-origin      : right center;
  border-top-left-radius: 12px;
  z-index               : -1;
}

.sidebar__category-list li:hover .sideber__category-arrow:before {
  transform       : scale(1, 1);
  transform-origin: left center;
}

.sidebar__post {
  position        : relative;
  display         : block;
  background-color: #f1f3f6;
  padding-top     : 47px;
  padding-left    : 40px;
  padding-right   : 25px;
  padding-bottom  : 31px;
  z-index         : 1;
}

.sidebar__post:before {
  position: absolute;
  top     : 8px;
  left    : 8px;
  right   : -8px;
  bottom  : -8px;
  content : "";
  border  : 2px solid #7f8184;
  z-index : -1;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display           : -webkit-box;
  display           : -ms-flexbox;
  display           : flex;
  -webkit-box-align : center;
  -ms-flex-align    : center;
  align-items       : center;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.sidebar__post-list li+li {
  border-top : 1px solid #e2e4e3;
  margin-top : 28px;
  padding-top: 30px;
}

.sidebar__post-image {
  margin-right: 24px;
}

.sidebar__post-image>img {
  width: 83px;
}

.sidebar__post-content {
  position: relative;
  top     : -3px;
}

.sidebar__post-content h3 {
  font-size  : 18px;
  margin     : 0;
  line-height: 29px;
}

.sidebar__post-content-meta {
  font-size         : 14px;
  font-weight       : 400;
  color             : #433838;
  opacity           : .80;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  font-family       : var(--conalz-font);
}

.sidebar__post-content-meta i {
  color        : #918e8e;
  font-size    : 15px;
  padding-right: 1px;
}

.sidebar__post-content h3 a {
  display           : block;
  font-size         : 16px;
  font-weight       : 700;
  margin-bottom     : 5px;
  text-transform    : uppercase;
  color             : var(--conalz-black);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.sidebar__post-list li .sidebar__post-content h3 a:hover {
  color: var(--conalz-base);
}

.sidebar__call-box {
  position        : relative;
  display         : block;
  padding         : 55px 40px 60px;
  background-color: #221e7d;
  z-index         : 1;
}

.sidebar__call-bg {
  position           : absolute;
  top                : 0;
  bottom             : 0;
  left               : 0;
  right              : 0;
  background-repeat  : no-repeat;
  background-position: center;
  background-size    : cover;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.sideber__call-content {
  position: relative;
  display : block;
}

.sideber__call-title {
  font-size     : 28px;
  font-weight   : 700;
  line-height   : 38px;
  color         : var(--conalz-white);
  text-transform: uppercase;
}

.sideber__call-number {
  position     : relative;
  display      : block;
  margin-top   : 5px;
  margin-bottom: 58px;
}

.sideber__call-number p {
  color: var(--conalz-white);
}

.sideber__call-number h3 {
  font-size  : 26px;
  font-weight: 600;
  font-family: var(--conalz-font);
}

.sideber__call-number a {
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.sideber__call-button {
  position   : relative;
  display    : flex;
  align-items: center;
  z-index    : 1;
}

.sideber__call-button-shape {
  position        : absolute;
  bottom          : -23px;
  left            : -15px;
  border-radius   : 50%;
  background-color: rgb(0, 92, 255);
  width           : 79px;
  height          : 79px;
  z-index         : -1;
}

.sideber__call-button a {
  font-size         : 16px;
  font-weight       : 700;
  color             : var(--conalz-white);
  font-family       : var(--conalz-font-two);
  text-transform    : uppercase;
  position          : relative;
  display           : flex;
  align-items       : center;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.sideber__call-button a:before {
  content         : "";
  position        : absolute;
  bottom          : 7px;
  left            : 21px;
  right           : 0;
  height          : 1px;
  background-color: #8b8a95;
}

.sideber__call-button a i {
  position    : relative;
  display     : inline-block;
  top         : 1px;
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.blog-details__inner {
  position: relative;
  display : block;
}

.blog-details__single {
  position: relative;
  display : block;
}

.blog-details .blog-list__btn-box a i {
  font-weight: 900;
}

.blog-details .blog-list__content {
  margin-top: 0;
  border    : none;
}

.blog-details .blog-list__meta-box {
  margin-top: 0;
}

.blog-details .blog-list__btn-box a {
  background-color: var(--conalz-base);
  transition      : all 500ms ease;
}

.blog-details .blog-list__btn-box a:hover {
  background-color: var(--conalz-black);
}

.blog-details .blog-list__meta-box {
  padding-right: 7px;
  padding-left : 24px;
}

.blog-details .blog-list__btn-box a {
  padding: 12px 24px;
}

.blog-details .blog-list__title {
  margin-bottom: 39px;
  margin-top   : 16px;
}

.blog-details .blog-list__text-one {
  color      : var(--conalz-black);
  opacity    : .80;
  line-height: 30px;
}

.blog-details .blog-list__text-two {
  color      : #433838;
  opacity    : .80;
  line-height: 30px;
  margin-top : 20px;
}

.blog-details__knowledge {
  position   : relative;
  display    : block;
  padding-top: 30px;
}

.blog-details__knowledge-title {
  font-size     : 30px;
  font-weight   : 700;
  line-height   : 50px;
  text-transform: uppercase;
}

.blog-details__knowledge-text {
  color         : var(--conalz-black);
  opacity       : .80;
  padding-top   : 10px;
  padding-bottom: 30px;
}

.blog-details__knowledge-points {
  position     : relative;
  display      : block;
  margin-bottom: 30px;
}

.blog-details__knowledge-points li {
  position   : relative;
  display    : flex;
  align-items: center;
}

.blog-details__knowledge-points li .icon {
  position : relative;
  display  : block;
  transform: rotate(90deg);
  top      : -14px;
}

.blog-details__knowledge-points li .icon span {
  position : relative;
  display  : inline-block;
  font-size: 18px;
}

.blog-details__knowledge-points .knowledge-icon-two {
  margin-top: 30px;
}

.blog-details__knowledge-points li .text {
  margin-left: 12px;
}

.blog-details__knowledge-points li .text p {
  color  : #433838;
  opacity: .80;
}

.blog-details__skills {
  position: relative;
  display : block;
}

.blog-details__skills .blog-details__knowledge-text {
  padding-bottom: 13px;
}

.blog-details__tags {
  position      : relative;
  display       : flex;
  align-items   : center;
  margin-top    : 20px;
  padding-top   : 20px;
  padding-bottom: 35px;
}

.blog-details__tags span {
  font-size     : 18px;
  font-weight   : 700;
  color         : #424248;
  font-family   : var(--conalz-font-two);
  margin-right  : 14px;
  text-transform: uppercase;
}

.blog-details__tags a {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  font-size         : 15px;
  color             : var(--conalz-black);
  opacity           : .80;
  padding           : 0 9px;
  line-height       : 28px;
  border            : 1px solid #f6f6f6;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.blog-details__tags a:hover {
  background-color: var(--conalz-base);
  color           : rgba(var(--conalz-white-rgb), .80);
}

.blog-details__tags a+a {
  margin-left: 10px;
}

.author {
  position      : relative;
  display       : block;
  border        : 1px solid #ebebeb;
  padding-top   : 37px;
  padding-bottom: 37px;
  padding-left  : 155px;
  padding-right : 25px;
}

.author__img {
  position: absolute;
  width   : 112px;
  top     : 42px;
  left    : 26px;
}

.author__img img {
  width        : 100%;
  border-radius: 50%;
}

.author__content {
  position: relative;
  display : block;
}

.author__content h4 {
  font-size     : 24px;
  font-weight   : 700;
  line-height   : 32px;
  text-transform: uppercase;
}

.author__content p {
  font-size  : 18px;
  font-weight: 600;
  color      : var(--conalz-black);
  opacity    : .90;
  line-height: 32px;
  padding    : 18px 0 20px;
  font-family: var(--conalz-font-two);
}

.author__social {
  position   : relative;
  display    : flex;
  align-items: center;
}

.author__social a {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 45px;
  width             : 45px;
  border-radius     : 50%;
  font-size         : 16px;
  color             : #161616;
  background-color  : #f6f6f6;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.author__social a:hover {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

.author__social a+a {
  margin-left: 10px;
}



/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.blog-details__comment-and-form {
  position        : relative;
  display         : block;
  background-color: #f6f6f6;
  padding         : 40px 25px 50px;
  margin-top      : 40px;
}

.comment-one__title,
.comment-form__title {
  margin        : 0;
  color         : var(--conalz-black);
  font-size     : 26px;
  margin-bottom : 50px;
  font-weight   : 700;
  text-transform: uppercase;
}

.comment-one__single {
  display       : -webkit-box;
  display       : -ms-flexbox;
  display       : flex;
  border-bottom : 1px solid #e4e4e4;
  padding-bottom: 60px;
  margin-bottom : 60px;
}

.comment-one__single--two {
  margin-left: 60px;
}

.comment-one__content {
  position   : relative;
  margin-left: 20px;
}

.comment-one__content h3 {
  margin        : 0;
  font-size     : 20px;
  color         : var(--conalz-black);
  margin-bottom : 19px;
  font-weight   : 700;
  text-transform: uppercase;
}

.comment-one__content span {
  display  : block;
  font-size: 14px;
  color    : var(--conalz-black);
}

.comment-one__content p {
  font-size  : 16px;
  color      : var(--conalz-black);
  line-height: 32px;
  opacity    : .80;
  margin     : 0;
}

.comment-one__btn {
  padding                : 0px 20px;
  position               : absolute;
  top                    : 0;
  right                  : 0;
  background-color       : #ececec;
  font-size              : 14px;
  color                  : var(--conalz-black);
  font-weight            : 500;
  border-top-right-radius: 10px;
  -webkit-transition     : all 500ms ease;
  transition             : all 500ms ease;
}

.comment-one__btn:hover {
  background-color: var(--conalz-black);
  color           : var(--conalz-white);
}

.comment-one__image {
  position     : relative;
  display      : block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top   : -8px;
  margin-bottom: 23px;
}

.comment-one__form .row {
  --bs-gutter-x: 20px;
}

.comment-form__input-box {
  position     : relative;
  display      : block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height          : 70px;
  width           : 100%;
  border          : none;
  background-color: #fff;
  padding-left    : 20px;
  padding-right   : 20px;
  outline         : none;
  font-size       : 16px;
  color           : rgba(67, 56, 56, .60);
  display         : block;
  border-radius   : 3px;
}

.comment-form__input-box textarea {
  font-size       : 16px;
  color           : rgba(67, 56, 56, .60);
  height          : 215px;
  width           : 100%;
  background-color: #fff;
  padding         : 15px 30px 30px;
  border          : none;
  outline         : none;
  margin-bottom   : 0px;
  border-radius   : 3px;
}

.comment-form__btn {
  border            : none;
  font-size         : 15px;
  color             : var(--conalz-white);
  background-color  : var(--conalz-base);
  padding           : 11px 40px;
  font-weight       : 500;
  text-transform    : uppercase;
  font-family       : var(--conalz-font-two);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.comment-form__btn:hover {
  background-color: var(--conalz-black);
}

.comment-form__input-box.text-message-box {
  height: 215px;
}


/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.service-details__sidebar {
  position    : relative;
  display     : block;
  margin-right: 10px;
}

.service-details__sidebar-single+.service-details__sidebar-single {
  margin-top: 40px;
}

.service-details__service-list-box {
  position        : relative;
  display         : block;
  background-color: #f1f3f6;
  padding         : 44px 30px 40px;
  z-index         : 1;
}

.service-details__service-list-box:before {
  position: absolute;
  top     : 7px;
  left    : 7px;
  right   : -7px;
  bottom  : -7px;
  content : "";
  border  : 2px solid #7f8184;
  z-index : -1;
}

.service-details__service-title {
  position      : relative;
  display       : inline-block;
  margin        : 0;
  font-size     : 24px;
  margin-bottom : 39px;
  font-weight   : 700;
  text-transform: uppercase;
  margin-left   : 8px;
}

.service-details__service-title:before {
  position        : absolute;
  top             : 5px;
  left            : -8px;
  width           : 5px;
  height          : 19px;
  background-color: var(--conalz-base);
  content         : "";
}

.service-details__service-list {
  margin: 0;
}

.service-details__service-list li+li {
  margin-top: 3px;
}

.service-details__service-list li a {
  color             : var(--conalz-black);
  font-size         : 16px;
  font-weight       : 500;
  position          : relative;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  display           : block;
  padding           : 11px 15px 11px;
  border            : 1px solid transparent;
  border-bottom     : 1px solid #e7e7e7;
}

.service-details__service-list li a:hover {
  border: 1px solid #e7e7e7;
  color : var(--conalz-base);
}

.service-details__service-list li.active a {
  border: 1px solid #e7e7e7;
  color : var(--conalz-base);
}

.service-details__service-list li a:before {
  position        : absolute;
  bottom          : 0;
  left            : 0;
  right           : 0;
  content         : "";
  height          : 1px;
  background-color: var(--conalz-base);
  transition      : transform 500ms ease;
  transform       : scale(0, 1);
  transform-origin: right center;
}

.service-details__service-list li a:hover:before {
  transform       : scale(1, 1);
  transform-origin: left center;
}

.service-details__service-list li a span {
  position              : absolute;
  top                   : 0;
  right                 : 0;
  bottom                : 0;
  width                 : 50px;
  -webkit-transition    : all 500ms ease;
  transition            : all 500ms ease;
  color                 : var(--conalz-black);
  text-align            : center;
  display               : -webkit-box;
  display               : -ms-flexbox;
  display               : flex;
  -webkit-box-align     : center;
  -ms-flex-align        : center;
  align-items           : center;
  -webkit-box-pack      : center;
  -ms-flex-pack         : center;
  justify-content       : center;
  font-size             : 15px;
  border-top-left-radius: 15px;
  z-index               : 1;
}

.service-details__service-list li a:hover span {
  color: var(--conalz-white);
}

.service-details__service-list li.active a span {
  color: var(--conalz-white);
}

.service-details__service-list li a span:after {
  position              : absolute;
  top                   : 0;
  bottom                : 0;
  left                  : 0;
  right                 : 0;
  content               : "";
  background-color      : var(--conalz-base);
  border-top-left-radius: 15px;
  transition            : transform 500ms ease;
  transform             : scale(0, 1);
  transform-origin      : right center;
  z-index               : -1;
}

.service-details__service-list li a:hover span:after {
  transform       : scale(1, 1);
  transform-origin: left center;
}

.service-details__service-list li.active a span:after {
  transform       : scale(1, 1);
  transform-origin: left center;
}



















.service-details__brochures-box {
  position        : relative;
  display         : block;
  background-color: #f1f3f6;
  padding         : 44px 30px 40px;
  z-index         : 1;
}

.service-details__brochures-box:before {
  position: absolute;
  top     : 7px;
  left    : 7px;
  right   : -7px;
  bottom  : -7px;
  content : "";
  border  : 2px solid #7f8184;
  z-index : -1;
}

.service-details__brochures-list {
  margin: 0;
}

.service-details__brochures-list li+li {
  margin-top: 3px;
}

.service-details__brochures-list li a {
  color             : var(--conalz-black);
  font-size         : 16px;
  font-weight       : 500;
  position          : relative;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  display           : block;
  padding           : 11px 15px 11px;
  border            : 1px solid #e7e7e7;
}

.service-details__brochures-list li a:hover {
  color: var(--conalz-base);
}

.service-details__brochures-list li a:before {
  position        : absolute;
  bottom          : 0;
  left            : 0;
  right           : 0;
  content         : "";
  height          : 1px;
  background-color: var(--conalz-base);
  transition      : transform 500ms ease;
  transform       : scale(0, 1);
  transform-origin: right center;
}

.service-details__brochures-list li a:hover:before {
  transform       : scale(1, 1);
  transform-origin: left center;
}

.service-details__brochures-list li a span {
  position              : absolute;
  top                   : 0;
  right                 : 0;
  bottom                : 0;
  width                 : 50px;
  -webkit-transition    : all 500ms ease;
  transition            : all 500ms ease;
  color                 : var(--conalz-black);
  text-align            : center;
  display               : -webkit-box;
  display               : -ms-flexbox;
  display               : flex;
  -webkit-box-align     : center;
  -ms-flex-align        : center;
  align-items           : center;
  -webkit-box-pack      : center;
  -ms-flex-pack         : center;
  justify-content       : center;
  font-size             : 25px;
  border-top-left-radius: 15px;
  z-index               : 1;
}

.service-details__brochures-list li a:hover span {
  color: var(--conalz-white);
}

.service-details__brochures-list li a span:after {
  position              : absolute;
  top                   : 0;
  bottom                : 0;
  left                  : 0;
  right                 : 0;
  content               : "";
  background-color      : var(--conalz-base);
  border-top-left-radius: 15px;
  transition            : transform 500ms ease;
  transform             : scale(0, 1);
  transform-origin      : right center;
  z-index               : -1;
}

.service-details__brochures-list li a:hover span:after {
  transform       : scale(1, 1);
  transform-origin: left center;
}

.service-details__right {
  position  : relative;
  display   : block;
  margin-top: -15px;
}

.service-details__title-two {
  font-size     : 50px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 60px;
  margin-bottom : 30px;
}

.service-details__text-1 {
  font-size: 18px;
  color    : var(--conalz-black);
  opacity  : .80;
}

.service-details__img {
  position     : relative;
  display      : block;
  margin-top   : 40px;
  margin-bottom: 50px;
}

.service-details__img img {
  width: 100%;
}

.service-details__problem-solve {
  position: relative;
  display : block;
}

.service-details__problem-solve-title {
  font-size     : 30px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 40px;
  margin-bottom : 27px;
}

.service-details__problem-solve-text-1 {
  font-size     : 18px;
  color         : var(--conalz-black);
  opacity       : .80;
  padding-bottom: 32px;
}

.service-details__problem-solve-text-2 {
  font-size: 18px;
  color    : var(--conalz-black);
  opacity  : .80;
}

.service-details__core-product {
  position  : relative;
  display   : block;
  margin-top: 40px;
}

.service-details__core-product-title {
  font-size     : 30px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 40px;
  margin-bottom : 12px;
}

.service-details__core-product-text {
  font-size: 18px;
  color    : var(--conalz-black);
  opacity  : .80;
}

.service-details__core-product-points-box {
  position  : relative;
  display   : block;
  margin-top: 35px;
}

.service-details__core-product-points-single {
  position        : relative;
  display         : block;
  background-color: #fcf8f8;
  padding         : 30px 30px 35px;
}

.service-details__core-product-icon-box {
  position     : relative;
  display      : flex;
  align-items  : center;
  margin-bottom: 25px;
}

.service-details__core-product-icon {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 65px;
  width             : 65px;
  background-color  : var(--conalz-black);
  border-radius     : 50%;
  font-size         : 30px;
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.service-details__core-product-points-single:hover .service-details__core-product-icon {
  background-color: var(--conalz-base);
}

.service-details__core-product-content {
  margin-left: 15px;
}

.service-details__core-product-content h4 {
  font-size     : 20px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 32px;
}

.service-details__core-product-text-2 {
  color  : #433838;
  opacity: .80;
}

.service-details__benefits {
  position  : relative;
  display   : block;
  margin-top: 50px;
}

.service-details__benefits-title {
  font-size     : 30px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 40px;
  margin-bottom : 13px;
}

.service-details__benefits-text-1 {
  font-size     : 18px;
  color         : var(--conalz-black);
  opacity       : .80;
  padding-bottom: 35px;
}

.service-details__benefits-single {
  position     : relative;
  display      : block;
  border       : 1px solid var(--conalz-black);
  padding      : 25px 25px 30px;
  margin-bottom: 30px;
}

.service-details__benefits-icon-box {
  position     : relative;
  display      : flex;
  align-items  : center;
  margin-bottom: 25px;
}

.service-details__benefits-icon {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 65px;
  width             : 65px;
  background-color  : var(--conalz-base);
  border-radius     : 50%;
  font-size         : 35px;
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.service-details__benefits-single:hover .service-details__benefits-icon {
  background-color: var(--conalz-black);
}

.service-details__benefits-content {
  margin-left: 15px;
}

.service-details__benefits-content h3 {
  font-size     : 20px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 32px;
}

.service-details__benefits-text-2 {
  color  : #433838;
  opacity: .80;
}

.service-details__faq {
  position  : relative;
  display   : block;
  margin-top: 30px;
}

.faq-one-accrodion .accrodion {
  position     : relative;
  display      : block;
  border-radius: 0;
}

.faq-one-accrodion .accrodion-title {
  position        : relative;
  display         : block;
  cursor          : pointer;
  padding         : 14px 20px 14px;
  padding-left    : 65px;
  border          : 1px solid #f7f7f7;
  transition      : all 200ms linear;
  transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title h4 {
  margin            : 0;
  font-size         : 18px;
  font-weight       : 600;
  line-height       : 28px;
  color             : var(--conalz-black);
  font-family       : var(--conalz-font);
  position          : relative;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
  margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  background-color: #f3f4f6;
  border          : 1px solid #f3f4f6;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--conalz-black);
}

.faq-one-accrodion .accrodion-title h4::before {
  content           : "\e91f";
  font-family       : 'icomoon' !important;
  font-weight       : normal;
  font-size         : 13px;
  color             : var(--conalz-white);
  position          : absolute;
  top               : 50%;
  left              : -45px;
  display           : flex;
  justify-content   : center;
  align-items       : center;
  -webkit-transform : translateY(-50%);
  transform         : translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
  text-align        : center;
  height            : 30px;
  width             : 30px;
  background-color  : #dbdde2;
  border-radius     : 50%;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content         : "\e91b";
  color           : var(--conalz-white);
  text-align      : center;
  display         : flex;
  justify-content : center;
  align-items     : center;
  background-color: var(--conalz-black);
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding : 20px 25px 10px;
}

.faq-one-accrodion .accrodion-content p {
  margin : 0;
  color  : var(--conalz-black);
  opacity: .80;
}


/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.project-details__top {
  position     : relative;
  display      : block;
  margin-bottom: 80px;
}

.project-details__img {
  position: relative;
  display : block;
}

.project-details__img img {
  width: 100%;
}

.project-details__bottom {
  position: relative;
  display : block;
}

.project-details__left {
  position: relative;
  display : block;
}

.project-details__sidebar-single+.project-details__sidebar-single {
  margin-top: 40px;
}

.project-details__sidebar {
  position    : relative;
  display     : block;
  margin-right: 10px;
}

.project-details__details-box {
  position        : relative;
  display         : block;
  background-color: #f1f3f6;
  border          : 1px solid #f4eeec;
  padding         : 48px 35px 49px;
  z-index         : 1;
}

.project-details__details-box:before {
  position: absolute;
  top     : 7px;
  left    : 7px;
  right   : -7px;
  bottom  : -7px;
  content : "";
  border  : 2px solid #7f8184;
  z-index : -1;
}

.project-details__title {
  position      : relative;
  display       : inline-block;
  margin        : 0;
  font-size     : 24px;
  margin-bottom : 40px;
  font-weight   : 700;
  text-transform: uppercase;
  margin-left   : 8px;
}

.project-details__title:before {
  position        : absolute;
  top             : 5px;
  left            : -8px;
  width           : 5px;
  height          : 19px;
  background-color: var(--conalz-base);
  content         : "";
}

.project-details__list {
  position: relative;
  display : block;
}

.project-details__list li {
  position      : relative;
  display       : flex;
  align-items   : center;
  border-bottom : 1px solid #e2e2e2;
  margin-bottom : 22px;
  padding-bottom: 25px;
}

.project-details__list li:last-child {
  border-bottom : none;
  margin-bottom : 0;
  padding-bottom: 0;
}

.project-details__list .icon {
  position   : relative;
  display    : flex;
  align-items: center;
  font-size  : 35px;
  color      : #433838;
}

.project-details__list .content {
  margin-left: 15px;
}

.project-details__list .content span {
  font-size  : 16px;
  font-weight: 500;
  color      : var(--conalz-black);
  opacity    : .70;
  display    : block;
  line-height: 20px;
}

.project-details__list .content p {
  font-size  : 20px;
  font-weight: 500;
  color      : var(--conalz-black);
  line-height: 25px;
  padding-top: 6px;
}

.project-details__sidebar .service-details__brochures-list li a span {
  background-color: var(--conalz-black);
  color           : var(--conalz-white);
}

.project-details__right {
  position  : relative;
  display   : block;
  margin-top: -17px;
}

.project-details__title-box {
  position: relative;
  display : block;
}

.project-details__title-two {
  font-size     : 50px;
  font-weight   : 700;
  line-height   : 64px;
  text-transform: uppercase;
}

.project-details__text {
  font-size  : 18px;
  font-weight: 400;
  line-height: 32px;
  color      : var(--conalz-black);
  opacity    : .80;
  padding-top: 30px;
}

.project-details__outcome-right {
  position: relative;
  display : block;
}

.project-details__outcome-content {
  position  : relative;
  display   : block;
  margin-top: -8px;
}

.project-details__outcome {
  position  : relative;
  display   : block;
  margin-top: 55px;
}

.project-details__outcome-left {
  position: relative;
  display : block;
}

.project-details__outcome-img {
  position: relative;
  display : block;
}

.project-details__outcome-img img {
  width: 100%;
}

.project-details__outcome-title {
  font-size     : 28px;
  font-weight   : 700;
  color         : #433838;
  text-transform: uppercase;
}

.project-details__outcome-text {
  font-size  : 18px;
  font-weight: 400;
  line-height: 32px;
  color      : #433838;
  padding-top: 17px;
}

.project-details__outcome-points {
  position   : relative;
  display    : block;
  margin-left: 24px;
  padding-top: 20px;
}

.project-details__outcome-points li {
  position   : relative;
  display    : block;
  font-size  : 16px;
  line-height: 34px;
  font-weight: 400;
  color      : #433838;
  opacity    : .80;
}

.project-details__outcome-points li:before {
  position        : absolute;
  top             : 15px;
  left            : -19px;
  width           : 8px;
  height          : 8px;
  background-color: var(--conalz-base);
  border-radius   : 50%;
  content         : "";
}


.project-details__core-product {
  position  : relative;
  display   : block;
  margin-top: 58px;
}

.project-details__core-product-title {
  font-size     : 30px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 40px;
  margin-bottom : 14px;
}

.project-details__core-product-text {
  font-size  : 20px;
  font-weight: 700;
  color      : var(--conalz-black);
  opacity    : .80;
  line-height: 34px;
}

.project-details__core-product-points-box {
  position     : relative;
  display      : block;
  margin-top   : 36px;
  margin-bottom: 28px;
}

.project-details__core-product-points-single {
  position     : relative;
  display      : block;
  padding      : 27px 27px 35px;
  border       : 1px solid var(--conalz-black);
  margin-bottom: 30px;
}

.project-details__core-product-icon-box {
  position     : relative;
  display      : flex;
  align-items  : center;
  margin-bottom: 25px;
}

.project-details__core-product-icon {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 65px;
  width             : 65px;
  background-color  : var(--conalz-base);
  border-radius     : 50%;
  font-size         : 32px;
  color             : var(--conalz-white);
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.project-details__core-product-points-single:hover .project-details__core-product-icon {
  background-color: var(--conalz-black);
}

.project-details__core-product-content {
  margin-left: 15px;
}

.project-details__core-product-content h4 {
  font-size     : 20px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 32px;
}

.project-details__core-product-text-2 {
  color  : #433838;
  opacity: .80;
}

.project-details__changing-game {
  position: relative;
  display : block;
}

.changing-game__title {
  font-size     : 30px;
  font-weight   : 700;
  line-height   : 40px;
  text-transform: uppercase;
  margin-bottom : 29px;
}

.changing-game__text-one {
  font-size  : 18px;
  font-weight: 400;
  line-height: 33px;
  color      : var(--conalz-black);
  opacity    : .80;
}

.changing-game__text-two {
  font-size  : 18px;
  font-weight: 400;
  line-height: 33px;
  color      : var(--conalz-black);
  opacity    : .80;
  padding-top: 27px;
}

.project-details__project-approach {
  position        : relative;
  display         : block;
  background-color: #f7f7f7;
  padding         : 55px 35px 55px;
  border-bottom   : 1px solid var(--conalz-base);
  margin-top      : 50px;
}

.project-approach__title {
  font-size     : 30px;
  font-weight   : 700;
  line-height   : 32px;
  text-transform: uppercase;
}

.project-approach__content-box {
  position   : relative;
  display    : flex;
  align-items: center;
  margin-top : 37px;
}

.project-approach__content+.project-approach__content {
  margin-left: 30px;
}

.project-approach__content-title-box {
  position     : relative;
  display      : flex;
  align-items  : center;
  margin-bottom: 18px;
}

.project-approach__content-icon {
  position   : relative;
  display    : flex;
  align-items: center;
  font-size  : 13px;
  color      : #433838;
}

.project-approach__content-title {
  position   : relative;
  display    : block;
  margin-left: 8px;
}

.project-approach__content-title h4 {
  font-size  : 18px;
  color      : var(--conalz-base);
  font-family: var(--conalz-font);
  font-weight: 700;
}

.project-approach__left-text {
  font-size  : 16px;
  font-weight: 400;
  line-height: 28px;
  color      : #433838;
  opacity    : .80;
  margin-left: 25px;
}

.project-details__faq {
  position  : relative;
  display   : block;
  margin-top: 40px;
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display : block;
  padding : 120px 0 120px;
}

.faq-page__top {
  position: relative;
  display : block;
}

.faq-page__bottom {
  position  : relative;
  display   : block;
  margin-top: 100px;
}

.faq-page__email-box {
  position  : relative;
  display   : block;
  text-align: center;
}

.faq-page__email-title {
  font-size     : 36px;
  font-weight   : 600;
  font-family   : var(--conalz-font);
  text-transform: uppercase;
  line-height   : 56px;
  margin-bottom : 30px;
}

.faq-page__form {
  position : relative;
  display  : block;
  max-width: 305px;
  width    : 100%;
  margin   : 0 auto;
}

.faq-page__form-input-box {
  position: relative;
  display : block;
}

.faq-page__form-input-box input[type="email"] {
  height                   : 80px;
  width                    : 100%;
  border                   : none;
  outline                  : none;
  background-color         : #f1f3f6;
  font-size                : 18px;
  font-weight              : 600;
  color                    : var(--conalz-base);
  padding-left             : 100px;
  padding-right            : 30px;
  border-top-left-radius   : 10px;
  border-bottom-left-radius: 10px;
}

.faq-page__btn {
  position                  : absolute;
  top                       : 0;
  bottom                    : 0;
  left                      : 0;
  border                    : none;
  background-color          : #dfe4ed;
  font-size                 : 20px;
  color                     : var(--conalz-base);
  width                     : 70px;
  border-top-left-radius    : 10px;
  border-bottom-left-radius : 10px;
  border-bottom-right-radius: 10px;
  -webkit-transition        : all 500ms ease;
  transition                : all 500ms ease;
}

.faq-page__btn:hover {
  background-color: var(--conalz-base);
  color           : var(--conalz-white);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display : block;
}

.google-map__one {
  position: relative;
  display : block;
  border  : none;
  height  : 610px;
  width   : 100%;
}

/*--------------------------------------------------------------
# Address
--------------------------------------------------------------*/
.address {
  position: relative;
  display : block;
  padding : 120px 0 81px;
}

.address__single {
  position        : relative;
  display         : block;
  background-color: #f6f6f6;
  text-align      : center;
  padding         : 60px 0 51px;
  margin-bottom   : 30px;
}

.address__icon {
  position          : relative;
  display           : flex;
  align-items       : center;
  justify-content   : center;
  height            : 85px;
  width             : 85px;
  margin            : 0 auto;
  border            : 1px solid #ececec;
  border-radius     : 50%;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.address__single:hover .address__icon {
  background-color: #ececec;
}

.address__icon span {
  position : relative;
  display  : inline-block;
  font-size: 38px;
  color    : var(--conalz-black);
}

.address__content {
  position  : relative;
  display   : block;
  margin-top: 21px;
}

.address__title {
  font-size     : 22px;
  font-weight   : 700;
  line-height   : 32px;
  text-transform: uppercase;
  margin-bottom : 13px;
}

.address__phone-email {
  position: relative;
  display : block;
}

.address__phone-email p {
  font-size  : 18px;
  color      : #504f56;
  line-height: 30px;
}

.address__phone-email p a {
  color             : #504f56;
  display           : block;
  -webkit-transition: all 500ms ease;
  transition        : all 500ms ease;
}

.address__phone-email p a:hover {
  color: var(--conalz-black);
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-form-box {
  position: relative;
  display : block;
  padding : 0 0 120px;
}

.contact-form__title-box {
  position     : relative;
  display      : block;
  text-align   : center;
  margin-bottom: 45px;
}

.contact-form__title-box span {
  font-size  : 18px;
  font-weight: 500;
  color      : var(--conalz-black);
  opacity    : .80;
}

.contact-form__title-box h3 {
  font-size     : 36px;
  font-weight   : 700;
  text-transform: uppercase;
  line-height   : 46px;
}

.contact-form {
  position: relative;
  display : block;
}

.contact-form__input-box {
  position     : relative;
  display      : block;
  margin-bottom: 46px;
}

.contact-form__input-box p {
  font-size  : 15px;
  color      : #433838;
  opacity    : .70;
  line-height: 20px;
}

.contact-form__input-box input[type="text"],
.contact-form__input-box input[type="email"] {
  height       : 50px;
  border       : 0;
  width        : 100%;
  font-size    : 16px;
  color        : var(--conalz-black);
  border-bottom: 1px solid var(--conalz-black);
  font-weight  : 500;
  outline      : none;
}

.contact-form__input-box textarea {
  height       : 150px;
  width        : 100%;
  border       : none;
  border-bottom: 1px solid var(--conalz-black);
  color        : #433838;
  opacity      : .70;
  font-size    : 15px;
  outline      : none;
  margin-top   : -8px;
}

.contact-form__input-box.text-message-box {
  height: 150px;
}

.contact-form__btn-box {
  position: relative;
  display : block;
}

.contact-form__btn {
  padding         : 9px 35px 9px;
  border          : none;
  background-color: var(--conalz-black);
}

.contact-form__btn:before {
  background-color: var(--conalz-base);
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position        : relative;
  display         : block;
  padding         : 144px 0 120px;
  background-color: var(--conalz-white);
  z-index         : 1;
}

.error-page-shape-bg {
  position           : absolute;
  top                : 0;
  left               : 0;
  right              : 0;
  bottom             : 170px;
  background-repeat  : no-repeat;
  background-position: center;
  background-size    : cover;
  z-index            : -1;
}

.error-page__inner {
  position  : relative;
  display   : block;
  text-align: center;
}

.error-page__title-box {
  position: relative;
  display : block;
  z-index : 2;
}

.error-page__title {
  position   : relative;
  display    : inline-block;
  font-size  : 265px;
  line-height: 265px;
  font-weight: 900;
  color      : var(--conalz-black);
  z-index    : 2;
}

.error-page__tagline {
  font-size     : 46px;
  line-height   : 46px;
  font-weight   : 600;
  text-transform: uppercase;
  color         : var(--conalz-black);
  margin-top    : 28px;
  margin-bottom : 6px;
}

.error-page__text {
  font-size  : 20px;
  color      : var(--conalz-black);
  opacity    : .80;
  font-weight: 500;
}

.error-page__form {
  position: relative;
  display : block;
  margin  : 61px auto 30px;
}

.error-page__form-input {
  position : relative;
  display  : block;
  max-width: 555px;
  width    : 100%;
  margin   : 0 auto;
}

.error-page__form input[type="search"] {
  height          : 70px;
  width           : 100%;
  border          : none;
  outline         : none;
  background-color: #eeeeee;
  font-size       : 16px;
  color           : rgba(69, 68, 74, .70);
  font-weight     : 500;
  padding-left    : 30px;
  padding-right   : 75px;
}

.error-page__form button[type="submit"] {
  background-color          : var(--conalz-base);
  color                     : var(--conalz-white);
  font-size                 : 22px;
  position                  : absolute;
  top                       : 3px;
  right                     : 3px;
  bottom                    : 3px;
  width                     : 65px;
  outline                   : none;
  border                    : none;
  display                   : flex;
  align-items               : center;
  justify-content           : center;
  padding                   : 0;
  border-top-right-radius   : 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius : 10px;
  -webkit-transition        : all 500ms ease;
  transition                : all 500ms ease;
}

.error-page__form button[type="submit"]:hover {
  background-color: var(--conalz-black);
}

.error-page__btn {
  background-color: transparent;
  border          : 2px solid var(--conalz-base);
  border-radius   : 2px;
  color           : var(--conalz-base);
}

.error-page__btn:hover {
  border: 2px solid var(--conalz-black);
  color : var(--conalz-white);
}

.error-page-shape-1 {
  position: absolute;
  top     : 140px;
  left    : 6px;
}

.error-page-shape-1 img {
  width: auto;
}

.error-page-shape-2 {
  position: absolute;
  top     : -6px;
  right   : 290px;
}

.error-page-shape-2 img {
  width: auto;
}

/*--------------------------------------------------------------
# Services Page V 1
--------------------------------------------------------------*/
.services-page-v-1 {
  position: relative;
  display : block;
  padding : 120px 0 90px;
}

.services-page-v-1 .container {
  max-width: 1600px;
}

.services-page-v-1 .services-two__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Services Page V 2
--------------------------------------------------------------*/
.services-page-v-2 {
  position: relative;
  display : block;
  padding : 120px 0 85px;
}

.services-page-v-2 .services-one__single {
  margin-bottom: 65px;
}

.services-page-v-2__top .section-title {
  margin-bottom: 25px;
}

.services-page-v-2__top .section-title__title span:before {
  display: none;
}

.services-page-v-2__top .section-title__text {
  font-size     : 18px;
  color         : var(--conalz-black);
  opacity       : .80;
  padding-bottom: 50px;
}

/*--------------------------------------------------------------
# Project Page V 1
--------------------------------------------------------------*/
.project-page-v-1 {
  position        : relative;
  display         : block;
  padding         : 120px 0 90px;
  background-color: #d0d0d0;
  z-index         : 1;
}

.project-page-v-1-bg {
  position           : absolute;
  top                : 0;
  bottom             : 0;
  left               : 0;
  right              : 0;
  background-repeat  : no-repeat;
  background-position: center;
  background-size    : cover;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.project-page-v-1 .project-two__single {
  margin-bottom: 80px;
}

/*--------------------------------------------------------------
# Project Page V 2
--------------------------------------------------------------*/
.project-page-v-2 {
  position        : relative;
  display         : block;
  padding         : 120px 0 90px;
  background-color: #f9f9fa;
  z-index         : 1;
}

.project-page-v-2-bg {
  position           : absolute;
  top                : 0;
  bottom             : 0;
  left               : 0;
  right              : 0;
  background-repeat  : no-repeat;
  background-position: center;
  background-size    : cover;
  mix-blend-mode     : overlay;
  z-index            : -1;
}

.project-page-v-2__top {
  position     : relative;
  display      : block;
  margin-bottom: 59px;
}

.project-page-v-2__top-left {
  position: relative;
  display : block;
}

.project-page-v-2__top-left .section-title__title span:before {
  display: none;
}

.project-page-v-2__top-left .section-title {
  margin-bottom: 0px;
}

.project-page-v-2__top-right {
  position    : relative;
  display     : block;
  margin-left : 56px;
  margin-right: 25px;
  margin-top  : 30px;
}

.project-page-v-2__top-text {
  font-size: 18px;
  color    : #433838;
  opacity  : .80;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display : block;
  padding : 120px 0 90px;
}

.team-page .team-one__single {
  margin-bottom: 30px;
}

.team-page .team-one__content {
  right: 85px;
}

/*--------------------------------------------------------------
# Mission One
--------------------------------------------------------------*/
.mission-one {
  position: relative;
  display : block;
  padding : 120px 0 110px;
}

.mission-one__left {
  position: relative;
  display : block;
}

.mission-one__text-1 {
  font-size  : 18px;
  color      : #433838;
  opacity    : .80;
  padding-top: 43px;
}

.mission-one__section-title {
  margin-bottom: 0;
}

.mission-one__right {
  position    : relative;
  display     : block;
  margin-left : 55px;
  margin-right: 140px;
  margin-top  : 210px;
}

.mission-one__img-box {
  position: relative;
  display : block;
}

.mission-one__img-one {
  position: relative;
  display : block;
}

.mission-one__img-one:before {
  content         : "";
  position        : absolute;
  bottom          : 0;
  left            : -3px;
  top             : -95px;
  width           : 10px;
  background-color: #e8eaee;
}

.mission-one__img-one:after {
  content         : "";
  position        : absolute;
  bottom          : 0;
  left            : -3px;
  height          : 100px;
  width           : 10px;
  background-color: var(--conalz-base);
}

.mission-one__img-one img {
  width                  : 100%;
  border-top-right-radius: 190px;
}

.mission-one__img-two {
  position: absolute;
  top     : -150px;
  right   : -140px;
}

.mission-one__img-two img {
  width                  : auto;
  border-top-right-radius: 110px;
}

.mission-one__img-three {
  position: absolute;
  top     : -220px;
  left    : 80px;
}

.mission-one__img-three img {
  width                 : auto;
  border-top-left-radius: 100px;
}

.mission-one__img-three:after {
  content         : "";
  position        : absolute;
  bottom          : 30px;
  left            : -40px;
  height          : 100px;
  width           : 10px;
  background-color: var(--conalz-base);
}

.mission-one__shape-1 {
  position: absolute;
  bottom  : 115px;
  right   : -175px;
}

.mission-one__shape-1 img {
  width                            : auto;
  -webkit-animation-name           : shapeMover;
  animation-name                   : shapeMover;
  -webkit-animation-duration       : 9s;
  animation-duration               : 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function        : linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count        : infinite;
}

.mission-one__shape-2 {
  position: absolute;
  bottom  : 0;
  right   : -357px;
}

.mission-one__shape-2 img {
  width: auto;
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
  padding-top: 0;
}









/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/