:root {
  --font:'Manrope', sans-serif;
  --heading:'Lato', sans-serif;
  --primary:#0b3b5e;
  --secondary:#ff6d2e;
  --base:#f6f4ec;	
  --black:#687469;
  --white: #ffffff;
  --text-body: #757873;
  --text-dark: #0e2207;
  --bg-dark: #010101;
  --bg-light: #f8f4f1;
  --bg-light-2: #dbf4f5;
  --bg-light-3: #f5f9f3;
  --border-dark: #212529;
  --border-light: #eaeaea;
  --footercolor:#d8e9d6;	
  --offwhitecolor: #E8E8E8;	
}
body {font-family:var(--font);;font-style: normal; font-size: 16px; font-weight: 400; line-height: 1.5; color: var(--text-body); padding: 0; margin: 0; overflow-x: hidden;}
.page-wrapper { overflow-x: hidden; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { margin-bottom: 0.5rem; font-weight: 500; color: var(--primary);}
h1, .h1 { font-size: 80px; font-style: normal; line-height: 88px;}
h2, .h2 { font-size: 50px; font-style: normal; line-height: 60px; font-weight: normal;}
h3, .h3 { font-size: 36px; font-style: normal; line-height: 46px; }
h4, .h4 { font-size: 30px; font-style: normal; line-height: 40px; }
h5, .h5 { font-size: 24px; font-style: normal; line-height: 34px; }
h6, .h6 { font-size: 20px; font-style: normal; line-height: 30px; }
p { line-height: 1.7; }
.lead { font-size: 1.25rem; font-weight: 500; }
.z-index-1 {z-index: 99; position: relative;}
section{padding: 5rem 0}
.title-bg:before{content: ""; position: absolute; left: 0; bottom: 5px; background: red; width: 100%; height: 15px; opacity: 0.1}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {line-height: inherit;}
a:hover { color: var(--primary);}
a.text-dark:hover { color: var(--primary) !important;}
/*Transition*/
a, i, .btn, button, img, span, .dropdown-item, .f-icon-hover, .hover-translate { -webkit-transition: all 0.5s ease-in-out 0s; -moz-transition: all 0.5s ease-in-out 0s; -ms-transition: all 0.5s ease-in-out 0s; -o-transition: all 0.5s ease-in-out 0s; transition: all 0.5s ease-in-out 0s; }
a, a:hover { text-decoration: none; }
.hover-translate:hover { -webkit-transform: translate3d(0, -10px, 0); -moz-transform: translate3d(0, -10px, 0); transform: translate3d(0, -10px, 0); }
.font-w-3 { font-weight: 300; }
.font-w-4 { font-weight: 400; }
.font-w-5 { font-weight: 500; }
.font-w-6 { font-weight: 600; }
.font-w-7 { font-weight: 700; }
.font-w-8 { font-weight: 800; }
.font-w-9 { font-weight: 900; }
/*Button Clip*/
.clip-btn {
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%);
}
.clip-sm-btn {
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}
.clip-md-btn {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
/*Button*/
.btn { font-weight: 600; padding: 0.75rem 2rem; border-radius: 5rem;}
.btn-primary {
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  background: var(--secondary);
  height: 45px;
  display: inline-block;
  line-height: 45px;
  padding: 0 25px;
  position: relative;
  overflow: hidden;
  text-align: center;
	border: 1px solid var(--secondary);
}
.btn-primary:hover, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle { 
	color:var(--white);
	background-color:var(--primary);
	border-color:var(--primary); 
}
.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { color: var(--primary); background-color: var(--white); border-color: var(--primary); }
.btn-dark {font-size: 18px; background-color:var(--base); border-color:var(--base); }
.btn-dark:hover { color:var(--base); background-color:var(--white); border-color:var(--base); }
.btn.focus, .btn:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { box-shadow: none; }
button:focus { outline: none; }
.btn-block { display: block; width: 100%; }
.btn-link{color: var(--text-dark); text-decoration: none;}
.btn-link:hover{color: var(--primary);}
.btn-primary:hover, .btn-dark:hover {  }

.btn-arrow { position: relative; display: inline-block; padding: 8px 0; }
.btn-arrow:before { content: ""; display: block; width: 40px; height: 1px; background-color: #5a5351; top: 50%; transition: width 0.5s ease-out; }
.btn-arrow:after { content: ""; display: block; width: 10px; height: 10px; border-top: 1px solid #5a5351; border-right: 1px solid #5a5351; transform: rotate(45deg); top: calc(50% - 5px); position: absolute; right: 1px; }
.btn-arrow:hover { cursor: pointer; }
.btn-arrow:hover:before { width: 60px; background-color: var(--primary); }
.btn-arrow:hover:after { border-top-color: var(--primary); border-right-color: var(--primary); }
/*Background*/
.bg-primary { background-color: var(--primary) !important; }
.bg-light { background-color:#F4F4F4 !important; }
.bg-light-2 { background-color: var(--bg-light-2) !important; }
.bg-light-3 { background-color: var(--bg-light-3) !important; }
.bg-dark { background-color: var(--black) !important; }
/*Text Color */
.text-dark{color: var(--text-dark) !important;}
.text-primary {color: var(--primary) !important;}
/*Border*/
.border-light { border-color: var(--border-light) !important; }
/*Shadow*/
.shadow-primary { -webkit-box-shadow: 0 0.5rem 1rem rgba(110, 0, 255, .15) !important; box-shadow: 0 0.5rem 1rem rgba(110, 0, 255, .15) !important; }
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important; }
.shadow { box-shadow: 0 10px 55px 5px rgba(137, 173, 255, .15) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important; }
.shadow-none { box-shadow: none !important; }
/*title*/
.block-text {font-size: 15px;line-height: 2.125;color:var(--primary);margin-bottom: 0;font-weight: 500;
}
@media (min-width: 992px) { 
	.block-text {font-size:16px;} 
}
.block-title {margin-bottom:30px;}
@media (min-width: 1200px) {
	.block-title {margin-bottom:25px;} 
}
.block-title-image {background-image: url(../images/eggytales-egg-icon.png);background-size:100%;width:160px;height:65px;background-position:center center;background-repeat:no-repeat;}
.block-title.text-center .block-title-image {margin-left: auto;margin-right: auto;}
.block-title p {margin: 0;font-size:24px;font-weight:700;color:var(--primary);letter-spacing:0.2em;line-height:1;margin-top:10px;margin-bottom:18px;}
@media (min-width: 1440px) { 
	.block-title p {font-size:18px;} 
}
.block-title h3 {margin: 0;font-size: 38px;font-weight: bold;color: #255946;}
@media (min-width: 1440px) { 
	.block-title h3 {font-size:32px;} 
}
/*Section Title*/
.sec-title {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 50px;
}
.sec-title .icon {
  position: relative;
  display: block;
  margin-bottom: 2px;
}
.sec-title-tagline {
 position: relative;
display: inline-block;
color: var(--secondary);
font-size: 20px;
line-height: 20px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
padding-bottom: 10px;
}

.sec-title-title {
  font-size:45px;
  line-height: 1em;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.04em;
}
.sec-title-title span {
	color:var(--secondary);
}
/*Preloader*/
/*Animation*/
@keyframes rotate-infinite-2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes img-blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/*Preloader*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  transition: 0.3s;
}

.preloader-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height:180px;
  width:180px;
}
@media (max-width: 575px) {
  .preloader-thumb {
    height: 200px;
    width: 200px;
  }
}
.preloader-thumb img {
  width:140px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: img-blink 1s ease-in-out infinite alternate;
  border-radius: 30px;
}
.preloader-thumb-wrap {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.preloader-border {
  /*border: 2px dashed var(--primary);*/
  height: 100%;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate-infinite-2 15s linear infinite;
}
/*Header Area css*/
/*Topbar*/
.topbar {
	background: var(--primary);
	padding: 6px 0;
}
@media (max-width: 991px) {
.topbar {display: none;}
}
.topbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.topbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.topbar-left p {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.topbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.topbar-right > a {
  color: var(--white);
font-size: 13px;
-webkit-transition: all 500ms ease;
transition: all 500ms ease;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-weight: 500;
}
.topbar-right > a + a {
  margin-left: 30px;
}
.topbar-right > a > i {
  font-size: 14px;
  color: var(--secondary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-right: 10px;
}
.topbar-right > a:hover {
  color: var(--black);
}
.topbar-right > a:hover > i {
  color: var(--black);
}
.topbar-right .fa-phone {
  transform: scaleX(-1);
}
#header-wrap {
  position: relative;
  z-index: 999;
}
#header-wrap.fixed-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999 !important;
  animation: smoothScroll 1s forwards;
  background:#fff;	
}
/*--navigation--*/
.navbar {
  padding: 0;
}
.navbar {
  border-bottom-left-radius:0rem;
  border-bottom-right-radius:0rem;
}
.navbar-nav .nav-item.dropdown .dropdown-menu {
  background: var(--white);
  padding: 1rem;
  border-radius: 1rem;
  border: none;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(110, 0, 255, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(110, 0, 255, 0.15) !important;
}
.navbar-brand {
  margin-right: 0;
}
header .navbar-nav .nav-item {
  margin: 0 2px;
}
.navbar-nav .nav-link {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  padding:0.4rem 0.4rem !important;
  border-radius: 1rem;
  text-transform: uppercase;
  position: relative;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover,
.navbar-nav .show > .nav-link,
.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--secondary);
}

.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus,
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--secondary);
  color: var(--white);
}
.navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 0.5rem 1.5rem;
  font-size: 15px;
  /*border-radius: 1rem;*/
  margin-bottom: 7px;
  font-weight: 500;
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%);	
}
.navbar-nav .nav-item.dropdown .dropdown-menu li:last-child .dropdown-item {
  margin-bottom: 0;
}

.nav-link.dropdown-toggle::after {
  font-family: "Font Awesome 5 pro";
  content: "\f078";
  border: none;
  vertical-align: middle;
  font-weight: 600;
  font-size: 12px;
  margin-left: 5px;	
}

@media (max-width: 991.98px) {
  /*Header*/
  #header-wrap > .navbar-toggler {
    background: none;
    height: 40px;
    width: 40px;
    padding: 0;
    border-radius: 0;
    margin-right: 0;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .site-header .navbar-nav .nav-item {
    margin: 0;
    margin-bottom: 5px;
  }
  .site-header .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }
  .navbar-collapse {
    border-radius: 1rem;
    background: var(--white);
    max-height: 400px;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 99;
    top: 80px;
    width: 100%;
    overflow: auto;
    border: medium none;
    -webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.15);
    -moz-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.15);
    box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.15);
	border-top: 3px solid var(--secondary);  
  }
  .navbar-nav .dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 15px;
    margin: -0.6rem 0.8em 0 0;
  }
}
.navbar-toggler {
  border: var(--bs-border-width) solid var(--secondary);
  background-color:var(--secondary);
}

.tp-header__tel-icon span {
  width:50px;
  height:50px;
  line-height:50px;
  border-radius: 50%;
  text-align: center;
  background-color:var(--primary);
  display: inline-block;
  font-size: 24px;
  color: var(--white);
  margin-right:10px;
  position: relative;
  overflow: hidden;
}
.tp-header__tel-text span {
color: var(--secondary);	
  display: block;
  font-size: 14px;
  padding-bottom:0px;
  font-weight: 600;
}
.tp-header__tel-text a {
  font-size: 18px;
  color:var(--primary);
  font-weight: 700;
}
.tp-header__tel-text a:hover {
  color: var(--secondary);
}
.tp-header__tel-box {
  padding-left: 30px;
}
/*About Section*/
.about-section {
  position: relative;
  padding: 120px 0 70px;
}

.about-section .sec-title {
  margin-bottom: 25px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-left:130px;
  padding-top: 80px;
  margin-left: 30px;
  margin-top: 60px;
  /*background: #ffffff;*/
}

.about-section .text {
  color:var(--text-dark);
  margin-bottom: 20px;
}

.about-section blockquote {
  font-size: 20px;
  line-height: 32px;
  padding-left: 25px;
  border-left:4px solid var(--secondary);
  color:var(--primary);
  font-weight: 700;
  margin-bottom: 30px;
}

.about-section .bottom-box {
  position: relative;
  padding-right: 250px;
}

.about-section .list-style-one {
  margin-bottom: 40px;
}

.about-section .bottom-box .video-box {
  position: absolute;
  right: 0;
  top: 0;
  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;
}

.about-section .video-box .play-now {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -35px;
  margin-top: -35px;
}

.about-section .image-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  position: relative;
  margin-right: -135px;
}

.about-section .experience {
  position: absolute;
  top: 80px;
  left: -80px;
  max-width: 190px;
  background:var(--secondary);
  font-size: 18px;
  padding:20px 20px 20px 30px;
  line-height: 22px;
  color: #ffffff;
}
.about-section .experience:before {
  position: absolute;
  left: 0;
  top: 0;
  border-bottom: 30px solid var(--secondary);
  border-right: 190px solid transparent;
  content: "";
  margin-top: -30px;
}
.about-section .experience strong {
  font-size: 50px;
  color: #ffffff;
  display: block;
  margin-bottom: 20px;
}

.about-section .image-column .image-1 {
  position: relative;
  margin-bottom: 50px;
}

.about-section .image-column .image-1:before {
  position: absolute;
  right: 130px;
  bottom: -50px;
  height: 10px;
  width: 200px;
  background: var(--secondary);
  content: "";
}

.about-section .image-column .image-2 {
  position: absolute;
  left: -80px;
  bottom: -50px;
  border: 20px solid #ffffff;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}
/*Call To Action Two*/
.call-to-action {
  position: relative;
  z-index: 2;
  padding:100px 0px;
}
.call-to-action::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  content: "";
  opacity: 0.85;
}
.call-to-action .sec-title {margin-top:0px;margin-bottom:0px;}
.call-to-action .sec-title-tagline {padding-bottom:20px}
.call-to-action .sec-title h2 {color:var(--white)}
.call-to-action .sec-title .btn-primary {
  margin-top: 20px;
  height: 60px;
  line-height: 60px;	
}
.call-to-action .sec-title .btn-primary:hover {
	color: var(--secondary);
	background-color: var(--white);
	border-color: var(--white);
}
/*Project Section*/
.project-section {
  position: relative;
  padding: 120px 0 90px;
}

.project-block {
  position: relative;
}

.project-block .inner-box {
  position: relative;
  padding: 0 0px 30px;
}

.project-block .image-box {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.project-block .image {
  position: relative;
  margin-bottom: 0px;
}
.project-block .image a {
  display: block;
  width: 100%;
}
.project-block .image::before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.project-block .image::after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}
.project-block .image img {
  width: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.project-block .inner-box:hover .image:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 600ms linear;
  transition: all 600ms linear;
}

.project-block .inner-box:hover .image:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

.project-block .content-box {
  position: relative;
  margin-top: -50px;
  padding-left:20px;
}
.project-block .content-box .inner {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding:18px 0px 18px 10px;
}
.project-block .content-box .inner .title {
 font-size: 18px;
line-height: 30px;
letter-spacing: 0.07em;
text-transform: uppercase;
color: var(--secondary);
font-weight: 800;
}
.project-block .content-box .inner h4 {
  display: block;
  font-size:16px;
  color:var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
}
.project-block .content-box .inner h4 a {
  color: var(--primary);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block .content-box .inner h4 a:hover {
  color: var(--primary);
}
.project-block .content-box .inner .icon {
  position: absolute;
  right: 0;
  top: 0;
  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;
  height: 100%;
  width: 50px;
  color: #fff;
  font-size: 18px;
  background-color:var(--secondary);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.project-block .inner-box:hover .content-box .icon {
  background-color: var(--primary);
}
/*Page Title*/
@-webkit-keyframes "ripple" {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes "ripple" {
  70% {
    -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.page-title {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0 110px;
  min-height: 250px;
}
.page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background:var(--primary);
  opacity: 0.8;
  content: "";
}
.page-title .title {
  font-size: 64px;
color:var(--white);
margin-bottom: 17px;
position: relative;
	font-weight: 700;
}
.page-title .text {
  position: relative;
  color:var(--white);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.05em;
  max-width: 520px;
}

.page-breadcrumb {
  position: relative;
  margin-top: 5px;
  padding-left:0;	
}
.page-breadcrumb li {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding-right: 13px;
  color: #ffffff;
  font-size: 14px;
  font-weight:500;
  text-transform: capitalize;
}
.page-breadcrumb li:after {
  position: absolute;
  content: "\f105";
  right: -6px;
  top: 1px;
  color:var(--white);
  font-size: 14px;
  font-weight:100;
  font-family: "Font Awesome 5 Pro";
}
.page-breadcrumb li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.page-breadcrumb li:last-child::after {
  display: none;
}
.page-breadcrumb li a {
  color:var(--secondary);
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.page-breadcrumb li a:hover {
  color:var(--white);
}
/*Services */
.services {
	padding:60px 0;
	position:relative;
}
.services .sec-title{
  margin-bottom:25px;
}
.services-content p{
  font-size: 16px;
  line-height: 29px;
  color: #242C31;
}
.services-list{
  margin-top:10px;
}
.services-list ul{padding-left:0;}
.services-list ul li{
  position: relative;
  margin-bottom:5px;
  font-weight: 600;
  font-size:15px;
  line-height:24px;
  color: var(--primary);
  list-style:none;
}
.services-list ul li::before{
 font-family: "Font Awesome 5 Pro";
content: '\f00c';
margin: 0 10px 0 3px;
font-size: 13px;
color: var(--secondary);
font-weight: 600;
}

.services-right-image{
  margin-bottom: 10px;
  width: 100%;
  position: relative;
}
.services-right-image-top{
  height: 330px;
}
.services-right-image-bottom{
  height: 254px;
}
/* Home-Two-About */
/*Contact Us*/
.contact-info-boxes .info-box .icon {
	background-color: var(--secondary);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	height: 85px;
	width: 85px;
	border-radius: 50%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--white);
	position: relative;
	z-index: 2;
	font-size: 40px;
}

.contact-info-boxes .info-box .info-content {
	background-color: var(--primary);
	padding: 70px 30px 25px;
	margin-top: -43px;
}

.contact-info-boxes .info-content h5 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--white)
}
.contact-info-boxes .info-box .info-content p{color: var(--white)}

/*Footer*/
footer {position:relative;}
/* Widget Section */
footer .main-footer {
  position: relative;
  background-color: var(--primary);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding:50px 0 40px;
}
footer .main-footer:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  opacity: 0.95;
  content: "";
}

.footer-logo {
 margin-bottom:40px;
 position:relative;
}
.fot-contact-info {
 font-size:16px;
 overflow: hidden;
	position:relative;
}
.fot-contact-info h6 {
 font-size: 16px;
 margin-bottom: 5px;
 text-transform: uppercase;
	
}
.fot-contact-info i {
 font-size: 30px;
 margin-top: 2px;
 line-height: 1;
 float: left;
}
.fot-contact-info i:before {
 font-size: 40px;
}
.fot-contact-info i.fa-map-marker:before {
 font-size: 37px;
}
.fot-contact-info img {
 width: 30px;
 margin-top: 3px;
 float: left;
}
.fot-contact-info p {
 margin-bottom: 0;
}
.fot-contact-info .info-text {
 padding-left: 50px;
 font-weight: 500;
}
.fot-contact-info.text-light {
 color: #fff;
}
.fot-contact-info.text-light h6,
.contact-info.text-light i {
 color: #f00;
}
.fot-contact-info.box-style2 {
 width: 100%;
}
.fot-contact-info.text-light h6 {
 font-size: 18px;
 color: var(--secondary);
 font-weight: 700;
 text-transform: none;
 padding-top: 20px;
}
.fot-contact-info.box-style2 i {
 float: none;
 margin-top: 0px;
 vertical-align: bottom;
}
.fot-contact-info.box-style2 .box-icon {
 background: var(--secondary);
width: 80px;
height: 80px;
margin: auto;
border-radius: 50%;
line-height: 60px;
color: var(--white);
}
.fot-contact-info.box-style2 p {
 color: #fff;
 margin-bottom: 15px;
}
.fot-contact-info.box-style2 p a {
 color:#fff;
}
.border-left .box-style2,
.border-right .box-style2 {
 position: relative;
}
.border-left .box-style2:before {
 position: absolute;
 height: 70%;
 width: 1px;
 left: 0;
 bottom: 12%;
 background: rgba(255, 255, 255, 0.2);
 content: "";
 display: block;
}
.border-right .box-style2:after {
 position: absolute;
 height: 70%;
 width: 1px;
 right: 0;
 bottom: 12%;
 background: rgba(255, 255, 255, 0.2);
 content: "";
 display: block;
}
.footer-menu {
 margin:45px 0;
 position:relative;	
}
.footer-menu ul {
 padding-left: 0;
 margin: 0;
}
.site-footer .footer-menu ul li {
 margin-bottom: 12px;
}
.footer-menu ul {
 list-style: none;
 text-align: center;
}
.footer-menu ul li {
 display: inline-block;
 margin: 0px 29px;
}
.footer-menu ul li a {
 font-size: 16px;
 font-weight: 500;
 color: #fff;
}
.footer-menu ul li a:visited {
 color: #fff;
}
.footer-bottom {
background:#07304d;	
 padding:15px 0;
 
}
.footer-bottom p {
 line-height: 24px;
 margin-top: 13px;
 color:#FFF;
}
.footer-bottom p a {
 color:#FFF;
}
.footer-bottom p a:hover {
 color:#f00;
 ;
}