/**
 * The template for custom.css
 * 
 */

.section-padding {
  padding: 75px 0;
}
.section-heading h1 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
}
.section-heading p {
  font-size: 20px;
  text-align: center;
}
.section-heading mark {
  color: var(--ah-1st-color);
}

/*-----------------------------------------------------------------------------
    ah-preloader
------------------------------------------------------------------------------*/
#ah-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ah-load {
    position: relative;
    width: 100px;
    height: 100px;
}
/*-----------------------------------------------------------------------------
 site header
------------------------------------------------------------------------------*/
.site-header {
  background-color: #fff;
  padding: 15px 0;
}
.header-left-block,
.header-center-block,
.header-right-block {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header-left-block {
  justify-content: flex-start;
}
.header-right-block {
  justify-content: flex-end;
}
.fixed-header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  /* background: #fff; */
  z-index: 999;
  box-shadow: 0 1px 3px 0 rgba(32, 33, 36, 0.28);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  transition: 0.5s ease-out;
  border-bottom: 3px solid var(--ah-1st-color);
}

/*-----------------------------------------------------------------------------
 
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 site search
------------------------------------------------------------------------------*/
.search-container .search-btn {
  background-color: var(--ah-2nd-color);
  color: #fff;
  min-width: 60px;
}
.search-container {
  width: 100%;
  border: 1px solid var(--ah-1st-color);
}
.search-container input {
  border: 0;
}
.search-container .input-group {
  width: 100%;
}

/*-----------------------------------------------------------------------------
 Home Slider
------------------------------------------------------------------------------*/
.home-slider{
  background-color: #f3f7fa;
  padding: 80px 0;
}
.slide-banner-left {
  height: 100%;
  display: flex;
  align-items: center;
}
.home-slider .title{
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  text-align:left;
}
.home-slider .sub-title{
  color: #04637e;
  font-size: 52px;
  font-weight: 600;
  line-height: 70px;
  text-align:left;
}

.slider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.slider-content p {
    font-size: 15px;
    line-height: 29px;
    font-weight: 600;
    color: #000;

}

.ah-slider-btn {
    z-index: 13;
    white-space: nowrap;
    font-size: 17px;
    line-height: 17px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    background-color: rgb(126 166 65);
    border-radius: 7px;
    margin-top: 15px !important;
    padding: 5px 31px;
    font-weight: normal;
    transition: 0.5s;
}

.ah-slider-btn i {
    opacity: 0;
    transition: 0.5s;
    margin-left: -10px;
}

.ah-slider-btn:hover {
    background-color: rgb(0, 0, 0, 0.22);
    color: #fff;
}

.ah-slider-btn:hover i {
    opacity: 1;
    color: #fff;
    margin-left: 3px;
}

button.seq-next,
button.seq-prev {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    outline: none;
    /*opacity:0;*/
    transition: 0.4s;
}

.home-slider .seq-canvas li:hover .seq-prev,
.home-slider .seq-canvas li:hover .seq-next {
    opacity: 1;
}

button.seq-prev {
    position: absolute;
    left: 0;
    top: 50%;
    margin-left: 20px;
    background: #0000009e;
    z-index: 200;
    transform: translateY(-50%);
}

button.seq-next {
    position: absolute;
    right: 0;
    top: 50%;
    margin-right: 20px;
    background: #0000009e;
    z-index: 200;
    transform: translateY(-50%);
}

.banner-content h2 {
    font-size: 44px;
    text-shadow: -1px 3px #425e16;
    color: #7ea641;
}

.seq .title {
    transform: translateX(-1000%) !important;
}

.feature {
    transform: translateX(1000%) !important;
}

.seq-in .feature {
    transform: translateX(0%) !important;
}

.seq-in .title {
    transform: translateX(0%) !important;
}

/*
 * Styles: Body, HTML, and container
 * 1: Make the application fullscreen
 * 2: Basic reset styles
 */
.seq {

    /* #1 */
    width: 100%;
    height: 100%;

    /* #2 */
    margin: 0;
    padding: 0;
}

.home-slider .seq-canvas,
.home-slider .seq-canvas>* {
    height: 380px !important;
    width: 100%;
}

/*
 * Styles: Container
 * 1: Canvas, steps, and content should be positioned relative to the container
 * 2: Hide anything that goes beyond the boundaries of the Sequence container
 * 3: Some basic styles
 * 4: Set the initial background color
 * 5: Make the background color transition when navigating between steps
 */
.seq {

    /* #1 */
    position: relative;

    /* #2 */
    overflow: hidden;
    text-align: center;

    /* #4 */
    /*background-color: #2A93BC;*/

    /* #5 */
    -webkit-transition-duration: .5s;
    -webkit-transition-property: background-color;
    transition-duration: .5s;
    transition-property: background-color;
}

/*
 * Styles: Canvas and steps
 * 1: Make the width/height of the screen, canvas, and steps the same size as the Sequence element
 * 2: Reset the canvas and steps for better browser consistency
 */
.seq-canvas,
.seq-canvas>* {

    /* #1 */
    height: 100%;
    width: 100%;

    /* #2 */
    margin: 0;
    padding: 0;
    list-style: none;
}

/*
 * Styles: steps
 * 1: Position steps all in the same place
 * 2: Add whitespace around each step
 * 3: Make space for the pagination
 */
.seq-canvas>* {
    /* #1 */
    position: absolute;

    /* #2 */
    padding: 0 32px;
    box-sizing: border-box;

    /* #3 */
    height: auto;
    top: 0;
    bottom: 80px;
}

/*.seq-step1 {*/
/*  background-color: #2A93BC;*/
/*}*/

/*.seq-step2 {*/
/*  background-color: #6BC85E;*/
/*}*/

/*.seq-step3 {*/
/*  background-color: #45367E;*/
/*}*/

.feature {
    /*width: 70%;*/
    max-width: 100%;
    height: auto;
}

@media only screen and (min-width: 460px) and (min-height: 520px) {
    .feature {
        width: 100%;
    }
}


/* Ghost element */
.valign:before {
    content: "";
    height: 100%;
}

/* Vertically align the ghost and desired elements */
.valign:before,
.valign>.vcenter {
    display: inline-block;
    vertical-align: middle;
}

/* Remove 4px gap to allow consistent valign */
.valign {
    font-size: 0;
}

/* Reset font-size on valigned elements */
.valign>.vcenter {
    font-size: 16px;
}

/*
 * 1: Reset
 * 2: Titles should start as transparent
 * 3: When a change in opacity occurs, transition over .5s
 */
.seq .title {
    opacity: 0;
    -webkit-transform: translateX(50px) translateZ(0);
    transform: translateX(50px) translateZ(0);

    /* #3 */
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-property: opacity, transform;
    transition-property: opacity, transform;
}

/*
 * When a step is active, fade in to opaque and slide to the center
 */
.seq-in .title {
    opacity: 1;
    -webkit-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0);
}

/*
 * When a step becomes inactive, fade out and slide to the left
 */
.seq-out .title {
    opacity: 0;
    -webkit-transform: translateX(-50px) translateZ(0);
    transform: translateX(-50px) translateZ(0);
}

/*
 * Scale an image to 0 (so it can't be seen) when in its start position
 */
.seq .feature {
    -webkit-transform: translateZ(0) scale(0);
    -webkit-transition-duration: .5s;
    -webkit-transition-property: transform, opacity;
    transform: translateZ(0) scale(0);
    transition-duration: .5s;
    transition-property: transform, opacity;
}

/*
 * When a step is active, make the image scale in
 */
.seq-in .feature {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}

/*
 * When a step becomes inactive, make the image fade out but maintain full scale
 */
.seq-out .feature {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    opacity: 0;
}

/*
 * Styles: element holding navigation UI
 * 1: Position the nav 40px from the bottom and make it full-width
 * 2: Reset styles for the <fieldset> element
 */
.pagination-btn {
    position: relative;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0.5em;
    max-width: 100%;
    width: 100%;
    border: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
 * Styles: previous/next buttons
 * 1: Reset styles
 * 2: General styles
 * 3: Set up the `opacity` so that it will transition from 70% transparency to opaque when hovered over
 */
.seq-next,
.seq-prev {
    /* #1 */
    padding: 0;
    background: transparent;
    border: none;

    /* #2 */
    padding: .75em;
    cursor: pointer;
    color: white;
    font-size: .75em;
    text-transform: uppercase;

    /* #3 */
    opacity: .7;
    -webkit-transition-duration: .25s;
    -webkit-transition-property: opacity;
    transition-duration: .25s;
    transition-property: opacity;
}

.seq-next:hover,
.seq-prev:hover {
    opacity: 1;
}

/*
 * Styles: next/previous buttons and pagination container
 */

.seq-pagination {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
}

/*
 * Add some space to sides of pagination
 */
.seq-pagination {
    margin: 0 1em;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

/*
 * Styles: pagination links
 * 1: Make the links relative so their active indicator dot can be position: absolute
 * 2: Reset styles
 * 3: Make the links sit side-by-side
 * 4: General styles
 */
.seq-pagination li {
    position: relative;
    list-style: none;
    display: flex;
    width: 15px;
    height: 15px;
    margin: 0 0.25em;
    
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/*
 * Styles: A small dot that appears when a pagination link is active
 * 1: position the dot under the image and centered
 * 2: Make the dot transparent when not active and set up a transition for when it becomes active
 */
.seq-pagination li:before {
    /* #1 */
    content: "";
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;

    /* #2 */
    opacity: 0;
    -webkit-transition-duration: .25s;
    -webkit-transition-property: opacity;
    transition-duration: .25s;
    transition-property: opacity;
}

/*
 * Show the indicator dot for the current link
 */
.seq-pagination .seq-current:before {
    opacity: 1;
}

.seq-pagination li.seq-current {

    background-color: #000;
}

/*
 * Reset styles
 */
.seq-pagination img,
.seq-pagination a {
    display: block;
    border: none;
}/*-----------------------------------------------------------------------------
 Home Slider
------------------------------------------------------------------------------*/
.home-slider{
  background-color: #f3f7fa;
  padding: 80px 0;
}
.slide-banner-left {
  height: 100%;
  display: flex;
  align-items: center;
}
.home-slider.title{
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}
.home-slider.sub-title{
  color: #04637e;
  font-size: 50px;
  font-weight: 600;
  line-height: 70px;
}

.slider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.slider-content p {
    font-size: 15px;
    line-height: 29px;
    font-weight: 600;
    color: #000;

}
.home-slider .seq-canvas,
.home-slider .seq-canvas>* {
    height: 380px !important;
    width: 100%;
}
.ah-slider-btn {
    z-index: 13;
    white-space: nowrap;
    font-size: 17px;
    line-height: 17px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    background-color: rgb(126 166 65);
    border-radius: 7px;
    margin-top: 15px !important;
    padding: 5px 31px;
    font-weight: normal;
    transition: 0.5s;
}

.ah-slider-btn i {
    opacity: 0;
    transition: 0.5s;
    margin-left: -10px;
}

.ah-slider-btn:hover {
    background-color: rgb(0, 0, 0, 0.22);
    color: #fff;
}

.ah-slider-btn:hover i {
    opacity: 1;
    color: #fff;
    margin-left: 3px;
}

button.seq-next,
button.seq-prev {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    outline: none;
    /*opacity:0;*/
    transition: 0.4s;
}

.home-slider .seq-canvas li:hover .seq-prev,
.home-slider .seq-canvas li:hover .seq-next {
    opacity: 1;
}

button.seq-prev {
    position: absolute;
    left: 0;
    top: 50%;
    margin-left: 20px;
    background: #0000009e;
    z-index: 200;
    transform: translateY(-50%);
}

button.seq-next {
    position: absolute;
    right: 0;
    top: 50%;
    margin-right: 20px;
    background: #0000009e;
    z-index: 200;
    transform: translateY(-50%);
}

.banner-content h2 {
    font-size: 44px;
    text-shadow: -1px 3px #425e16;
    color: #7ea641;
}

.seq .title {
    transform: translateX(-1000%) !important;
}

.feature {
    transform: translateX(1000%) !important;
}

.seq-in .feature {
    transform: translateX(0%) !important;
}

.seq-in .title {
    transform: translateX(0%) !important;
}

/*
 * Styles: Body, HTML, and container
 * 1: Make the application fullscreen
 * 2: Basic reset styles
 */
.seq {

    /* #1 */
    width: 100%;
    height: 100%;

    /* #2 */
    margin: 0;
    padding: 0;
}



/*
 * Styles: Container
 * 1: Canvas, steps, and content should be positioned relative to the container
 * 2: Hide anything that goes beyond the boundaries of the Sequence container
 * 3: Some basic styles
 * 4: Set the initial background color
 * 5: Make the background color transition when navigating between steps
 */
.seq {

    /* #1 */
    position: relative;

    /* #2 */
    overflow: hidden;
    /* #4 */
    /*background-color: #2A93BC;*/

    /* #5 */
    -webkit-transition-duration: .5s;
    -webkit-transition-property: background-color;
    transition-duration: .5s;
    transition-property: background-color;
}

/*
 * Styles: Canvas and steps
 * 1: Make the width/height of the screen, canvas, and steps the same size as the Sequence element
 * 2: Reset the canvas and steps for better browser consistency
 */
.seq-canvas,
.seq-canvas>* {

    /* #1 */
    height: 100%;
    width: 100%;

    /* #2 */
    margin: 0;
    padding: 0;
    list-style: none;
}

/*
 * Styles: steps
 * 1: Position steps all in the same place
 * 2: Add whitespace around each step
 * 3: Make space for the pagination
 */
.seq-canvas>* {
    /* #1 */
    position: absolute;

    /* #2 */
    padding: 0 32px;
    box-sizing: border-box;

    /* #3 */
    height: auto;
    top: 0;
    bottom: 80px;
}

/*.seq-step1 {*/
/*  background-color: #2A93BC;*/
/*}*/

/*.seq-step2 {*/
/*  background-color: #6BC85E;*/
/*}*/

/*.seq-step3 {*/
/*  background-color: #45367E;*/
/*}*/

.feature {
    /*width: 70%;*/
    max-width: 100%;
    height: auto;
}

@media only screen and (min-width: 460px) and (min-height: 520px) {
    .feature {
        width: 100%;
    }
}


/* Ghost element */
.valign:before {
    content: "";
    height: 100%;
}

/* Vertically align the ghost and desired elements */
.valign:before,
.valign>.vcenter {
    display: inline-block;
    vertical-align: middle;
}

/* Remove 4px gap to allow consistent valign */
.valign {
    font-size: 0;
}

/* Reset font-size on valigned elements */
.valign>.vcenter {
   
}

/*
 * 1: Reset
 * 2: Titles should start as transparent
 * 3: When a change in opacity occurs, transition over .5s
 */
.seq .title {
    opacity: 0;
    -webkit-transform: translateX(50px) translateZ(0);
    transform: translateX(50px) translateZ(0);
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-property: opacity, transform;
    transition-property: opacity, transform;
}

/*
 * When a step is active, fade in to opaque and slide to the center
 */
.seq-in .title {
    opacity: 1;
    -webkit-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0);
}

/*
 * When a step becomes inactive, fade out and slide to the left
 */
.seq-out .title {
    opacity: 0;
    -webkit-transform: translateX(-50px) translateZ(0);
    transform: translateX(-50px) translateZ(0);
}

/*
 * Scale an image to 0 (so it can't be seen) when in its start position
 */
.seq .feature {
    -webkit-transform: translateZ(0) scale(0);
    -webkit-transition-duration: .5s;
    -webkit-transition-property: transform, opacity;
    transform: translateZ(0) scale(0);
    transition-duration: .5s;
    transition-property: transform, opacity;
}

/*
 * When a step is active, make the image scale in
 */
.seq-in .feature {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}

/*
 * When a step becomes inactive, make the image fade out but maintain full scale
 */
.seq-out .feature {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    opacity: 0;
}

/*
 * Styles: element holding navigation UI
 * 1: Position the nav 40px from the bottom and make it full-width
 * 2: Reset styles for the <fieldset> element
 */
.pagination-btn {
    position: relative;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0.5em;
    max-width: 100%;
    width: 100%;
    border: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
 * Styles: previous/next buttons
 * 1: Reset styles
 * 2: General styles
 * 3: Set up the `opacity` so that it will transition from 70% transparency to opaque when hovered over
 */
.seq-next,
.seq-prev {
    /* #1 */
    padding: 0;
    background: transparent;
    border: none;

    /* #2 */
    padding: .75em;
    cursor: pointer;
    color: white;
    font-size: .75em;
    text-transform: uppercase;

    /* #3 */
    opacity: .7;
    -webkit-transition-duration: .25s;
    -webkit-transition-property: opacity;
    transition-duration: .25s;
    transition-property: opacity;
}

.seq-next:hover,
.seq-prev:hover {
    opacity: 1;
}

/*
 * Styles: next/previous buttons and pagination container
 */

.seq-pagination {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
}

/*
 * Add some space to sides of pagination
 */
.seq-pagination {
    margin: 0 1em;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

/*
 * Styles: pagination links
 * 1: Make the links relative so their active indicator dot can be position: absolute
 * 2: Reset styles
 * 3: Make the links sit side-by-side
 * 4: General styles
 */
.seq-pagination li {
    position: relative;
    list-style: none;
    display: flex;
    width: 15px;
    height: 15px;
    margin: 0 0.25em;
    background: #969696;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/*
 * Styles: A small dot that appears when a pagination link is active
 * 1: position the dot under the image and centered
 * 2: Make the dot transparent when not active and set up a transition for when it becomes active
 */
.seq-pagination li:before {
    /* #1 */
    content: "";
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;

    /* #2 */
    opacity: 0;
    -webkit-transition-duration: .25s;
    -webkit-transition-property: opacity;
    transition-duration: .25s;
    transition-property: opacity;
}

/*
 * Show the indicator dot for the current link
 */
.seq-pagination .seq-current:before {
    opacity: 1;
}

.seq-pagination li.seq-current {

    background-color: #000;
}

/*
 * Reset styles
 */
.seq-pagination img,
.seq-pagination a {
    display: block;
    border: none;
}

/*-----------------------------------------------------------------------------
  #End Section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 Home Banner 
------------------------------------------------------------------------------*/
.home-banner {
  background-color: #f3f7fa;
  padding: 80px 0;
}
.home-banner-left {
  height: 100%;
  display: flex;
  align-items: center;
}
.home-banner .title{
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}
.home-banner .sub-title{
  color: #04637e;
  font-size: 50px;
  font-weight: 600;
  line-height: 70px;
}
/*-----------------------------------------------------------------------------
  #End Section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 portfolio Section
------------------------------------------------------------------------------*/
.portfolio-item {
  border: 1px solid #dedede;
  border-radius: 10px;
}

.portfolio-item-text {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #d7e1e8;
}
.portfolio-item-text h2 {
  font-weight: 600;
}

.portfolio-item a {
  width: 100%;
  display: flex;
  padding: 20px;
  height: 120px;
  max-height: 120px;
  align-items: center;
  justify-content: center;
}

.portfolio-item a img {
  max-width: 100%;
  max-height: 80px;
}
/*-----------------------------------------------------------------------------
  #End Section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 #review-section
------------------------------------------------------------------------------*/
.review-section .section-title h1,
.review-section .section-title-content p {
  color: #fff;
}
.what-say {
  background: #000 !important;
}

.review {
  margin: 0 20px 40px;
}

.review .review-content {
  padding: 35px 25px 35px 50px;
  margin-bottom: 35px;
  background: #fff;
  position: relative;
}

.review .review-content:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  border-top: 15px solid #718076;
  border-left: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.review .review-content:after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  border-top: 15px solid #718076;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.review-content .review-icon {
  width: 50px;
  height: 45px;
  background: #0cca4a;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  position: absolute;
  top: 37px;
  left: -19px;
}

.review-content .review-icon:before {
  content: "";
  border-bottom: 16px solid #05a739;
  border-left: 18px solid transparent;
  position: absolute;
  top: -16px;
  left: 1px;
}

.review .description {
  font-size: 15px;
  font-style: italic;
  color: #8a8a8a;
  line-height: 23px;
  margin: 0;
}

.review .title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #b6c7be;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}

.review span {
  margin-top: 8px;
  display: block;
  font-size: 14px;
  color: #0cca4a;
}

.owl-theme .owl-controls {
  margin-top: 20px;
}

.owl-theme .owl-controls .owl-page span {
  background: #ccc;
  opacity: 1;
  transition: all 0.4s ease 0s;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #0cca4a;
}
.review-content .image {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  border: 2px solid #0cca4a;
}
/*-----------------------------------------------------------------------------
  #End Section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 #contact Section
------------------------------------------------------------------------------*/
.contact-item {
  height: 100%;

  padding: 8px;
}

.contact-item .top-item {
  display: flex;

  align-items: center;

  justify-content: center;
}

.contact-item .top-item .images {
  width: 30%;

  float: left;
}
/*-----------------------------------------------------------------------------
  #End Section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 #About Section
------------------------------------------------------------------------------*/
.homepage-about-section {
  background-image: url("../images/about-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.about-left.video {
  background-image: url("../images/about-play.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.about-main {
    margin-top: 50px;
}
.about-right {
  padding-left: 25px;
}
.about-right h2 {
  font-size: 26px;
  font-weight: 600;
}
.about-right .content {
  margin-bottom: 35px;
  text-align: justify;
}
.about-right .left h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 15px 0;
  margin-top: 26px;
}
.about-right .left p {
    margin-bottom: 57px;
}
.about-right .left image {
  width: 70px;
  height: 70px;
}
.about-right .left img {
  height: 65px;
}

.about-right .link {
  margin-top: 20px;
}
.about-btn {
  background-color: var(--ah-2nd-color);
  color: #fff;
  padding: 7px 25px;
  min-width: 175px;
  font-size: 18px;
  font-weight: 600;
}
/*-----------------------------------------------------------------------------
 #end section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 #Product-section
------------------------------------------------------------------------------*/

.cyberworld-product-item {
  background-color: #f9fafd;
  padding: 25px;
  height: 100%;
}

.cyberworld-product-item .image {
  height: 90px;
  width: 90px;
  flex: 0 0 85px;
  max-width: 85px;
  margin-right: 25px;
  display: flex;
  align-items: center;
}

.cyberworld-product-item .image img {
  max-width: 100%;
}

.cyberworld-product-item .content p {
  font-size: 20px;
  margin-bottom: 0;
}

.cyberworld-product-item .link {
  display: flex;
  align-items: center;
}

/*-----------------------------------------------------------------------------
 #End section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 #promo-section
------------------------------------------------------------------------------*/

.promo-section .right,
.promo-section .left {
  height: 100%;
  display: flex;
  align-items: center;
}

.promo-section .promo-btn {
  background-color: var(--ah-2nd-color);
  color: #fff;
  padding: 8px 25px;
}

.promo-section .content {
  margin: 30px 0;
  font-size: 18px;
}

/*-----------------------------------------------------------------------------
 #End section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 #service-Section
------------------------------------------------------------------------------*/
.cyberworld-service-item {
  background-color: #f9fafd;
  padding: 25px;
  height: 100%;
}

.cyberworld-service-item .image {
  height: 100px;
  width: 100px;
  margin-bottom: 50px;
  margin-top: 10px;
}

.cyberworld-service-item .image img {
  max-width: 100%;
}

.cyberworld-service-item .content h1 {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
}
.cyberworld-service-item .content {
    min-height: 150px;
    margin-bottom: 15px;
}
.cyberworld-service-item .content p {
  font-size: 18px;
  margin:0;
}

.cyberworld-service-item .link {
  font-weight: 600;
  font-size: 16px;
  line-height: 35px;
}
/*-----------------------------------------------------------------------------
  #End Section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
  #product page Section
------------------------------------------------------------------------------*/
.product-usable,
.product-contact,
.product-about,
.product-feature,
.product-module,
.product-top{
    padding:80px 0;
}
.product-top {
    background-color: #F3F7FA;
}

    .product-top .left h1 {
        color: #04637E;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 25px;
    }
    .product-top .left p {
        text-align: justify;
    }
    .product-top .right.video {
        background-image: url('../images/about-play.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 100%;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }
    
    .product-feature .right ul {
      columns: 2; 
      column-gap: 35px;
    }
    .product-feature .title {
        background-color: var(--ah-1st-color);
        color: #fff;
        padding: 8px 15px;
        text-align:center;
    }
    .product-feature .title h1 {
        font-size: 28px;
        margin-bottom: 0;
    }
    .product-feature .right ul li {
        
        font-size: 17px;
        padding: 8px;
        
    }
    
    .product-feature .right ul li::before {
        position: relative;
        content: "\f058";
        font-family: 'FontAwesome';
        left: 0;
        margin-right: 8px;
        color: var(--ah-2nd-color);
    }
    
    .product-about .right p {
        font-size: 18px;
        text-align: justify;
    }
    .product-about .right h1 {
        font-size: 46px;
        font-weight: 600;
        margin-bottom: 40px;
    }
    .product-about .right a {
        padding: 10px 20px;
        background-color: var(--ah-2nd-color);
        color: #fff;
        font-weight: 500;
        margin-top: 25px;
    }
    .product-module .title {
        text-align: center;
    }
    .product-module .title h1{
        font-weight:600;
        margin-bottom:25px;
    }
    .product-module{
      background-color:#F3F7FA;
    }
    .product-module .tab-content{
        padding:25px;
        background-color:#fff;
    }
    .product-module .tab-content .content ul li {
       font-size: 17px;
        padding: 8px; 
    }
    .product-module .tab-content .content ul li::before {
        position: relative;
        content: "\f058";
        font-family: 'FontAwesome';
        left: 0;
        margin-right: 8px;
        color: var(--ah-2nd-color);
    }
    .product-module .nav.nav-tabs{
        flex-wrap: unset;
    }
    .product-module li.nav-item {
        flex-grow: 1;
    }
    .product-module .nav-tabs .nav-link {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        text-align:center;
        font-weight:600;
    }
    .product-module .tab-content {
        padding: 25px;
        background-color: #fff;
        border: 1px solid #dee2e6;
        border-top: 0;
    }
    .product-contact-bg {
        position: relative;
    }
    .pc-content {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 10;
        color: #fff;
        padding:20px;
    }
    .pc-content .row {
        align-items: center;
        height: 100%;
    }
    .pc-content .pc-btn {
       height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pc-content .pc-btn a{
        padding: 10px 20px;
        background-color: var(--ah-2nd-color);
        color: #fff;
        font-weight: 500;
    }
    
    .product-contact h2 {
        font-weight: 600;
    }
    .product-usable .title h1{
        font-weight:600;
        margin-bottom:25px;
    }


/*-----------------------------------------------------------------------------
  #End Section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
  #service page Section
------------------------------------------------------------------------------*/
.service-usable,
.development-service,
.service-contact,
.service-about,
.service-feature,
.service-module,
.service-top{
    padding:75px 0;
}
.service-top {
    background-color: #F3F7FA;
}

    .service-top .left h1 {
        color: #04637E;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 25px;
    }
    .service-top .left p {
        text-align: justify;
    }
    .service-top .right.video {
        background-image: url('../images/about-play.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 100%;
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }
    .service-top .service-btn {
        margin-top: 30px;
    }
    
    .service-feature .right ul {
      columns: 2; 
      column-gap: 35px;
    }
    .service-feature .title {
        background-color: var(--ah-1st-color);
        color: #fff;
        padding: 8px 15px;
        text-align:center;
    }
    .service-feature .title h1 {
        font-size: 28px;
        margin-bottom: 0;
    }
    .service-feature .right ul li {
        
        font-size: 17px;
        padding: 8px;
        
    }
    
    .service-feature .right ul li::before {
        position: relative;
        content: "\f058";
        font-family: 'FontAwesome';
        left: 0;
        margin-right: 8px;
        color: var(--ah-2nd-color);
    }
    
    .service-about .right p {
        font-size: 18px;
        text-align: justify;
    }
    .service-about .right h1 {
        font-size: 46px;
        font-weight: 600;
        margin-bottom: 40px;
    }
    .service-about .right a {
        padding: 10px 20px;
        background-color: var(--ah-2nd-color);
        color: #fff;
        font-weight: 500;
        margin-top: 25px;
    }
    .service-module .title {
        text-align: center;
    }
    .service-module .title h1{
        font-weight:600;
        margin-bottom:25px;
    }
    .service-module{
      /*background-color:#F3F7FA;*/
    }
    .service-module .tab-content{
        padding:25px;
        background-color:#fff;
    }
    .service-module .tab-content .content ul li {
       font-size: 17px;
        padding: 8px; 
    }
    .service-module .tab-content .content ul li::before {
        position: relative;
        content: "\f058";
        font-family: 'FontAwesome';
        left: 0;
        margin-right: 8px;
        color: var(--ah-2nd-color);
    }
    .service-module-tab-nav {
        display: flex;
        justify-content: space-between;
        background: #fff;
    }

    .service-module-tab-nav .Portfolio a {
        min-width: 257px;
        /*min-height: 50px;*/
        background-color: var(--ah-2nd-color);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        padding: 11px 1rem;
        font-size: 18px;
    }
    .service-module-tab-nav .Portfolio a img{margin-left:20px;}
    .service-module .nav.nav-tabs{
        /*flex-wrap: unset;*/
        border: none;
        background:#fff;
    }
    .service-module li.nav-item {
        /*flex-grow: 1;*/
        padding: 0 1rem;
    }
    .service-module li.nav-item:first-child {
      padding-left:0;
    }
    .service-module .nav-tabs .nav-link.active {border-bottom: 2px solid var(--ah-1st-color);}
    .service-module .nav-tabs .nav-link {
        text-align: center;
        font-weight: 600;
        border: none;
         border-bottom: 2px solid #fff;
        border-radius: 0;
        background-color: #fff;
        padding: 11px 0;
        font-size: 18px;
    }
    .service-module .tab-content {
        padding: 0px;
        padding-top:46px;
        background-color: #fff;
        border: none;
        border-top: 0;
    }
    
    .service-contact-bg {
        position: relative;
    }
    .pc-content {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 10;
        color: #fff;
        padding:20px;
    }
    .pc-content .row {
        align-items: center;
        height: 100%;
    }
    .pc-content .pc-btn {
       height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pc-content .pc-btn a{
        padding: 10px 20px;
        background-color: var(--ah-2nd-color);
        color: #fff;
        font-weight: 500;
    }
    
    .service-contact h2 {
        font-weight: 600;
    }
    .service-usable .title h1{
        font-weight:600;
        margin-bottom:25px;
    }
    
.service-about .about_item_container{
    margin-right: -15px;
    margin-left: -15px;
    position:relative;
}
.service-about .about_item_container .slick-arrow {
    position: absolute;
    bottom: 0;
    transform: translate(0%, -42%);
    border: none;
    background: transparent;
    z-index: 20;
}
.service-about .about_item_container .prev-arrow.slick-arrow {
    left: 42%;
}
.service-about .about_item_container .next-arrow.slick-arrow {
    right: 42%;
}
.service-about .service-item_wrap {
 padding:15px;
}
.service-about .service-item {
  /*background-color: #f9fafd;*/
  padding: 25px;
  height: 100%;
  text-align: center;
}

.service-about .service-item .image {
  height: 100px;
  width: 100px;
  margin:auto;
  margin-bottom: 50px;
  margin-top: 10px;
}

.service-about .service-item .image img {
  max-width: 100%;
}

.service-about .service-item .content h1 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-about .service-item .content {
    min-height: 150px;
    margin-bottom: 15px;
}
.service-about .service-item .content p {
  font-size: 18px;
  margin:0;
}

.service-about .service-item .link {
  font-weight: 600;
  font-size: 16px;
  line-height: 35px;
  
}

.service-btn a {
    padding: 10px 20px;
    background-color: var(--ah-2nd-color);
    color: #fff;
    font-weight: 500;
}


.service-usable .usable_item_container{
    margin-right: -15px;
    margin-left: -15px;
    position:relative;
}
.service-usable .usable_item_container .slick-arrow {
    position: absolute;
    bottom: 0;
    transform: translate(0%, -42%);
    border: none;
    background: transparent;
    z-index: 20;
}
.service-usable .usable_item_container .prev-arrow.slick-arrow {
    left: 42%;
}
.service-usable .usable_item_container .next-arrow.slick-arrow {
    right: 42%;
}
.service-usable .usable-item-wrap {
    padding:15px;
}
.service-usable .usable-item {
  /*background-color: #f9fafd;*/
  /*padding: 25px;*/
  height: 100%;
  text-align: center;
}
.service-usable .link {
    height: 350px;
    overflow: hidden;
    width: 100%;
    color: #fff;
    display: block;
    font-size: 25px;
    position:relative;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}
.service-usable .usable-item .content {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.development-service .cyberworld-service-item {
    text-align: center;
}
.development-service .cyberworld-service-item .image{
    margin:auto;
    margin-top:25px;
    margin-bottom:50px;
    text-align: center;
}
/*-----------------------------------------------------------------------------
  #End Section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 #scroll-top, #scroll-bottom
------------------------------------------------------------------------------*/

.scroll-bottom {
  /* position: fixed;
    bottom: 0;
    margin: 1em 0; */

  text-align: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px !important;
  opacity: 0.7;
  right: 0;
  display: none;
  margin: 0px 18px;
  position: fixed;
  bottom: 60px;
  color: white;
  z-index: 9999;
  cursor: pointer;
  transition: 0.3s;
}
#scroll-top,
#scroll-bottom {
  background: var(--ah-1st-color);
  color: #fff;
  /* -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-iteration-count: infinite; */
}

/*-----------------------------------------------------------------------------
 # social-media
------------------------------------------------------------------------------*/
.social-media-container {
  display: inline-block;
  transition: 0.4s;
}
.social-media-container .social-media a {
  display: block;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  transition: 0.4s;
  color: #fff;
  border-radius: 5px;
  margin: 5px;
  float: left;
}
.social-media-container .social-media a i {
  line-height: 35px;
}
.social-media-container .social-media .sm-facebook {
  background-color: #4a66a0;
}
.social-media-container .social-media .sm-whatsapp {
  background-color: #25d366;
}
.social-media-container .social-media .sm-youtube {
  background-color: #e62117;
}
.social-media-container .social-media .sm-twitter {
  background-color: #00acee;
}
.social-media-container .social-media .sm-instagram {
  background-color: #dd2a7b;
}
.social-media-container .social-media .sm-gmail {
  background-color: #d73d32;
}
.social-media-container .social-media .sm-linkedin {
  background-color: #0177b5;
}
.social-media-container .social-media .sm-printerest {
  background-color: #0177b5;
}

/*-----------------------------------------------------------------------------
    Start Mobile Header section
------------------------------------------------------------------------------*/
.mobile-header {
  background-color: #fff;
  padding: 8px 0;
}
.mobile-part-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-btn-toggle i {
  font-size: 35px;
  color: var(--ah-1st-color);
}
/*-----------------------------------------------------------------------------
    End Mobile Header section
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
    Start Mobile Menu section
------------------------------------------------------------------------------*/
.mobile-btn-toggle {
  font-size: 20px;
  border-radius: 5px;
  padding: 10px;
}

.mobile-btn-close {
}

.mobile-menu-section {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  transition: 0.5s ease;
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 9999;
}

.mobile-menu-footer,
.mobile-menu-header {
  /* background: #e8e8e8;
    padding: 5px 10px; */
}
.mobile-menu-header {
  margin-bottom: 10px;
}
.mobile-menu-footer {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 4444;
  margin-bottom: 10px;
}

.mobile-menu-container {
  background-color: #fff;
  padding: 10px;
  height: 100%;
  width: 30%;
  z-index: 9999999;
  position: relative;
}
.mobile-menu {
  overflow: auto;
  height: 100%;
}
.mobile-menu ul li {
  position: relative;
  float: left;
  width: 100%;
  transition: 0.4s;
}

/*mobile nav------------ */
.mobile-menu ul li a {
  color: #2d2a2a;
  letter-spacing: 0.2px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  font-family: roboto;
  display: block;
  padding: 12px 10px;
  width: 100%;
}

.mobile-menu ul li:hover {
  background-color: #eaeded;
  color: #111;
}
.mobile-menu > ul > li:hover {
  border-left: 4px solid #ca0815;
}
.mobile-menu > ul > li {
  border-left: 4px solid transparent;
}
.mobile-menu ul > li {
  border-bottom: 1px solid #dedede;
}
.mobile-menu ul li {
  /*border-bottom: 1px solid #dedede;*/
  position: relative;
  float: left;
  width: 100%;
  transition: 0.4s;
}

.mobile-menu ul li:last-child {
  border-bottom: none;
}

.mobile-menu ul ul.sub-menu,
.mobile-menu ul ul ul.sub-menu {
  position: relative;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  width: 100%;
  background-color: #f5f5f5;
  overflow-y: hidden;
  transition: 0.5s;
  /* height: 0; */
}

.mobile-menu .menu-item-has-children > a {
  /* margin-right: 50px; */
}
.nav-in > .sub-menu {
  display: block !important;
}
.mobile-menu ul li .ah-icon {
  font-size: 20px;
  /* background: #666; */
  /* color: #fff; */
  /* border: 1px solid #6a6d71; */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ancestor-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
/* user */
.mobile-menu-section .user {
  /* padding: 5px 10px; */
  font-weight: 600;
  text-transform: capitalize;
  background: #e8e8e8;
  padding: 5px 10px;
}
.mobile-menu-section .user img {
  height: 45px;
  width: 45px;
}
/*-----------------------------------------------------------------------------
    mobile-footer section
------------------------------------------------------------------------------*/
.mobile-footer-container {
  position: relative;
}
.mobile-footer-container-inner {
  display: flex;
  align-items: center;
}
.mobile-footer-item {
  flex: 1;
  text-align: center;
  position: relative;
}
.mobile-footer-menu {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 10px;
  background: var(--ah-1st-color);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  /*border: 1px solid black;*/
  color: #fff;
  cursor: pointer;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-footer {
  position: fixed;
  width: 100%;
  background: var(--ah-1st-color);
  bottom: 0;
  z-index: 99;
}
.mobile-footer-item i {
  font-size: 24px;
  color: #fff;
}
.mobile-footer-item.footer-cart a {
  position: relative;
  padding-top: 0;
  margin-bottom: -5px;
}
.mobile-footer-item .cart-count {
  height: 18px;
  width: 19px;
  border-radius: 50%;
  background: var(--ah-1st-color);
  color: #fff;
  position: absolute;
  top: -6px;
  left: 65%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*-----------------------------------------------------------------------------
 #autocomplete css
------------------------------------------------------------------------------*/
.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);

  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.autocomplete-suggestion {
  position: relative;
  padding: 0 0.6em;
  line-height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.02em;
  color: #333;
}
.autocomplete-suggestion b {
  font-weight: normal;
  color: #1f8dd6;
}
.autocomplete-suggestion.selected {
  background: #f0f0f0;
}

/*-----------------------------------------------------------------------------
 #media Query css
------------------------------------------------------------------------------*/
/* // Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    .mobile-header-logo img{
        max-width: 55%;
    }
  .section-heading h1 {
    font-size: 32px;
    font-weight: 600;
  }
  .home-banner .title h2 {
    color: #000;
    font-size: 24px;
    line-height: 33px;
  }
  .home-banner .sub-title h1 {
    color: #04637e;
    font-size: 33px;
    line-height: 40px;
  }
  .home-banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .about-left.video {
    background-size: cover;
  }
  .about-right {
    margin-top: 40px;
  }
  .promo-section .left h1 {
    font-size: 25px;
  }
  .footer-top h1 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
  }
  .cyberworld-service-item {
    background-color: #f9fafd;
    text-align: center;
  }
  .cyberworld-service-item .image {
    margin: auto;
    margin-bottom: 35px;
  }
  .mobile-menu-container {
    width: 40%;
  }
    /*service page*/
    .service-module .tab-content .content,
   .service-top .left {
        margin-bottom: 35px;
   }
}
@media (max-width: 991px) {
    .mobile-header-logo img{
        max-width: 55%;
    }
    .product-about .right h1 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 40px;
        margin-top: 30px;
    }
    .product-about .left {
        text-align: center;
    }  
    .product-module .nav.nav-tabs {
        flex-wrap: wrap;
        background: var(--ah-1st-color);
    }
    .product-module li.nav-item {
        flex-grow: unset;
        
    }
    .product-module .nav-tabs .nav-link {
        font-size: 15px;
        text-align: left;
        color:#fff;
    }
    .product-module .nav-tabs .nav-link.active{color:#000;}
    .product-module .image {
        margin-top: 20px;
    }
    
   

}

/* // Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    
    .mobile-header-logo img{
        max-width: 52%;
    }
    .service-contact-bg img,
    .product-contact-bg img {
        height: 225px;
    }
    .product-contact-bg {
        position: relative;
        height: 225px;
    }
    .service-contact-bg h4,
    .product-contact h4 {
        font-size: 21px;
    }
    .service-contact-bg h2,
    .product-contact h2 {
        font-weight: 600;
        font-size: 25px;
    }
    .service-about .about_item_container .next-arrow.slick-arrow,
    .service-usable .usable_item_container .next-arrow.slick-arrow {
        right: 38%;
    }
    .service-about .about_item_container .prev-arrow.slick-arrow,
    .service-usable .usable_item_container .prev-arrow.slick-arrow {
        left: 38%;
    }
    .slide-arrow img {
        max-width: 65%;
    }
    
    .home-slider .title {
        font-size: 26px;
        line-height: 38px;
    }
    .home-slider .sub-title {
        font-size: 35px;
        line-height: 47px;
    }
    .home-slider .images img{
        max-width:60%;
    }
    .home-slider .content{
      text-align:left;
      
    }
    .home-slider .seq-canvas, .home-slider .seq-canvas>* {
        height: 500px !important;
    }
    .home-slider {
        padding: 30px 0;
    }
    .home-slider .seq-canvas .vcenter {
        margin-left: -15px;
        margin-right: -15px;
    }
}

/* // Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
    .mobile-header-logo img {
        max-width: 60%;
    }
    .h1,
    h1 {
        font-size: 1.6rem;
    }
   .h2,
   h2 {
        font-size: 1.2rem;
   }
   .cyberworld-service-item .content h1 {
        font-size: 23px;
   }
    .mobile-menu-container {
        width: 80%;
    }
    .product-feature .right ul {
        columns: 1;
        column-gap: 20px;
    }
    .home-slider .title {
        font-size: 18px;
        line-height: 25px;
    }
    .home-slider .sub-title {
        font-size: 24px;
        line-height: 30px;
    }
    .home-slider .seq-canvas, .home-slider .seq-canvas>* {
          height: 455px !important;
    }
}
@media (max-width: 450px) {
  .mobile-menu-container {
    width: 80%;
  }
  .product-module li.nav-item {
    flex-grow: 1;
    border-bottom: 1px solid #dedede;
}
    .service-contact-bg h4,
    .product-contact h4 {
        font-size: 18px;
    }
    .service-contact-bg h2,
    .product-contact h2 {
        font-weight: 600;
        font-size: 21px;
    }
    .product-module li.nav-item {
        border-bottom: 1px solid #dedede;
        width: 100%;
    }
    .service-module-tab-nav {
        display: block;
    }
    .service-module li.nav-item:first-child {
        padding-left: 1rem;
    }
    .service-module li.nav-item {
       width:100%;
    }
    .service-about .about_item_container .next-arrow.slick-arrow,
    .service-usable .usable_item_container .next-arrow.slick-arrow {
        right: 33%;
    }
    .service-about .about_item_container .prev-arrow.slick-arrow,
    .service-usable .usable_item_container .prev-arrow.slick-arrow {
        left: 33%;
    }
}
/* @media (max-width: 767px) {
  .content-text-container {
    margin-bottom: 20px;
  }
  .mini-cart {
    width: 60%;
  }
  .mobile-menu-container {
    width: 40%;
  }
  .cw_breadcrumbs {
    padding: 8px !important;
  }
  .top-rated-product ul li img {
    height: auto;
    width: auto;
    float: none;
    margin-right: 0;
    box-shadow: none;
  }
}
@media (max-width: 640px) {
  .review {
    margin: 0 0px 40px;
  }

  .review-content .review-icon {
    display: none;
  }
  .review-content .review-icon:before {
    content: none;
  }
  .review .review-content {
    padding: 15px;
  }
  li.item-main-box {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mini-cart {
    width: 80%;
  }
  .mobile-menu-container {
    width: 70%;
  }
  .mobile-header-logo {
    text-align: center;
  }
  .mobile-header-logo img {
    height: auto;
    max-width: 70%;
  }
  .top-rated-product ul li {
    padding: 8px;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .homebanner2-left .title h1 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 35px;
    text-align: center;
  }
  .content p {
    text-align: center;
  }
  .hb-link {
    text-align: center;
  }
  .homebanner2-right-inner img {
    margin-top: 30px;
  }
  .homebanner2 {
    padding: 35px 0;
  }
  .section-title h1 {
    font-size: 35px;
  }
  .about-more {
    text-align: center;
  }
}
@media (max-width: 450px) {
  .mini-cart {
    width: 100%;
  }
  .mobile-menu-container {
    width: 100%;
  }
  .mobile-header-logo {
    text-align: center;
  }
  .mobile-header-logo img {
    height: auto;
  }
  .homepage-banner-container {
    padding: 0px;
    background: #fff;
    margin: 15;
  }
  .homepage-banner-block {
    margin-bottom: 15px 0;
  }
  .ns-contactus-btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .newsletter-section .content-container {
    display: block;
  }
}
@media (max-width: 350px) {
} */
