/*********************************************************************
Item Name: Temezo - HTML and CSS Responsive Team Card
Author: codnictheme
Author URI: https://codecanyon.net/user/codnictheme
**********************************************************************/
/***  01 TYPOGRAPHY ***/
/***  02 HEADER ***/
/***  03 INTRO ***/
/***  04 DEMO ***/
/***  05 FEATHURES ***/
/***  06 FOOTER ***/
/***  07 BREADCRUMB ***/
/***  08 SCROLL TOP ***/
/***  09 TEAM ***/
/*******************
 01 TYPOGRAPHY START
********************/
body {
  font-size: 18px;
  font-family: "Rajdhani", sans-serif;
  color: #061b28;
  background-color: rgba(26, 124, 188, 0.1);
  scroll-behavior: smooth;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #061b28;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #1a7cbc;
}

h1, h2, h3, h4, h5, h6, p {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

ol, ul, dl {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  color: #acb8b6;
}

.btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 10px 35px;
  border: 2px solid #1a7cbc;
  background-color: #1a7cbc;
  border-radius: 30px;
  position: relative;
  -webkit-animation: all 0.5s ease;
          animation: all 0.5s ease;
  z-index: 1;
  overflow: hidden;
}
.btn:focus, .btn:hover {
  color: #ffffff;
  background-color: #1a7cbc;
  border-color: #1a7cbc;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn::before {
  background: #ffffff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}
.btn:hover::before {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.space-py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cdx-row {
  margin-bottom: -30px;
}
.cdx-row > div {
  margin-bottom: 30px;
}

.title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5px;
  margin-bottom: 40px;
  border-bottom: 3px solid #1a7cbc;
  position: relative;
}
.title::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #1a7cbc;
  position: absolute;
  bottom: -8px;
  left: 0;
  border: 2px solid #e7f8f4;
  animation: moveshap 8s linear infinite alternate-reverse;
}
.title h2 {
  text-transform: capitalize;
  font-weight: 800;
}

@-webkit-keyframes moveshap {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}

@keyframes moveshap {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}
/******************
 01 TEAM START
*******************/
.social-link li {
  display: inline-block;
}
.social-link li a {
  width: 38px;
  height: 38px;
  color: #ffffff;
  background-color: #1a7cbc;
  border-radius: 50%;
  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;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.social-link li:hover a {
  background-color: #061b28;
}
.social-link li + li {
  margin-left: 5px;
}

.team-grid {
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
          box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
  overflow: hidden;
  padding: 20px;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid.shadow-none {
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
}
.team-grid.shadow-none:hover {
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
}
.team-grid .img-wrap {
  position: relative;
}
.team-grid .img-wrap img {
  border-radius: 10px;
}
.team-grid .img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 27, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid .img-wrap .social-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  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;
  opacity: 0;
  visibility: hidden;
}
.team-grid .team-detail {
  padding-top: 25px;
  padding-bottom: 8px;
}
.team-grid .team-detail h4 {
  color: #061b28;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-grid:hover {
  -webkit-box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
          box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
}
.team-grid:hover .img-wrap::before {
  opacity: 1;
  visibility: visible;
}
.team-grid:hover .social-link {
  visibility: visible;
  opacity: 1;
}
.team-grid:hover .social-link li:first-child {
  -webkit-animation: fadeInUp 0.5s ease;
          animation: fadeInUp 0.5s ease;
}
.team-grid:hover .social-link li:nth-child(2) {
  -webkit-animation: fadeInUp 0.7s ease;
          animation: fadeInUp 0.7s ease;
}
.team-grid:hover .social-link li:nth-child(3) {
  -webkit-animation: fadeInUp 0.9s ease;
          animation: fadeInUp 0.9s ease;
}
.team-grid:hover .social-link li:nth-child(4) {
  -webkit-animation: fadeInUp 1.1s ease;
          animation: fadeInUp 1.1s ease;
}

/******************
 02 TEAM TWO START
*******************/
.team-grid2 {
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
          box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
  overflow: hidden;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid2 .img-wrap {
  position: relative;
  overflow: hidden;
}
.team-grid2 .img-wrap img {
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid2 .img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 27, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
.team-grid2 .team-detail {
  padding: 20px;
  background-color: #1a7cbc;
}
.team-grid2 .team-detail h4 {
  font-size: 24px;
  font-weight: 700;
}
.team-grid2 .team-detail h4 a {
  color: #ffffff;
}
.team-grid2 .team-detail p {
  color: #ffffff;
}
.team-grid2 .team-detail ul {
  margin-top: 5px;
}
.team-grid2 .team-detail ul li {
  display: inline-block;
}
.team-grid2 .team-detail ul li a {
  color: #ffffff;
}
.team-grid2 .team-detail ul li + li {
  margin-left: 10px;
}
.team-grid2:hover {
  -webkit-box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
          box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
}
.team-grid2:hover .img-wrap img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.team-grid2:hover .img-wrap::before {
  opacity: 1;
  visibility: visible;
}

/******************
 03 TEAM THREE START
*******************/
.team-grid3 {
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
          box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
  overflow: hidden;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid3 .img-wrap {
  position: relative;
  overflow: hidden;
}
.team-grid3 .img-wrap img {
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid3 .img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 27, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
.team-grid3 .img-wrap .social-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  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;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.team-grid3 .team-detail {
  padding: 20px;
  background-color: #1a7cbc;
}
.team-grid3 .team-detail h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-grid3 .team-detail h4 a {
  color: #ffffff;
}
.team-grid3 .team-detail p {
  color: #ffffff;
}
.team-grid3:hover {
  -webkit-box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
          box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
}
.team-grid3:hover .img-wrap img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.team-grid3:hover .img-wrap::before {
  opacity: 1;
  visibility: visible;
}
.team-grid3:hover .social-link {
  visibility: visible;
  opacity: 1;
}
.team-grid3:hover .social-link li:first-child {
  -webkit-animation: fadeInUp 0.5s ease;
          animation: fadeInUp 0.5s ease;
}
.team-grid3:hover .social-link li:nth-child(2) {
  -webkit-animation: fadeInUp 0.7s ease;
          animation: fadeInUp 0.7s ease;
}
.team-grid3:hover .social-link li:nth-child(3) {
  -webkit-animation: fadeInUp 0.9s ease;
          animation: fadeInUp 0.9s ease;
}
.team-grid3:hover .social-link li:nth-child(4) {
  -webkit-animation: fadeInUp 1.1s ease;
          animation: fadeInUp 1.1s ease;
}

/******************
 04 TEAM FOUR START
*******************/
.team-grid4 {
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
          box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
  overflow: hidden;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 20px;
}
.team-grid4 .img-wrap {
  position: relative;
  overflow: hidden;
}
.team-grid4 .img-wrap img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  border: 5px solid #1a7cbc;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid4 .team-detail {
  margin-top: 20px;
  padding-bottom: 15px;
}
.team-grid4 .team-detail h4 {
  font-size: 24px;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid4 .team-detail p {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid4 .team-detail .social-link {
  margin-top: 10px;
}
.team-grid4 .team-detail .social-link ul a {
  border-radius: 2px;
  width: 34px;
  height: 34px;
}
.team-grid4 .team-detail .social-link ul a i {
  font-size: 14px;
}
.team-grid4:hover {
  -webkit-box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
          box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
  background-color: #1a7cbc;
}
.team-grid4:hover .img-wrap img {
  border-color: #ffffff;
}
.team-grid4:hover .img-wrap::before {
  opacity: 1;
  visibility: visible;
}
.team-grid4:hover .team-detail h4 a {
  color: #ffffff;
}
.team-grid4:hover .team-detail p {
  color: #ffffff;
}
.team-grid4:hover .team-detail .social-link ul li a {
  background-color: #ffffff;
  color: #1a7cbc;
}

/******************
 04 TEAM FIVE START
*******************/
.team-grid5 {
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
          box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
  overflow: hidden;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.team-grid5 .img-wrap {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid5 .img-wrap img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid5 .img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 27, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid5 .team-detail {
  padding: 25px;
  width: 100%;
  background-color: #1a7cbc;
  position: absolute;
  bottom: -30%;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 15px;
}
.team-grid5 .team-detail h4 {
  font-size: 24px;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid5 .team-detail h4 a {
  color: #ffffff;
}
.team-grid5 .team-detail p {
  color: #ffffff;
}
.team-grid5 .team-detail ul {
  margin-top: 5px;
}
.team-grid5 .team-detail ul li {
  display: inline-block;
}
.team-grid5 .team-detail ul li a {
  color: #ffffff;
}
.team-grid5 .team-detail ul li + li {
  margin-left: 10px;
}
.team-grid5:hover {
  -webkit-box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
          box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
}
.team-grid5:hover .img-wrap img {
  border-color: #ffffff;
  -webkit-transform: scale(1.01) translateY(-2%);
          transform: scale(1.01) translateY(-2%);
}
.team-grid5:hover .img-wrap::before {
  opacity: 1;
  visibility: visible;
}
.team-grid5:hover .team-detail {
  bottom: 0;
  opacity: 1;
}

/******************
 04 TEAM SIX START
*******************/
.team-grid6 {
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
          box-shadow: 0 0 10px rgba(6, 27, 40, 0.1);
  overflow: hidden;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.team-grid6 .img-wrap {
  position: relative;
}
.team-grid6 .img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 27, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.team-grid6 .img-wrap .social-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  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;
  opacity: 0;
  visibility: hidden;
}
.team-grid6 .team-detail {
  padding: 25px;
  border-radius: 10px;
  border-bottom: 5px solid #1a7cbc;
}
.team-grid6 .team-detail h4 {
  color: #061b28;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-grid6:hover {
  -webkit-box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
          box-shadow: 10px 0 30px rgba(6, 27, 40, 0.15);
}
.team-grid6:hover .img-wrap::before {
  opacity: 1;
  visibility: visible;
}
.team-grid6:hover .social-link {
  visibility: visible;
  opacity: 1;
}
.team-grid6:hover .social-link li:first-child {
  -webkit-animation: fadeInUp 0.5s ease;
          animation: fadeInUp 0.5s ease;
}
.team-grid6:hover .social-link li:nth-child(2) {
  -webkit-animation: fadeInUp 0.7s ease;
          animation: fadeInUp 0.7s ease;
}
.team-grid6:hover .social-link li:nth-child(3) {
  -webkit-animation: fadeInUp 0.9s ease;
          animation: fadeInUp 0.9s ease;
}
.team-grid6:hover .social-link li:nth-child(4) {
  -webkit-animation: fadeInUp 1.1s ease;
          animation: fadeInUp 1.1s ease;
}

/*******************
 02 HEADER START
********************/
header {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ffffff;
  z-index: 9;
  position: relative;
}
header .header-contain {
  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;
}
header .codex-brand img {
  width: 150px;
  height: auto;
}
header .codex-brand .dark-logo {
  display: none;
}
header .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .menu-list a {
  color: #061b28;
  font-size: 18px;
  font-weight: 600;
}
header .menu-list > li {
  position: relative;
}
header .menu-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 18px;
}
header .menu-list > li > a i {
  font-weight: 600;
  margin-left: 10px;
}
header .menu-list li {
  text-transform: capitalize;
}
header .btn {
  padding: 6px 25px;
  font-size: 14px;
}
header .menu-action {
  margin-left: 20px;
  display: none;
  position: relative;
}
header .menu-action i {
  font-size: 24px;
}
header .menu-action .close-menu {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  color: #ffffff;
}
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-animation: fadeInDown 0.5s ease;
          animation: fadeInDown 0.5s ease;
  -webkit-box-shadow: 0 0 10px 0 rgba(6, 27, 40, 0.1);
          box-shadow: 0 0 10px 0 rgba(6, 27, 40, 0.1);
}

/***************
 03 INTRO START
****************/
.intro {
  background-image: url("../images/demo/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(100vh - 87px);
  text-align: center;
  position: relative;
}
.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 27, 40, 0.8);
}
.intro .intro-contain {
  height: calc(100vh - 87px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  text-transform: capitalize;
}
.intro .intro-contain h1 {
  font-weight: 800;
  font-size: 45px;
  margin-bottom: 20px;
}
.intro .intro-contain p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 30px;
}
.intro .intro-contain .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  font-size: 18px;
}
.intro .intro-contain .btn i {
  margin-right: 10px;
}

/***************
 04 DEMO START
****************/
.demo-grid {
  text-align: center;
}
.demo-grid .img-wrap {
  overflow: hidden;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 30px 5px rgba(6, 27, 40, 0.05);
          box-shadow: 0 0 30px 5px rgba(6, 27, 40, 0.05);
  position: relative;
}
.demo-grid .img-wrap .hover-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: rgba(6, 27, 40, 0.8);
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 8px;
}
.demo-grid .img-wrap .hover-link i {
  color: #ffffff;
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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;
}
.demo-grid .img-wrap .hover-link i::before {
  color: #1a7cbc;
  font-size: 18px;
}
.demo-grid .img-wrap img {
  width: 100%;
  height: auto;
}
.demo-grid .demo-detail {
  margin-top: 20px;
}
.demo-grid .demo-detail h3 {
  font-weight: 600;
  text-transform: capitalize;
}
.demo-grid:hover .hover-link {
  opacity: 1;
  visibility: visible;
}

/******************
 05 FEATHURES START
*******************/
.feathure .cdx-row {
  margin-bottom: -40px;
}
.feathure .cdx-row > div {
  margin-bottom: 40px;
}

.feathure-grid {
  text-align: center;
  background-color: #ffffff;
  padding: 45px 0;
  border-radius: 5px;
}
.feathure-grid .icon-wrap {
  background-color: rgba(26, 124, 188, 0.1);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  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;
  margin-left: auto;
  margin-right: auto;
}
.feathure-grid .icon-wrap i {
  color: #1a7cbc;
}
.feathure-grid .icon-wrap img {
  width: auto;
  height: 35px;
}
.feathure-grid h5 {
  font-weight: 600;
  margin-top: 15px;
  text-transform: uppercase;
}

/******************
 06 FOOTER START
*******************/
footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1a7cbc;
  text-align: center;
}
footer p {
  color: #ffffff;
}

/********************
 07 BREADCRUMB START
*********************/
.cdx-breadcrumb {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #1a7cbc;
}
.cdx-breadcrumb .breadcrumb-contian {
  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;
}
.cdx-breadcrumb .breadcrumb-contian h1 {
  color: #ffffff;
  font-weight: 700;
  text-transform: capitalize;
}
.cdx-breadcrumb .breadcrumb-contian .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cdx-breadcrumb .breadcrumb-contian .breadcrumb-list li a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
}
.cdx-breadcrumb .breadcrumb-contian .breadcrumb-list li a i {
  margin: 0 15px;
}

/*********************
 08 SCROLL TOP  START
*********************/
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 22px;
  border: none;
  outline: none;
  background: #1a7cbc;
  color: #ffffff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  -webkit-box-shadow: 0 3px 24px rgba(6, 27, 40, 0.1);
          box-shadow: 0 3px 24px rgba(6, 27, 40, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  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;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  color: #ffffff;
}

@media screen and (min-width: 992px) {
  header .menu-list > li {
    padding: 10px 0;
  }
  header .menu-list > li:hover > a {
    color: #1a7cbc;
  }
  header .menu-list > li:hover .submenu-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header .menu-list > li + li {
    margin-left: 40px;
  }
  header .menu-list li {
    position: relative;
  }
  header .menu-list li .submenu-list, header .menu-list li .secodnmenu-list {
    position: absolute;
    min-width: 220px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 10px 0 rgba(6, 27, 40, 0.1);
            box-shadow: 0 0 10px 0 rgba(6, 27, 40, 0.1);
    border-radius: 5px;
    border-top: 4px solid #1a7cbc;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .menu-list li .submenu-list li:last-child a, header .menu-list li .secodnmenu-list li:last-child a {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  header .menu-list li .submenu-list {
    top: 100%;
    left: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  header .menu-list li .submenu-list a {
    padding: 10px 20px;
    display: block;
    width: 100%;
  }
  header .menu-list li .submenu-list a i {
    top: 16px;
    position: absolute;
    right: 15px;
    font-weight: 600;
  }
  header .menu-list li .submenu-list > li:hover > a {
    background-color: #1a7cbc;
    color: #ffffff;
  }
  header .menu-list li .submenu-list li {
    width: 100%;
  }
  header .menu-list li .submenu-list li:hover .secodnmenu-list {
    opacity: 1;
    visibility: visible;
  }
  header .menu-list li .submenu-list li + li {
    border-top: 1px solid #e8e8e8;
  }
  header .menu-list li .submenu-list li .secodnmenu-list {
    left: 100%;
    top: 0;
  }
  header .menu-list li .submenu-list li .secodnmenu-list li:hover > a {
    background-color: #1a7cbc;
    color: #ffffff;
  }
}
@media screen and (max-width: 1199px) {
  .intro .intro-contain h1 {
    font-size: 38px;
  }
}
@media screen and (max-width: 991px) {
  .space-py-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .intro {
    height: auto;
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .intro .intro-contain {
    width: auto;
    height: auto;
  }
  .intro .intro-contain h1 {
    font-size: 38px;
  }
  header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  header .codex-brand img {
    width: 135px;
  }
  header .menu-list {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    height: 135px;
    overflow: auto;
    background-color: #ffffff;
    display: block;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 40px 5px rgba(6, 27, 40, 0.05);
            box-shadow: 0 0 40px 5px rgba(6, 27, 40, 0.05);
    margin-top: 15px;
  }
  header .menu-list.open {
    opacity: 1;
    visibility: visible;
  }
  header .menu-list li {
    display: block;
    position: relative;
  }
  header .menu-list li + li {
    border-top: 1px solid #e8e8e8;
  }
  header .menu-list li a {
    padding: 10px 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
  }
  header .menu-list li .submenu-list {
    border-top: 1px solid #e8e8e8;
  }
  header .menu-list li .submenu-list a {
    padding-left: 30px;
    color: #acb8b6;
    font-size: 14px;
  }
  header .menu-list li .submenu-list a i {
    position: absolute;
    top: 15px;
    right: 20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    font-weight: 600;
    font-size: 16px;
  }
  header .menu-list li .submenu-list li .secodnmenu-list {
    border-top: 1px solid #e8e8e8;
  }
  header .menu-list li .submenu-list li .secodnmenu-list a {
    padding-left: 45px;
  }
  header .menu-list > li > a i {
    margin-left: auto;
  }
  header .btn {
    margin-left: unset;
  }
  header .menu-action {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .space-py-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cdx-breadcrumb {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cdx-breadcrumb .breadcrumb-contian .breadcrumb-list li a {
    font-size: 18px;
  }
  .intro {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .intro .intro-contain h1 {
    font-size: 32px;
  }
  .intro .intro-contain p {
    font-size: 16px;
  }
  .feathure .cdx-row {
    margin-bottom: -30px;
  }
  .feathure .cdx-row > div {
    margin-bottom: 30px;
  }
  .feathure-grid .icon-wrap {
    width: 65px;
    height: 65px;
  }
  .feathure-grid .icon-wrap img {
    height: 30px;
  }
  .feathure-grid h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  body {
    font-size: 16px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .intro .intro-contain h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .intro .intro-contain p {
    margin-bottom: 25px;
  }
  .feathure-grid {
    padding: 30px 0;
  }
  .feathure-grid .icon-wrap {
    width: 58px;
    height: 58px;
  }
  .feathure-grid .icon-wrap img {
    height: 26px;
  }
  .feathure-grid h5 {
    font-size: 16px;
  }
  .cdx-breadcrumb {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .cdx-breadcrumb .breadcrumb-contian {
    display: block;
    text-align: center;
  }
  .cdx-breadcrumb .breadcrumb-contian h1 {
    font-size: 22px;
  }
  .cdx-breadcrumb .breadcrumb-contian .breadcrumb-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5px;
  }
}
@media screen and (max-width: 370px) {
  .feathure .cdx-row > div {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */