/********** Template CSS **********/
:root {
    --primary: #433d71;
    --secondary: #4777F5;
    --nav-color: #666;
    --dark: #1D1D27;
    --light-color: #ffffff;
    --primary-font: "Roboto",sans-serif;
    --secondary: #4777F5;
    --light: #F7FAFF;
    --dark: #1D1D27;
}


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
      font-family: "Roboto",sans-serif;
  background-color: var(--light-color);
}

body::-webkit-scrollbar {
  width: 7.5px;
}
/* Track */
body::-webkit-scrollbar-track {
  background: #fff; 
}
 
/* Handle */
body::-webkit-scrollbar-thumb {
  background: var(--primary); 
}

@font-face{
  font-family: MetronicPro;
    src: url(https://gladtechservices.com/new/fonts/MetronicPro.ttf);
    font-display: swap;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 100px;
    bottom: 25px;
    z-index: 99;
}

.relative{
    position: relative;
}

.text-primary {
    color: #433d71 !important;
}
.btn-secondary, .btn-primary {
    background-color: #433d71;
    border-color: #433d71;
}
.btn-secondary:hover, .btn-primary:hover {
    background-color: #fff !important;
    border-color: #433d71 !important;
    box-shadow: 0 0 12px #433d71;
    color:#433d71 !important;
}
.btn-outline-primary{
    color: #433d71;
    border-color: #433d71;
}
.bg-primary{
    background-color: #433d71 !important;
}
.btn-outline-primary:hover {
    background-color: #433d71;
    border-color: #433d71;
    box-shadow: 0 0 12px #;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 15px;
    padding: 10px 15px;
    color: var(--nav-color) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover{
    color: var(--primary) !important;
}
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}


.navbar-light .navbar-brand img {
    max-height: 55px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;    
        z-index: 999;
        padding: 10px 5%;
        background: #FFFFFF;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

.navbar-default .navbar-nav>li>.dicon {
    position: absolute;
    float: right;
    top: 0;
    right: 20px;
    font-size: 25px;
    color: #ababab;
}


.mob-show{
        display: none;
    }

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
        top: 0;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

}

@media (max-width: 767px) {
    .desk-show{
        display: none;
    }
    .mob-show{
        display: block;
    }
    .navbar-light .navbar-brand img {
        max-height: 35px;
        transition: .5s;
    }
    .sticky-top.navbar-light .navbar-brand img {
        max-height: 35px;
    }

}


/*** Hero Header ***/

.hero-header h1{
  font-family: var(--primary-font);
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  color: #fff;
}


.hero-header p{
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  padding: 15px 15px 10px 0;
}

.hero-header .btn-info{
    color: #000;
    background-color: #fff;
    border: 1px solid #fff;
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.5s;
}

.hero-header .btn-info:hover{
    background-color: #fff;
    box-shadow: 0px 25px 30px rgba( 165, 0, 177, 0.4);
    color: #000;
    border: 1px solid #000;
}



/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Testimonial ***/
.newsletter,
.testimonial {
    background:
        url(../img/bg-top.png),
        url(../img/bg-bottom.png);
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--light) !important;
    border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}

/*** Pricing ***/
        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
        }
        
        a,
        a:active,
        a:focus {
            color: #333;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        img {
    max-width: 100%;
    height: auto;
}
/*--blog----*/

.sec-title{
  position:relative;
  margin-bottom:70px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1em;
  color: #ff8a01;
  font-weight: 500;
  background: rgb(247,0,104);
  background: -moz-linear-gradient(to left, rgba(247,0,104,1) 0%, rgba(68,16,102,1) 25%, rgba(247,0,104,1) 75%, rgba(68,16,102,1) 100%);
  background: -webkit-linear-gradient(to left, rgba(247,0,104,1) 0%,rgba(68,16,102,1) 25%,rgba(247,0,104,1) 75%,rgba(68,16,102,1) 100%);
  background: linear-gradient(to left, rgba(247,0,104) 0%,rgba(68,16,102,1) 25%,rgba(247,0,104,1) 75%,rgba(68,16,102,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F70068', endColorstr='#441066',GradientType=1 );
  color: transparent;
  -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.sec-title h2{
  position:relative;
  display: inline-block;
  font-size:48px;
  line-height:1.2em;
  color:#1e1f36;
  font-weight:700;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 28px;
  color: #888888;
  margin-top: 30px;
}

.sec-title.light h2,
.sec-title.light .title{
  color: #ffffff;
  -webkit-text-fill-color:inherit; 
}
.pricing-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.pricing-section .outer-box{
  max-width: 1100px;
  margin: 0 auto;
}


.pricing-section .row{
  margin: 0 -30px;
}

.pricing-block{
  position: relative;
  margin-bottom: 40px;
}

.pricing-block .inner-box{
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  padding: 0 0 30px;
  max-width: 370px;
  margin: 0 auto;
  border-bottom: 20px solid #40cbb4;
}

.pricing-block .icon-box{
  position: relative;
  padding: 50px 30px 0;
  background-color: #40cbb4;
  text-align: center;
}

.pricing-block .icon-box:before{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 45px;
  width: 100%;
  border-radius: 50% 50% 0 0;
  background-color: #ffffff;
  content: "";
}


.pricing-block .icon-box .icon-outer{
  position: relative;
  height: 85px;
  width: 85px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  padding: 10px;
}

.pricing-block .icon-box i{
      position: relative;
    display: block;
    height: 65px;
    width: 65px;
    line-height: 60px;
    border: 5px solid #40cbb4;
    border-radius: 50%;
    font-size: 24px;
  color: #40cbb4;
  -webkit-transition:all 600ms ease;
  -ms-transition:all 600ms ease;
  -o-transition:all 600ms ease;
  -moz-transition:all 600ms ease;
  transition:all 600ms ease;
}

.pricing-block .inner-box:hover .icon-box i{
  transform:rotate(360deg);
}

.pricing-block .price-box{
  position: relative;
  text-align: center;
  padding: 10px 20px;
}

.pricing-block .title{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  color: #222222;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-block .price{
  display: block;
  font-size: 30px;
  color: #222222;
  font-weight: 700;
  color: #40cbb4;
}
.pricing-block .price strike{
  font-size: 18px;
  color: #ff0000;
  font-weight: 600;
}


.pricing-block .features{
  position: relative;
  max-width: 100%;
  margin: 20px;
  max-height: 300px;
  overflow-y: auto;
  padding: 0 10%;
}


.pricing-block .features li{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: #848484;
  font-weight: 500;
  padding: 5px 0;
  padding-left: 30px;
  border-bottom: 1px dashed #dddddd;
}
.pricing-block .features li:before {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 16px;
    color: #2bd40f;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    margin-top: -8px;
}
.pricing-block .features li a{
  color: #848484;
  font-family: MetronicPro;
}

.pricing-block .features li:last-child{
  border-bottom: 0;
}

.pricing-block .btn-box{
  position: relative;
  text-align: center;
}

.pricing-block .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 500;
  padding: 8px 30px;
  background-color: #40cbb4;
  border-radius: 10px;
  border-top:2px solid transparent;
  border-bottom:2px solid transparent;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 300ms ease;
}

.pricing-block .btn-box a:hover{
  color: #ffffff;
}


.pricing-block .features::-webkit-scrollbar {
  width: 5px;
}
/* Track */
.pricing-block .features::-webkit-scrollbar-track {
  background: #eee; 
}
 
/* Handle */
.pricing-block .features::-webkit-scrollbar-thumb {
  background: #40cbb4; 
}

/* Handle */
.pricing-block:nth-child(2) .features::-webkit-scrollbar-thumb {
  background: #1d95d2; 
}

/* Handle */
.pricing-block:nth-child(3) .features::-webkit-scrollbar-thumb {
  background: #ffc20b; 
}


.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .inner-box{
  border-color: #1d95d2;
}

.pricing-block:nth-child(2) .btn-box a,
.pricing-block:nth-child(2) .icon-box{
  background-color: #1d95d2;
}


.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .price{
  color: #1d95d2;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .inner-box{
  border-color: #ffc20b;
}

.pricing-block:nth-child(3) .btn-box a,
.pricing-block:nth-child(3) .icon-box{
  background-color: #ffc20b;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .price{
  color: #ffc20b;
}

.pricing-block:nth-child(4) .icon-box i,
.pricing-block:nth-child(4) .inner-box{
  border-color: #433d71;
}

.pricing-block:nth-child(4) .btn-box a,
.pricing-block:nth-child(4) .icon-box{
  background-color: #433d71;
}

.pricing-block:nth-child(4) .icon-box i,
.pricing-block:nth-child(4) .price{
  color: #433d71;
}
/* Handle */
.pricing-block:nth-child(4) .features::-webkit-scrollbar-thumb {
  background: #433d71; 
}


.pricing-block:nth-child(6) .icon-box i,
.pricing-block:nth-child(6) .inner-box{
  border-color: #f55959;
}

.pricing-block:nth-child(6) .btn-box a,
.pricing-block:nth-child(6) .icon-box{
  background-color: #f55959;
}

.pricing-block:nth-child(6) .icon-box i,
.pricing-block:nth-child(6) .price{
  color: #f55959;
}
/* Handle */
.pricing-block:nth-child(6) .features::-webkit-scrollbar-thumb {
  background: #f55959; 
}


.pricing-block:nth-child(5) .icon-box i,
.pricing-block:nth-child(5) .inner-box{
  border-color: #ff6c0b;
}

.pricing-block:nth-child(5) .btn-box a,
.pricing-block:nth-child(5) .icon-box{
  background-color: #ff6c0b;
}

.pricing-block:nth-child(5) .icon-box i,
.pricing-block:nth-child(5) .price{
  color: #ff6c0b;
}
/* Handle */
.pricing-block:nth-child(5) .features::-webkit-scrollbar-thumb {
  background: #ff6c0b; 
}

.pricing-block:nth-child(6) .icon-box i,
.pricing-block:nth-child(6) .inner-box{
  border-color: #f55959;
}

.pricing-block:nth-child(6) .btn-box a,
.pricing-block:nth-child(6) .icon-box{
  background-color: #f55959;
}

.pricing-block:nth-child(6) .icon-box i,
.pricing-block:nth-child(6) .price{
  color: #f55959;
}
/* Handle */
.pricing-block:nth-child(6) .features::-webkit-scrollbar-thumb {
  background: #f55959; 
}


.pricing-block:nth-child(7) .icon-box i,
.pricing-block:nth-child(7) .inner-box{
  border-color: #57aeb9;
}

.pricing-block:nth-child(7) .btn-box a,
.pricing-block:nth-child(7) .icon-box{
  background-color: #57aeb9;
}

.pricing-block:nth-child(7) .icon-box i,
.pricing-block:nth-child(7) .price{
  color: #57aeb9;
}
/* Handle */
.pricing-block:nth-child(7) .features::-webkit-scrollbar-thumb {
  background: #57aeb9; 
}


.pricing-block:nth-child(8) .icon-box i,
.pricing-block:nth-child(8) .inner-box{
  border-color: #032a2491;
}

.pricing-block:nth-child(8) .btn-box a,
.pricing-block:nth-child(8) .icon-box{
  background-color: #032a2491;
}

.pricing-block:nth-child(8) .icon-box i,
.pricing-block:nth-child(8) .price{
  color: #032a2491;
}
/* Handle */
.pricing-block:nth-child(8) .features::-webkit-scrollbar-thumb {
  background: #032a2491; 
}



.pricing-block:nth-child(9) .icon-box i,
.pricing-block:nth-child(9) .inner-box{
  border-color: #ad4385;
}

.pricing-block:nth-child(9) .btn-box a,
.pricing-block:nth-child(9) .icon-box{
  background-color: #ad4385;
}

.pricing-block:nth-child(9) .icon-box i,
.pricing-block:nth-child(9) .price{
  color: #ad4385;
}
/* Handle */
.pricing-block:nth-child(9) .features::-webkit-scrollbar-thumb {
  background: #ad4385; 
}




/*** Team ***/
.team-item {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.team-item::after {
    position: absolute;
    content: "";
    top: 3rem;
    right: 3rem;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item small {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover small {
    color: var(--light);
}


/*** Project Portfolio ***/
#portfolio-flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: .5s;
}

#portfolio-flters .btn::after {
    position: absolute;
    content: "";
    right: -1px;
    bottom: -1px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 50px solid #FFFFFF;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.portfolio-overlay {
    position: absolute;
    display: block;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: rgba(95, 90, 134, 0.85);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.text-purple{
    color: rgb( 95, 90, 134);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/
.footer {
    background:
        url(../img/bg-top.png),
        url(../img/bg-bottom.png);
    background-position:
        left top,
        right bottom;
    background-repeat: no-repeat;
    background-color: #433d71 !important;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}