
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap');

body{
	/*font-family: 'Roboto', sans-serif;*/
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}
	80% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}
	80% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@keyframes rocking {
	0% {
		transform: rotate(0)
	}
	25% {
		transform: rotate(0)
	}
	50% {
		transform: rotate(2deg)
	}
	75% {
		transform: rotate(-2deg)
	}
	100% {
		transform: rotate(0)
	}
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}



@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

.effetMoveGradient,
.effetMoveGradient:hover {
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite, rocking 3s ease infinite;
  animation-delay: 2s;
  -moz-animation: Gradient 3s ease infinite, rocking 3s ease infinite;
  animation-delay: 2s;
  animation: Gradient 3s ease infinite, rocking 3s ease infinite;
  animation-delay: 2s;
  color: #fff;
  border: none
}

.effetGradient,
.effetGradient:hover {
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
  color: #fff;
  border: none
}

.effectScale {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.effectScale:hover {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	transform: scale(1.08)
}

.outer-border{
  border: 1px solid #ddd;
  box-shadow: 1px -1px 1px #ddd;
}

.main-logo{
	height: 74px; 
  padding: 5px 0;
  margin-left: 6px;
}
.navbar-toggler {
    background: transparent;
    position: relative;
    top: -4px;
}
.ab-logo{
  padding: 20px 0;
}

.navbar {
  padding: 0 10px;
}

.bg-dark {
  background-color: transparent !important;
}

.bg-grey {
  background-color: #f7f7f7;
}

.pb-20{
  padding-bottom: 20px;
}

.section{
	padding: 40px 0 40px;
}

.head1 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 10px;
}

.sub-head1 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
}

.head2 {
    font-size: 38px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 5px 0;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.head2-desc {
    font-size: 14px;
    text-align: center;
}

.devider-line {
    width: 60px;
    height: 2px;
    background: #F89733;
    margin: 20px auto;
}

.devider-line-2 {
    width: 40px;
    height: 2px;
    background: #F89733;
    margin: 0 0 12px;
}

.addr-location {
    margin-bottom: 0;
    font-weight: 600;
    padding: 4px 0;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  margin-right: 20px;
}

.navbar-dark .navbar-nav .nav-link i{
  margin-right: 4px;
}

.anc-wrapper {    
	padding: 0 6px 12px;
  text-align: center;
  background-image: -webkit-linear-gradient(top, #fff, #f1f1f1);
  background-image: -moz-linear-gradient(top, #fff, #f1f1f1);
  background-image: -ms-linear-gradient(top, #fff, #f1f1f1);
  background-image: -o-linear-gradient(top, #fff, #f1f1f1);
  background-image: linear-gradient(top, #fff, #f1f1f1);
}

.side-top-anc {
  display: inline-block;
  font-size: 14px;
  padding: 5px 10px;
  margin-bottom: 12px;
  background-color: #000000;
  color: #fff;
  cursor: pointer;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
/*  background-image: -webkit-linear-gradient(left, #ec008c, #009fc0);
  background-image: -moz-linear-gradient(left, #ec008c, #009fc0);
  background-image: -ms-linear-gradient(left, #ec008c, #009fc0);
  background-image: -o-linear-gradient(left, #ec008c, #009fc0);
  background-image: linear-gradient(left, #ec008c, #009fc0);*/
}

.py-10{
	padding: 10px 0;
}

.px-20{
	padding: 2px 20px;
}

.frm-wrapper{
	padding: 20px;
	text-align: center;
}

.brochure-btn {
	padding: 8px 20px;
  background-color: transparent;
  color: #181d24;
  border: 1px solid #181d24;
}
.brochure-btn:hover {
  text-shadow: 0 3px 6px #181d24;
  background-color: #000000;
  background: linear-gradient(-45deg, #000000, #000000 ,#343434,#343434);
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
  color: #ffffff;
  border: 1px solid transparent;
}

.sidebar{
  position: fixed;
  width: 100%;
  right: 0;
}

.exp-title {
  text-align: center;
    padding: 8px 10px 10px;
    color: #1a1919;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /*max-width: 220px;*/ 
    background: #fff;
    border-radius: 4px;
    position: relative;
    top: 0px;
    margin-bottom: 25px;
}

.exp-img {
    margin: 0 auto;
    display: block;
    height: 80px;
    width: 80px;
}
.caption-logo{
  height: 90px;
  margin: 0 auto 10px;
  display: block;
}
a:hover{
	text-decoration: none;
	color: #5ab1c8;
}

.btn-pricing{
  margin-left: 22px;
}

.foot-ul {
  font-size: 14px;
  line-height: 14px;
  list-style-type: none;
  padding-left: 10px;
}
.foot-ul i {
  color: #ffffff;
  /* border-radius: 0 15px 15px 0; */
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding: 3px 0;
}

.foot-ul a{
  color: #ffffff;
  }
.dev-logo{
  display: block;
  margin: 0 auto;
  height: 100px;
}

footer {
    background: #f89733;
    color: #fdfdfd;
    font-size: 13px;
    padding: 55px 0 35px;
}

.foot-logo{
  height: 80px;
  margin: 10px auto;
  display: block;
}

.foot-head {
    font-size: 15px;
    font-weight: 600;
}

.gal-wrap{
	margin: 8px 0;
}

.mclose {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #ddd;
  padding: 4px 6px !important;
  font-size: 15px;
  border-radius: 20px;
  opacity: 1;
}


/* Stackoverflow preview fix, please ignore */
.navbar-nav {
  flex-direction: row;
}

/* Fixes dropdown menus placed on the right side */
.ml-auto .dropdown-menu {
  left: auto !important;
  right: 0px;
}

p.ul-head {
  color: #000912;
  font-weight: 600;
  font-size: 14px;    
  margin-bottom: 0px;
}

#ul-spec li {
  font-size: 13px;
  line-height: 16px;
}

#ul-spec ul {
  /*list-style-type: none;*/
  padding-left: 5px;
}

.has-error small.help-block {
  color: #c71414;
}

.btn-orange{
    background: #f89733;
}

#fixedbutton_brouchure {
  position: fixed;
  right: -20px;
  top: 35%;
  transform: rotate(-90deg);
  z-index: 9;
  background: #7a7a7a;
  padding: 2px 10px;
  color: #ffffff;
  box-shadow: 0px 0px 2px #21201e;
}

.sticky_footer{
  position: fixed;
  bottom: -75px;
  visibility:hidden;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 8px 0;
  background-color: #454658;      
  /*background: linear-gradient(180deg, #9b4282, #9b4282, #7a4197, #7d3b9f);*/
  box-shadow: -14px -6px 11px 0 #27202036;
  text-align: center;
  opacity: 0;
  transition: 0.5s all ease;
}
.sticky_footer_active{
  visibility:visible;
  bottom: 0;
  opacity: 1;
}
.sticky_footer a{
  color: #fff;
  font-size: 0 ;
  display: inline-block;
}
.sticky_footer a span{
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
.sticky_footer a span.icon-wrap{
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
.sticky_footer .br{
  border-right: 1px solid #e6e7e9;
}
.sticky_footer .col-md-4:nth-of-type(3){
  border:none;
}



.tag-offer {
  margin-top: 10px;
  background-color: #dc3545;
  color: #fff;
  text-shadow: .5px .5px 1px rgba(117, 94, 0, .28);
  font-size: 1rem;
  padding: 2px 5px;
  text-transform: uppercase
}

.tag-offer:after {
  content: "";
  position: absolute;
  border-left: 9.5px solid #dc3545;
  border-right: 9.5px solid transparent;
  border-top: 9.5px solid #dc3545;
  border-bottom: 9.5px solid #dc3545;
}

.blink-soft {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.offer-block {
  color: #fff;
  display: block;
  background-color: #000000;
  background: linear-gradient(-45deg, #000000, #dc3545 ,#343434,#ff4052);
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
  font-size: 18px;
  padding: 4px 6px;
  margin: 5px 15px;
  text-align: center;
}


header { 
  position: relative;
  z-index: 99;
}

.main-banner {
  background-image: url("../img/banner.jpg");
  background-size: cover;    
  position: relative;
    z-index: 1;
  top: -80px;
  width: 100%;
  padding: 200px 0;
}
.about-banner {
  background-image: url("../img/ab-banner.png");
  background-size: cover;    
  position: relative;
    z-index: 1;
  top: -80px;
  width: 100%;
  padding: 200px 0;
}
.career-banner {
  background-image: url("../img/career-banner.jpg");
  background-size: cover;    
  position: relative;
    z-index: 1;
  top: -65px;
  width: 100%;
  padding: 200px 0;
}
.contact-banner {
  background-image: url("../img/contact-banner.jpg");
  background-size: cover;    
  position: relative;
    z-index: 1;
  top: -65px;
  width: 100%;
  padding: 200px 0;
}
.banner-caption{
    text-align: center;
    color: #fff;    
    margin: 15px 0;
}
.btn-common  {
  margin-left: 22px;
  box-shadow: 0 0 0 1px #5ab1c8 inset;
  color: #ffffff;
  background-color: transparent !important;
  padding: 1em 1.7em;
  font-size: 16px;
  border-radius: 0;
}
.btn-common:hover {  
  color: #000000;
  background: #fff !important;
}

.common-cnt{  
    margin-top: -140px;
    position: relative;
    padding: 40px 45px;
    box-shadow: 0 0 3px 0 #9f9d9d;
    border-radius: 12px;
    z-index: 9;
    background: #fff;
}

.btn-common-black  {
  /*margin-left: 22px;*/
  box-shadow: 0 0 0 1px #5ab1c8 inset;
  color: #000000;
  background-color: transparent !important;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 0;
}
.btn-common-black:hover {  
  color: #000000;
  background: #fff !important;
}
.form-control{
  border-radius: 0;
}
.foot-copy{
  padding: 10px 0 0;
}

@media (max-width: 767px) { 

  .navbar-nav {
    flex-direction: row;
    display: block;
  }
  li.nav-item {
    display: block;
  }
  .navbar-toggler {    
    background-color: transparent;
    border: none;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 5px 0;
    line-height: 32px;
}

  .table-sm td, .table-sm th {
    padding: 4px;
  }

  .navbar-toggler {
    padding: 2px 9px;
    font-size: 16px;
  }

  .head1 {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 10px;
}
.btn-common {
    padding: 10px;
    font-size: 14px;
    border-radius: 0;
}

.foot-copy{
  padding: 10px 0 35px;
}

.main-banner {
    padding: 200px 0 !important;
    background-position: center;
    }


.section {
    padding: 25px 0 25px;
}

.contact-banner, .about-banner, .career-banner {
    padding: 70px 0 !important;
}

#onloadModal .modal-content p {
  margin-bottom: 3px;
}
.head2 {
    font-size: 28px;
    line-height: 28px;
    }

    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    width: 100%;
    height: 100%;
    background: #f89733;
    }

    .navbar-collapse.collapsing {
        left: -75%;
        transition: height 0s ease;
    }

    .navbar-collapse.show {
        left: 0;
        transition: left 300ms ease-in-out;
    }

    .navbar-toggler.collapsed ~ .navbar-collapse {
        transition: left 500ms ease-in-out;
    }

}


@media (min-width: 768px) and (max-width: 991px) {
  .navbar-dark .navbar-nav .nav-link {
    color: rgb(255 255 255);
    text-transform: uppercase;
    font-size: 12px;
    margin-right: 4px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-dark .navbar-nav .nav-link {
    font-size: 11px;
    margin-right: 4px;
  }

}

.border-rhs{
   text-decoration: none;
   display: inline-block;
}
.border-rhs::after{
   content: '';
   display: block;
   width: 0;    
   height: 2px;
   background: #5ab1c8;
   transition: width 0.3s ease;
}
.border-rhs:hover::after, .active>.border-rhs::after{
   width: 100%;  
}
.text-green{
  color: #31b3cb;
}
.text-orange{
  color: #F89733;
}


.am-wrap .partner-img {
    height: 70px;
    display: block;
    margin: 0 auto;
} 

.btn-primary {
    color: #222121 !important;
    background-color: #f7f7f7;
    border: 1px solid #31b3cb !important;
}

.btn-primary:hover {
    color: #000 !important;
    background-color: #31b3cb;
    border: 1px solid #31b3cb !important;
}

.trigger-box {
    margin-bottom: 15px;
}

.trigger-box:hover {
  cursor: pointer;
    box-shadow: 1px 1px 1px 0 #ddd;
}

.popover-body {
    padding: 0.5rem 0.75rem;
    color: #212529;
    height: 260px;
    overflow-y: auto;
}