/********** Template CSS **********/
:root {
    --primary: #e7b352;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}
.btn-square {
    width: 38px;
    height: 38px;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.navbar .navbar-nav .nav-link {
    padding: 15px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}
.navbar .navbar-nav .nav-item + .nav-item{
 margin-left: 30px;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.top-head a{
    color: #fff;
}
.top-head .dropdown-menu.show{
    z-index: 9999;
}
.top-head a:hover,.top-head a.active{
  color: #e7b352 !important;
}
.top-head .dropdown-menu a{
    color: var(--dark);
}
.page-header-contact,.page-header-about,.page-header-price,.page-header-partner {
background-size: cover;
}
.page-header-contact{
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/contact.jpg) center center no-repeat;
}
.page-header-about {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/about.jpeg) center center no-repeat;
}
.page-header-floor {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/about.jpeg) bottom center no-repeat;
}
.page-header-price {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/pricing.jpeg) center center no-repeat;
}
.page-header-partner {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/become-banner.jpg) bottom center no-repeat;
}
.page-header-partner {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/become-banner.jpg) bottom center no-repeat;
}
.page-header-solar {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/solar.jpg) center center no-repeat;
}
.page-header-roofing {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/roofing.jpg) center center no-repeat;
}
.page-header-agr {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/agriculture.jpg) bottom center no-repeat;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}
/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}
/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
    border: 8px solid #e7b352;
}
.team-item p{
    color: #fff;
}
.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}
/*** Footer ***/
.footer{
    background-image: url(../img/footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    padding-top: 138px;
}
.footer::before{
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 91, 137, .9);
    z-index: -1;
    content: '';
    position: absolute;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f054";
    font: normal normal normal 12px/1 'FontAwesome';
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}
.copyright {
    background: #325b89;
    border: 1px solid #09213933;
}
.copyright a {
    color: var(--primary);
}
.copyright a:hover {
    color: var(--light);
}
#webcoderskull{
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 0 20px;
    text-align: center;
    right: 0;
    transform: translate(-50%, -50%);
}
canvas{
    height:100vh;
    width: 100%;
    background-image: url(../img/top-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
#particles{
    position: relative;
}
#webcoderskull h1{
  letter-spacing: 4px;
  font-size: 4rem;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}
header .dropdown-item:hover, header .dropdown-item:focus,.top-head .dropdown-menu .dropdown-item:hover {
    background: #e7b352;
    color: #fff !important;
}
/******************about*********************/
.section_about{
    background-image: url(../img/bg-about.png);
    background-repeat: no-repeat;
    background-position: right;
}
/************how it work******************/
.section-our-services.home-1{
  background-image: url(../img/htw.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
}
.services-item.style-absolute .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f4f7;
    opacity: 0.9;
  
}
@keyframes example {
  0%   {background-color: #f3f4f7;}
  25%  {background-color: #00194c;}
}
.services-item.style-absolute:hover.services-item.style-absolute .image::before{
  background-color: #00194c;
  opacity: 0.6;
  animation-name: example;
  animation-duration: 4s;
}
.services-item.style-absolute:hover .services-content h3 a,
.services-item.style-absolute:hover .services-content .sub-heading{
color: #fff !important;
}
.services-item .image {
    position: relative;
    display: inline-block;
    width: 100%;
}
.services-item .image img {
    width: 100%;
    height: 397px;
    object-fit: cover;
}
.services-item {
    position: relative;
    z-index: 5;
}
.services-content h3{
  line-height: 24px;
}
.services-content h3 a{
  font-size: 22px;
  color: #325b89;
}
.services-item.style-absolute .services-icon {
    position: absolute;
    top: 35px;
    right: 25px;
    box-shadow: unset;
}

.services-item .services-icon img{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    margin-top: 7px;
}
.services-item .services-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e7b352;
}
.services-item.style-absolute .number-services {
    position: absolute;
    top: 35px;
    left: 36px;
    font-weight: 700;
    font-size: 50px;
    line-height: 45px;
}
.number-services {
    color: transparent;
    -webkit-text-stroke: 1px #325b89;
    font-weight: bold;
    opacity: 0.4;
    z-index: 4;
}
.services-item.style-absolute:hover .number-services{
  -webkit-text-stroke: 1px #fff;
}
.services-item.style-absolute .services-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 26px;
    z-index: 4;
}
.services-item .services-content .sub-heading {
    color: #444;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.services-item.style-absolute .services-content .services-btn{
    margin-top: 14px;
    padding-top: 20px;
    border-top: 1px solid #6c6e764d;
    font-weight: 500;
    text-shadow: 0px 0px 0px #000000;
}
.services-item.style-absolute:hover .services-content .services-btn{
  border-top: 1px solid #ffffff4d;
}
.section-video{
  background-image: url(../img/pattern-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
    background-color: aliceblue;
}
.section-video h2{
  line-height: 50px;
}
.video-frem iframe{
    border: 10px solid #fff;
    width: 80%;
}
.section_faq .accordion-item{
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.section_faq button{
  font-size: 20px;
  color: #325b89;
  font-weight: 500;
}
.section_faq .accordion-button:not(.collapsed) {
    color: #fff;
    box-shadow: none;
    background-color: #e7b352 !important;
    border-radius: 4px !important;
}
.service-block-five .inner-box {
    background-color: #F9F9F9;
    overflow: hidden;
    padding: 40px 40px 30px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    height: 100%;
}
.service-block-five .inner-box:hover{
    box-shadow: 0px 9px 24px 0px rgb(213 187 139 / 75%);
}
.service-block-five {
    margin-bottom: 30px;
    position: relative;
}
.service-block-five h4 a{
  color: #325b89;
  font-size: 22px;
}
.service-block-five img{
  width: 50px;
  margin-bottom: 25px;
}
.right-box{
    position: relative;
    text-align: right;
    padding: 50px !important
}
.right-box::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e7b352;
    clip-path: polygon(20% 0%, 100% 0, 100% 50%, 100% 100%, 20% 100%, 0% 100%);
}
.video-frem{
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-item img{
    width: auto;
    /* max-height: 95px; */
}
.owl-dots{
    display: none;
}
.section-ind .bg-white{
    border-radius: 8px;
}
.section-client{
    margin-bottom: -65px;
    border-radius: 20px;
    position: relative;
    z-index: 9;
}
.section-client .owl-carousel .owl-item img{
    width: 100%;
}
.contact-section .bg-light{
    background-color: #f7f7f7 !important;
}
.contact-section a{
    color: #757575;
        word-break: break-all;
}
.contact-section li {
    position: relative;
    padding-left: 52px;
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-section li i{
    display: block;
    left: 0;
    background-color: #e7b352;
    text-align: center;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    line-height: 35px;
    margin-right: 10px;
    font-size: 16px;
    color: #fff;
    position: absolute;
}
.vision-section{
    position: relative;
    background-color: rgba(50, 91, 137);
    color: #fff;
}
.vision-section h5,.vision-section h1{
    color: #fff;
}
.vision-section::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/bgimage-3.png);
    opacity: 0.6;
}
.featured-icon-box{
    background-color: rgba(0, 0, 0, .7);
    padding: 24px;
    height: 100%;
    line-height: 30px;
}
.vision-section .featured-title h5::after,.section-become h3:after{
    content: '';
    position: absolute;
    width: 53px;
    height: 3px;
    bottom: -8px;
    left: 0;
    background-color: #e7b352;
    border-radius: 4px;
}
.section-become .box-img{
    height: 100% !important;
}
.hover-zoom,.section-become .box-img {
    overflow: hidden;
    height: 172px;
    transition: box-shadow 0.25s 
ease-in-out;
margin-bottom: 15px;
}
.hover-zoom--basic:hover img,.section-become .hover-zoom--basic:hover img {
    transform: scale(1.5);
}
.hover-zoom:not(.hover-zoom--empty):hover,.section-become .box-img:not(.box-img--empty):hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.hover-zoom--basic img {
    transition: transform 0.5s 
ease;
}
.owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}
/* chat box css */
#center-text {          
  display: flex;
  flex: 1;
  flex-direction:column; 
  justify-content: center;
  align-items: center;  
  height:100%;
  
}
#chat-circle {
    position: fixed;
    bottom: 29px;
    right: 30px;
    background: #e7b352;
    width: 55px;
    height: 55px;
    color: white;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    font-size: 27px;
    border-radius: 50%;
    z-index: 9;
}

.btn#my-btn {
     background: white;
    padding-top: 13px;
    padding-bottom: 12px;
    border-radius: 45px;
    padding-right: 40px;
    padding-left: 40px;
    color: #5865C3;
}
#chat-overlay {
    background: rgba(255,255,255,0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: none;
}
.chat-box {
  display:none;
  background: #efefef;
  position:fixed;
  right:30px;
  bottom:50px;  
  width:350px;
  max-width: 85vw;
  max-height:100vh;
  border-radius:5px;
  box-shadow: 0px 4px 11px 3px #00000091;
}
.chat-box-toggle {
  float:right;
  margin-right:15px;
  cursor:pointer;
}
.chat-box-header {
  background: #e7b352;
  height:70px;
  border-top-left-radius:5px;
  border-top-right-radius:5px; 
  color:white;
  text-align:center;
  font-size:20px;
  padding-top:17px;
}
.chat-box-body {
  position: relative;  
  height:370px;  
  height:auto;
  border:1px solid #ccc;  
  overflow: hidden;
}
.chat-box-body:after {
  content: "";
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAgOCkiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGNpcmNsZSBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIgY3g9IjE3NiIgY3k9IjEyIiByPSI0Ii8+PHBhdGggZD0iTTIwLjUuNWwyMyAxMW0tMjkgODRsLTMuNzkgMTAuMzc3TTI3LjAzNyAxMzEuNGw1Ljg5OCAyLjIwMy0zLjQ2IDUuOTQ3IDYuMDcyIDIuMzkyLTMuOTMzIDUuNzU4bTEyOC43MzMgMzUuMzdsLjY5My05LjMxNiAxMC4yOTIuMDUyLjQxNi05LjIyMiA5LjI3NC4zMzJNLjUgNDguNXM2LjEzMSA2LjQxMyA2Ljg0NyAxNC44MDVjLjcxNSA4LjM5My0yLjUyIDE0LjgwNi0yLjUyIDE0LjgwNk0xMjQuNTU1IDkwcy03LjQ0NCAwLTEzLjY3IDYuMTkyYy02LjIyNyA2LjE5Mi00LjgzOCAxMi4wMTItNC44MzggMTIuMDEybTIuMjQgNjguNjI2cy00LjAyNi05LjAyNS0xOC4xNDUtOS4wMjUtMTguMTQ1IDUuNy0xOC4xNDUgNS43IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PHBhdGggZD0iTTg1LjcxNiAzNi4xNDZsNS4yNDMtOS41MjFoMTEuMDkzbDUuNDE2IDkuNTIxLTUuNDEgOS4xODVIOTAuOTUzbC01LjIzNy05LjE4NXptNjMuOTA5IDE1LjQ3OWgxMC43NXYxMC43NWgtMTAuNzV6IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIvPjxjaXJjbGUgZmlsbD0iIzAwMCIgY3g9IjcxLjUiIGN5PSI3LjUiIHI9IjEuNSIvPjxjaXJjbGUgZmlsbD0iIzAwMCIgY3g9IjE3MC41IiBjeT0iOTUuNSIgcj0iMS41Ii8+PGNpcmNsZSBmaWxsPSIjMDAwIiBjeD0iODEuNSIgY3k9IjEzNC41IiByPSIxLjUiLz48Y2lyY2xlIGZpbGw9IiMwMDAiIGN4PSIxMy41IiBjeT0iMjMuNSIgcj0iMS41Ii8+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTkzIDcxaDN2M2gtM3ptMzMgODRoM3YzaC0zem0tODUgMThoM3YzaC0zeiIvPjxwYXRoIGQ9Ik0zOS4zODQgNTEuMTIybDUuNzU4LTQuNDU0IDYuNDUzIDQuMjA1LTIuMjk0IDcuMzYzaC03Ljc5bC0yLjEyNy03LjExNHpNMTMwLjE5NSA0LjAzbDEzLjgzIDUuMDYyLTEwLjA5IDcuMDQ4LTMuNzQtMTIuMTF6bS04MyA5NWwxNC44MyA1LjQyOS0xMC44MiA3LjU1Ny00LjAxLTEyLjk4N3pNNS4yMTMgMTYxLjQ5NWwxMS4zMjggMjAuODk3TDIuMjY1IDE4MGwyLjk0OC0xOC41MDV6IiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMS4yNSIvPjxwYXRoIGQ9Ik0xNDkuMDUgMTI3LjQ2OHMtLjUxIDIuMTgzLjk5NSAzLjM2NmMxLjU2IDEuMjI2IDguNjQyLTEuODk1IDMuOTY3LTcuNzg1LTIuMzY3LTIuNDc3LTYuNS0zLjIyNi05LjMzIDAtNS4yMDggNS45MzYgMCAxNy41MSAxMS42MSAxMy43MyAxMi40NTgtNi4yNTcgNS42MzMtMjEuNjU2LTUuMDczLTIyLjY1NC02LjYwMi0uNjA2LTE0LjA0MyAxLjc1Ni0xNi4xNTcgMTAuMjY4LTEuNzE4IDYuOTIgMS41ODQgMTcuMzg3IDEyLjQ1IDIwLjQ3NiAxMC44NjYgMy4wOSAxOS4zMzEtNC4zMSAxOS4zMzEtNC4zMSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuMjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvZz48L3N2Zz4=');
  opacity: 0.1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height:100%;
  position: absolute;
  z-index: -1;   
}
#chat-input {
  background: #f4f7f9;
  width:100%; 
  position:relative;
  height:47px;  
  padding-top:10px;
  padding-right:50px;
  padding-bottom:10px;
  padding-left:15px;
  border:none;
  resize:none;
  outline:none;
  border:1px solid #ccc;
  color:#888;
  border-top:none;
  border-bottom-right-radius:5px;
  border-bottom-left-radius:5px;
  overflow:hidden;  
}
.chat-input > form {
    margin-bottom: 0;
}
#chat-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ccc;
}
#chat-input::-moz-placeholder { /* Firefox 19+ */
  color: #ccc;
}
#chat-input:-ms-input-placeholder { /* IE 10+ */
  color: #ccc;
}
#chat-input:-moz-placeholder { /* Firefox 18- */
  color: #ccc;
}
.chat-submit {  
  position:absolute;
  bottom:3px;
  right:10px;
  background: transparent;
  box-shadow:none;
  border:none;
  border-radius:50%;
  color:#e7b352;
  width:35px;
  height:35px;  
}
.chat-logs {
  padding:15px; 
  height:370px;
  overflow-y:scroll;
}
.chat-logs::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.chat-logs::-webkit-scrollbar{
	width: 5px;  
	background-color: #F5F5F5;
}
.chat-logs::-webkit-scrollbar-thumb{
	background-color: #5A5EB9;
}
@media only screen and (max-width: 500px) {
   .chat-logs {
        height:40vh;
    }
}
.chat-msg.user > .msg-avatar img {
  width:45px;
  height:45px;
  border-radius:50%;
  float:left;
  width:15%;
}
.chat-msg.self > .msg-avatar img {
  width:45px;
  height:45px;
  border-radius:50%;
  float:right;
}
.cm-msg-text {
  background:white;
  padding:10px 15px 10px 15px;  
  color:#666;
  max-width:75%;
  float:left;
  margin-left:10px; 
  position:relative;
  margin-bottom:20px;
  border-radius:30px;
}
.chat-msg {
  clear:both;    
}
.chat-msg.self > .cm-msg-text {  
  float:right;
  margin-right:10px;
  background: #325b89;
  color:white;
}
.cm-msg-button>ul>li {
  list-style:none;
  float:left;
  width:50%;
}
.cm-msg-button {
    clear: both;
    margin-bottom: 70px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
/* contact form dropdown css */
.wrapper .form-control{
background-color: #fff;
min-height: 56px;
}
.toggle-next{
  border-radius: 0
  }
label {
  cursor: pointer
  }
.ellipsis {
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.apply-selection{
  display: none;
  width: 100%;
  margin: 0;
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
  }
  .ajax-link {
    display: none;
    }
.checkboxes{
  margin: 0;
  display: none;
  border-top: 0;
}
.inner-wrap{
    padding: 5px 10px;
    max-height: 140px;
    overflow: auto;
}
/* Pricing Pges css */
.main {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}
.price-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.price-table tr td {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 24px;
    border-bottom: 0px;
}
.price-table tr td:first-child {
    border-left: 0 none;
}
.price-table tr td:not(:first-child) {
    text-align: center;
}
.price-table tr:nth-child(even) {
    background-color: #FFFFFF;
}
.price-table tr:hover {
    background-color: #EEEEEE;
}
.price-table .fa-check {
    color: #198754;
}
.price-table .fa-times {
    color: #D8D6E3;
}
.price-table tr.price-table-head td {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}
.price-table tr.price-table-head {
    color: #FFFFFF;
}
.price-table td.price {
    padding: 16px;
    font-weight: 600;
}
.price-table td.price a {
    padding: 12px 25px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}
.price-table .price-blank {
    background-color: #fafafa;
    border: 0 none;
}
.price-table svg {
    width: 90px;
    fill: #325b89;
}
.sec-work .services-item .services-content .sub-heading{
    display: block;
    overflow: auto;
}
.sec-feature{
    background-image: url(../img/bg-fet.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.sec-feature .icon{
    font-size: 22px;
}
.sec-feature p{
    line-height: 30px   ;
}
.nav-tabs .nav-link{
    width: max-content;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
}
.nav-tabs .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #325b89;
    z-index: -1;
    transition: all 0.3s
ease-in-out;
}
.nav-tabs .nav-link:hover{
    color: #fff !important;
}
.nav-tabs .nav-link:hover::before {
    left: 0;
}

.featured-icon-box {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.featured-icon-box:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(231, 179, 82, .8);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: 
ease-out;
    transition-timing-function: 
ease-out;
}
.featured-icon-box:hover, .featured-icon-box:focus, .featured-icon-box:active {
    color: white;
}
.featured-icon-box:hover:before, .featured-icon-box:focus:before, .featured-icon-box:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* responsive css start */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.18);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
@media (max-width: 1024px) and (min-width: 320px) {
.price-table td.price{
    min-width: 215px;
}
}
@media (max-width: 1024px) {
.navbar .navbar-nav .nav-link {
    font-size: 12.5px;
    margin-left: -6px;
}
#webcoderskull h1{
    font-size: 2.5rem;
}
}
@media (max-width: 768px) {
.navbar .navbar-nav .nav-item + .nav-item {
    margin-left: 0px;
}
.sec-services{
    overflow: auto;
}
}
@media (max-width: 600px) {
    .right-box::after {
    clip-path: polygon(0% 0%, 100% 0, 100% 50%, 100% 100%, 20% 100%, 0% 100%);
}
.video-frem iframe {
    width: 100%;
}
}
@media (max-width: 425px) {
.price-table td.price a {
    padding: 12px 12px;
    font-size: 11px;
}
}

/* Gallery css */
:root {
  --lightbox: rgb(0 0 0 / 0.75);
  --carousel-text: #fff;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme = "dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme = "dark"] .lightbox-modal .carousel-control-prev-icon {
    filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: .6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}
.photo-gallery .owl-carousel .owl-item img{
    min-height: 204px;
    object-fit: cover;
}
.section-call-to-action{
    margin-top: -93px;
}
/* onpageload popup */
.onpageload .modal-dialog{
    max-width: 800px;
}
.onpageload img,.section-become .box-img img{
    object-fit: cover;
}