/********** Template CSS **********/
:root {
    --primary: #3fc71b;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background-color: red;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 370px) {

    .navbar .navbar-brand,
    .navbar a.btn {
        height: 78px;
        width: 73%;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        text-transform: lowercase;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/new-img/abt-bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #869af9cc;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
    padding: 2rem !important;
    color: white;
}

.service-item h4 {
    color: black;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 189px;
    height: 111px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 110px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}

.btn-primary {
    color: #000;
    background-color: #3fc71b;
    border-color: #3fc71b;
}


@media (min-width: 1200px) {
    .display-1 {
        font-size: 4rem;
    }
}



/*--------------------------------------------------------------
# Application
--------------------------------------------------------------*/
.checkout {
    position: relative;
    display: block;
    padding: 80px 0 80px;
}

.billing_title {
    margin-bottom: 55px;
}

.billing_title p {
    font-size: 16px;
    color: #626660;
    line-height: 26px;
    margin: 0;
    text-align: center;
}

.billing_title span {
    font-size: 16px;
    color: var(--thm-primary);
    line-height: 26px;
}

.billing_title h2 {
    font-size: 40px;
    color: var(--thm-black);
    line-height: 82px;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: -13px;
    font-family: var(--thm-font);
    text-align: center;
}

.billing_details_form .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}

.billing_details_form .bootstrap-select>.dropdown-toggle {
    position: relative;
    display: block;
    outline: none !important;
    border-radius: 5px;
    background-color: #f5f0e9 !important;
    max-width: 100%;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: #848484 !important;
    font-size: 16px;
    line-height: 50px;
    letter-spacing: normal;
    text-transform: capitalize;
    box-shadow: none !important;
}

.billing_details_form .btn-light {
    border: none;
}

.billing_details_form .btn-light:hover {
    border: none;
}

.billing_input_box span {
    color: var(--thm-primary);
}

.billing_input_box input[type="text"],
.billing_input_box input[type="email"],
.billing_input_box input[type="date"],
.billing_input_box input[type="number"],
.billing_input_box input[type="phone"],
.billing_input_box input[type="tel"] {
    height: 50px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    background: #f5f0e9;
    padding: 0 30px;
    margin-bottom: 15px;
}

.billing_input_box textarea {
    height: 130px;
    width: 100%;
    border: none;
    outline: none;
    background: #f5f0e9;
    padding: 30px 30px;
    border-radius: 5px;
}

.billing_input_box .gender {
    line-height: 50px;
    border-radius: 5px;
    background: #f5f0e9;
    padding: 0 30px;
}

.billing_input_box .gender input[type="text"] {
    background: #fff;
    width: 100px;
    line-height: 20px;
    height: 20px;
    border-bottom: 1px solid #ccc;
    padding: 0px;
}

.billing_input_box .gender label {
    margin-bottom: 0px;
}

.ship_different_address_title {
    margin-top: 30px;
}

.ship_different_address_form .ship_different_input textarea {
    height: 190px;
    width: 100%;
    border: none;
    outline: none;
    background: #f5f0e9;
    padding: 30px 30px;
    border-radius: 5px;
}

.your_order {
    padding-top: 40px;
}

.your_order h2 {
    color: var(--thm-black);
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.order_table_box {
    position: relative;
    width: 100%;
}

.order_table_detail {
    width: 100%;
}

.order_table_head {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #f5f0e9;
    border-top: 1px solid #f5f0e9;
}

.order_table_head th {
    font-size: 26px;
    color: var(--thm-black);
    font-weight: 700;
    margin: 0;
    padding: 21px 0 22px;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.order_table_detail tbody td {
    padding: 10px 0 2px;
}

.order_table_detail tbody td.pro__title {
    color: var(--thm-black);
    font-size: 16px;
}

.order_table_detail tbody td.pro__price {
    color: #878986;
    font-size: 16px;
    text-align: right;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.order_table_detail tbody td.pro__price:hover {
    color: var(--thm-primary);
}

.payments_part {
    position: relative;
    display: block;
    background: #f5f0e9;
    padding: 52px 50px 46px;
}

.direct .checkbox span {
    color: var(--thm-black);
    font-size: 26px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-left: 10px;
    text-transform: uppercase;
}

.payments_part_text {
    padding-left: 27px;
    line-height: 28px;
    margin: 12px 0 24px;
}

.payments_part_text p {
    margin: 0;
}

.paypal_payment .checkbox span {
    color: var(--thm-black);
    font-size: 26px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-left: 10px;
    text-transform: uppercase;
}

.paypal_payment .checkbox .paypal_card {
    position: relative;
    top: -6px;
    padding-left: 12px;
}

.place_order_btn {
    margin-top: 20px;
    /*float: right;*/
}

.dis {
    color: #b31111;
}

.lifont {
    font-size: 16px;
    color: white;
    font-weight: 600;
    line-height: 41px;
}



/* new codes */
.accordion {
    background-color: #178f4be6;
    color: #000;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-weight: 600;
    margin: 1px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion.active,
.accordion:hover {
    background-color: #6e6cbf !important;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 15px 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

#acc a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    line-height: 43px;
    padding-left: 34px;
    
}


.para{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

.font1{
    font-size: 20px;
}

.para li{
    font-size: 20px;
    line-height: 37px;
    list-style: none;
    
}

.para i{
    padding-right: 14px;
    color: #6e6cbf;
}

#modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    height: 100%;
    width: 100%;
  }
  
  .modalPopup {
    position: absolute;
    top: 45%;
    left: 49%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 40%;
    padding: 0 0 0px;
    -webkit-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, .2);
    box-shadow: 0 2px 10px 3px rgba(0, 0, 0, .2);
  }
  
  .modalContent {
    padding: 2px 3em;
  }
  
  .headerBar {
    width: 100%;
    background: #edcb04 url(http://cognex.com/gfx/site/bg-global-header.png) repeat-x 0 0;
    margin: 0;
    text-align: center;
  }
  
  .headerBar img {
    margin: 1em .7em;
  }
  
  .buttonStyle {
    float: right;
  
  }
  
  @media (max-width: 575px) {
    .modalPopup {
      position: absolute;
      top: 51%;
      left: 48%;
      transform: translate(-50%, -50%);
      background: #fff;
      width: 106%;
      padding: 0 0 0px;
      -webkit-box-shadow: 0 2px 10px 3px rgb(0 0 0 / 20%);
      -moz-box-shadow: 0 2px 10px 3px rgba(0, 0, 0, .2);
      box-shadow: 0 2px 10px 3px rgb(0 0 0 / 20%);
    }
    .modalContent {
        padding: 1px 2em;
      }
    .imgwid {
      width: 352px;
    }
  }

.sticky-container{
		/*background-color: #333;*/
		padding: 0px;
		margin: 0px;
		position: fixed;
		right: 0;
		top:34%; z-index:999;

	}

	.sticky li{
		list-style-type: none;
		/*background-color: #fff;*/
		color: #efefef;
		padding: 0px;
		margin: 0px 0px 1px 0px; padding-left:7px; padding-top:5px;
		-webkit-transition:all 0.25s ease-in-out;
		-moz-transition:all 0.25s ease-in-out;
		-o-transition:all 0.25s ease-in-out;
		transition:all 0.25s ease-in-out;
		cursor: pointer;
		/*filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); 
                filter: gray; 
                -webkit-filter: grayscale(100%); */

	}

	
	
	.sticky li a{ color:green;}
	
	.sticky li a:hover{ color:green;}
	
	.sticky li a i{ font-size: 60px;}

	.sticky li img{
		float: left;
		margin: 2px;

	}

	.sticky li p{
		padding: 0px;
		margin: 0px;
		text-transform: uppercase;
		line-height: 43px;

	}

	/** content **/
	/*.content{
		margin-top: 150px;
		margin-left: 100px;
		width: 700px;
	}*/

@media (max-width: 767px) {
	.sticky-container{
		right: 0;
		bottom:0;
	}
}