* {
	margin: 0;
	padding: 0;
 
	/* text-transform: uppercase; */

  
}
#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li:hover a.active span{
  width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    background: transparent;
    box-sizing: border-box;
    border:
     6px solid #ffffff !important;
     
}
#fp-nav ul li a span, .fp-slidesNav ul li a span{
  border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #fff !important;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;

}
.fp-tableCell {
  /* display: table-cell; */
  /* vertical-align: middle; */
  width: 100%;
  height: 100%;
}
/* .fp-section.fp-table, .fp-slide.fp-table{
    display: block !important;
    table-layout: fixed;
    width: 100%;
    height: 512px !important;
} */
/* @font-face {
  font-family: "Gotham";
  src:url("images/gotham/GothamBold.ttf");
  src:url("images/gotham/GothamLight.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham-Book';
  src: url('images/gotham/Gotham-Book.eot');
  src: url('images/gotham/Gotham-Book.eot?#iefix') format('embedded-opentype'),
        url('images/gotham/Gotham-Book.woff2') format('woff2'),
        url('images/gotham/Gotham-Book.woff') format('woff'),
        url('images/gotham/Gotham-Book.ttf') format('truetype'),
        url('images/gotham/Gotham-Book.svg#Gotham-Book') format('svg');
  font-weight: normal;
  font-style: normal;
} */
:root{
  font-family: "Gotham";
--sl-font-bold:'Gotham' ;
--sl-font-regular:'Gotham';
--animate-delay: 0.5s;

}
.bx-flashing{
  -webkit-animation: flashing 1.5s infinite linear;
  animation: flashing 2.5s infinite linear !important;
}
.offcanvas-animate {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.nav-link-animate {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}
        /* Define custom styles for animations */
        .animated {
          visibility: hidden;
      }

      .container.scroll-down {
      position: fixed;
    top: 75rem;
    left: auto;
    right: -122rem;
      }
      .mouse {
    width: 30px;
    height: 65px;
    border: 3px solid #ffffff;
    border-radius: 75px;
    position: relative;
      }
      .mouse::before {
        content: "";
        width: 12px;
        height: 12px;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
        border-radius: 50%;
        opacity: 1;
        animation: wheel 2s infinite;
        -webkit-animation: wheel 2s infinite;
      }
      .scroll-link {
        text-decoration: none;
      }
      @keyframes wheel {
        to {
          opacity: 0;
          top: 60px;
        }
      }
      @-webkit-keyframes wheel {
        to {
          opacity: 0;
          top: 60px;
        }
      }
      /* CSS Transition */
.animate-modal-icon {
  transition: transform 0.5s ease-in-out;
  transform: translateX(-50%) translateY(-50%);
}
/* #modalIcon1{
  transition: transform 0.5s ease-in-out;

  transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
}
.icon-text1{
  position: absolute;
  left: 1rem;
  top: -2rem;
  left: 54rem;
  right: 50rem;
  transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
}
.icon-text1 svg {
  fill: white;
    stroke: white;

} */
/* Keyframe animations for icon movement */
@keyframes moveIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes moveOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(50px);
    opacity: 0;
  }
}

/* Keyframe animations for icon movement */
@keyframes moveIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(50px);
  }
}

/* Modal animations */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.modal.fade .modal-dialog {
  transform: translateY(-50px);
  opacity: 0;
}

/* Icon animations */
.icon-text {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.icon-text.show {
  opacity: 1;
  transform: translateY(0);
  animation: moveIn 0.5s forwards;
}

.icon-text.hide {
  opacity: 0;
  transform: translateY(50px);
  animation: moveOut 0.5s forwards;
}

/* Button hover effects */
.modal-footer .btn {
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}

.modal-footer .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(0, 0, 0, 0.05);
  transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
  border-radius: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.modal-footer .btn:hover::before {
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
}

.modal-footer .btn span {
  position: relative;
  z-index: 1;
}

/* Icon animations */
.icon-text1, .icon-text2, .icon-text3 {
  transition: all 0.3s ease-in-out;
}

.icon-text1.show, .icon-text2.show, .icon-text3.show {
  animation: moveIn 0.5s forwards;
}

.icon-text1.hide, .icon-text2.hide, .icon-text3.hide {
  animation: moveOut 0.5s forwards;
}

#modalIcon1, #modalIcon2, #modalIcon3, #modalIcon4, #modalIcon5, #modalIcon6, #modalIcon7, #modalIcon8, #modalIcon9, #modalIcon10, #modalIcon11, #modalIcon12, #modalIcon13, #modalIcon14, #modalIcon15, #modalIcon16, #modalIcon17 {
  transition: transform 0.5s ease-in-out;

}

.icon-text1, .icon-text2, .icon-text3, .icon-text4, .icon-text5, .icon-text6, .icon-text7, .icon-text8, .icon-text9, .icon-text10, .icon-text11, .icon-text12,  .icon-text13, .icon-text14, .icon-text15, .icon-text16, .icon-text17 {
  position: absolute;
  left: 1rem;
  top: -2rem;
  left: 54rem;
  right: 50rem;
  transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
}

.icon-text1 svg, .icon-text2 svg, .icon-text3 svg, .icon-text4 svg, .icon-text5 svg, .icon-text6 svg, .icon-text7 svg, .icon-text8 svg, .icon-text9 svg, .icon-text10 svg, .icon-text11 svg, .icon-text12 svg, .icon-text13 svg, .icon-text14 svg, .icon-text15 svg, .icon-text16 svg, .icon-text17 svg {
  fill: white;
  stroke: white;
}

/* Adjust individual icon-text positioning as needed */
.icon-text2 { top: -2.5rem; left: 55rem; }
.icon-text3 {top: -2.5rem; left: 55rem; }
.icon-text4 { top: -2.5rem; left: 55rem; }
.icon-text5 { top: -2.5rem; left: 55rem; }
.icon-text6 {top: -2.5rem; left: 55rem;}
.icon-text7 { top: -2.5rem; left: 55rem; }
.icon-text8 { top: -2.5rem; left: 55rem;}
.icon-text9 { top: -2.5rem; left: 55rem; }
.icon-text10 { top: -2.5rem; left: 55rem; }
.icon-text11 {top: -2.5rem; left: 55rem; }
.icon-text12 { top: -2.5rem; left: 55rem; }
.icon-text13 { top: -2.5rem; left: 55rem;}
.icon-text14 { top: -2.5rem; left: 55rem;}
.icon-text15 { top: -2.5rem; left: 55rem;}
.icon-text16 {top: -2.5rem; left: 55rem;}
.icon-text17 {top: -2.5rem; left: 55rem; }

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
	/* padding: 60px 0 !important; */
	overflow: hidden !important ;
  }
  
  .section-header {
	text-align: center ;
	padding-bottom: 40px;
  }
  
  .section-header h2 {
	font-size: 13px;
	letter-spacing: 1px !important; 
	font-weight: 500 !important;
	margin: 0 !important;
	color: #066b73!important ;
	text-transform: uppercase !important;
  }
  
  .section-header p {
	margin: 10px 0 0 0 !important;
	padding: 0 !important;
	font-size: 38px !important;
	line-height: 42px !important;
	font-weight: 500 !important;
	color: #012970 !important;
  }
  
  @media (max-width: 768px) {
	.section-header p  {
	  font-size: 28px !important;
	  line-height: 32px !important;
	}
  }
  @media (max-width: 1400px) {
	section {
		padding: 60px 0 !important;
		overflow: hidden !important;
	  }
	.section-header p  {
	  font-size: 28px !important;
	  line-height: 32px !important;
	}
  }
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.header1 {
	height: 27vh;

	background-image: linear-gradient(
	  rgba(0,0,0,0.8),
	  rgba(0,0,0,0.8)
	  ),
	  url(images/aboutus.jpeg);
	background-size: cover;
	background-position: top;
	position: relative;  
  }
  
  .page-heading {
	position: absolute;
	top: 59%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #aaa;
	white-space: nowrap;
  }
  
  .page-heading-primary {
	display: block;
	font-size: 3.125rem;
	font-weight: 300;
	color: #fff
  }
  
  .page-heading-secondary {
	display: block;
	font-size: 1.25rem;
	font-weight:500;
	text-transform: uppercase;
	letter-spacing: 4.5px;
  }
.about .content {
	background-color: #f6f9ff !important;
	padding: 40px !important;
  }
  
  .about h3 {
	/* font-family: "Noto Sans", sans-serif !important; */
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #000000 !important;
	text-transform: uppercase !important;
  }
  .team p {
    margin: 15px 0 30px 0 !important;
    font-family: var(--sl-font-regular)	!important;
    font-weight: 400;
    font-size: 28px;
      line-height: 1.75em;
    text-transform: none!important;
  }
  
  .team h1 {
    font-family: var(--sl-font-bold)	!important;
    font-size: 4em !important;
    font-weight: 500;
    line-height: 1.25em;
    /* color: #ffffff !important; */
    }
  .praticearea h3 {
	font-family: var(--sl-font-bold)	!important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #ffffff !important;
	text-transform: uppercase !important;
  }
  .praticearea p {
    margin: 15px 0 30px 0 !important;
    font-family: var(--sl-font-regular)	!important;
    font-weight: 400;
    font-size: 25px;
      line-height: 1.75em;
    text-transform: none!important;
  }
  
  .praticearea h1 {
    font-family: var(--sl-font-bold)	!important;
    font-size: 3em !important;
    font-weight: 500;
    line-height: 1.25em;
    color: #ffffff !important;
    }
    
  .about h1 {
    font-family: var(--sl-font-bold) !important;
    font-size: 3em;
    font-weight: 500;
    line-height: 1.25em;
    color: #ffffff !important;
    }
    
  .about h2 {

	font-size: 28px !important;
	font-weight: 600 !important;
	color: #000000 !important;
  }
  
  .about p {
	margin: 15px 0 30px 0 !important;
	font-family: var(--sl-font-regular)	!important;
  font-weight: 400;
  font-size: 25px;
    line-height: 1.75em;
	text-transform: none!important;
  }
  
  .about .btn-read-more {
	line-height: 0 !important;
	padding: 15px 40px !important;
	border-radius: 4px !important;
	transition: 0.5s !important;
	color: #fff !important;
	background: #4154f1 !important;
	box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3) !important;
  }
  
  .about .btn-read-more span {
	font-family: "Nunito", sans-serif !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	letter-spacing: 1px !important;
  }
  
  .about .btn-read-more i {
	margin-left: 5px !important;
	font-size: 18px !important;
	transition: 0.3s!important;
  }
  
  .about .btn-read-more:hover i {
	transform: translateX(5px) !important;
  }
	
 @font-face {
  font-family: "untitled-font-1";
  src:url("fonts/TrajanPro-Bold.otf");
  src:url("fonts/TrajanPro-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

.disclaimer {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(251 251 251 / 92%);
    justify-content: center;
    align-items: center;
    z-index: 9999;
	display: none;
}
.disclaimer-container {
	background-color: #ffffff;
    padding: 20px;
    /* border-radius: 10px; */
    color: #000;

}
.disclaimer-container{
	font-size: 1.5em !important;
	font-family: "Montserrat", sans-serif !important;
	font-optical-sizing: auto;
	word-spacing: normal !important;
	font-weight: 450;
	font-style: normal;
	letter-spacing:1px !important;
}
.disclaimer.visible {
	display: flex;
}
.btn-shine {
	background-color: #ffffff !important;
	color: rgb(0, 0, 0) !important;
	/* padding: 10px 20px; */
	text-decoration: none;
	border-radius: 5px;
}
.btn-shine:hover {
	background-color: #066b73 !important;
	color: rgb(255, 255, 255) !important;
}
.loader{
    content:'';
    display:block;
    height:100vh;
    width:100%;
    position:fixed;
    top:0;
    left:0;
    background-color:#fff;
    z-index:999
}
.loader span{
    position:fixed;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    z-index:3
}
.loader img{
    width:100%
}

					  .image-container-1{
					  width: 200px; /* Adjust width as needed */
					  height: 200px; /* Adjust height as needed */
					  background-color: transparent !important;
					  background: url('images/svg/cut/1.svg') no-repeat center center;
					  background-size: contain; /* Ensures the entire image is visible within the container */
					  }
					  .image-container-2{
					  width: 200px; /* Adjust width as needed */
					  height: 200px; /* Adjust height as needed */
					  background-color: transparent !important;
					  background: url('images/svg/cut/2.svg') no-repeat center center;
					  background-size: contain; /* Ensures the entire image is visible within the container */
					  }
					  .image-container-3{
					  width: 200px; /* Adjust width as needed */
					  height: 200px; /* Adjust height as needed */
					  background-color: transparent !important;
					  background: url('images/svg/cut/3.svg') no-repeat center center;
					  background-size: contain; /* Ensures the entire image is visible within the container */
					  }
					  @media screen and (min-width: 301px) and (max-width: 720px) {
              .vertical-scrolling, .fp-tableCell{
                height: auto !important;
              }
              
              .image-container-1{
                width: 200px; /* Adjust width as needed */
                height: 200px; /* Adjust height as needed */
                background-color: transparent !important;
                background: url('images/svg/cut/1.svg') no-repeat center bottom;
                background-size: contain; /* Ensures the entire image is visible within the container */
                }
                .image-container-2 {
                  width: 200px;
                  height: 200px;
                  background-color: transparent !important;
                  background: url(images/svg/cut/2.svg) no-repeat center 68%;
                  background-size: contain;
              }
              .image-container-3 {
                width: 200px;
                height: 200px;
                background-color: transparent !important;
                background:url(images/svg/cut/3.svg) no-repeat center 80%;
                background-size: contain;
            }
            .praticearea h1{
              font-size: 2.5em !important;
            }
            .about h1 {
              font-family: var(--sl-font-bold) !important;
              font-size: 2.5em !important;
              font-weight: 500;
              line-height: 1.25em;
              color: #ffffff !important;
          }
          .white-logo{
            width: 20rem;
          }
          .praticearea h3 {
            font-family: var(--sl-font-bold) !important;
            font-size: 12px !important;
            font-weight: 500 !important;
            color: #ffffff !important;
            text-transform: uppercase !important;
        }
        .team h1 {
          font-family: var(--sl-font-bold) !important;
          font-size: 2.5em !important;
          font-weight: 500;
          line-height: 1.25em;
          color: #ffffff !important;
      }
					  }
            
@media screen and (max-width: 720px){
  .home-banner .our-legacy-text {
    position: relative;
    right: 1rem;
    top: 5rem;
    text-align: start;
}
.home-banner .our-legacy-text .our-legacy-button {

  position: relative;
  right: 1rem;
  top: -2rem;
}
}
                                  /* Styles for screens wider than 1536px */
@media (min-width: 1536px) {

}

/* Styles for screens between 1536px and 1564px */
@media (min-width: 1536px) and (max-width: 1564px) {

}

/* Styles for screens between 737px and 864px in height */
@media (min-height: 737px) and (max-height: 864px) {

}

/* Specific styles for 1564px width and 737px height */
@media (min-width: 1536px) and (max-width: 1536px) and (min-height: 737px) and (max-height: 737px) {
  .image-container-1{
    width: 200px; /* Adjust width as needed */
          height: 200px; /* Adjust height as needed */
          background-color: transparent !important;
          background: url('images/svg/cut/1.svg') no-repeat center center;
          background-size: cover; /* Ensures the entire image is visible within the container */
          }
}
.container-fluid {
    width: 100%;
    margin: 0 auto;}

a:hover {
    text-decoration: none;
}
@media screen and (max-width: 720px) {
  .home-banner .our-legacy-text {
    position: relative;
    right: 1rem;
    top: 5rem;
    text-align: start;
}
.home-banner .our-legacy-text .our-legacy-button {

  position: relative;
  right: 1rem;
  top: -2rem;
}
}



@media screen and (min-width: 721px) and (max-width: 1280px) {
    .home-banner .our-legacy-text{
        position: relative;
        right: -2rem;
        top: -5rem;
    
    }
    .home-banner .our-legacy-text .our-legacy-button{
        position: relative;
        right: 1rem;
        top: -1rem;
    
    }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .home-banner .our-legacy-text {
    position: relative;
    right: -5rem;
    top: -8rem;

}
.home-banner .our-legacy-text .our-legacy-button {
  position: relative;
  right: 0.5rem;
  top: -1rem;
}
}

@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .home-banner .our-legacy-text {
    position: relative;
    right: 0.6rem;
    top: -1rem;
}

    .home-banner .our-legacy-text .our-legacy-button{
        position: relative;
        right: 1rem;
        top: -1rem;
    
    
    }
}

@media screen and (min-width: 1921px) {
    .home-banner .our-legacy-text{
        position: relative;
        right: 18rem;
        top: -5rem;
    
    }
    .home-banner .our-legacy-text .our-legacy-button{
        position: relative; right: 0rem;    top: 34rem;
    
    }
}
/* third Image */
@media screen and (max-width: 720px) {
  .home-banner .third-text {
    position: relative;
    right: -1rem;
    top: 0rem;
}
    .home-banner .third-text .third-button {
      position: relative;
      right: 0.5rem;
      top: -2rem;
  }
}

@media screen and (max-width: 720px){
  .home-banner .third-text {
    position: relative;
    right: -1rem;
    top: 0rem;
}
    .home-banner .third-text .third-button {
      position: relative;
      right: 0.5rem;
      top: -2rem;
  }
}

@media screen and (min-width: 721px) and (max-width: 1280px) {
    .home-banner .third-text{
        position: relative;
        right: -2rem;
        top: -5rem;
    
    }
    .home-banner .third-text .third-button{
        position: relative;
        right: 1rem;
        top: -1rem;
    
    }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
    .home-banner .third-text{
        position: relative;
        right: 11rem;

        top: -1rem;
    
    }
    .home-banner .third-text .third-button{
      position: relative;
      right: 0.7rem;
      top: -1rem;
    }
}

@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .home-banner .third-text {
    position: relative;
    right: 11.09rem;
    top: -6rem;
}
    .home-banner .third-text .third-button{
      position: relative;
      right: 0.6rem;
      top: -1rem;
  
    
    }
}

@media screen and (min-width: 1921px) {
    .home-banner .third-text{
        position: relative;
        right: 18rem;
        top: -5rem;
    
    }
    .home-banner .third-text .third-button{
        position: relative; right: 0rem;    top: 34rem;
    
    }
}
/* Second Image */
@media screen and (max-width: 720px) {
  .home-banner .second-text {
    position: relative;
    right: 1rem;
    top: -1rem;
    text-align: start;
}
    .home-banner .second-text .second-button{
      position: relative;
  right: 1rem;
  top: -2rem;
    
    }
}

@media screen and (max-width: 720px) {
  .home-banner .second-text {
    position: relative;
    right: 1rem;
    top: -1rem;
    text-align: start;
}
    .home-banner .second-text .second-button{
      position: relative;
  right: 1rem;
  top: -2rem;
    
    }
}


@media screen and (min-width: 721px) and (max-width: 1280px) {
    .home-banner .second-text{
        position: relative;
        right: -45rem;
        top: -3rem;
    
    }
    .home-banner .second-text .second-button{
        position: relative;
        right: 1rem;
        top: -1rem;
    
    }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .home-banner .second-text {
    position: relative;
    right: -67rem;
    top: -6rem;
}
    .home-banner .second-text .second-button{
        position: relative;
        right: 0rem;
        top: 1rem;
    
    }
}

@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .home-banner .second-text {
    position: relative;
    right: -67rem;
    top: -6rem;
}
    .home-banner .second-text .second-button{
      position: relative;
      right: 0.4rem;
      top: -1.2rem;
    
    }
}

@media screen and (min-width: 1921px) {
    .home-banner .second-text{
        position: relative;
        right: 18rem;
        top: -5rem;
    
    }
    .home-banner .second-text .second-button{
      position: relative;
      right: 0.4rem;
      top: -1.2rem;
    
    }
}


/* Work Numbers */
.counter {
	/* font-family: 'Rampart One', cursive; */
	font-size: 5em;
	/* margin: 100vh auto 40vh; */
}
.counter:not(.is-visible) {
	visibility: hidden;
}

/* Base styles */
.home-banner .work-svg {
  position: absolute;
  top: 53vh;
  left: -2%;
  transform: translate(-50%, 0);
  margin: 0 auto;
}



@media screen and (min-width: 721px) and (max-width: 1280px) {
    .home-banner .work-svg{
        position: relative;
        left: 13rem;
        top: 24rem;
    
    }
    
}

@media screen and (max-width: 400px) {
  .home-banner .work-svg {
    position: relative;
    top: 16vh;
    left: 53%;
    transform: translate(-50%, 0);
    margin: 0 auto;
}

  .counter {
    /* font-family: 'Rampart One', cursive; */
    font-size: 3em;
    /* margin: 100vh auto 40vh; */
  }
  .counter:not(.is-visible) {
    visibility: hidden;
  }

}
@media screen and (min-width: 401px) and (max-width: 720px) {
  .home-banner .work-svg {
    position: relative;
    top: 16vh;
    left: 53%;
    transform: translate(-50%, 0);
    margin: 0 auto;
}

  .counter {
    /* font-family: 'Rampart One', cursive; */
    font-size: 2em;
    /* margin: 100vh auto 40vh; */
  }
  .counter:not(.is-visible) {
    visibility: hidden;
  }
  
    
}
/* Specific styles for 1564px width and 737px height */
@media (min-width: 1536px) and (max-width: 1536px) and (min-height: 735px) and (max-height: 827px) {
  .home-banner .work-svg {
    top: 53vh;
    left: -2%;
  }
}
/* Specific styles for 1564px width and 737px height */
@media (min-width: 1536px) and (max-width: 1536px) and (min-height: 827px) and (max-height: 864px) {
  .home-banner .work-svg {
    top: 50vh;
    left: -2%;
  }
}
/* Styles for screens between 1281px and 1440px width */
@media (min-width: 1281px) and (max-width: 1440px) {
  .home-banner .work-svg {
    top: 48vh;
    left: -2%;
  }
}
/* Styles for screens with 1366px width and 768px height */
@media (min-width: 1366px) and (max-width: 1366px) and (min-height: 768px) and (max-height: 768px) {
  .home-banner .work-svg {
    top: 50vh;
    left: -2%;
  }
}


/* 
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .home-banner .work-svg {
    position: absolute;
    top: 45rem;
    left: -134rem;
    right: 0rem;
    margin-left: auto;
    margin-right: auto;


}
    
}

@media screen and (min-width: 1921px) {
    .home-banner .work-svg{
        position: relative;
        right: 18rem;
        top: -5rem;
    
    }
    
} */


.btn {
    border: 0.5px solid #fff;
    background-color:transparent ;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: 300;
    padding: 10px 20px;
    position: relative;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    /* text-transform: uppercase; */
    margin-right: 40px;
}
@media screen and (min-width: 401px) and (max-width: 720px) {
  .btn {
    border: 0.5px solid #fff;
    background-color:transparent ;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: 300;
    padding: 5px 14px;
    position: relative;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    /* text-transform: uppercase; */
    margin-right: 40px;
}
}
.btn:hover{
  border: 0.5px solid #fff;
  background-color:#066b73 ;
    color: #fff;
}
.color-svg{
    stroke: white;
    fill: white;
}
.btn span{
    position:absolute;
    right:-15px;
    height:20px;
    width:30px;
    display:inline-block;
    background-color:#003786;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    top:50%;
    transform:translateY(-50%);
    transition:0.5s all
}

/* ICON STYLES - ICON FROM: http://fontastic.me/
–––––––––––––––––––––––––––––––––––––––––––––––––– */


[class^="icon-"]:after,
[class*=" icon-"]:after {
  font-family: "untitled-font-1";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-up-open-big { display: inline-block; }

.icon-up-open-big:after {
  content: "a";
  font-size: 2.5em;
  display: block;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  color: black;
  -webkit-transition: color .3s;
          transition: color .3s;
}

.icon-up-open-big:hover:after {
	color: white;	
}

.scroll-icon {
	position: absolute;
 	left: 50%;
  bottom: 30px;
  padding: 0 10px;
  	-webkit-transform: translateX(-50%);
  	    -ms-transform: translateX(-50%);
  	        transform: translateX(-50%);
}



/* HELPER CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.l-left {
	float: left;
}

.l-right {
	float: right;
}

.end {
	margin-top: 30px;
	font-size: 3em;
	font-weight: bold;
	opacity: 0;
	-webkit-transform: translateY(300px);
	    -ms-transform: translateY(300px);
	        transform: translateY(300px);
	-webkit-transition: opacity, -webkit-transform 1s;
	        transition: opacity, transform 1s;
	-webkit-transition-delay: 1s;
	        transition-delay: 1s;
}



/* RESET-GENERAL STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */



html {
	font-size: 62.5%;
}

body {
	color: black;
	letter-spacing: .1em;
  background: rgb(06, 107, 115);
  font-family: var(--sl-font-regular)	!important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

a {
	text-decoration: none;
	color: white;
}

ul, li {
	list-style-type: none;
}



/* NAV STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.offcanvas li{
  border-bottom: 0.5px solid white;

}
.offcanvas-body a.nav-link{
 font-size:1em !important; 

}
.nav-title li a{
  font-size :1.9em !important;
  color:white;
 font-family: var(--sl-font-regular)	!important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal
}
.nav-title li a:hover{
  font-size :1.9em !important;
  color:white;
}

.header-top {
  background: #066b73;
    height: 100px;
    padding: 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    box-sizing: border-box;
    right: 0;
    bottom: 0;

}

h1 {
	line-height: 70px;
	/* height: 70px; */
 font-family: var(--sl-font-bold)	!important;

}

h1 a {
	display: block;
	padding: 0 10px;
}

.toggle-menu {
	width: 50px;
	height: 50px;
	display: inline-block;
	position: relative;
	/* top: 10px; */
}

.toggle-menu i {
	position: absolute;
	display: block;
	height: 2px;
	background: white;
	width: 30px;
	left: 10px;
	-webkit-transition: all .3s;
	        transition: all .3s;
}

.toggle-menu i:nth-child(1) {
	top: 16px;
}

.toggle-menu i:nth-child(2) {
	top: 24px;
}

.toggle-menu i:nth-child(3) {
	top: 32px;
}

.open-menu i:nth-child(1) {
	top: 25px;
	-webkit-transform: rotateZ(45deg);
	        transform: rotateZ(45deg);
}

.open-menu i:nth-child(2) {
	background: transparent;
}

.open-menu i:nth-child(3) {
	top: 25px;
	-webkit-transform: rotateZ(-45deg);
	        transform: rotateZ(-45deg);
}

nav {
 	height: 0;
	opacity: 0;
  box-sizing: border-box;
	background: rgba(0, 47, 77, .25);
	position: fixed;
	top: 70px;
	width: 100%;
  -webkit-transition: all 3s;
          transition: all 3s;
}

.open-menu ~ nav {
	opacity: 1;
 	padding: 80px 0;
	z-index: 15;
	height: calc(90vh - 70px);
}

nav ul {
	padding: 0 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

nav li {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

nav li a {
	font-size: 2em;
	display: block;
	padding: 30px;
	text-align: center;
	-webkit-transition: background .3s;
	        transition: background .3s;
}

nav li:nth-child(odd) a,
body.fp-viewing-fifthSection-1 #menu li:nth-child(5) a {
	background: #962D3E;
}

nav li:nth-child(even) a {
	background: #aa3346;
}

nav li:nth-child(odd) a:hover {
	background: #9e2f41;
}

nav li:nth-child(even) a:hover {
	background: #c53c52;
}

nav li.active a,
body.fp-viewing-fifthSection-1 #menu li:last-child a {
  background: #453659;
}
  


/* SECTION STYLES - fullPage.js 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

section { 
	text-align: center;
  /*background: url('https://unsplash.it/1910/1221?image=626') no-repeat center / cover;*/
}

h2 {
	text-transform: uppercase;
  font-size: 1.1em;
	margin-bottom: 20px;
}

h3 {
	font-weight: 300;
	font-size: 2.8em;
}



/* SLIDENAV STYLES - fullPage.js 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#fp-nav ul li a span, 
.fp-slidesNav ul li a span {
	background: white;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
}

#fp-nav ul li a.active span, 
.fp-slidesNav ul li a.active span, 
#fp-nav ul li:hover a.active span, 
.fp-slidesNav ul li:hover a.active span {
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	background: transparent;
	box-sizing: border-box;
	border: 1px solid #24221F;
}



/* MQ STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 767px) {
	nav ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	nav li {
		margin-top: 1px;
	}
  
  nav li a {
    font-size: 1.5em;
  }
  
  .scroll-icon {
    display: none;
  }
}

@media screen and (max-width: 400px) {
  html {
    font-size: 50%;
  }
  
  .open-menu ~ nav {
		padding: 20px 0;
	}

	nav li a {
		padding: 3px;
	}
}
/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
    font-size: 30px; /* Adjust the size as needed */
    color: #000; /* Adjust the color as needed */
    transition: opacity 0.3s ease;
}

.prev-slide {
    left: 10px; /* Adjust the position as needed */
}

.next-slide {
    right: 10px; /* Adjust the position as needed */
}

/* Optionally style the buttons on hover */
.nav-btn:hover {
    opacity: 0.8;
}


.teams .shadow-effect {
	cursor: pointer;
		    background: #fff;
		    /* padding: 20px; */
		    /* border-radius: 20px; */
		    text-align: center;
	        border:1px solid #ECECEC;
		    box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
		}
		
#customers-teams .item {
			height:410px !important;
		    text-align: center;
		    padding: 30px;
			margin-bottom:10px;
		    opacity: .2;
		    -webkit-transform: scale3d(0.8, 0.8, 1);
		    transform: scale3d(0.8, 0.8, 1);
		    -webkit-transition: all 0.3s ease-in-out;
		    -moz-transition: all 0.3s ease-in-out;
		    transition: all 0.3s ease-in-out;
}
#customers-teams .item p{
	font-size:12px;
}
#customers-teams .item h2{
	/* font-size:28px !important;
	font-weight:500 !important; */
}
#customers-teams .item .title{
	/* font-size:14px; */
}
#pastexp{
	/* margin-top:20px; */
}
#customers-teams .item h5{
	/* font-size:15px !important;
	font-weight:500 !important; */
}
#customers-teams .owl-item.active.center .item {
		    opacity: 1;
		    -webkit-transform: scale3d(1.0, 1.0, 1);
		    transform: scale3d(1.0, 1.0, 1);
}
.teams .owl-carousel .owl-item .img-circle {
		    transform-style: preserve-3d;
		    max-width: 100px;
    		margin: 0 auto 17px;
			  transition: transform .5s;
}
.teams .owl-carousel .owl-item .img-circle:hover {
		    transform: scale(0.9);
		}
		#customers-teams.owl-carousel .owl-dots .owl-dot.active span,
		#customers-teams.owl-carousel .owl-dots .owl-dot:hover span {
			background: rgb(6, 107, 115);
			transform: translate3d(0px, -50%, 0px) scale(0.7);
		}
#customers-teams.owl-carousel .owl-dots{
	display: inline-block;
	width: 100%;
	text-align: center;
}
#customers-teams.owl-carousel .owl-dots .owl-dot{
	display: inline-block;
}
		#customers-teams.owl-carousel .owl-dots .owl-dot span {
		    background: rgba(6, 107, 115, 0.8);
		    display: inline-block;
		    height: 20px;
		    margin: 0 2px 5px;
			  margin-top:50px;
		    transform: translate3d(0px, -50%, 0px) scale(0.3);
		    transform-origin: 50% 50% 0;
		    transition: all 250ms ease-out 0s;
		    width: 20px;
			  outline: none;
				border-radius:50% !important;
		}
		
.owl-dot, .owl-dot:active, .owl-dot:focus { 
	outline: 0 !important;
}

@media only screen and (max-width: 1000px){
	#customers-teams.owl-carousel .owl-dots .owl-dot span {
	height:20px;
	width:20px;
	/* margin-top:30px; */
	}
}




/* expertise_area */
.expertise_area .card{
		/* border: 0.5px solid #066b73; */
    border: none !important;
}
.expertise_area .btn:hover.card{
  background-color:#066b73 !important;
}
.expertise_area .btn{

    border: none !important;
		background-color:transparent;
		color: #000;
		font-size: 1.8em !important;
		text-decoration: none;
		font-weight: ;
		padding: 15px 25px;
		position: relative;
		-webkit-transition: 0.5s all;
		-moz-transition: 0.5s all;
		-ms-transition: 0.5s all;
		transition: 0.5s all;
		text-transform: none !important; 
		margin-right: 40px;
		font-family: var(--sl-font-bold)	!important;
	
}
.expertise_area .btn:hover{
	border: 0.5px solid #fff;
	background-color:#066b73 ;
	  color: #fff;
    
  }
  .expertise_area .btn:hover svg{
    border:none;
    
 
      
    }
  .expertise_area .btn:hover svg{
    border:none;
   
      fill: #fff;
      
    }
    .expertise_area .btn:hover .card-footer svg{
    
      -webkit-transition: 0.5s all;
      -moz-transition: 0.5s all;
      -ms-transition: 0.5s all;
      transition: 0.5s all;
        fill: #fff !important;
        
      }
  
  @media screen and (min-width: 1281px) and (max-width: 1440px) {
	.expertise_area .btn{

		font-size: 1.3em !important; 

	}
}
.expertise_area .card i {
	color: #066b73 !important;
	
}
.expertise_area .card:hover i {
	color: #ffffff !important;
	
}
.expertise_area p{

    margin: 15px 0 30px 0 !important;
    font-family: var(--sl-font-regular)	!important;
    font-weight: 400;
    font-size: 20px;
      line-height: 1.75em;
    text-transform: none!important;

  
}