*{
    box-sizing: border-box; /* css box sizing, gap boarder, define inside the div or element  */
}
body {
    font-size: 16px;
    font-weight:400;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
}

.container{
    max-width: 1480px;
    margin: 0 auto; /* top bottom: 0, left-right : auto means to bring in center - top, right bottom  left*/
    padding: 0 10px;
}
strong{
    font-weight: 700;
}

a{
    color:#313030;
    text-decoration: underline;
}

a:hover, a:focus, a:active, a:visited{
    color:#212f30;
}

p{
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
}
h1{
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
    letter-spacing: 1px;

}
h2{
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
    letter-spacing: 1px;
    text-transform: uppercase;
}
h3{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
}
h4{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */

}
h5{
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */
}
h6{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px; /* top right-left and bottom, this case we use bottom. */

}

ol, ul{
    padding: 0 0 0 25px;
    margin:  0 0  20px 0;
}
ul{
    list-style: disc; /* bullet*/
}
ol{
    list-style: decimal;
}
.flex{
    display: flex;
    flex-wrap:wrap;


}
.h-center{ /*horizental center  flex h-center */
    justify-content: center;

}
.v-center{  /* verticle align center  class: flex h-center*/
    align-items: center;
}

input[type="text"], input[type="password"], input[type="email"], input[type="number"]{
    background-color: #fafafa;
    padding:10px;
    border:1px solid #313030;
    font-size: 18px;
    color: #313030;

}
.formitem{
    margin-bottom: 15px;;
}
.formitem label{
    display:block;
    font-weight: 600;
    margin-bottom: 5px;
}
.button{
    background-color: #1e80bc !important;
    color:#fff !important;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    line-height: 1;
    border: 2px solid #fff;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    box-shadow: none;
    transition: all 0.3s ease; /* animation- smooth display */
    cursor: pointer;
    text-decoration: none;

}
.button:hover, .button:focus, .button:visited{
    background-color: transparent;
    color:#000;

}


.button__white{
    background-color: #fff;
    color:#000;
    border: 2px solid #fff;
}

.button__white:hover, .button__white:focus{
    background-color: #000;
    color:#fff;
    border-color: #000;

}

/* global css end*/


/* == WordPress WYSIWYG Editor Styles == */

.entry-content img {
    margin: 0 0 25px 0;
}
.alignleft, img.alignleft {
    margin-right: 25px;
    display: inline;
    float: left;
}
.alignright, img.alignright {
    margin-left: 1.5em;/* 16px*/
    display: inline;
    float: right;
}
.aligncenter, img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
}
.alignnone, img.alignnone {
    /* not sure about this one */
}
.wp-caption {
    margin-bottom: 1.5rem;
    text-align: center;
    padding-top: 5px;
}
.wp-caption img {
    border: 0 none;
    padding: 0;
    margin: 0;
}
.wp-caption p.wp-caption-text {
    line-height: 1.5;
    font-size: 10px;
    margin: 0;
}
.wp-smiley {
    margin: 0 !important;
    max-height: 1em;
}
blockquote.left {
    margin-right: 20px;
    text-align: right;
    margin-left: 0;
    width: 33%;
    float: left;
}
blockquote.right {
    margin-left: 20px;
    text-align: left;
    margin-right: 0;
    width: 33%;
    float: right;
}
.gallery dl {}
.gallery dt {}
.gallery dd {}
.gallery dl a {}
.gallery dl img {}
.gallery-caption {}

.size-full {}
.size-large {}
.size-medium {}
.size-thumbnail {}

/* wordpress standart class style  complete*/
.site-header__topbar {
    padding: 20px 0;
}
.site-header{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    z-index: 10;
}
.logo{
    width: 180px;
}
.logo img{
    max-width: 100%;
}
.header__right{
    width: calc(100% - 180px);
    padding-left: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* 2 big one next 2-  equal columns */
    /*grid-template-columns: repeat(3, 1fr); !* same of above -3 equal columns *!*/
    gap:20px 30px /* row gap and colum gap */;
}
.header__right-col{
    /*width: 33.33%;*            because of grid, it works/
    /*padding: 0 20px;*/
}
.header__right-col h1{
    font-size: 34px;
    color:#fff;
    margin-bottom: 5px;
}
.header__right-col p{
  color:#fff;
    margin-bottom: 5px;
}
.header__contact-info-ph a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.header__contact-info-ph-mobile{
    display: none;
}
.header__contact-info a{
    color: #fff;
    text-decoration: none;

}
.social-links{
    list-style: none; /* bullet sign off*/
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:15px;
}
.show-mobile-only{
    display: none;
}
.social-links a{
    color:#fff;
    text-decoration: none;
    font-size: 20px;
    display:inline-block;
}
.header__quickinquiry{
    margin-bottom: 15px;
}
.header__quickinquiry .button{
    color:#ffffff;

}
.header__quickinquiry .button:hover{
    background: white;
    border-color: #fff;
    color:#000000;
}



/* Navigation bar starts*/

.primary-nav{
    display: flex; /* by default, it show in horizontal*/
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color:#1e80bc;
}

.primary-nav li{
    position: relative;
    list-style: none;
    z-index: 999;
}
.primary-nav li:hover{
   color:#006634;
}
.primary-nav > li > a{
    padding: 20px 10px;
    display: inline-block;
    color:#fff;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;

}
.primary-nav > li > a:hover{
    background-color: #006634;
    color:#fff;

}
.primary-nav > li:first-child > a:hover {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.primary-nav > li:last-child > a:hover {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.sub-menu{
   background: #fff;
    margin: 0;
    padding: 0;

}
@media screen and (min-width: 1024px) {
    .sub-menu{
        opacity:0; /* text opacity is zero */
        visibility: hidden;
        position: absolute; /* when absolute, we need to define relative parent ie. primary-nav li is relative*/
        top:100%;
        left:0;
        width: 300px;
  }
}
.sub-menu a{
    font-size:15px;
    font-weight: 500;
    line-height: 1.2;
    display: block;
    padding: 10px 15px;
    color:#000;
    text-decoration: none; /* sub-menu text underline removed */
    border:0.5px solid #fafafa;

}
.sub-menu a:hover{
    background-color: #006634;
    color:#fff;

}
.primary-nav li:hover .sub-menu{ /* sub menu display */
    opacity:1;
    visibility:visible;
}
.menu-item-has-children i{
    color:#fff;
    position: absolute;
    right:-5px;
    top:50%;
    transform: translateY(-50%);
    text-decoration: none;
    z-index: 999;
}

.sticky{
    position: fixed;
    width: 100%;
    top:0;
   background-color: rgba(0, 0, 0, 0.7) !important;
    z-index: 50;
    padding-bottom: 10px;
}
.sticky .logo{
    width:180px
}
.sticky .header__right-col h1 {
    font-size: 34px;
}
.sticky .primary-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;

}
/* navigatiom end */

/* mobile menu */
.mobileNav__toggle {
    display: none
}
.menuBar__container {
    position: relative;
    display: block;
    width: 30px;
    height: 22px;
    -webkit-transition: .4s ease;
    transition: .4s ease
}
.nav__visible .menuBar__container {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}
.menuBar {
    display: block;
    height: 4px;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: .4s ease;
    transition: .4s ease
}

.menuBar:first-child {
    top: 0;
    margin-top: 0
}

.nav__visible .menuBar:first-child {
    -webkit-transform: rotate(45deg);/*browser prefix safari and chrome*/
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 11px
}

.nav__visible .menuBar:nth-child(2) {
    opacity: 0
}

.menuBar:last-child {
    top: auto;
    bottom: 0;
    margin-top: 0
}
.nav__visible .menuBar:last-child {
    -webkit-transform: rotate(-45deg); /*browser prefix safari and chrome*/
    -ms-transform: rotate(-45deg); /* internet explorer*/
    transform: rotate(-45deg);
    bottom: 8px
}

@media screen and (max-width: 1023px) {
    .mobileNav__toggle {
        display: block;
        margin-left: 15px
    }
    .main-nav{
        display:none;
    }
    .sub-menu{
        display: none;
        position:relative;
        z-index:5;
    }
    .nav-active .main-nav{
        display:block;
        position:absolute;
        left:0;
        right:0;
        top:100%;
        z-index:9999;
        overflow-y:auto;
        padding:25px;
        background-color:#000;
        min-height:100vh;
        max-height:calc(100vh - 60px);
        width:100%;
        max-width: 100%;
    }
    .header-navigation{
        position:relative;
    }
    .primary-nav{
        display: block;


    }
    .primary-nav li{
        margin-bottom:5px;
        display:block;
        width:100%;
    }
    .primary-nav > li > a{
        padding: 10px 15px;
        color:#fff;
        font-size: 18px;


    }
    .menu-item-has-children i {
        top: 15px;
        transform: translateY(0);
    }
}

/* Navigation Ends*/

/*Home Banner Slider starts*/
.banner-slider{
    height: 100vh;
}
.banner-slider .owl-stage-outer, .banner-slider .owl-item, .banner-slider .owl-stage{
    height: inherit;
}
.banner-item{
    height: 100vh; /*view port , screen height*/
    position: relative;
}
.banner-item__video iframe{
    display: block;
    height: 100%;
    width: 100%;
    left:0;
    top:0;
    position: absolute;
    z-index: 1;
}
.banner-slider .owl-item{
    /*height: 100%;*/

}
.banner-item__image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}
.banner-item:before{
    content: "";
    position: absolute;
    background: rgba(0,0,0,0.7);
    height: 100%;
    width: 100%;
    top:0;
    left: 0;
    z-index: 2;
}
.banner-item__content{ /* to bring text center*/
    height: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-item__content-inner h1{
    color:#ffffff;
    margin-bottom: 5px;

}
.banner-item__content-inner p{
    color:#ffffff;
    font-size: 24px;
    font-weight: 600;

}

/*services*/
.services-block{
    padding: 60px 0;
}
.services-items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.services-item{
    width: 25%;
    padding: 0 5px;
    margin-bottom: 30px;
}

.services-item__inner{
    position: relative;
    height: 100%;
    border:1px solid #ccc;
    background-color: #ffffff;
}
.services-item__inner .cover-link{
    position: absolute;
    height: 100%;
    width: 100%;
    left:0;
    top:0;
    text-indent: -99999em;
    font-size: 0;

}
.services-item__inner:hover .services-item__image img{
    transform: scale(1.1);
}

.services-item__inner:hover .services-item__content h2{
   color:#4a7b81;
}

.services-item__image{
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}
.services-item__image img{
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio:16/9;
    transform:scale(1);
    transition: transform 0.3s ease;
}
.services-item__content{
    padding: 20px;
    text-align:center;
}
.services-item__content h2{
    font-size: 25px;
    transition: color 0.2s ease;
}
/*service circle image*/
.services-block__title{
    text-align: center;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 800;
}
.services-item__inner-circle{
    padding: 10px;
    text-align: center;
}
.services-item__inner-circle:hover .services-item__image-circle img{
   transform: scale(1.1);
}
.services-item__image-circle h2{
    font-size:24px;
}
.services-item__inner-circle .services-item__content{
    padding:0;
}
.services-item__image-circle{
    position: relative;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}
.services-item__image-circle img{
  height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio:16/9;
    transform:scale(1);
    transition: transform 0.3s ease;
}

.services-item__image-circle h2{
   position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    color:#ffffff;
    margin: 0;
    z-index:2;

}
.services-item__image-circle h2 a{
    z-index:5;
    text-decoration:none;
    color:#fff;

}

.services-item__image-circle:before{
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 1;
}
.services-block__bgimage{
    background-image:url('../images/webservices5.png'); background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment:fixed;
   
    
}
.services-block__bgimage .services-block__title {
    color:#fff;
    
}
h2.services-block__title:after {
    content: "";
    background: #e5aa40;
    height: 3px;
    width: 120px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -60px;
}
/*digitalmarketing-block*/
.bg-light{
    background-color: #fafafa;
}
.digitalmarketing-block{
    padding: 50px 0;
}
.digitalmarketing-block .container>h2{
    text-align: center;
    margin-bottom: 40px;
}
.digitalmarketing-item{
    display: flex;
    flex-wrap: wrap;
}
.digitalmarketing-item.reverse{
    flex-direction: row-reverse;
}
.digitalmarketing-item__content,
.digitalmarketing-item__media{
    width: 50%;
}
.digitalmarketing-item__content{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.digitalmarketing-item.reverse .digitalmarketing-item__content{
    justify-content: flex-start;
}
.digitalmarketing-item__content-inner{
    padding: 50px 100px;
    max-width: 800px;
}
.digitalmarketing-item__media{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
.digitalmarketing-block__items .digitalmarketing-item__content-inner{
    padding: 50px 50px 50px 0;
}
.digitalmarketing-block__items .digitalmarketing-item.reverse .digitalmarketing-item__content-inner{
    padding: 50px 0px 50px 50px;
}

/* expertrise*/
.expertise-block{
    padding: 50px 0;
}
.expertise-block h2{
    text-align: center;
    margin-bottom: 40px;
}
.expertise-logo-carousel__item img{
    max-height: 120px;
    max-width: 150px;
}
.expertise-logo-carousel .owl-stage {
    display: flex;
    align-items: center;
}
/* industries we serve*/
.industry-block{
    padding: 50px 0;

}
.industry-block h2{
    text-align: center;
    margin-bottom: 40px;
}
.industry-block__inner{
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.industry-block__item{
    padding: 0 15px;
    margin-bottom: 30px;
    min-width: 250px;

}
.industry-block__item-inner{
    padding: 15px;
    background-color: #fafafa;
    border-radius: 4px;
    border:1px solid #ccc;
    text-align: center;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.industry-block__item-inner i{
    font-size: 60px;
    margin-bottom: 15px;
    color: #006634;
}
.industry-block__item-inner h4{
    font-size: 20px;
    font-weight: 600;
    color:#000;
    margin: 0; /* browser margin reset*/
}
.industry-block__button{
    text-align: center;
    margin-top: 30px;
}

/* counter highlghts*/
.highlights-counter-block{
    padding: 50px 0;
}
.highlights-counter-block h2{
    text-align: center;
    margin-bottom: 40px;
}
.counter-items{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}
.counter-item{
   width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
    text-align: center;
}

.counter-item__icon{
    margin-bottom: 15px;
}
.counter-item__icon i{
    font-size: 60px;
    color:#006634;
}
.counter-item__content{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
}
.counter-item__content p+p{
    margin: 0; /*reset 0- make sure, it wont take browswer rendering default margin*/
}

.counter-item__number{
    font-size: 30px;
    color: #006634;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;

}

/*CTA BLOCK*/
.cta-block{

    padding: 150px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color:#ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;

}
.cta-block__secondary{
    padding: 80px 0;
}
.cta-block h2{
    color:#ffffff;
    margin-bottom: 25px;
}
.cta-block:before{
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top:0;
    position: absolute;
    background-color: rgba(0,0,0,0.5);
}
.cta-block .container{
    z-index: 2;
    position: relative;
}
.cta-block__intro{
   max-width: 900px;
    margin: 0 auto 30px;

}
.cta-block__form{
    margin-bottom: 50px;

}
.cta-block__formitem label{ /* screen reader text, good for seo */
    /*text-indent: -9999em;*/
    /*opacity: 0;*/
    /*visibility: hidden;*/
    /*better than: display:none*/
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.cta-block__form form{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px; /*same like padding, but it is row and column*/
}

.cta-block__formitem input{
    background:rgba(255,255,255,0.5);
    padding: 10px 15px;
    border:1px solid #fff;
    color:#fff;
    display: block;
    width: 100%;
}
.cta-block__formitem input::placeholder {
    color: #fff;
}

.cta-block__quickcontact-inner{
    justify-content: center;
    align-items: center;
    gap:30px;
}
.cta-block__quickcontact-inner a{
    font-size: 30px;
    color:#fff;
    text-decoration: none;
    transition: color 0.2s ease;
}


.cta-block__quickcontact-inner i{
    font-size: 30px;
    color:#006634;
    margin-right: 5px;
}
.cta-block__quickcontact-inner a:hover{
 color:#006634;

}
/* gettingstarted-block*/
.gettingstarted-block{
    padding: 50px 0;
}
.gettingstarted-block h2{
    margin-bottom: 30px;
    text-align: center;
}
.gettingstarted-block-inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.gettingstarted-block__item{
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.gettingstarted-block__item-inner{
    padding:25px;
    border: 1px solid #cccccc;
    text-align: center;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    height: 100%;
}

.gettingstarted-block__item-inner i{
   font-size: 60px;
    color:#006634;
    margin-bottom: 15px;
}
.gettingstarted-block__item-inner h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.gettingstarted-block__item-inner p{
   margin:0;
    font-size: 18px;
    font-weight: 500;

}
/*pricing*/
.pricing-block{
    padding: 50px 0;
}

.pricing-block h2{
    margin-bottom: 20px;
    text-align: center;
}
.pricing-block__intro{
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}
.pricing-block__inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.pricing-block__item{
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 35px;
}
.pricing-block__item-inner{
    border: 1px solid #ccc;
    height: 100%;
    padding: 20px 20px 50px; /*top, right-left, bottom*/
    position: relative;
    border-radius: 10px;
    background: #ffffff;
}
.pricing-block__item-heading{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.pricing-block__item-price{
    margin-bottom: 15px;
}
.price{
    color:#006634;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;

}
.price-text{
    font-size: 34px;
    font-weight: 700;
}
.price-origional{
    color:#869791;
    font-size: 18px;
    display: inline-block;
    margin-left: 20px;
}
.price-origional span{
    display: block;
}
.price-text sup{
    font-size: 75%;
    vertical-align: baseline;
    position: relative;
    top:-0.4em;
}
.pricing-block__item-note{
    text-align: center;
    margin-top: 15px;
   font-size: 20px;
}
.pricing-block__item-note span{
    color:#006634;
}
.pricing-block__item-button {
    text-align: center;
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}
.pricing-block__item-ribbon {
    text-align: right;
    margin-bottom: 10px;
    margin-top: -20px;
    margin-right: -20px;
    display: block;
}
.pricing-block__item-ribbon span{

    padding: 5px;
    background-color: #006634;
    color:#ffffff;
    display:inline-block;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

/*portfolio*/
.gallery-block{
    padding: 50px 0;
}
.gallery-block h2{
    text-align: center;
    margin-bottom: 30px;
}
.gallery-block__inner{
    display: grid;
    grid-template-columns: repeat(4,1fr);/* 4 columns, each column width 1 fraction like 25%*/
    gap:20px; /*column and rows gap like margin, padding*/
}
.gallery-block__item a{
    display: block;
    height: 450px;
    position: relative;
}
.gallery-block__item a:before{
    content: "";
    height: 100%;
    width:100%;
    position: absolute;
    top:0;
    left: 0;
    background: rgba(0,0,0,0.3);
    transition: background-color 0.2s ease;
}
.gallery-block__item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.gallery-block__item-info{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);/* to bring it center*/
    color:#fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    opacity:0;
    transition: opacity 0.2s ease;
}
.gallery-block__item-info span{
    display: block;

}
.gallery-block__item a:hover:before{

    background: rgba(0,0,0,0.7);
}
.gallery-block__item a:hover .gallery-block__item-info{
    opacity:1;

}
.gallery-block__button{
    margin-top: 30px;
    text-align: center;
}

/* reviews*/
.reviews-block{
    padding: 50px 0;
}
.reviews-block h2{
    text-align: center;
    margin-bottom: 30px;
}
.reviews-block__slider-item{
    padding: 0 15px;
}
.reviews-block__slider-item-inner{
    padding: 40px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
}
.reviews-block__slider-item-inner blockquote{
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
}
.reviews-block__slider-item-meta{
    margin-top: 20px;
}
.reviews-block__slider-item-meta p{
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}
.reviews-block__slider-item-meta h4{
    margin: 0 0 5px; /* bottom 5px*/
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
}

/* blog*/
.blog-block{
    padding: 50px 0;
}
.blog-block h2{
    text-align: center;
    margin-bottom: 30px;
}
.blog-block__inner{
    margin: 0 -15px;
}
.blog-block__item{
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.blog-block__item-image{
    display: block;
    padding-bottom: 56.25%;
    position: relative;
    margin-bottom: 15px;
}
.blog-block__item-image img{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top:0;
    display: block;
    object-fit:cover;
}
.blog-block__item-content h3{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;

}
.blog-block__item-content h3 a{
    color:#000000;
    text-decoration: none;
}
.blog-block__item-content h3 a:hover{
    color:#006634;
}
.blog-block__item-content .blog-block__item-meta{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color:#869791;
    margin-bottom: 15px;
}

/* Footer styling */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
}
.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-column {
    flex: 1;
    min-width: 200px;
}
.footer img{
    margin-bottom: 20px;
    height:120px;
}
.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin: 8px 0;
}
.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    border-bottom: 1px dotted #ccc;
}
.footer-column ul li a:hover {
    color: #fff;
    text-decoration: underline;
}
/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: left;
}

.social-icons a {
    color: #ddd;
    font-size: 18px;
    text-decoration: none;
}
/* Copyright section */
.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom div {
    flex: 1;
    min-width: 200px;
}
.footer-column p a{
    text-decoration: none;

    color:#ffffff;
}

/* service signle page*/
.service-banner{
    height: 750px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 240px 0 50px; /* top, left-right, bottom*/
}
.general-banner{
    height: 450px;

}
.service-banner:before{
    content: "";
    background: rgba(0,0,0,0.8);
    position: absolute;
    height: 100%;
    left:0;
    top:0;
    width: 100%;
    }

.service-banner__inner{
    display: grid;
    grid-template-columns: repeat(2,1fr); /* */
    gap:50px; /* 1st row gap 2nd column gap */
    position: relative;
    z-index: 1;
    align-items: center;
}
.general-banner .service-banner__inner{

    grid-template-columns: repeat(1,1fr); /* */
    text-align: center;

}
/*.service-banner__content{
    width:50%;
}
.service-banner__form{
    width: 50%;
}*/
.service-banner__content{
    color:#ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;

}
.service-banner__form{
    background: rgba(255,255,255,0.5);
    padding: 30px;

}
.service-banner__formitem label{
    display: none;

}
.service-banner__formitem{
    margin-bottom: 10px;
}
.service-banner__formgroup{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 10px;
}
.service-banner__formitem input,
.service-banner__formitem textarea{
    padding: 10px;
    border: 1px solid #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color:#000;
    width: 100%;
}

.service-banner__formitem textarea{
    height: 100px;

}
.service-banner__form h3{
    font-size: 30px;
    color:#006634;
    line-height: 1.2;
    margin: 0;/* top right-left and bottom, this case we use bottom. */
    text-align:center;
}
.service-banner__form h4{
    font-size: 30px;
    color:#295e0e;
    line-height: 1.2;
    margin: 2px 0 10px 0; 
    text-align:center;
}
.service-banner__form h5{
    font-size: 20px;
    color:#006634;
    line-height: 1.2;
    margin: 15px 0 0;
    text-align:center;
}
.service-intro{
    padding: 50px 0;
}
.service-intro__inner{ /* 2 colums like */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.service-intro__image{
    position: relative;
}
.service-intro-tag{
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #006634;
    height: 100px;
    width: 200px;
    color:#ffffff;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    border-radius: 0 30px 30px 30px;
    line-height: 1.3;
}
.service-intro__image-primary,
.service-intro__image-secondary{
  background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;

}
.service-intro__image-primary{
    max-width: 70%;
}
.service-intro__image-secondary{
    max-height: 70%;
    width: 40%;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 0;
    border:4px solid #fff;

}
.service-intro__button{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:5px
}
.service-intro__button a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #000000;
    text-align: center;
    gap:10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}
.service-intro__button a:hover {
   border-color: #006634;
    background-color:#006634 ;
    color:#ffffff;
}
.service-features{
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;

}
.service-features:before{
    content: "";
    background: rgba(0,0,0,0.8);
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    left:0;

}
.service-features__inner{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:50px;
}
.service-features__content p, .service-features__technology p{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
    color:#006634;
    }
.service-features__content h2, .service-features__technology h2{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color:#ffffff;
}
.service-features__content ul{
    color:#ffffff;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}
.service-features__content li{
   position: relative;
    padding-left: 30px;
    margin-bottom: 15px;

}
.service-features__content li:before{
   content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color:#006634;
    font-size: 20px;
    line-height: 1;
    position: absolute;
    left:0;
    top:3px;
}
.service-features__technology-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}
.service-features__technology-list li{
        padding: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:10px;
    color:#ffffff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}
.service-features__technology-list li i{
    font-size: 30px;
    width: 40px;
}
.service-features__technology-list li span{
width: calc(100% - 50px);
}

.socialreview{
    padding: 60px 0;
}
.section-header{
    text-align: center;
    margin-bottom: 25px;
}
.section-header p{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
    color:#006634;
}
.section-header h2{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;

}
.socialreview-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.socialreview-item{
    position: relative;
    border:1px solid #000000;
    text-align: center;
    border-radius: 10px;
    padding: 15px;
}
.socialreview-item a{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top:0;
    text-indent: -9999em;

}
.socialreview-item img{
    max-width: 100px;
    margin: 0 auto 15px;
    display: block;
}
.socialreview-item p{
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
}

.service-casestudy{
    background: #fafafa;
    padding: 60px 0;
}
.service-casestudy-slideritem-inner{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
}
.service-casestudy-slideritem-image{
height: 400px;
}
.service-casestudy-slideritem-image img{
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.service-casestudy-slideritem-content img{
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
}

.service-casestudy-slideritem-content blockquote{
font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 20px;
}
.service-casestudy-slideritem-content-author{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

/*faqs */
.faqs-block{
    padding: 60px 0;
}
.accordion-item:not(:last-child){
    border-bottom: 1px solid #000000;
}
.accordion-item.active .accordion-item__icons {
    transform: rotate(180deg);
}
.accordion-item:not(:first-child) .accordion-item__content{
    display: none;
}
.accordion-item__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    padding: 24px 64px 24px 24px;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}
.accordion-item__icons {
    position: absolute;
    height: 24px;
    width: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #000;
    top: 24px;
    right: 26px;
    transition: all 0.2s ease;
}
.accordion-item__content {
    padding: 0 64px 24px 24px;
    margin-top: -8px;
}
/*faqs end*/
.service-banner__generalcontentblock{
    padding: 60px 0;
   color:#fff;
   font-size:18px;
    background-image: url(../images/webservices5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

/*video*/
.video-block{
    padding: 60px 0;

}
.video-block__inner{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
}
.video-block__item iframe{
    display: block;
    width: 100%;
}

/*contact us*/
.contact-section{
    padding: 60px 0;
}
.contact-section__inner{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    align-items: center;
}
.contact-section__content address, .contact-section__content p{
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;

}
.contact-section__content  a{
    text-decoration: none;
}
.contact-section__content  a:hover, .contact-section__content a:focus{
    color:#006634;
}
.contact-map iframe{
    display: block;
    width: 100%;
}
.contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
}
.contact-item i {
    font-size: 1.5em;
    color: #006634;
    margin-right: 15px;
}
.contact-item span{
    font-size: 30px;
    font-weight: 600;
}
.contact-item address {
    margin: 0;
    font-size: 1.1em;
    color: #555;
}
.contact-item a {
    color: #000000;
    text-decoration: none;
}
.contact-item a:hover {
    text-decoration: underline;
}
.service-intro__button i{
    font-size: 30px;
    color: #006634;
}
.service-intro p{
    font-size:18px;
}
.service-intro strong{
    font-size:20px;
}
/* banner service box*/
.services-block__banner{
    position: absolute;
    width: 100%;
    bottom: 10px;
    z-index: 2;
}
.services-block__banner .services-item{
    width:25%;

}
.services-block__banner .services-item__inner {
    padding:0;
    border:none;
    background: transparent;

}
.home-banner{
    position: relative;
}
.services-block__banner .services-item__image-circle{
    border-radius: 0;
    width: 100%;
    height: auto;
        border: 2px solid #fff;
}
.services-block__banner .services-item__image-circle:before{
    content: "";
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0, 0.5);
    position: absolute;
    z-index: 1;

}
.services-block__banner .services-item__image-circle h2{
       z-index: 2;
}
.services-block__banner .services-item__inner .cover-link{
    z-index: 3;
}