@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root{
    --calibri-regular: 'Poppins', sans-serif;
    --calibri-bold: 'Poppins', sans-serif;
    --primary-color: #023e61;
    --neutra-color: #606974;
}
.btn:focus,.btn:active {
  outline: none !important;
  box-shadow: none;
}

.dropdown-toggle img {
    margin-top:-5px !important;
}

@font-face{
  font-family: 'Poppins', sans-serif;
  
}
@font-face{
  font-family: 'Poppins', sans-serif;
}

 ::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: var(--primary-color);
}
::-webkit-scrollbar-track {
    background-color: #e8e8e8;
} 

::selection {
    background-color: var(--primary-color);
    color: #fff;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a,button,ul,ol,li,p,h1,h2,h3,h4,h5,h6{
    padding: 0;
    margin: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
    appearance: none;
}
input[type="number"]{
    -moz-appearance: textfield;
}

/* =========== Side-Menu-Btn =========== */
.owl-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.owl-carousel .owl-nav button {
    font-size: 18px !important;
    color: var(--primary-color) !important;
    pointer-events: all;
}

.owl-carousel .owl-dots {
    text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.65;
    margin: 0 4px;
}
.owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
}

.owl-carousel.equal-height .owl-stage {
    display: flex;
}
.owl-carousel.equal-height .slide {
    height: 100%;
}

/* ===================== Globle Items ===================== */
.btn-1{
    display: inline-block;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    background-color: #fff;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 18px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: .3s;
}
.btn-1:hover{
    color: #fff;
    background-color: var(--primary-color);
}
.round-btn{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    text-decoration: none;
    color: var(--primary-color);
    background-color: #fff;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: .3s;
}
.round-btn:hover{
    color: #fff;
    background-color: var(--primary-color);
}
/* ===================== End Globle Items ===================== */


/* ======================== Header Area ======================== */
header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    transition: .5s ease;
    z-index: 997;
    padding: 0 30px;
}
header.active {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .header .logo img{
    width: 160px;
}
header .header .logo img.logo-img-1{
    display: block;
}
header .header .logo img.logo-img-2{
    display: none;
}
header.active .header .logo img.logo-img-1{
    display: none;
}
header.active .header .logo img.logo-img-2{
    display: block;
}
header .header .navs > ul {
    padding-left: 20px;
}
header .header .navs > ul > li{
    position: relative;
    display: inline-block;
}
header .header .navs > ul > li > a{
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #0a0a0a;
    padding: 25px 5px;
    margin: 0 3px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}
header .header .navs > ul > li:hover > a{
    color: #000;
}
header .header .navs > ul > li > a.down-arrow::after{
    content: '\f107';
    font-family: 'Poppins', sans-serif;
    line-height: 1.0;
    display: inline-block;
    margin-left: 5px;
    transition: .3s;
}
header .header .navs > ul > li:hover > a.down-arrow::after{
    transform: rotate(180deg);
}
header.active .header .navs > ul > li > a,
header.active .header .navs > ul > li > a:hover{
    color: #000;
}
header .header .navs .sub-menu{
    position: absolute;
    top: 100%;
    width: 280px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
header .header .navs > ul > li:hover > .sub-menu{
    pointer-events: all;
    opacity: 1;
}
header .header .navs .sub-menu > ul{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
    padding: 18px 15px;
}
header .header .navs .sub-menu > ul > li{
    display: block;
}
header .header .navs .sub-menu > ul > li > a{
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .005em;
    color: var(--neutra-color);
    padding: 5px 0;
    transition: .1s;
}
header .header .navs .sub-menu > ul > li > a:hover{
    color: var(--primary-color);
}
header .header .btns-box{
    display: flex;
    align-items: center;
}
header .header .btns-box .request-btn{
    padding: 0 15px 0 20px;
}
header .header .btns-box .contact-btn{
    position: relative;
}
header .header .btns-box .contact-btn:hover .btn-icon{
    background-color: var(--primary-color);
    color: #fff;
}
header .header .btns-box .contact-btn .contact-box{
    position: absolute;
    right: 0;
    padding-top: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease-in-out;
}
header .header .btns-box .contact-btn:hover .contact-box{
    pointer-events: all;
    opacity: 1;
}
header .header .btns-box .contact-btn .contact-info{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
    overflow: hidden;
}
header .header .btns-box .contact-btn .contact-info .contact-heading{
    font-size: 18px;
    font-weight: 600;
    color: #555;
    padding: 6px 15px;
}
header .header .btns-box .contact-btn .contact-info .info{
    padding: 10px 15px;
    background-color: rgba(204, 204, 204, 0.3);
}
header .header .btns-box .contact-btn .contact-info .info p{
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding-bottom: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a img,
header .header .btns-box .contact-btn .contact-info .info a i{
    width: 25px;
    font-size: 20px;
    margin-right: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a{
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}
header .header .btns-box .contact-btn .contact-info .info a:hover{
    opacity: .7;
}


@media screen and (max-width: 1199px) {
    header{
        padding: 20px 0;
    }
    header .header .navs{
        display: none;
    }
    header .header .btns-box .contact-btn{
        display: none;
    }
    header .header .btns-box{
        margin-left: auto;
    }
    
}
@media screen and (max-width: 1024px){
    header .header .btns-box{
        display: none;
    }
}
@media screen and (max-width: 575px) {
    header{
        padding: 15px 0;
    }
    header .header .logo img{
        width: 150px;
    }
    header .header .btns-box{
        margin-right: 15px;
    }
    header .header .round-btn{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    header .header .btns-box .request-btn .btn-1{
        display: none;
    }
}
/* ======================== End Header Area ======================== */


/* ======================== Side-Menu Area ======================== */
.side-menu-area::-webkit-scrollbar{
    display: none;
}
.side-menu-area{
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}
.side-menu-area.active{
    pointer-events: all;
}
.side-menu-area .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: .5s ease;
}
.side-menu-area.active .overlay{
    opacity: 1; 
}
.side-menu-area .side-menu-box{
    scrollbar-width: none;
    width: 280px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border-top-right-radius: 50px; */
    /* border-bottom-right-radius: 50px; */
    background-color: #fff;
    overflow: auto;
    transform: translateX(-150%);
    transition: .8s;
}
.side-menu-area.active .side-menu-box{
    transform: translateX(0%);
}
.side-menu-area .side-menu-box::-webkit-scrollbar{
    display: none;
}
.side-menu-area .side-menu-box .side-menu{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.side-menu .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #eee;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    padding: 12px 0 6px;
}
.side-menu .header .logo img{
    width: 180px;
}
.side-menu .header .close-btn button{
    border: none;
    outline: none;
    background-color: transparent;
    padding: 10px 20px;
}
.side-menu .navs{
    padding: 25px 25px;
}
.side-menu .navs ul{
    list-style: none;
}
.side-menu .navs > ul > li:not(:last-child){
    border-bottom: 1px solid #eee;
}
.side-menu .navs > ul > li > a{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* font-weight: 600; */
    color: var(--neutra-color);
    padding: 8px 0;
    cursor: pointer;
}
/* .side-menu .navs > ul > li > a.active, */
.side-menu .navs > ul > li > a:hover{
    color: var(--primary-color);
}
.side-menu .navs > ul > li > a.down-arrow::after{
    content: '\f107';
    font-family: 'Poppins', sans-serif;
    line-height: 1.0;
    display: inline-block;
    margin-left: 5px;
    transition: .3s;
}
.side-menu .navs > ul > li > a.active.down-arrow::after{
    transform: rotate(180deg);
}
.side-menu .navs > ul > li > .sub-menu{
    display: none;
    padding-left: 10px;
    padding-bottom: 10px;
}
.side-menu .navs .sub-menu > ul > li a{
    text-decoration: none;
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--neutra-color);
    padding: 4px 0;
}
.side-menu .navs .sub-menu > ul > li a:hover{
    color: var(--primary-color);
}
.side-menu .request-btn{
    text-align: center;
    margin-left: -15px;
    margin-bottom: 40px;
    margin-top: auto;
}
.side-menu .cart-img{
    position: relative;
    margin-top: 20px;
}
.side-menu .cart-img img {
    width: 25px;
    position: relative;
}
.side-menu .cart-img span {
    background: #71bcf8;
    border-radius: 2px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    height: 14px;
    line-height: 11px;
    padding: 2px;
    position: absolute;
    left: 16px;
    top: -4px;
}
/* ======================== End Side-Menu Area ======================== */

.request-btn a{
    display: inline-block;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    color: #2774a1;
    background-color: #fff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 12px;
    cursor: pointer;
    transition: .3s;
    font-family: var(--calibri-regular);
}

.request-btn a:hover {
    color:#f6c012;
    transition:0.2s ease;
}
.dropdown-menu li a img, .dropdown-menu li a span {
    position:absolute;
    right:10px;
    top:5px;
} 
.dropdown-menu>li>a {
    padding:3px 10px !important;
}
.search {
    height: 40px;
    background-color: #EDEDED;
    display: grid;
    grid-template-columns: 25rem 1fr;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    color: #000;
    position: relative;
}
.search input {
    height: 100%;
    border: none;
    background: none;
    outline: none;
    color: #000;
    caret-color: #000;
    font-family: inherit;
    padding: 0 20px;
    font-size: 16px;
}
.search i {
    color: #000;
    top: 12px;
    right: 10px;
    margin-left: 0;
    position: absolute;
}
.btns-box .cart-img {
    position: relative;
}
.btns-box .cart-img img{
    width: 25px;
    position: relative;
}
.btns-box .cart-img span{
    /*background: #71bcf8;*/
    border-radius: 2px;
    color: #71bcf8;
    font-size: 22px;
    font-weight: 700;
    height: 14px;
    line-height: 11px;
    padding: 2px;
    position: absolute;
    left: 22px;
    top: -8px;
}

.flag-dropdown .bootstrap-select.btn-group.fit-width .btn .caret {
    position: static;
    top: auto;
    margin-top: -1px;
    display: none;
}
.flag-dropdown a:focus {
    outline: thin dotted;
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.flag-dropdown .bootstrap-select{
    margin-bottom: 0!important;
}
.flag-dropdown{
    margin-left: 11px;
}
.flag-dropdown  button{
    background: #e8e8e8;
    border: none;
    font-size: 13px!important;
    font-weight: 700;
    height: 30px;
    padding: 5px 0px
}
.flag-dropdown .bootstrap-select.btn-group .btn .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    margin-left: 10px
}
.flag-dropdown .flag-icon{
    margin-left: 10px;
}
.flag-dropdown .bootstrap-select .btn:focus {
    outline: thin dotted #333!important;
    outline: 0px auto -webkit-focus-ring-color!important;
    outline-offset: 0;
}
.flag-dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    margin-left: -5px;
    margin-top: 10px;
}
.dropdown-toggle {
	width: 100px !important;
  border: 1px solid rgb(180, 180, 180) !important;
  box-shadow: none !important;
  background-color: transparent !important;
} 
#banner img{
    width: 100%;
    height: calc(100vh - 80px);
    /*height: 100%;*/
}
#banner-logo{
    background: linear-gradient(90deg,#c0e7fc,#edf6fb 50%,#c0e7fc);
    padding: 10px 0 10px 0;
    margin-top: 0;
}
#banner-logo .head h2{
    color: #333;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 20px;
    text-align: center;
}
#banner-logo .owl-carousel .owl-dots .owl-dot{
    border: 2px solid #4fbeff;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 12px;
    margin: 0 6px 0 0;
    opacity: 1;
    outline: 0;
    padding: 0;
    transition: background .5s;
    width: 12px;
    background-color: transparent;
}
#banner-logo .owl-carousel .owl-dots .owl-dot.active{
    background: #4fbeff;
}
#banner-logo .techno-slider .sop-img img{
    width: 60%;
    margin: 0 auto;
}

.floatingOn span {
    background: linear-gradient(90deg,#023e61,#1b6c9c);
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    display: block;
    font-size: 25px;
    margin-top: 0vh;
    padding: 10px;
    text-align: center;
    width: 200px;
    width: 100%;
}




/*
-----------------------------------------------------------------------
    About CSS
-----------------------------------------------------------------------
*/
.about-area.about-default-area {
  padding: 110px 0 50px;
}

@media only screen and (max-width: 1399px) {
  .about-area.about-default-area {
    padding: 80px 0 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-area.about-default-area {
    padding: 100px 0 80px;
  }
}

@media only screen and (max-width: 767px) {
  .about-area.about-default-area {
    padding: 30px 0 50px;
  }
}

.about-area .about-content {
  padding: 47px 0 0 50px;
}

.about-content .desc .vmore{
  color: #1b6c9c ;
  text-decoration: none;
}

.about-content .desc .vmore:hover{
  color: #0d6efd;
}

@media only screen and (min-width: 1400px) {
  .about-area .about-content {
    margin-right: -50px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-area .about-content {
    padding: 20px 0 0 0;
  }
}

@media only screen and (max-width: 1199px) {
  .about-area .about-content {
    padding: 0;
  }
}

.about-area .about-content .section-title {
  margin-bottom: 25px;
}

.about-area .about-content .section-title .title {
  padding-right: 20px;
}

.about-area .about-content .section-title p {
  font-size  : 17px;
  font-weight: 500;
  line-height: 1.648;
}

@media only screen and (max-width: 767px) {
  .about-area .about-content .section-title p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 479.98px) {
  .about-area .about-content .section-title p {
    font-size: 13px;
  }
}

.about-area .about-content .section-title p span {
  color          : #808080;
  text-decoration: underline;
}

.about-area .about-content .list-icon-style {
  padding-right: 30px;
}

@media only screen and (max-width: 767px) {
  .about-area .about-content .list-icon-style {
    padding-right: 0;
  }
}

.about-area .about-content-style2 {
  padding: 7px 0 0 70px;
}

@media only screen and (max-width: 1399px) {
  .about-area .about-content-style2 {
    padding: 7px 0 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 {
    padding: 0;
  }
}

.about-area .about-content-style2 .section-title {
  margin-bottom: 44px;
  margin-right : -43px;
}

@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .section-title {
    margin-right: 0;
  }
}

.about-area .about-content-style2 .section-title .title {
  line-height  : 1.2;
  margin-bottom: 18px;
}

.about-area .about-content-style2 .section-title .title span {
  color      : #3895D3;
  font-weight: 300;
}

@media only screen and (max-width: 991px) {
  .about-area .about-content-style2 .section-title .title span {
    z-index: auto;
  }
}

.about-area .about-content-style2 .section-title .title span:after {
  background-color: #dff3e8;
}

.about-area .about-content-style2 .section-title .subtitle-content {
  margin-bottom: 23px;
}

.about-area .about-content-style2 .inner-content {
  background-color: #f6f7fc;
  margin-right    : -6px;
  padding         : 51px 0 54px 0;
  position        : relative;
}

/*.about-area .about-content-style2 .inner-content:before {
  background-color: #f6f7fc;
  content         : "";
  height          : 100%;
  left            : -49px;
  position        : absolute;
  top             : 0;
  width           : 49px;
}*/

@media only screen and (max-width: 1399px) {
  .about-area .about-content-style2 .inner-content:before {
    left   : -25px;
    z-index: -1;
  }
}

/*.about-area .about-content-style2 .inner-content:after {
  background-color: #f6f7fc;
  content         : "";
  height          : 100%;
  left            : 100%;
  position        : absolute;
  top             : 0;
  width           : calc(100% + 400px);
}*/

.about-area .about-content-style2 .inner-content p {
  margin-bottom: 14px;
}

.about-area .about-content-style2 .inner-content p .text-block {
  color        : #121421;
  font-size    : 60px;
  font-weight  : 700;
  float        : left;
  line-height  : 54px;
  padding-right: 10px;
  position     : relative;
  top          : 1px;
}

.about-area .about-content-style2 .inner-content .inline-style {
  align-items: center;
  display    : flex;
  margin-top : 40px;
  position   : relative;
  z-index    : 1;
}

@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .inner-content .inline-style {
    display: block;
  }
}

.about-area .about-content-style2 .inner-content .inline-style .btn-theme.btn-border {
  padding: 19.5px 58.5px 19.5px 35px;
}

@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .inner-content .inline-style .btn-theme.btn-border {
    margin-bottom: 40px;
  }
}

.about-area .about-content-style2 .inner-content .inline-style .btn-theme.btn-border .icon {
  right: 30px;
}

.about-area .about-content-style2 .inner-content .btn-play {
  color      : #3895D3;
  display    : inline-block;
  font-size  : 16px;
  font-weight: 700;
  margin-left: 43px;
}

@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .inner-content .btn-play {
    margin-left: 10px;
  }
}

.about-area .about-content-style2 .inner-content .btn-play .icon {
  background-color: #3895D3;
  border-radius   : 50%;
  display         : inline-block;
  height          : 73px;
  line-height     : 71px;
  margin-right    : 25px;
  position        : relative;
  text-align      : center;
  width           : 73px;
  z-index         : 3;
}

.about-area .about-content-style2 .inner-content .btn-play .icon:after {
  background-color : #3895D3;
  border-radius    : 50%;
  content          : "";
  height           : 100%;
  left             : 0;
  position         : absolute;
  top              : 0;
  width            : 100%;
  z-index          : -1;
  animation        : animation-scale 1.8s infinite;
  -webkit-animation: animation-scale 1.8s infinite;
}

.about-area .about-content-style2 .text-shape {
  bottom        : 10px;
  position      : absolute;
  right         : 0;
  pointer-events: none;
}

@media only screen and (max-width: 1199px) {
  .about-area .about-content-style2 .text-shape {
    bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .text-shape {
    display: none;
  }
}

.about-area .about-content-style2 .text-shape img {
  max-width: none;
}

.about-area .layer-style {
  position   : relative;
  margin-left: -78px;
}

@media (max-width: 1499px) {
  .about-area .layer-style {
    margin-left: -45px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-area .layer-style {
    margin-left: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-style {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .about-area .layer-style {
    display        : inline-flex;
    justify-content: center;
    margin-bottom  : 100px;
    margin-top     : 40px;
  }
}

@media only screen and (max-width: 767px) {
  .about-area .layer-style {
    margin-top: 0;
  }
}

.about-area .layer-style .thumb img {
  border-radius: 0%;
  max-width    : none;
}

@media only screen and (max-width: 1399px) {
  .about-area .layer-style .thumb img {
    max-width: 100%;
  }
}

.about-area .layer-style .shape-style1 {
  left    : -47px;
  position: absolute;
  top     : -20px;
  z-index : -1;
}

@media only screen and (max-width: 1399px) {
  .about-area .layer-style .shape-style1 {
    left: -40px;
  }
}

@media only screen and (max-width: 991px) {
  .about-area .layer-style .shape-style1 {
    left: -47px;
  }
}

@media only screen and (max-width: 767px) {
  .about-area .layer-style .shape-style1 {
    display: none;
  }
}

@media only screen and (max-width: 1399px) {
  .about-area .layer-style .shape-style1 img {
    width: 80%;
  }
}

@media only screen and (max-width: 991px) {
  .about-area .layer-style .shape-style1 img {
    width: 100%;
  }
}

.about-area .layer-style .shape-style2 {
  bottom: -220px;
  left: -70px;
  position: absolute;
  z-index : -1;
}

@media only screen and (max-width: 991px) {
  .about-area .layer-style .shape-style2 {
    bottom: -95px;
  }
}

.about-area .layer-style .experience-time {
  border-radius: 50%;
    bottom: -101px;
    position: absolute;
    right: -32px;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-style .experience-time {
    bottom: -50px;
  }
}

@media only screen and (max-width: 767px) {
  .about-area .layer-style .experience-time {
    right: 0;
  }
}

.about-area .layer-style .experience-time .content {
    background-color: #3895D3;
    border-radius: 50%;
    color: #fff;
    font-size: 85px;
    font-weight: 700;
    height: 250px;
    line-height: 50px;
    padding: 70px 15px 15px;
    position: relative;
    text-align: center;
    width: 250px;
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-style .experience-time .content {
    height     : 200px;
    font-size  : 70px;
    line-height: 54px;
    padding    : 47px 15px 15px;
    width      : 200px;
  }
}

.about-area .layer-style .experience-time .content:before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 250px;
    left: -25px;
    position: absolute;
    top: -15px;
    width: 250px;
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-style .experience-time .content:before {
    height: 200px;
    width : 200px;
  }
}

.about-area .layer-style .experience-time .content:after {
    background-color: #f6f7fc;
    border-radius: 50%;
    bottom: -22px;
    content: "";
    height: 250px;
    left: 20px;
    position: absolute;
    width: 250px;
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-style .experience-time .content:after {
    height: 200px;
    width : 200px;
  }
}

.about-area .layer-style .experience-time .content sup {
  font-size: 35px;
  left     : 4px;
  top      : -58px;
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-style .experience-time .content sup {
    top: -45px;
  }
}

.about-area .layer-style .experience-time .content span {
  display    : inline-block;
  font-size  : 20px;
  line-height: 22px;
  padding-top: 5px;
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-style .experience-time .content span {
    font-size: 16px;
  }
}

.about-area .layer-about-style {
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-about-style {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .about-area .layer-about-style {
    margin-bottom: 60px;
  }
}

.about-area .layer-about-style .thumb img {
  width: 100%;
}

.about-area .layer-about-style .shape-style1 {
  left     : -81px;
  position : absolute;
  top      : 90px;
  animation: animation-five linear infinite 5s;
}

@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .shape-style1 {
    display: none;
  }
}

.about-area .layer-about-style .experience-time {
  bottom  : 40px;
  position: absolute;
  right   : 40px;
  z-index : 1;
}

@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time {
    bottom: 15px;
    right : 15px;
  }
}

.about-area .layer-about-style .experience-time .content {
  background-color: #3895D3;
  color           : #fff;
  font-size       : 127.58px;
  font-weight     : 700;
  height          : 305px;
  line-height     : 1px;
  padding         : 111px 15px 15px;
  position        : relative;
  text-align      : center;
  width           : 273px;
}

@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time .content {
    font-size: 64px;
    height   : 200px;
    padding  : 60px 15px 5px;
    width    : 200px;
  }
}

.about-area .layer-about-style .experience-time .content:before {
  background-color: #fff;
  content         : "";
  height          : 305px;
  left            : -20px;
  position        : absolute;
  top             : -20px;
  width           : 273px;
  z-index         : -1;
}

@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time .content:before {
    height: 200px;
    left  : -10px;
    top   : -10px;
    width : 200px;
  }
}

.about-area .layer-about-style .experience-time .content sup {
  font-size: 35px;
  left     : 4px;
  top      : -58px;
}

@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time .content sup {
    top: -20px;
  }
}

.about-area .layer-about-style .experience-time .content span {
  display    : inline-block;
  font-size  : 20px;
  font-weight: 500;
  line-height: 20px;
  padding-top: 5px;
}

.about-area .layer-about-style .experience-time .content .line-separetor {
  bottom     : -2px;
  display    : inline-flex;
  line-height: 30px;
  padding-top: 40px;
  position   : relative;
}

@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time .content .line-separetor {
    padding-bottom: 10px;
    padding-top   : 30px;
  }
}

.about-area .layer-about-style .experience-time .content .line-separetor img {
  margin: 0 5px;
}

.about-page-wrapper .about-area {
  padding: 150px 0 151px;
}

@media only screen and (max-width: 1199px) {
  .about-page-wrapper .about-area {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 767px) {
  .about-page-wrapper .about-area {
    padding: 70px 0;
  }
}

.about-page-wrapper .team-area {
  padding: 142px 0 123px;
}

@media only screen and (max-width: 1199px) {
  .about-page-wrapper .team-area {
    padding: 100px 0 80px;
  }
}

@media only screen and (max-width: 991px) {
  .about-page-wrapper .team-area {
    padding: 90px 0 60px;
  }
}

@media only screen and (max-width: 767px) {
  .about-page-wrapper .team-area {
    padding: 70px 0 50px;
  }
}

@media only screen and (max-width: 575px) {
  .about-page-wrapper .team-area {
    padding: 70px 0 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-page-wrapper .team-area .section-title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-page-wrapper .team-area .section-title {
    margin-bottom: 10px;
  }
}

.list-icon-style ul li {
  background-color  : #f6f7fc;
  border-radius     : 12px;
  color             : #121421;
  font-size         : 18px;
  font-weight       : 700;
  float             : left;
  margin-bottom     : 20px;
  margin-right      : 20px;
  padding           : 11px 8px 14px;
  min-width         : calc(50% - 10px);
  transition        : 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition   : 0.3s;
  -ms-transition    : 0.3s;
  -o-transition     : 0.3s;
}

@media only screen and (max-width: 1199px) {
  .list-icon-style ul li {
    font-size   : 15px;
    margin-right: 8px;
    min-width   : auto;
    width       : 49%;
  }
}

@media only screen and (max-width: 991px) {
  .list-icon-style ul li {
    font-size   : 18px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .list-icon-style ul li {
    display     : block;
    margin-right: 0;
    width       : 100%;
  }
}

.list-icon-style ul li .icon {
  background-color  : #def5e8;
  border-radius     : 12px;
  color             : #3895D3;
  display           : inline-block;
  font-size         : 25px;
  height            : 45px;
  line-height       : 45px;
  margin-right      : 16px;
  position          : relative;
  text-align        : center;
  top               : 2px;
  width             : 45px;
  transition        : 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition   : 0.3s;
  -ms-transition    : 0.3s;
  -o-transition     : 0.3s;
}

@media only screen and (max-width: 1199px) {
  .list-icon-style ul li .icon {
    margin-right: 8px;
  }
}

@media only screen and (max-width: 991px) {
  .list-icon-style ul li .icon {
    margin-right: 15px;
  }
}

.list-icon-style ul li:nth-child(2n+2) {
  margin-right: 0;
}

.list-icon-style ul li:hover {
  background-color: #3895D3;
  color           : #fff;
}

.list-icon-style ul li:hover .icon {
  background-color: #fff;
  color           : #3895D3;
}

.about-area .about-content {
    margin-right: -50px;
}
.section-title .title {
    font-size: 36px;
    letter-spacing: -0.135px;
    line-height: 65px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 700;
    font-family: var(--calibri-regular);
    color: #000;
}
.section-title .title span {
    position: relative;
    z-index: 1;
}
.section-title .title span.bottom-style:after {
    bottom: 3px;
}
.about-area .about-content .section-title p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.648;
    font-family: var(--calibri-regular);
}


#services{
    padding: 20px 0
}
#services .head{
    margin-bottom: 40px;
}
#services .head h2{
    background-image: url(../img/heading-bg.png);
    background-position: 78px 16px;
    background-repeat: no-repeat;
    background-size: 62px;
    color: #000;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 10px;
}
#services .head h2 span{
    color: #023e61;
}
#services .head p{
    color: #000;
    font-size: 20px;
    font-weight: 600;
}
#services .ser-card{
    margin-bottom: 30px;
}
#services .ser-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: gray;
    /*-webkit-filter: grayscale(1);*/
    -webkit-transition: all .3s ease-in-out;
}
#services .ser-card img:hover{
    filter: none;
    -webkit-filter: grayscale(0);
}

#services .ser-card .des{
    background: linear-gradient(270deg,#082858,#195996);
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-top: -10px;
    padding: 11px;
    position: relative;
    text-align: center;
    z-index: 1;
}

#services .ser-card:hover .des {
    color: #79eda0;
}
#product{
    background-image: url(../img/product/banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    z-index: 9;
}
#product .head{
    padding-bottom: 50px;
}
#product .head h2{
    color: #fff;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 10px;
}
#product .head h2 span{
    color: #79eda0;
}
#product .head p{
    color: #fff;
    font-size: 26px;
}
#product .product-box{
    text-align: center;
    position: relative;
    border-right: 1px solid #fff;
}
#product .product-box img{
    width: 40px;
}
#product .product-box p{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--calibri-regular);
    color: #fff;
    padding: 10px 0 0;
}
#product-card{
    padding: 40px 0;
}
#product-card .head{
    margin-bottom: 50px;
}
#product-card .head h2{
    background-image: url(../img/heading-bg.png);
    background-position: 78px 16px;
    background-repeat: no-repeat;
    background-size: 62px;
    color: #000;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 10px;
}
#product-card .head h2 span{
    color: #023e61;
}
#product-card .head p{
    color: #000;
    font-size: 20px;
    font-weight: 600;
}
#product-card .card{
    position: relative;
    margin-bottom: 50px;
}
#product-card .card .card-body .card-strips{
    background: #fff;
    border: 9px solid #fff;
    border-right: none;
    border-top-left-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    right: 0;
    top: -16%;
}
#product-card .card .card-body .card-strips .card-label{
    background-color: #d3ceed4a;
    height: 21px;
    margin: 0 0px 0 8px;
    padding: 4px 5px 3px!important;
}
#product-card .card .card-body .card-strips .card-label p{
    color: #000;
    font-size: 10px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 900;
    letter-spacing: normal;
    line-height: 1.4;
    text-align: left;
}
#product-card .card .card-body .card-title h5{
    color: #000;
    font-size: 17px;
    font-stretch: normal;
    font-weight: 700;
    line-height: 1.38;
}
#product-card .card .card-body .card-txt p{
    color: #000;
    font-size: 12px;
    line-height: 1.33;
    opacity: .8;
    padding: 10px 0 20px;
}
#product-card .card .card-body p b a{
    color: #000000a3;
}
#product-card .card .card-body .card-btn a{
    display: inline-block;
    border: none;
    outline: none;
    background-image: linear-gradient(90deg,#241471,#414cd9);
    text-decoration: none;
    color: #fff;
    background-color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 40px;
    transition: .3s;
    font-family: var(--calibri-bold);
}
#product-card .card .card-body h6{
    color: #000;
    font-size: 18px;
    font-weight: 600;
}
#product-card .video-card{
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 20px;
}
#product-card .video-card .video-body{
    padding: 10px 15px;
}
#product-card .video-card .video-body h4{
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}
#product-card .video-card .video-body .btn-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#product-card .video-card .video-body .video-btn{
    display: inline-block;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    background: linear-gradient(90deg,#4396be,#3dc1da);
    text-decoration: none;
    color: #fff;
    background-color: #fff;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    padding: 6px 22px;
    cursor: pointer;
    transition: .3s;
    font-family: var(--calibri-regular);
}
#product-card .video-card .popup-link{
    position: relative;
    text-decoration: none;
    display: block;
    color: #3a3a3a;
}
#product-card .video-card .popup-link .img-box img{
    width: 100%;
    padding: 6px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
#product-card .video-card .popup-link .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    font-size: 3em;
    color: #fff;
}

 .more-btn p{
    color: #1b6c9c;
    display: inline-block;
    font-size: 20px;
    font-style: italic;
    text-align: right;
    text-decoration: none;
    width: 100%;
}
#product  .layer-shape .shape-style1{
    left: 20.4%;
    position: absolute;
    top: 61px;
    animation: animation-one linear infinite 5s;
}
#product  .layer-shape .shape-style2{
    position: absolute;
    top: 66px;
    right: 41.4%;
    animation: animation-two linear infinite 5s;
}
#product  .layer-shape .shape-style3{
    position: absolute;
    top: 50.7%;
    right: 13.3%;
    animation: animation-three linear infinite 5s;
}
#product  .layer-shape .shape-style4{
    bottom: 132px;
    left: 43.7%;
    position: absolute;
    animation: animation-four linear infinite 5s;
}
#certificate{
    background-image: url(../img/certificate/banner.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 60px;
    margin-bottom: 40px;
}
#certificate .img img{
    width: 50%;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.certificate{
    margin-top: 30px;
}
.certificate .head{
    margin-bottom: 20px;
}
.certificate .head h2{
    background-image: url(../img/heading-bg.png);
    background-position: 78px 16px;
    background-repeat: no-repeat;
    background-size: 62px;
    color: #000;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 10px;
}
.certificate .head h2 span{
    color: #023e61;
}
.certificate .head p{
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

.client .head{
    margin-bottom: 20px;
}
.client .head h2{
    background-image: url(../img/heading-bg.png);
    background-position: 78px 16px;
    background-repeat: no-repeat;
    background-size: 62px;
    color: #000;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 10px;
}
.client .head h2 span{
    color: #023e61;
}
.client .head p{
    color: #000;
    font-size: 20px;
    font-weight: 600;
}
#client{
    background: linear-gradient(90deg,#c3fad6,#edf6fb 50%,#c3fad6);
    padding: 20px 0 20px;
}
#client .client-slider .sop-img img {
    width: 60%;
    margin: 0 auto;
}

#contact{
    background-image: url(../img/contact/banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0;
}
#contact .head{
    margin-bottom: 40px;
}
#contact .head h2{
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}
#contact .head h2 span{
    color: #79eda0;
}
#contact .input-field input{
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    background-color: transparent;
    border:1px solid #fff;
    padding: 5px 15px;
    height: 50px;
    font-size: 22px;
    color: #fff;
    border-radius: 10px;
}
#contact .input-field input::placeholder{
    color: #fff;
}
.contact-btn #affiliate-green.btn.right {
    border: 2px solid #1acd9a;
}
.contact-btn .affiliate.btn.right {
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 25%);
    height: 63px;
    margin-top: 0;
    padding: 4px;
    width: 312px;
}
.contact-btn .affiliate.btn {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    height: 53px;
    line-height: 30px;
    overflow: hidden;
    position: relative;
}
.contact-btn #affiliate-green.btn span.title {
    background: url(data:image/png;base64,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);
    background-size: 100%;
    color: #1b6c9c;
    display: block!important;
    font-size: 27px;
    width: 100%;
}

.contact-btn .affiliate.btn span.icon, .affiliate.btn span.title {
    display: block;
    line-height: 50px;
    padding: 0 30px;
    position: relative;
}

.footer {
    background-color: #031c29;
    color: #fff;
    padding: 30px 0;
}
.footer h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.footer p {
    font-size: 13px;
    line-height: 17px;
}
.socialMenu, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.socialMenu li {
    display: inline-block;
    margin-right: 4px;
    margin-top: 10px;
}
.socialMenu li img {
    width: 30px;
}
.footerMenu li {
    margin-bottom: 10px;
}   
.footerMenu li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}
.contactFooter li {
    align-items: flex-start;
    margin-bottom: 16px;
}
.contactFooter li a{
    color: #fff;
}
.contactFooter img {
    width: 20px;
}
.contactFooter li span {
    font-size: 14px;
    margin-left: 10px;
}
.copyright {
    background-color: #000;
    color: #fff;
}


.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom:20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9;
}
a.btn-whatsapp-pulse:hover{
    color: #fff;
    text-decoration: none;
}


.btn-whatsapp-pulse-border {
    bottom: 40px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }
    75% {
        padding: 50px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


#wave {
    position: relative;
    width: 100%;
    background:var(--primary-color);
    overflow: hidden;
    z-index: 99;
}
#wave  .wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(https://i.postimg.cc/YqcvK11W/wave.png);
    background-size: 1000px 100px;
}
#wave  .wave.wave1{
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;

}
#wave  .wave.wave2{
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;

}
#wave  .wave.wave3{
    animation: animate3 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: 2s;
    bottom: 15px;

}
#wave  .wave.wave4{
    animation: animate2 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 10px;

}
@keyframes animate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
}
@keyframes animate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -1000px;
    }
}

#wave {
    position: relative;
    width: 100%;
    background-image: url(../img/ser-banner.webp);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    z-index: 99;
    height: 60vh;

}
#wave  .wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(https://i.postimg.cc/YqcvK11W/wave.png);
    background-size: 1000px 100px;
}
#wave  .wave.wave1{
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;

}
#wave  .wave.wave2{
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;

}
#wave  .wave.wave3{
    animation: animate3 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: 2s;
    bottom: 15px;

}
#wave  .wave.wave4{
    animation: animate2 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 10px;

}
@keyframes animate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 1000px;
    }
}
@keyframes animate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -1000px;
    }
}
/*#wave .head h1{
    text-align: center;
    font-family: var(--calibri-regular);
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 500px);
    text-shadow: 0px 4px 3px rgb(0 0 0 / 15%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}*/


/****** CODE ******/

.file-upload {
    display: block;
    text-align: center;
    font-family: var(--calibri-regular);
    font-size: 12px;
    padding-bottom: 6px;
    cursor: pointer;
  }
  .file-upload .file-select {
    display: block;
    padding: 10px;
    color: #34495e;
    cursor: pointer;
    height: 60px;
    line-height: 20px;
    text-align: left;
    border:1px solid gray;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  .file-upload .file-select .file-select-button {
    background: #ddd;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
  }
  .file-upload .file-select .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
    color: #000;
    font-weight: 600;
  }
  .file-upload .file-select:hover {
    border-color: #34495e;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  .file-upload .file-select:hover .file-select-button {
    background: #34495e;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  .file-upload.active .file-select {
    border-color: #1e458d;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
  }
  .file-upload.active .file-select .file-select-button {
    background: #1e458d;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
  }
  .file-upload .file-select input[type="file"] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
  }
  .file-upload .file-select.file-select-disabled {
    opacity: 0.65;
  }
  .file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #f8a723;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #ffffff;
    overflow: hidden;
    position: relative;
  }
  .file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #f8a723;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
  }
  .file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
  }

/*.contact-info{
    padding:2pc 2pc;
}
.contact-info h4{
    font-size: 26px;
    font-weight: 800;
    font-family: 'Poppins';
    margin-bottom: 20px;
}
.contact-info li{
    list-style: none;
    padding: 10px 0;
    font-size: 15px;
    font-family: var(--calibri-regular);
}
.contact-info li a{
    color: #666;
    text-decoration: none;
    font-size: 16px;
}
.contact-info li a i{
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #fff;
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-shadow: 0 1px 4px 0 rgb(0 0 0 / 24%);
    box-shadow: 0 1px 4px 0 rgb(0 0 0 / 24%);
    margin-right: 30px;
}
.contact-info li a i.fa-phone{
    transform: scaleX(-1);
}*/


#contact-us-form{
  padding: 40px 0;
}
#contact-us-form .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  background: #fff;
  border-radius: 6px;
  padding: 20px 60px 30px 40px;
}
#contact-us-form .content .left-side{
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before{
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details{
  margin: 14px;
  text-align: center;
}
.content .left-side .details i{
  font-size: 30px;
  color: #4396be;
  margin-bottom: 10px;
}
.content .left-side .details .topic{
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two{
  font-size: 14px;
  color: #337ab7;
  font-weight: bold;
}


#contact-us-form .content .right-side{
  width: 75%;
  margin-left: 75px;
}
.content .right-side .topic-text{
  font-size: 23px;
  font-weight: 600;
  color: #4396be;
}
.right-side .input-box{
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  border:1px solid gray;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box{
  min-height: 110px;
}
.right-side .input-box textarea{
  padding-top: 6px;
}
.right-side .button{
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type="button"]{
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #4396be;
  cursor: pointer;
  transition: all 0.3s ease;
}
#contact-us-form .content .form-group{
    margin-bottom: 0;
}

@media (max-width: 950px) {
  #contact-us-form{
    padding: 30px 40px 40px 35px ;
  }
  #contact-us-form .content .right-side{
   width: 75%;
   margin-left: 55px;
}
}
@media (max-width: 820px) {
  #contact-us-form{
    margin: 40px 0;
    height: 100%;
  }
  #contact-us-form .content{
    flex-direction: column-reverse;
  }
 #contact-us-form .content .left-side{
   width: 100%;
   flex-direction: row;
   margin-top: 40px;
   justify-content: center;
   flex-wrap: wrap;
 }
 #contact-us-form .content .left-side::before{
   display: none;
 }
 #contact-us-form .content .right-side{
   width: 100%;
   margin-left: 0;
 }
 #contact-us-form .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    background: #fff;
    border-radius: 6px;
    padding: 20px 20px 30px 20px;
}

}

#blog{
    padding: 40px 0;
}
#blog .card {
  width: 100%;
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #ECE9E6;
 background: linear-gradient(to right, #FFFFFF, #ECE9E6);
 margin-bottom: 20px;

}

#blog .card img{
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#blog .card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

#blog .tag {
  align-self: flex-start;
  padding: .25em .75em;
  border-radius: 1em;
  font-size: .75rem;
}

#blog .tag + .tag {
  margin-left: .5em;
}

#blog .tag-blue {
  background: #56CCF2;
background: linear-gradient(to bottom, #2F80ED, #56CCF2);
  color: #fafafa;
}

#blog .tag-brown {
  background: #D1913C;
background: linear-gradient(to bottom, #FFD194, #D1913C);
  color: #fafafa;
}

#blog .tag-red {
  background: #cb2d3e;
background: linear-gradient(to bottom, #ef473a, #cb2d3e);
  color: #fafafa;
}

#blog .card__body h4 {
  font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    font-family: var(--calibri-regular);
    padding: 10px 0;
}

#blog .card__footer {
  display: flex;
  padding: 1rem;
  margin-top: auto;
}

#blog .user {
  display: flex;
  gap: 20px;
}
#blog .user img{
    width: 50px;
}
#blog .user .user__info{
    width: 100%;
}

.user__image {
  border-radius: 50%;
}

#blog .user__info > small {
  color: #666;
}

.page-title-area:before {
    left: 83%;
}
.page-title-area:before {
    border: 2px solid #3895D3;
    border-radius: 50%;
    content: "";
    height: 450px;
    left: calc(70% + 4px);
    position: absolute;
    top: -314px;
    width: 595px;
    z-index: -1;
}
.page-title-area .page-title-content {
    letter-spacing: 0;
    padding: 50px 0 10px;
}
.page-title-area .page-title-content .title {
    color: #000;
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 22px;
}
.page-title-area .page-title-content .bread-crumbs {
    color: #fd9704;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 2px;
}
.page-title-area .page-title-content .bread-crumbs .line-shape {
    margin-right: 19px;
}
.page-title-area .page-title-content .bread-crumbs a {
    color: #fd9704;
}
.page-title-area .page-title-content .bread-crumbs .breadcrumb-sep {
    color: #fd9704;
    padding: 0 15px;
}
.page-title-area .page-title-content .bread-crumbs span.active {
    color: #3895D3;
}
.page-title-area:after {
    bottom: -410px;
    left: 46%;
}
.page-title-area:after {
    border: 2px solid #fd9704;
    border-radius: 50%;
    bottom: -200px;
    content: "";
    height: 409px;
    left: calc(53% + 2px);
    position: absolute;
    width:500px;
    z-index: -1;
}
.page-title-area {
    overflow: hidden;
    padding: 0 150px;
    position: relative;
    z-index: 1;
    background-image: url(../img/ser-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.page-title-area .layer-shape-one {
    bottom: 50px;
    position: absolute;
    right: 0;
}
.page-title-area .layer-shape-two {
    top: 50px;
    position: absolute;
    right: calc(51% + 13px);
    animation: animation-five linear infinite 5s;
}
.page-title-area .layer-shape-three {
    top: 50px;
    position: absolute;
    right: calc(30% + 6px);
    animation: animation-four linear infinite 5s;
}
.page-title-area .layer-shape-four {
    position: absolute;
    right: calc(35% + 8px);
    top: 158px;
    animation: animation-two linear infinite 5s;
}


#servies-page {
    padding: 40px 0 0;
}
#servies-page .head {
    text-align: center;
    margin-bottom: 40px;
}
#servies-page .head h2{
    font-size: 50px;
    color: #000;
    font-weight: 700;
    font-family: var(--calibri-regular);
    max-width: 800px;
    margin: 10px auto;
}
#servies-page .head span{
    color: #3895D3;
    font-size: 16px;
    position: relative;
}
#servies-page .head span:before{
    content: "";
    background-color: #3895D3;
    position: absolute;
    top: 8px;
    width: 15%;
    height: 2px;
    left: -50px;
}

#servies-page .img-contain .img-card{
    position: relative;
    overflow: hidden;
}
#servies-page .img-contain .img-card:before{
    transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: .3;
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    z-index: 1;
}
#servies-page .img-contain:hover .img-card:before{
    transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
}

#servies-page .img-contain .img-card img{
    vertical-align: middle;
    width: 100%;
    transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transform: scale(1);
    filter: grayscale(100%);
}

#servies-page .img-contain .img-card .triangle-topleft-1{
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 60%;
    opacity: .5;
    background: linear-gradient(90deg,#4396be,#3dc1da);
    clip-path: polygon(100% 0,0 100%,0 0);
}
#servies-page .img-contain .img-card .triangle-topleft-2{
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
    height: 50%;
    opacity: .5;
    background: linear-gradient(90deg,#4396be,#3dc1da);
    clip-path: polygon(0 100%,100% 100%,100% 0);
}
#servies-page .img-contain .content-service-wrapper .content-service a{
    text-decoration: none;
}
#servies-page .img-contain .content-service-wrapper .content-service{
    position: relative;
    overflow: hidden;
    background-color: #fff;
    top: -50px;
    right: -20px;
    max-width: 370px;
    margin: 0;
    padding: 20px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 1;
}
#servies-page .img-contain .content-service-wrapper .content-service h4{
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    margin: 0;
    z-index: 1;
    position: relative;
    text-align: center;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
    margin-right: 30px;
    text-align: left;
    color: #000;
    font-family: var(--calibri-regular);
}
#servies-page .img-contain .content-service-wrapper .content-service:after{
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: red;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}
#servies-page .img-contain .content-service-wrapper .content-service .icon{
    position: static;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    min-width: 56px;
    width: 56px;
    height: 56px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#servies-page .img-contain .content-service-wrapper .content-service .icon i{
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    display: inline-flex;
    font-size: 22px;
    color: #fff;
}
#servies-page .img-contain:hover .content-service-wrapper .content-service:after{
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: -9;
}

#servies-page .img-contain .content-service-wrapper .content-service:after{
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg,#4396be,#3dc1da);
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}
#servies-page .img-contain:hover .img-card img{
    transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -webkit-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transform: scale(1.05);
    filter: none;
}


#counters{
    background-image: url(../img/certificate/banner.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 20px 0 20px;
    text-align: center;
    position: relative;
}
#counters:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
}

#counters .counting{
    font-size: 48px;
    text-align: center;
    font-family: var(--calibri-regular);
    border: 6px solid #429ac1;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    padding: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 auto;
    color: #fff;
}
#counters .stats h6{
    font-size:30px;
    color: #fff;
    padding: 20px 0;
    font-weight: bold;
}
#counters .counting#plus::after{
    content: '+';
}
#counters .counting#plusl::after{
    content: 'L+';
}
#counters .counting#plusy::after{
    content: 'Yr+';
}

#service-details{
    padding: 60px 0;
}
#service-details .detail-left .thumb-img{
    margin-bottom: 20px;
}
#service-details .detail-left .thumb-img img{
    width: 100%;
    border-radius: 20px;
}
#service-details .detail-left a.category{
    background-color: #e3f9ed;
    border-radius: 12.5px;
    color: #3895D3;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 26px;
    padding: 3px 15.3px;
    text-decoration: none;
}
#service-details .detail-left h2{
    font-size: 42px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}
#service-details .detail-left .separator-line{
    margin-bottom: 20px;
}
#service-details .detail-left  .des p{
    font-family: var(--calibri-regular);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

#service-details .detail-right .widget{
    background-color: #f6f7fc;
    border-radius: 25px;
    padding: 44px 50px 42px;
    margin-bottom: 69px;
}
#service-details .detail-right .widget h3{
    font-size: 30px;
    margin-bottom: 25px;
    font-family: var(--calibri-regular);
    font-weight: 600;
}
#service-details .detail-right .widget .separator-line{
    margin-bottom: 20px;
}
#service-details .detail-right .widget .widget-category{
    position: relative;
    z-index: 1;
}
#service-details .detail-right .widget .widget-category a{
    background-color: #fff;
    border-radius: 15px;
    color: #121421;
    display: block;
    font-size: 16px;
    margin-bottom: 17px;
    padding: 18px 23px 15px;
    position: relative;
    font-family: var(--calibri-regular);
}
#service-details .detail-right .widget .widget-category a i{
    padding-right: 10px;
}
#service-details .detail-right .widget .widget-category a:before{
    background-color: #eeeff5;
    border-radius: 15px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 3px;
    width: 100%;
    z-index: -1;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
#service-details .detail-right .widget .widget-category a:hover{
    background: linear-gradient(90deg,#4396be,#3dc1da);
    color: #fff;
    text-decoration: none;
}
#service-details .detail-right .widget .widget-category a:hover:before{
    background: #3dc1da99;
}

.widget-form .contact-form .head{
    margin-bottom: 20px;
}
.widget-form .contact-form{
    background: linear-gradient(270deg,#082858,#195996);
    border-radius: 10px;
    padding: 30px;
}
.widget-form .contact-form .head .subtitle-content{
    align-items: center;
    display: flex;
    margin-bottom: 36px;
}
.widget-form .contact-form .head .subtitle-content img{
    margin-right: 9px;
}
.widget-form .contact-form .head .subtitle-content h5{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.widget-form .contact-form .head .title{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 1;
}
.widget-form .contact-form .head .title span{
    position: relative;
}
.widget-form .contact-form .head .title span:after{
    background:  linear-gradient(90deg,#4396be,#3dc1da);
    bottom: 10px;
    height: 11px;
    right: 0px;
    width: 100px;
    content: '';
    z-index: -1;
    position: absolute;
}
.widget-form .contact-form .input-field{
    margin-bottom: 10px;
}
.widget-form .contact-form .input-field input{
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #000;
    font-size: 15px;
    height: 40px;
    padding: 0 15px;
    width: 100%;
}
.widget-form .contact-form .input-field input::placeholder{
    color: #000;
}
.widget-form .contact-form .input-field textarea{
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #000;
    font-size: 15px;
    height: 100px;
    padding: 10px 15px;
    width: 100%;
    resize: none;
}
.widget-form .contact-form .input-field textarea::placeholder{
    color: #000;
}
.widget-form .contact-form .input-field .form-btn{
    background: linear-gradient(90deg,#4396be,#3dc1da);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    margin-top: 24px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--calibri-regular);
    border: none;
}
.widget-form .contact-form .input-field .form-btn i{
    vertical-align: text-bottom;
    padding-left: 10px;
}



/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/

.area-padding {
    padding: 70px 0px 80px;
}

.post-information h2 {
  color: #363636;
  font-size: 22px;
  text-transform: uppercase;
}

.post-information {
  padding: 20px 0;
}

.post-information .entry-meta span a {
  color: #444;
  display: inline-block;
  padding: 10px 0;
}

.entry-meta span a:hover {
  color: #3EC1D5;
}

.post-information .entry-meta {
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}

.post-information .entry-meta span i {
  padding: 0 10px;
}

.entry-content > p {
  color: #444;
}

.entry-meta > span {
  color: #444;
}

.entry-content blockquote {
  background: #fff none repeat scroll 0 0;
  border-left: 5px solid #376ace;
  font-size: 17.5px;
  font-style: italic;
  margin: 0 0 20px 40px;
  padding: 22px 20px;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  background-color: #3EC1D5;
  border-color: #3EC1D5;
  color: #fff;
  cursor: default;
  z-index: 3;
}

.social-sharing {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #ccc;
  display: block;
  margin: 30px 0;
}

.social-sharing > h3 {
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 20px 10px;
}

.sharing-icon {
  display: inline-block;
  float: right;
  padding: 13px 10px;
}

.sharing-icon a {
  border: 1px solid #444;
  color: #444;
  display: block;
  float: left;
  font-size: 18px;
  height: 34px;
  line-height: 30px;
  margin-left: 10px;
  text-align: center;
  width: 34px;
}

.sharing-icon a:hover {
  color: #3EC1D5;
  border: 1px solid #3EC1D5;
}

.single-blog .author-avatar {
  float: left;
  margin-right: 10px;
}

.single-blog .author-description h2 {
  font-size: 18px;
  margin: 0;
  padding: 0 0 5px;
}

.author-info {
  background: #fff none repeat scroll 0 0;
  float: left;
  margin: 30px 0;
  padding: 15px;
  width: 100%;
}

.single-post-comments {
  margin-bottom: 60px;
  max-width: 650px;
}

.comments-heading h3, h3.comment-reply-title {
  border-bottom: 1px solid #e8e8e9;
  color: #444;
  font-size: 18px;
  margin: 0 0 20px;
  padding: 0 0 5px;
  text-transform: uppercase;
}

.comments-list ul li {
  margin-bottom: 25px;
}

.comments-list-img {
  float: left;
  margin-right: 15px;
}

.comments-content-wrap {
  color: #42414f;
  font-size: 12px;
  line-height: 1;
  margin: 0 0 15px 80px;
  padding: 10px;
  position: relative;
}

.author-avatar {
  display: inline-block;
  float: left;
  width: 10%;
}

.author-description h2 {
  color: #777;
  font-size: 20px;
  text-transform: uppercase;
}

.author-description h2 a {
  color: #000;
}

.comments-content-wrap span b {
  margin-right: 5px;
}

span.post-time {
  margin-right: 5px;
}

.comments-content-wrap p {
  color: #909295;
  line-height: 18px;
  margin-bottom: 5px;
  margin-top: 15px;
}

li.threaded-comments {
  margin-left: 50px;
}

.comment-respond {
  margin-top: 60px;
}

span.email-notes {
  color: #42414f;
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}

.comment-respond p {
  color: #444;
  margin-bottom: 5px;
}

.comment-respond input[type=text], .comment-respond input[type=email] {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
    height: 40px;
    margin-bottom: 10px;
}

.comment-respond textarea#message-box {
    height: 100px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #F0F1F8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
}

.comment-respond input[type="submit"] {
 background-color: #429bc1!important;
    margin: 10px;
    border-radius: 10px;
    color: white!important;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
    padding: 10px 25px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #429bc1;
}

.comments-content-wrap span a {
  color: #000;
}

.comments-content-wrap span a:hover {
  color: #3EC1D5;
}


.single-blog .blog-pagination {
  border-top: 1px solid #e5e5e5;
  margin: 0;
  padding-top: 30px;
}


/*--------------------------------------------------------------
# Blog page
--------------------------------------------------------------*/
.page-area {
  position: relative;
}

.blog-page .banner-box {
  margin-bottom: 40px;
}

.search-option input {
  border: medium none;
  padding: 10px 15px;
  width: 100%;
  border-radius: 10px;
}

.search-option {
  border: 1px solid #f6f7fc;
  margin-bottom: 30px;
  border-bottom: 3px solid #eeeff5;
  background-color: #f6f7fc;
  padding: 20px;
  border-radius: 25px;
}

.search-option button {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  font-size: 16px;
  position: absolute;
  right: 50px;
  top: 30px;
}

.search-option button:hover {
  color: #3ec1d5;
}

.left-blog h4 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  
}

.left-blog {
    background-color: #f6f7fc;
    border-radius: 25px;
    padding: 30px 30px 30px;
    margin-bottom: 70px;
}

.left-blog li {
  display: block;
}

.left-blog ul li a {
    background-color: #fff;
    border-radius: 15px;
    color: #121421;
    display: block;
    font-size: 16px;
    margin-bottom: 17px;
    padding: 18px 23px 15px;
    position: relative;
}
.left-blog ul li a i{
    margin-right: 13px;
}

.recent-single-post {
  border-bottom: 1px solid #ddd;
  display: block;
  overflow: hidden;
  padding: 15px 10px;
}

.ready-btn {
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  margin-top: 30px;
  padding: 12px 40px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.4s ease 0s;
  z-index: 222;
}

.ready-btn:hover {
  color: #fff;
  background: #3EC1D5;
  border: 1px solid #3EC1D5;
  text-decoration: none;
}

.post-img {
  display: inline-block;
  float: left;
  padding: 0 5px;
  width: 35%;
}

.pst-content {
  display: inline-block;
  float: left;
  width: 65%;
}

.pst-content p a:hover, .left-blog ul li a:hover {
  color: #3EC1D5;
  text-decoration: none;
}

.blog-page .single-blog {
  margin-bottom: 40px;
}

.pst-content p a {
  color: #444;
  font-size: 15px;
}

.header-bottom h1, .header-bottom h2 {
  color: #fff;
}

.blog-tags {
  padding: 1px 0;
}

.left-blog li:last-child {
  border-bottom: 0;
}

.popular-tag.left-blog ul li a:hover {
  color: #fff;
}

.popular-tag.left-side-tags.left-blog ul {
  padding: 0 10px;
}

.blog-1 .banner-box {
  margin-bottom: 30px;
}

.left-tags .left-side-tags ul li {
  border-bottom: 0;
}

.left-tags .left-side-tags ul li a {
  padding: 3px 10px;
  width: auto;
}

.left-side-tags h4 {
  margin-bottom: 15px;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.layer2 h1{
  text-align: center;
    margin-bottom: 4pc;
    font-weight: 600;
    color: #1D293f;
}
input:focus {
    outline-offset: 0px;
}
:focus {
    outline: -webkit-focus-ring-color auto 0px;
}
.popular-tag ul li a {
    border: 1px solid #444;
    border-radius: 30px;
    color: #444;
    font-size: 13px;
    display: block;
    font-weight: 600;
    margin: 5px 3px;
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.4s ease 0s;
    width: 70px;
}
.left-tags .left-side-tags ul li {
    border-bottom: 0;
}
.popular-tag ul li a:hover, .footer-icons ul li a:hover {
    background: linear-gradient(90deg,#4396be,#3dc1da);
    border: 1px solid #376ACE;
    color: #fff;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}
.left-tags .left-side-tags ul li a {
    padding: 3px 10px;
    width: auto;
}

.popular-tag ul li {
    display: inline-block;
}

.post-thumbnail img{
    border-radius: 10px;
}

@media (max-width: 767px){

  .search-option input {
    width: 100%!important;
}
.comment-respond input[type="submit"]{
  width: unset!important;
}
}


.portfolio-menu {
    text-align: center;
    margin: 30px auto;
}

.portfolio-menu ul li {
    display: inline-block;
    margin: 0;
    list-style: none;
    padding: 6px 30px;
    border: 1px solid #3dc1da;
    cursor: pointer;
    transition: all .5 ease;
    margin: 0 20px;
    border-radius: 8px;
}

.portfolio-menu ul {
    padding:0;
}

.portfolio-menu ul li:hover {
    background: linear-gradient(90deg,#4396be,#3dc1da);
    color: #fff;
}

.portfolio-menu ul li.active {
    background:  linear-gradient(90deg,#4396be,#3dc1da);
    color: #fff;
}

.portfolio-item {
    max-width: 1000px;
    margin: 30px auto;
}

.portfolio-item .item {
    width: 50%;
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 10px;
}

.portfolio-item .item .card-contain .portfolio-info{
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 10px 0 30px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}
.portfolio-item .item .card-contain .portfolio-info .content img.shape-line-img{
    width: 30px;
}
.portfolio-item .item .card-contain .portfolio-info .content h3{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 13px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.portfolio-item .item .card-contain .portfolio-info .content h3 a{
    color: #000;
    text-decoration: none;
}
.portfolio-item .item .card-contain .portfolio-info .content .category{
    background-color: #dbf2ea;
    border-radius: 50px;
    color: #3895D3;
    font-size: 13px;
    line-height: 1;
    padding: 6px 15.3px;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}
.portfolio-item .item .card-contain .portfolio-info .btn-icon{
    border: 1px solid rgba(213, 215, 227, 0.3);
    border-radius: 50%;
    height: 45px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}
.portfolio-item .item .card-contain .portfolio-info .btn-icon i{
    color: #000;
    font-size: 18px;
}
.portfolio-item .item .card-contain .portfolio-info .btn-icon:hover{
    background: linear-gradient(90deg,#4396be,#3dc1da);
}
.portfolio-item .item .card-contain .portfolio-info .btn-icon:hover i{
    color: #fff;
}
.portfolio-item .item .card-contain img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .portfolio-item .item {
    width: 50%;
    padding:0 15px;
}
}

@media screen and (max-width: 640px) {
  .portfolio-item .item {
    width: 100%;
}
}



#project-detail{
            padding: 60px 0;
        }
        .tabs {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .tab {
            font-size: 16px;
            padding: 15px 30px;
            cursor: pointer;
        }

        .tab.active {
        }

        .content {
            width: 100%;
        }

        .content-item {
            display: none;
            position: relative;
        }

        .content-item.active {
            display: block;
        }
        #project-detail .content .content-item .img img{
            width: 100%;
            border-radius: 20px;
        }
        #project-detail .tabs .img img{
            width: 100%;
            border-radius: 20px;
        }
        #project-detail .content .content-item .portfolio-info-list{
            background: linear-gradient(90deg,#4396be,#3dc1da);
            border-radius: 20px;
            bottom: 30px;
            max-width: 355px;
            padding: 30px 30px 33px 30px;
            position: absolute;
            right: 30px;
        }
        #project-detail .content .content-item .portfolio-info-list h4{
            color: #fff;
            font-size: 28px;
            margin-bottom: 15px;
        }
        #project-detail .content .content-item .portfolio-info-list .separator-line{
            margin-bottom: 24px;
        }
         #project-detail .content .content-item .portfolio-info-list .separator-line img{
            width: 30px;
         }
         #project-detail .content .content-item .portfolio-info-list .info-list-style li{
            border-bottom: 1px solid #69df9c;
            color: #fff;
            font-size: 15px;
            display: flex;
            padding: 8px 0 2px;
         }
         #project-detail .content .content-item .portfolio-info-list .info-list-style li:first-child{
            padding-top: 0;
         }
         #project-detail .content .content-item .portfolio-info-list .info-list-style li:last-child{
            padding-bottom: 4px;
         }
         #project-detail .content .content-item .portfolio-info-list .info-list-style li span{
            line-height: 32px;
            padding-left: 30px;
            position: relative;
            top: -2px;
         }
         #project-detail .content .content-item .portfolio-info-list .info-list-style li span:first-child{
            font-size: 16px;
            font-weight: 700;
            min-width: 79px;
            padding: 0;
         }
         #project-detail .content .content-item .portfolio-info-list .info-list-style li span:last-child{
            line-height: 32px;
            padding-left: 30px;
            position: relative;
            top: -2px;
         }
         
         #project-detail .content .content-item .portfolio-info-list .info-list-style li span:last-child:before{
            content: "//";
            color: #fff;
            font-size: 15px;
            left: 0;
            position: absolute;
            top: 0;
         }
         .detail-des h2{
            font-size: 40px;
            font-weight: 700;
         }
          .detail-des .separator-line{
            padding: 20px 0;
          }
          .detail-des p{
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 16px;
          }
#blog a{
    color: #000;
    text-decoration: none;
}


-----------------------------------------------------------------------
    About CSS
-----------------------------------------------------------------------
.about-area.about-default-area {
  padding: 195px 0 217px;
}
@media only screen and (max-width: 1399px) {
  .about-area.about-default-area {
    padding: 195px 0 165px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-area.about-default-area {
    padding: 100px 0 80px;
  }
}
@media only screen and (max-width: 767px) {
  .about-area.about-default-area {
    padding: 70px 0 50px;
  }
}
.about-area .about-content {
  padding: 47px 0 0 50px;
}
@media only screen and (min-width: 1400px) {
  .about-area .about-content {
    margin-right: -50px;
  }
}
@media only screen and (max-width: 1399px) {
  .about-area .about-content {
    padding: 47px 0 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  .about-area .about-content {
    padding: 0;
  }
}
.about-area .about-content .section-title {
  margin-bottom: 45px;
}
.about-area .about-content .section-title .title {
  padding-right: 20px;
}
.about-area .about-content .section-title p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.648;
}
@media only screen and (max-width: 767px) {
  .about-area .about-content .section-title p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 479.98px) {
  .about-area .about-content .section-title p {
    font-size: 13px;
  }
}
.about-area .about-content .section-title p span {
  color: #fd9704;
  text-decoration: underline;
}
.about-area .about-content .list-icon-style {
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .about-area .about-content .list-icon-style {
    padding-right: 0;
  }
}
.about-area .about-content-style2 {
  padding: 7px 0 0 70px;
}
@media only screen and (max-width: 1399px) {
  .about-area .about-content-style2 {
    padding: 7px 0 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 {
    padding: 0;
  }
}
.about-area .about-content-style2 .section-title {
  margin-bottom: 44px;
  margin-right: -43px;
}
@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .section-title {
    margin-right: 0;
  }
}
.about-area .about-content-style2 .section-title .title {
  line-height: 1.2;
  margin-bottom: 18px;
  font-size: 60px;
}
.about-area .about-content-style2 .section-title .title span {
  color: #3895D3;
  font-weight: 300;
}
@media only screen and (max-width: 991px) {
  .about-area .about-content-style2 .section-title .title span {
    z-index: auto;
  }
}
.about-area .about-content-style2 .section-title .title span:after {
  background-color: #dff3e8;
}
.about-area .about-content-style2 .section-title .subtitle-content {
  margin-bottom: 23px;
}
.about-area .about-content-style2 .inner-content {
  background-color: #f6f7fc;
  margin-right: -6px;
  padding: 51px 30px 54px 0;
  position: relative;
}
.about-area .about-content-style2 .inner-content:before {
  background-color: #f6f7fc;
  content: "";
  height: 100%;
  left: -49px;
  position: absolute;
  top: 0;
  width: 49px;
}
@media only screen and (max-width: 1399px) {
  .about-area .about-content-style2 .inner-content:before {
    left: -25px;
    z-index: -1;
  }
}
/*.about-area .about-content-style2 .inner-content:after {
  background-color: #f6f7fc;
  content: "";
  height: 100%;
  left: 100%;
  position: absolute;
  top: 0;
  width: calc(100% + 400px);
}*/
.about-area .about-content-style2 .inner-content p {
  margin-bottom: 14px;
  font-size: 16px;
}
.about-area .about-content-style2 .inner-content p .text-block {
  color: #121421;
  font-size: 60px;
  font-weight: 700;
  float: left;
  line-height: 54px;
  padding-right: 10px;
  position: relative;
  top: 0px;
}
.about-area .about-content-style2 .inner-content .inline-style {
  align-items: center;
  display: flex;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .inner-content .inline-style {
    display: block;
  }
}
.about-area .about-content-style2 .inner-content .inline-style .btn-theme.btn-border {
  padding: 19.5px 58.5px 19.5px 35px;
}
@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .inner-content .inline-style .btn-theme.btn-border {
    margin-bottom: 40px;
  }
}
.about-area .about-content-style2 .inner-content .inline-style .btn-theme.btn-border .icon {
  right: 30px;
}
.about-area .about-content-style2 .inner-content .btn-play {
  color: #3895D3;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-left: 43px;
}
@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .inner-content .btn-play {
    margin-left: 10px;
  }
}
.about-area .about-content-style2 .inner-content .btn-play .icon {
  background-color: #3895D3;
  border-radius: 50%;
  display: inline-block;
  height: 73px;
  line-height: 71px;
  margin-right: 25px;
  position: relative;
  text-align: center;
  width: 73px;
  z-index: 3;
}
.about-area .about-content-style2 .inner-content .btn-play .icon:after {
  background-color: #3895D3;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  animation: animation-scale 1.8s infinite;
  -webkit-animation: animation-scale 1.8s infinite;
}
.about-area .about-content-style2 .text-shape {
  bottom: 10px;
  position: absolute;
  right: 0;
  pointer-events: none;
}
@media only screen and (max-width: 1199px) {
  .about-area .about-content-style2 .text-shape {
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-area .about-content-style2 .text-shape {
    display: none;
  }
}
.about-area .about-content-style2 .text-shape img {
  max-width: none;
}
.about-area .layer-style {
  position: relative;
  margin-left: -78px;
}
@media (max-width: 1499px) {
  .about-area .layer-style {
    margin-left: -45px;
  }
}
@media only screen and (max-width: 1399px) {
  .about-area .layer-style {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .about-area .layer-style {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .about-area .layer-style {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 100px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about-area .layer-style {
    margin-top: 0;
  }
}
.about-area .layer-style .thumb img {
  border-radius: 0%;
  max-width: none;
}
@media only screen and (max-width: 1399px) {
  .about-area .layer-style .thumb img {
    max-width: 100%;
  }
}
.about-area .layer-style .shape-style1 {
  left: -47px;
  position: absolute;
  top: -45px;
  z-index: -1;
}
@media only screen and (max-width: 1399px) {
  .about-area .layer-style .shape-style1 {
    left: -40px;
  }
}
@media only screen and (max-width: 991px) {
  .about-area .layer-style .shape-style1 {
    left: -47px;
  }
}
@media only screen and (max-width: 767px) {
  .about-area .layer-style .shape-style1 {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .about-area .layer-style .shape-style1 img {
    width: 95%;
  }
}
@media only screen and (max-width: 991px) {
  .about-area .layer-style .shape-style1 img {
    width: 100%;
  }
}
.about-area .layer-style .shape-style2 {
  bottom: -255px;
  left: -50px;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .about-area .layer-style .shape-style2 {
    bottom: -95px;
  }
}
.about-area .layer-style .experience-time {
  border-radius: 50%;
  bottom: -147px;
  position: absolute;
  right: -49px;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .about-area .layer-style .experience-time {
    bottom: -50px;
  }
}
@media only screen and (max-width: 767px) {
  .about-area .layer-style .experience-time {
    right: 0;
  }
}

@media only screen and (max-width: 1199px) {
  .about-area .layer-about-style {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .about-area .layer-about-style {
    margin-bottom: 60px;
  }
}
.about-area .layer-about-style .thumb img {
  width: 100%;
}
.about-area .layer-about-style .shape-style1 {
  left: -81px;
  position: absolute;
  top: 90px;
  animation: animation-five linear infinite 5s;
}
@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .shape-style1 {
    display: none;
  }
}
.about-area .layer-about-style .experience-time {
  bottom: 40px;
  position: absolute;
  right: 40px;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time {
    bottom: 15px;
    right: 15px;
  }
}
.about-area .layer-about-style .experience-time .content {
  background-color: #3895D3;
  color: #fff;
  font-size: 127.58px;
  font-weight: 700;
  height: 305px;
  line-height: 1px;
  padding: 111px 15px 15px;
  position: relative;
  text-align: center;
  width: 273px;
}
@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time .content {
    font-size: 64px;
    height: 200px;
    padding: 60px 15px 5px;
    width: 200px;
  }
}
.about-area .layer-about-style .experience-time .content:before {
  background-color: #fff;
  content: "";
  height: 305px;
  left: -20px;
  position: absolute;
  top: -20px;
  width: 273px;
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time .content:before {
    height: 200px;
    left: -10px;
    top: -10px;
    width: 200px;
  }
}
.about-area .layer-about-style .experience-time .content sup {
  font-size: 35px;
  left: 4px;
  top: -58px;
}
@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time .content sup {
    top: -20px;
  }
}
.about-area .layer-about-style .experience-time .content span {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  padding-top: 5px;
}
.about-area .layer-about-style .experience-time .content .line-separetor {
  bottom: -2px;
  display: inline-flex;
  line-height: 30px;
  padding-top: 40px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .about-area .layer-about-style .experience-time .content .line-separetor {
    padding-bottom: 10px;
    padding-top: 30px;
  }
}
.about-area .layer-about-style .experience-time .content .line-separetor img {
  margin: 0 5px;
}

.about-page-wrapper .about-area {
  padding: 150px 0 151px;
}
@media only screen and (max-width: 1199px) {
  .about-page-wrapper .about-area {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-page-wrapper .about-area {
    padding: 70px 0;
  }
}
.about-page-wrapper .team-area {
  padding: 142px 0 123px;
}
@media only screen and (max-width: 1199px) {
  .about-page-wrapper .team-area {
    padding: 100px 0 80px;
  }
}
@media only screen and (max-width: 991px) {
  .about-page-wrapper .team-area {
    padding: 90px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .about-page-wrapper .team-area {
    padding: 70px 0 50px;
  }
}
@media only screen and (max-width: 575px) {
  .about-page-wrapper .team-area {
    padding: 70px 0 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-page-wrapper .team-area .section-title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .about-page-wrapper .team-area .section-title {
    margin-bottom: 10px;
  }
}

.section-title .subtitle-content h5 {
    color: #fd9704;
    font-size: 25px;
    letter-spacing: -0.115px;
    line-height: 1;
    margin: 0;
    font-weight: 600;
    padding-left: 10px;
}
.section-title .subtitle-content {
    align-items: center;
    display: flex;
    margin-bottom: 36px;
}
/*



/*
-----------------------------------------------------------------------
    Funfact CSS
-----------------------------------------------------------------------
*/
.funfact-area.funfact-default-area {
  background-color: #f6f7fc;
  overflow: hidden;
  padding: 100px 0 60px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .funfact-area.funfact-default-area {
    padding: 80px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .funfact-area.funfact-default-area {
    padding: 40px 0 50px;
  }
}
.funfact-area.funfact-default-area:before {
  border: 2px solid #fd9704;
  border-radius: 50%;
  content: "";
  height: 725px;
  position: absolute;
  right: 57px;
  top: -49px;
  width: 725px;
  z-index: -1;
}
@media (max-width: 1599px) {
  .funfact-area.funfact-default-area:before {
    right: 15px;
  }
}
@media only screen and (max-width: 1399px) {
  .funfact-area.funfact-default-area:before {
    right: 5px;
  }
}
@media only screen and (max-width: 1199px) {
  .funfact-area.funfact-default-area:before {
    display: none;
  }
}
.funfact-area.funfact-default-area:after {
  border: 2px solid #19ce67;
  border-radius: 50%;
  bottom: -252px;
  content: "";
  height: 684px;
  position: absolute;
  right: 236px;
  width: 685px;
  z-index: -1;
}
@media (max-width: 1599px) {
  .funfact-area.funfact-default-area:after {
    right: 130px;
  }
}
@media only screen and (max-width: 1399px) {
  .funfact-area.funfact-default-area:after {
    bottom: -207px;
  }
}
@media only screen and (max-width: 1199px) {
  .funfact-area.funfact-default-area:after {
    right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .funfact-area.funfact-default-area:after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .funfact-area.funfact-default-area .section-title {
    margin-bottom: 50px;
  }
}
.funfact-area.funfact-default-area .section-title .title {
  margin-bottom: 71px;
    padding-top: 26px;
    font-size: 72px;
    line-height: 70px;
}
@media only screen and (max-width: 991px) {
  .funfact-area.funfact-default-area .section-title .title {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .funfact-area.funfact-default-area .section-title .title {
    margin-bottom: 30px;
  }
}
.funfact-area.funfact-default-area .section-title .btn.btn-theme.btn-border {
  background-color: #f6f7fc;
}
.funfact-area.funfact-default-area .section-title .btn.btn-theme.btn-border:hover {
  background-color: #19ce67;
}
.funfact-area.funfact-default-area .shape-line-style {
  background-color: #eaebf1;
  height: 100%;
  left: 27.25%;
  position: absolute;
  top: 0;
  width: 1px;
  z-index: -1;
}
.funfact-area.funfact-default-area .shape-line-style:before {
  background-color: #eaebf1;
  content: "";
  height: 83.334%;
  left: -272px;
  position: absolute;
  top: 0;
  width: 1px;
  z-index: -1;
}
.funfact-area.funfact-default-area .shape-line-style:after {
  background-color: #eaebf1;
  content: "";
  height: 100%;
  left: 272px;
  position: absolute;
  top: 0;
  width: 1px;
  z-index: -1;
}
@media only screen and (max-width: 1399px) {
  .funfact-area.funfact-default-area .shape-line-style:after {
    display: none;
  }
}

.funfact-items-style1 .funfact-item {
  background-color: #fff;
  border-radius: 50%;
  height: 170px;
  margin-bottom: 10px;
  padding: 41px 10px 10px;
  position: relative;
  text-align: center;
  width: 170px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media only screen and (max-width: 991px) {
  .funfact-items-style1 .funfact-item {
    height: 160px;
    padding: 35px 10px 10px;
    width: 160px;
  }
}
@media only screen and (max-width: 575px) {
  .funfact-items-style1 .funfact-item {
    padding: 40px 15px 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .funfact-items-style1 .funfact-item {
    height: 130px;
    padding: 37px 10px 10px;
    width: 130px;
  }
}
.funfact-items-style1 .funfact-item .number .counting {
  font-size: 45px;
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
}
.funfact-items-style1 .funfact-item .number .counting#plusl::after {
    content: 'L+';
}
.funfact-items-style1 .funfact-item .number .counting#plus::after {
    content: '+';
}
.funfact-items-style1 .funfact-item .number .counting#plusy::after {
    content: 'Yr+';
}
@media only screen and (max-width: 575px) {
  .funfact-items-style1 .funfact-item .number h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 479.98px) {
  .funfact-items-style1 .funfact-item .number h2 {
    font-size: 24px;
    margin-bottom: 7px;
  }
}
.funfact-items-style1 .funfact-item .title {
  color: #19ce67;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media only screen and (max-width: 479.98px) {
  .funfact-items-style1 .funfact-item .title {
    font-size: 13px;
    margin-bottom: 5px;
  }
}
.funfact-items-style1 .funfact-item:hover {
  background-color: #19ce67;
}
.funfact-items-style1 .funfact-item:hover .number h2 {
  color: #fff;
}
.funfact-items-style1 .funfact-item:hover .title {
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .funfact-items-style1 .funfact-item.mt-20 {
    margin-left: auto;
    margin-right: auto;
  }
}
.btn1 a{
    background: linear-gradient(90deg,#4396be,#3dc1da);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 24px;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--calibri-regular);
    border: none;
    text-decoration: none;
}


/*-------- Page-Not-Found Style Css --------*/
.page-not-found-area {
  padding: 183px 0 181px;
}
@media only screen and (max-width: 991px) {
  .page-not-found-area {
    padding: 100px 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-area {
    padding: 70px 0 30px;
  }
}
.page-not-found-area .thumb {
  padding-right: 25px;
}
.page-not-found-area .section-title {
  padding-top: 65px;
}
.page-not-found-area .section-title .title {
  line-height: 1.1667;
  font-size: 50px;
}
.page-not-found-area .section-title h3{
    color: #3895D3;
}
.page-not-found-area .section-title .separator-line {
  margin-top: 23.5px;
}
.page-not-found-area .section-title .desc p {
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 33px;
  margin-top: 25px;
}
.page-not-found-area .btn-theme {
  padding: 18px 47.66px 18px 45px;
}
@media only screen and (max-width: 575px) {
  .page-not-found-area .btn-theme {
    padding: 14px 32.66px 14px 22px;
  }
}
.page-not-found-area .btn-theme i {
  font-size: 23px;
  line-height: 1;
  margin-right: 13px;
  position: relative;
  top: 2px;
}
.map-slider{
    padding: 40px 0;
}
.map-slider .owl-nav{
    margin: 0 -50px;
}
.map-slider .map-img img{
    width: 100%;
}
.page-not-found-area .thumb img{
    width: 100%;
}
#map iframe{
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}
#mapie{
    padding: 40px 0 0;
}
#mapie .head{
    margin-bottom: 40px;
}
#mapie .head h2{
    background-position: 78px 16px;
    background-repeat: no-repeat;
    background-size: 62px;
    color: #000;
    font-size: 43px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
#mapie .head h2 span{
    color: #023e61;
}
#mapie .head p{
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
#myModal .modal-content {
    padding: 10px;
    border: 4px solid;
    border-radius: 10px;
    border-color: #3dc1da;
}
#myModal .modal-content .modal-body{
    padding: 0;
}
#myModal .modal-content .close-btn {
    display: block;
    top: 15px;
    right: 0;
    margin-left: auto;
    font-size: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    box-shadow: 0 0 20px #ccc;
    line-height: 32px;
    cursor: pointer;
}
#myModal .modal-content .modal-body .query-form{
    padding: 20px 15px 0;
}
#myModal .modal-content .modal-body .query-form .input-field{
    margin-bottom: 15px;
}
#myModal .modal-content .modal-body .query-form .input-field input{
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid;
    border-color: #3dc1da;
    border-radius: 10px;
    padding: 8px 15px;
    background-color: #eee;
}
#myModal .modal-content .modal-body .query-form .input-field textarea{
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid;
    border-color: #3dc1da;
    border-radius: 10px;
    padding: 8px 15px;
    background-color: #eee;
    resize: none;
}
#myModal .modal-content .modal-body .query-form .btn-flex{
    display: flex;
    align-items: center;
}
#myModal .modal-content .modal-body .query-form  input[type="submit"]{
    background: linear-gradient(90deg,#4396be,#3dc1da);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s ease;
    font-weight: 600;
    height: unset;
    width: 100%;
    border: none;
    font-size: 18px;
    margin: 0 10px;
}

@media (min-width:250px) and (max-width:800px) {
  .flip-card-inner {
    height: 80% !important;
  }
}
#myModal .modal-content .modal-head{
    display: flex;
    align-items: center;
    padding: 5px 20px;
    margin-bottom: 20px;
}
#myModal .modal-content .modal-head h3{
    font-size: 24px;
    font-weight: 400;
}
@media (min-width: 576px){
.modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}
}

.about-area .img img{
    border-radius: 10px;
    height: 300px;
}

.desk {
  object-fit: cover;
  width: 100%;
}

.mobile {
  display: none !important;
}

@media (min-width:250px) and (max-width:850px) {
    .swiper {
        height: 900px !important;
    }
  .mobile {
    display: block !important;
    padding: 10px;
    object-fit: contain;
    position: relative;
    max-width: 100%;
    height: auto
  }
  .desk {
    display: none !important;
  }
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  margin-bottom: 50px;
}

.video-container {
  width: 100vw;
  position: relative;
}

.video-container video {
width: 100%;
height: 100%;
z-index: 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.9s;
  transform-style: preserve-3d;
  /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

}

.flip-card-front {
  /*background-color: #bbb;*/
  color: black;
}

.flip-card-back {
  background: linear-gradient(270deg,#082858,#195996);
  color: white;
  transform: rotateY(180deg);
  height: 100%;
  border-radius: 10px;
}
.flip-card-back  p{
    font-size: 13px;
    font-weight: 400;
    margin: 25px 0;
    text-align: left;
    padding: 10px;
}
.flip-card  img{
    width: 100%;
    height: 250px;
    border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.flip-card .des{
    background: linear-gradient(270deg,#082858,#195996);
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-top: -10px;
    padding: 11px;
    position: relative;
    text-align: center;
    z-index: 1;
    border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.flip-card .filp-btn a{
    display: inline-block;
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(270deg,#082858,#195996);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    padding: 6px 22px;
    cursor: pointer;
    transition: .3s;
    font-family: var(--calibri-regular);
}
.custom-about{
    padding: 40px 0!important;
}


.swiper {
  width: 100vw;
  height: 500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}