/*
*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/

:root {
  --white-color:                  #ffffff;
  --brand-color1:                 #ffd524;
  --brand-color2:                 #024689;
  --brand-color3:                 #b9c0cc;
  --brand-color4:                 #5f6676;
  --brand-color5:	              #000000;
  --btn-bg-color:                 #ffd524;
  --custom-btn-bg-hover-color:    #024689;
  --dark-color:                   #000000;
  --p-color:                      #5f6676;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Graphik LCG';

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 14px;
  --p-font-size:                  1.1rem;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-medium            500;
  --font-weight-Semibold:         600;
  --font-weight-bold:             700;
  --font-weight-extrabold:        800;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}

.container-xxl {
	width:80%;
}
/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-Semibold)!important;
  
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
	padding:0px;
	margin:0px;
  text-align: justify;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--brand-color1);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

h6 {
	text-transform: uppercase;
/*	letter-spacing: 3px;*/
	font-weight: 500 !important;
}

h1 {
	line-height: 80px;
	font-family: 'Graphik LCG' !important;
	font-weight: 500 !important;
}
h2 {
	line-height: 56px;
	padding: 0px;
	margin: 0px;
}

h4 {
	font-weight: 500 !important;
	font-size: 24px !important;
	padding:0px;
	margin:0px;
}
h1 span,
h2 span,
h3 span,
h4 span {
        color: #7f3b14 ; 
        }

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

section {
	overflow: hidden;
}

.c-button {
	width:275px;
	margin:0 auto;
	height: 26px;
}
.btn-2 {
	border:none;
	background-color: transparent;
}

.btn-1 {
	color:#fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-display: 14px;
}

.btn-1 .btn-text {
	position: relative;
	top:-34px;
}
.btn-1 rect {
	 fill: none;
	 stroke: #fff;
	 stroke-width: 1;
	 stroke-dasharray: 422, 0;
	 transition: all 0.35s linear; 
}
 .btn-1:hover {
	 background: rgba(225, 255, 255, 0);
	 font-weight: 500;
	 letter-spacing: 2px;
	 color:#fff;
}
 .btn-1:hover rect {
	 stroke-width: 1;
	 stroke-dasharray: 60, 363;
	 stroke-dashoffset: 60;
	 transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}
 
/**************************/
/*     03. Navigation     */
/**************************/
.navbar-custom {
	
	background-color: #fff;
	box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
	transition: all 0.2s;
}
.navbar-custom .container-lg{
	padding-left:0px;
	padding-right:0px;

}

.navbar-custom .container {
	max-width: 87.5rem;
}

.navbar-custom .navbar-brand.logo-image {
position: relative;
top:-10px; 
		background-image:url("../images/logo/aplag1.png");
	background-repeat: no-repeat;
     width:80px;
	height:60px;
  background-size: cover;
}
 .navbar-custom .navbar-brand.logo-image-blue {
  position: relative;
  top:5px; 
	background-image:url("../images/logo/aplag.png");
	background-repeat: no-repeat;
  background-size: cover;
  width:80px;
	height:60px;
}

.custom-border {
	border-bottom:solid 1px rgba(255,255,255,0.3);

}
.navbar-custom .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
	
}

.navbar-custom .nav-item .nav-link {
	padding: 0.625rem 0.75rem 0rem 0.75rem;
	color: #fff;
	opacity: 0.8;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif !important;
	text-transform: uppercase;
}
.nav-link-collapsed {
	color: #000 !important;
	font-weight: 500 !important;
}
.nav-link-collapsed:hover {
	
	font-weight: 700 !important;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
	color: #fff;
	opacity: 1;
}

/* Dropdown Menu */
.navbar-custom .dropdown:hover > .dropdown-menu {
	display: block; /* this makes the dropdown menu stay open while hovering it */
	min-width: auto;
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar-custom .dropdown-toggle:focus { /* removes dropdown outline on focus */
	outline: 0;
}

.navbar-custom .dropdown-menu {
	margin-top: 0;
	border: none;
	border-radius: 0.25rem;
	background-color: #7F3B14;
}

.navbar-custom .dropdown-item {
	color: #fff;

	font-family: 'Montserrat', sans-serif !important;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
}

.navbar-custom .dropdown-item:hover {
	background-color:transparent;
	opacity: 1;
	font-weight: 600;
}

.navbar-custom .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.75rem auto 0.725rem auto;
	border: none;
	background-color: #c4d8dc;
	opacity: 0.2;
}
/* end of dropdown menu */

.navbar-custom .nav-item .btn-sm {
	margin-top: 0.25rem;
	margin-bottom: 1.375rem;
	margin-left: 0.5rem;
	background-color:var(--brand-color1);
	border-radius: 50px;

	width:35px;
	height:35px;
	color: #fff;
	text-align: center;
	padding:8px;


}

.navbar-custom .nav-item .btn-sm:hover {
	background-color:var(--brand-color2);
	color: #fff;
}

.mobile-top {
	background-color:transparent;
	padding-bottom:0px !important;
	
}




.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin:0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--brand-color1);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
  
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--brand-color1);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.ad-phone {
	color:var(--brand-color1) !important;
	font-weight: 600;
	border-left: solid 1px #fff;
	padding-left:15px;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}



/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--brand-color5);
  font-size: 13px !important;
  font-weight: var(--font-weight-medium);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 16px !important;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif !important;
  letter-spacing: 2px;
	
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/

.custom-btn2 {
  background: var(--btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--brand-color5);
  font-size: 13px !important;
  font-weight: var(--font-weight-medium);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 16px !important;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif !important;
  letter-spacing: 2px;
	width:245px;
}

.custom-btn2:hover {
  background: var(--white-color);
  color: var(--brand-color4);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}



/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh);
}

.hero-section small {
  color: var(--white-color);
  font-size: 20px;
  font-weight:200;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}
.container-xxl.custom-border {
border-bottom:solid 1px rgba(255, 255, 255, 0.5);
	--bs-gutter-x: 0rem;
	
	
	
}

/*---------------------------------------
  OUR EXPERTISE              
-----------------------------------------*/
.our-expertise {
	padding-top: 100px;
	padding-bottom: 20px;
}


.text-color {
	color: #7f3b14;
}

.expertise-features {
	padding-top: 60px;
	
}
.expertise-details {
	padding-bottom:100px;
}


.first {
	border-bottom:solid 1px var(--brand-color3);
	padding: 0px 40px 40px 40px;  
}
.second {
	
	padding: 0px 40px 40px 40px; 
	border-bottom:solid 1px var(--brand-color3);
	border-right:solid 1px var(--brand-color3);
	border-left:solid 1px var(--brand-color3);
}

.third {
	padding: 0px 40px 40px 40px;  
	border-bottom:solid 1px var(--brand-color3);
	
}
.fourth {
	padding: 40px 40px 0px 40px;   
}
.fifth {
	padding: 40px 40px 0px 40px;   
	border-right:solid 1px var(--brand-color3);
	border-left:solid 1px var(--brand-color3);
	
}
.sixth {
	padding: 40px 40px 0px 40px;  

}
.first ol,.second ol,.third ol,.fourth ol,.fifth ol,.sixth ol {
	text-align:right;
	font-size:20px;
	font-weight: 400;
	color: var(--brand-color1);

}
.link--metis {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
	letter-spacing: 2px;
}

.link--metis::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.link--metis:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}


.grid-link {
    cursor: pointer;
    font-size: 12px;
    position: relative;
    white-space: nowrap;
    color: var(--brand-color5);
	text-decoration: none;
	
	font-weight: 600;
}
.grid-link:hover {

    color: var(--brand-color5);
	font-weight: 700;
	
	
}

.grid-link::before,
.grid-link::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
}

.grid-link::before {
    content: '';
    /* show by default */
}


.cell-link {
	margin-top:10px;
	margin-bottom:10px;
}

/*---------------------------------------
  OUR ENGAGEMENT MODEL              
-----------------------------------------*/

.eng-model {
	padding-top:60px;
	padding-bottom: 100px;
}
.eng-model-model {}
.eng-model-intro {
	
}
.eng-model-features {
	border-left:solid 3px var(--brand-color1);
	padding-left:40px;
	margin-top:30px;
	margin-left:8px;
}

.eng-model-features h4 {

	background-repeat:no-repeat;
	background-size: 18px;
	background-position: 0px 5px;


}
.eng-model-features p {
	
}

/*---------------------------------------
  OUR CLIENTS STYLES               
-----------------------------------------*/


.logo-box {
	border:solid 1px var(--brand-color3);
	display: flex;
	flex-direction:column-reverse;
	align-content: center;
	justify-content: center;
	padding-top:6%;
	padding-bottom: 6%;
	background-color:#fff;
	
}
.logo-box:hover {
	border:solid 1px var(--brand-color1);
	background-color:var(--brand-color1);
	cursor:pointer;
	
}


/*---------------------------------------
  COMPANY STATISTICS               
-----------------------------------------*/

.company-statistics {
	padding-top:80px;
	padding-bottom:80px;
	background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0;
 width: 100%;
  height: auto;
  background-image: url("../images/stats_bg.jpg");
}


.statistics-details {
	display: flex;
	align-content: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
	
}
.statistics-details h2 {
	color:#fff;
	padding-top:20px;
}
.stat-counter-row {
	padding-top: 30px;
	width: 70%;
	margin:0 auto;
}
.stat-counter h2, .stat-counter h6 {
	color:#fff;
}
.stat-counter h6 {
	line-height: 26px;
}



/*---------------------------------------
  REQUEST A CALL BACK STYLES               
-----------------------------------------*/

.get-a-quote {
	
}

.text-box {
	border-right:solid 3px var(--brand-color1);
	padding-right: 60px;
}

.contact_form  {
	padding-left:60px;
	height:auto !important;
	
}



.contact-form .submit-btn {
  display: inline-block;
   background-color: var(--brand-color1);
	border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  padding: 8px 16px;
  border: none;
  width:200px;
  cursor: pointer;
}
.contact-form .submit-btn:hover {

   background-color: var(--brand-color2);
   color: #fff;
}

/*---------------------------------------
  FOOTER STYLES               
-----------------------------------------*/


.footer {
	background-color:#7F3B14;
	padding-top: 100px;
	
}

.footer-menu {
	padding-left:40px;
}
.footer-menu h6{
padding-left:32px;
/*	padding-bottom: 20px;*/
}


.footer-menu-list {
	list-style: none;
	
}
 ul.footer-menu-list .footer-item a.footer-link {
	color:#fff !important;
	font-size: 22px;
	font-weight: 400;
/*	width: 100%;*/
	padding-bottom: 20px;
	
}
ul.footer-menu-list .footer-item a.footer-link:hover {
	color:var(--brand-color1) !important;
}
.footer-contacts {
	text-align: left;
	padding-left:20px;
}

.footer-contacts ul {
	list-style: none;
	padding-top: 10px;
  margin-bottom: 10px!important;
	padding-left: 0px;
}

.footer-contacts ul li {
	padding-top:10px;
}

.footer-contacts ul li a {
	font-weight: 600;
}

.footer-social {}
.footer-social ul {
	display: inline-flex;
	list-style: none;
	
}

.footer-social ul li {
	margin-right:8px;
}

.footer-social ul li a{
	border:solid 1px rgba(255,255,255, 0.3);
	border-radius: 50px;
	text-align: center;
	width: 40px;
	height: 40px;
	padding-top: 7px;
}
.footer-social ul li a:hover{
	border:solid 1px var(--brand-color1);
}

.footer-nav {
		border-top: solid 1px rgba(255,255,255,0.3);
	margin-top: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.footer-nav ul {
	display:inline-flex;
	list-style: none;
	

}
.footer-nav ul li {
	padding-right:30px;
}

.footer-nav ul li a {
	font-size: 12px;
	color:#fff;

}
.footer-nav ul li a:hover {
	font-weight:500;

}

.footer-copyright {
	
	font-weight: 600;
	padding-top: 3px;
	
	padding-left: 30px;
}

.footer-credentials {
	padding-top: 0;
	font-size: 12px;
	text-align: right;
}
.footer-credentials span {
	display: inline-block;
	position: relative;
	top: -3px;
}

/*---------------------------------------
  COMMON SECTION CLASSES  
-----------------------------------------*/
.hero-slogan {
	height: 450px !important;
	width: 90%;	
}

/*---------------------------------------
  HERO ABOUT       
-----------------------------------------*/

.company-hero {
	background-image: url("../images/about_bg.jpg");
	background-repeat: no-repeat;
    height:600px;
	width:100%;
}

	





.accordion {
	margin-top:60px;
	border-left:solid 3px var(--brand-color1);
	margin-left:10px;
}
.accordion-item {
   
  border:none;

padding-right:40px;
	padding-top: 0px;
	margin-left:40px;
   
	
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding:0rem;
  font-size: 1rem;
  color: #000;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #fff;
  box-shadow:none;
  padding-bottom:10px;
}
.accordion-body {
  padding: 1rem 0rem 1rem 0rem;
}
.accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow:none;
}

.accordion-button h4 {
	
	background-repeat:no-repeat;
	background-size: 18px;
	background-position: 0px 5px;
}

.company-features-points {
 border-left:solid 3px var(--brand-color1);

   padding-left: 40px;
	padding-right:40px;
	margin-top: 60px;
	margin-left:10px;
}

.company-features-points h4 {

	background-repeat:no-repeat;
	background-size: 18px;
	background-position: 0px 5px;

	

	
}

.company-features-points p {
	padding-bottom: 10px;
}

.aoe-title{
  text-transform: uppercase;
      text-align: center;
    font-weight: 600;
    color: #19b5fe;
}

.line{
    width: 75px;
    height: 3px;
    background-color:var(--brand-color1);
    margin: auto;
    margin-top: 20px;
    margin-bottom: 70px;
}

/*=================================================== TESTIMONIALS SECTION ==========================================================*/

.testimonials-section{
  padding: 50px 0px 50px 0px;
}

.col-center {
  margin: 0 auto;
  float: none !important;
}
.carousel {
  margin: 0 auto;
  padding: 0 170px ;
}
.carousel .item {
  color: #999;
  font-size: 14px;
    text-align: center;
  overflow: hidden;
    min-height: 290px;
}
.testimonial-text {
	
	font-size: 26px;
	font-weight: 400;
}

.carousel .testimonial {
  padding: 0px 0 10px;
  color: #555;
}

.carousel-inner {
    text-align: center;
}

.carousel .overview { 
    font-size: 26px;
    margin-bottom: 5px;
}



.company-name{
    color: #555;
}


.carousel-control i {
    font-size: 25px;
    line-height: 42px;
    position: relative;
    display: inline-block;
    color: #000;
	width: 20%;
	
}

.carousel-indicators li, .carousel-indicators li.active {
  width: 10px;
  height: 10px;
  margin: 1px 3px;
  border-radius: 50%;
}
.carousel-indicators li { 
  background: #999;
  border-color: transparent;
  box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
.carousel-indicators li.active {  
  background: #555;   
  box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}

.testimonial span{
    font-size: 62px;
    position: absolute;
    top: 57%;
    left: 0;
    color: #333;
}

.carousel .carousel-control {
  width: 0px;
    height: 40px;
  background: none;
	position: absolute;
	top: -56px;
	width: 100px;
    
}

.carousel-control-prev {
   position: absolute;
	left:43%;
}

.carousel-control-next {
right:43%;
}



/*---END Carousel ---*/

.technology-hero {
	background-image: url("../images/tech.jpg");
	background-repeat: no-repeat;
    height:600px;
	width:100%;
}
.mission-vision-hero {
	background-image: url("../images/mission_vision_bg.jpg");
	background-repeat: no-repeat;
	width:100%;
	height: 600px;
	overflow: hidden;
}


.mission-vision-hero-slogan {
	height:600;
	width: 80%;
}
.mission-vision-hero-slogan h6 {
	padding-left:15px;
	padding-bottom:10px;
}

.mission-vision-contents-features {

 border-left:solid 3px var(--brand-color1);
   padding-left: 40px;
	padding-right:40px;
	margin-top: 60px;
	margin-left:10px;
}

.section-animation {
	
}


.contact-hero {
	background-image: url("../images/bg_brown.jpg");
	background-repeat: no-repeat;
  background-size: cover;
  height:450px;
	width:100%;
}



.contact-hero-slogan {
	height:600 !important;
    padding-top:200px;
	width: 80%;
	
}
.contact-hero-slogan h6 {
	padding-left:10px;
	padding-bottom:10px;
}


.contact-hero-slogan h2 {
	
	margin-bottom: 60px;
}


/*---------------------------------------
  SERVICES PAGE   
-----------------------------------------*/

.web-dev-hero {
	background-image: url("../images/bg_brown1.jpg");
	background-repeat: no-repeat;
  background-size: cover;
  height:370px;
	width:100%;
}



.web-dev-hero-slogan {
	height:450 !important;
    padding-top:200px;
	width: 80%;
}

.web-intro-features {
	padding-top: 60px;

}

.web-intro-features-details {
	text-align:left;
}
.web-intro-features-details {
	display:flex
}
.web-feature {
	min-height:85px;
	
}
.web-feature-title h4 {
	font-size:inherit;
}
 .web-feature-title h4 ol {
   font-size: 20px;
	 font-weight: 400;
	 color: var(--brand-color1);
	 display:inline;
	 padding-left:0px;
	 margin-left: 0px;
	 padding-right:30px !important;
	
}
/*---------------------------------------
  Android IOS PAGE   
-----------------------------------------*/
.mobile-apps-hero {
	background-image: url("../images/mobile_apps_bg.jpg");
	background-repeat: no-repeat;
    height:600px;
	width:100%;
}


.mobile-apps--hero-slogan {
	height:600 !important;
    padding-top:200px;
	width: 80%;
}
.android-ios-title {
	padding-right:60px;
}
.android-ios-features {
	
	border-left: solid 3px var(--brand-color1);
	padding-left:40px;
}
ul.anroid-ios-feature-points  {
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
}

.anroid-ios-feature-points li {
	    color:var(--p-color);
    font-size:var(--p-font-size);
    font-weight: 400;
	list-style: none;
	background-image: url("../images/circle.svg");
	background-repeat: no-repeat;
	padding-left:40px;
	margin-top:20px;
}


/*---------------------------------------
  Ecommerce PAGE   
-----------------------------------------*/

.ecommerce-hero {
		background-image: url("../images/ecommerce_bg.jpg");
	background-repeat: no-repeat;
    height:600px;
	width:100%;
}

.ecommerce-title {
	padding-right:60px;
}

.ecommerce-features {
	
	border-left: solid 3px var(--brand-color1);
	padding-left:40px;
}
.ecommerce-feature-points {
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
}

.ecommerce-feature-points li {
	    color:var(--p-color);
    font-size:var(--p-font-size);
    font-weight: 400;
	list-style: none;
	background-image: url("../images/circle.svg");
	background-repeat: no-repeat;
	padding-left:40px;
	margin-top:14px;
	background-size: 20px 20px;
	background-position: 3px 0px
}




/*---------------------------------------
  Custom Web Apps PAGE   
-----------------------------------------*/

.custom-web-apps-hero {
		background-image: url("../images/custom_web_bg.jpg");
	background-repeat: no-repeat;
    height:600px;
	width:100%;
}

.ecommerce-title {
	padding-right:60px;
}

.ecommerce-features {
	
	border-left: solid 3px var(--brand-color1);
	padding-left:40px;
}
.ecommerce-feature-points {
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
}

.ecommerce-feature-points li {
	    color:var(--p-color);
    font-size:var(--p-font-size);
    font-weight: 400;
	list-style: none;
	background-image: url("../images/circle.svg");
	background-repeat: no-repeat;
	padding-left:40px;
	margin-top:14px;
	background-size: 20px 20px;
	background-position: 3px 0px
}




/*---------------------------------------
  Digital Marketing PAGE   
-----------------------------------------*/

.digital-marketing-hero {
	
	background-image: url("../images/digital_marketing_bg.jpg");
	background-repeat: no-repeat;
    height:600px;
	width:100%;
}

.digital-marketing-title {
	padding-right:60px;
}
.digital-marketing-details {
	padding-left:40px;
	border-left: solid 3px var(--brand-color1);
}

.digital-marketing-details p span{
	font-size:17px;
	font-weight: 600;
}
.dm-animation {
	display: block;
	position: relative;
	left:-50px;
}
.digital-marketing-features {
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
}

.digital-marketing-features li {
	    color:var(--p-color);
    font-size:var(--p-font-size);
    font-weight: 400;
	list-style: none;
	background-image: url("../images/circle.svg");
	background-repeat: no-repeat;
	background-size: 22px 22px;
	padding-left:40px;
	margin-top:20px;
}


.social_media_marketing {
	padding-top: 80px;
	
}
.social-media-platforms {
	padding-left:0px;
	padding-top:0.5rem;
}
.social-media-platforms li {
	display: inline-block;
	font-weight:500;
	
	font-size:20px;
	background-image: url("../images/circle.svg");
	background-repeat: no-repeat;
	background-size: 22px 22px;
	background-position: 0px 2px;
	padding-left:30px;
	margin-right:20px;
	margin-top:0.5rem;
}
/*---------------------------------------
  Business Intelligence PAGE   
-----------------------------------------*/
.bi-hero {
	background-image: url("../images/bi_bg.jpg");
	background-repeat: no-repeat;
    height:600px;
	width:100%;
}
ul.bi-feature-points  {
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
}

.bi-feature-points li {
		    color:var(--p-color);
    font-size:var(--p-font-size);
    font-weight: 400;
	list-style: none;
    
	
}

.bi-anime {
	display: block;
	position:relative;
	left:-40px;
}

/*---------------------------------------
  CONTACT PAGE   
-----------------------------------------*/
.contact-location .canada, .contact-location .USA{
	margin-right: 60px;
	padding-top: 16px;
}
.contact-location .canada p , .contact-location .USA p {}
.contact-location .canada p i, .contact-location .USA p i{
	padding-right:8px;
	line-height: 26px;
}
.map-link {
	font-weight: 500;
	cursor: pointer;
}
.map-link:hover {
	font-weight: 600;
	color:#000;
}

.get-in-touch {
  max-width: 800px;
  margin: 50px auto;
  position: relative;

}
.get-in-touch .title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 3.2em;
  line-height: 48px;
  padding-bottom: 48px;
}



.contact-page-form .submit-btn {
  display: inline-block;
   background-color: var(--brand-color1);
	border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  padding: 8px 16px;
  border: none;
  width:200px;
  cursor: pointer;
}
.contact-page-form .submit-btn:hover {

   background-color: var(--brand-color2);
   color: #fff;
}


/*---------------------------------------
  FORM FIELDS 
-----------------------------------------*/

.form-control {
	border-radius: 0;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border-bottom: 1px solid #ced4da;
  border-top:none;
  border-left:none;
  border-right: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--brand-color1);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.0);
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-floating > label {
	
}
.form-floating > label {
  position: absolute;
  top: -10px;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

/*---------------------------------------
  FooterForm               
-----------------------------------------*/

#footer-form .form-floating .form-control{
	
	background-color: transparent;
	color: #fff;
}
#footer-form .form-floating > label {
color: #fff;
}


/*---------------------------------------
  Form Buttons               
-----------------------------------------*/

.c-button2 {
	width:200px;
	margin:0;
	height: 58px;
}
.btn-2 {
	border:none;
	background-color: transparent;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-display: 14px;
}

.btn-2 .btn-text {
	position: relative;
	top:-34px;
}
.btn-2 rect {
	 fill: none;
	 stroke: #ffd524;
	 stroke-width: 1;
	 stroke-dasharray: 422, 0;
	 transition: all 0.35s linear; 
}
 .btn-2:hover {
	 background: rgba(225, 255, 255, 0);
	 font-weight: 500;
	 letter-spacing: 2px;
	 color:#000;
}
 .btn-2:hover rect {
	 stroke-width: 1;
	 stroke-dasharray: 60, 275;
	 stroke-dashoffset: 60;
	 transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-3 {
	border:none;
	background-color: transparent;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-display: 14px;
}

.btn-3 .btn-text {
	position: relative;
	top:-34px;
	color:var(--brand-color1);
}
.btn-3 rect {
	 fill: none;
	 stroke: #ffd524;
	 stroke-width: 1;
	 stroke-dasharray: 422, 0;
	 transition: all 0.35s linear; 
}
 .btn-3:hover {
	 background: rgba(225, 255, 255, 0);
	 font-weight: 500;
	 letter-spacing: 2px;
	 color:#000;
}
 .btn-3:hover rect {
	 stroke-width: 1;
	 stroke-dasharray: 10, 582;
	 stroke-dashoffset: 60;
	 transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

























/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/

/* Min-width width 992px */
@media (min-width: 992px) {
	
	/* Navigation */
	.container-xl {
		width: 90%;
	}
	.navbar-custom .navbar-brand.logo-image {
position: relative;
top:-5px; 
	
}

	}
	.navbar-custom {
		padding: 2rem 1.5rem 2.125rem 2rem ;
        background:transparent;
		box-shadow: none;
	}


	.navbar-custom .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar-custom .nav-item .nav-link {
		padding: 0.55rem 0.75rem 0.25rem80.75rem;
	}
	
	.navbar-custom .nav-item .nav-link:hover,
	.navbar-custom .nav-item .nav-link.acti5e {
		opacity: 1;
	}



	.navbar-custom.top-nav-collapse {
       padding: 0.5rem 1.5rem 0.5rem 2rem;
       background: rgba(255, 255, 255, 0.5);
       box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
       backdrop-filter: blur(12.8px);
       -webkit-backdrop-filter: blur(12.8px);
       border: 1px solid rgba(255, 255, 255, 0.8);
		
	}

	.navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
	.navbar-custom.top-nav-collapse .nav-item .nav-link.active {
		color: #000;
	}

	.navbar-custom .dropdown-menu {
		padding-top: 1rem;
		padding-bottom: 1rem;
		border-top: 0.25rem solid rgba(0, 0, 0, 0);
		border-radius: 0.25rem;
	}

	.navbar-custom.top-nav-collapse .dropdown-menu {
		border-top: 0.25rem solid rgba(0, 0, 0, 0);

	}

	.navbar-custom .dropdown-item {
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}

	.navbar-custom .dropdown-items-divide-hr {
		width: 95%;
	}

	.navbar-custom .nav-item .btn-sm {
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 1rem;
	}
}
	/* end of navigation */


@media only screen and (max-width: 991px){
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 14px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }


  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
	
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
	 
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
	}
}
@media only screen and (max-width: 991px) {
	
.mobile-top {
  background-color:#7F3B14!important;
	
}
.custom-border{
  border-bottom: none !important;
}
	
	.container-xxl { 
		width: 90% !important;
	}
	
	.navbar-collapse ul{
		padding-bottom: 40px;
		padding-top:40px;
	}
	.mission-vision-hero, .company-hero, .web-dev-hero, .technology-hero, .contact-hero {
	height:680px !important;
	overflow: hidden;
		padding-top: 50px;
		
}
	.hero-slogan {
	width: 100%;	
}
	.first {
		padding:0px 40px 40px 0px ;
	}
	.second {
	
	padding: 0px 0px 0px 40px; 
	border-bottom:solid 1px var(--brand-color3);
	border-right:none;
	border-left:solid 1px var(--brand-color3);
}

.third {
	padding: 40px 40px 40px 0px;  
	border-bottom:solid 1px var(--brand-color3);
}
	.fourth {
			border-left:solid 1px var(--brand-color3);
		border-bottom:solid 1px var(--brand-color3);
		padding-right:0px;
	}
	.fifth {
		padding: 40px 40px 0px 0px; 
		border-left:none;
		border-right:none;
	}
	.sixth {
		
		border-left:solid 1px var(--brand-color3);
		padding: 40px 0px 0px 40px; 
	}
	
	.footer-menu {
		padding-left:0px !important;
		margin-top:80px;
	}
	.footer-menu h6, .footer-menu-list, .footer-contacts, .footer-copyright, .footer-nav ul, .footer-credentials {
		padding-left:0px;
	}
	.footer-contacts {
		padding-top:40px;
	}
	.text-box {
	border-right:none;
	padding-right:0px;
}
	.footer-credentials {
		text-align: left;
		padding-top:18px;
	}
	.contact_form {
		padding-left:0px;
		padding-top:60px;
	}
	
	.company-features {
		padding-top: 50px;
	}
	
	
	.carousel {width: 100% !important;
	padding:0px;}

	.carousel-control-prev {
   position: absolute;
	left:250px;
}

.carousel-control-next {
right:260px;
}
	
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
		.carousel-control-prev {
   position: absolute;
	left:250px;
}

.carousel-control-next {
right:260px;
}
	.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 576px) {

		.first {
			padding-bottom: 20px;
		}
		.second {
			border-left: none;
			padding: 20px 0px 20px 0px;
		}
		.third {
			padding: 20px 0px 20px 0px;
			
		}
		.fourth {
			border-left:none;
			padding: 20px 0px 20px 0px;
		}
		.fifth {
			padding: 20px 0px 20px 0px;
			border-bottom:solid 1px var(--brand-color3);
		}
		.sixth {
			padding: 20px 0px 20px 0px;
			border-left:none;
		}
		
		.no-class {
			border-left:solid 1px var(--brand-color3);
		}
		
		.expertise-details {
			padding-bottom: 50px;
		}


@media only screen and (max-width: 480px) {
	
  h1 {
    font-size: 52px;
	  line-height: 52px;
  }

  h2 {
    font-size: 28px;
	  line-height: 36px;
  }

  h3 {
    font-size: 26px;
	  line-height: auto;
  }

  h4 {
    font-size: 22px;
	  line-height: auto;
  }

  h5 {
    font-size: 20px;
  }
}


	