/*=======================================================================
Project    : PUS Infotech
Author     : piyush Tapaniya | +91 83060 05795
Version    : 1.0
Support    : piyush.tapaniya90@gmail.com 
=======================================================================*/ 

@charset "UTF-8";
/*================================================
    :: general css Style
==================================================*/ 

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --primary-color: #f57a20;
    --active-primary-color: #ce5d0c;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --text-color: #dbdbdb;
    --body-color: #111111; 
    --border-radius-one: 5px;
    --border-radius-two: 15px;
    --border-radius-three: 20px;
    --border-color-one: #dbdbdb;
    --border-color-two: #454242;
    --title-fonts: "Lato", sans-serif;;
    --body-fonts: "Lato", sans-serif;;
    --transition: all 0.5s ease-in-out;
    --box-shadow: 0 14px 28px -20px rgba(16, 24, 40, .24); 
    --extra-color-one: #131313;
    --extra-color-two: #161414;
    --extra-color-three: #161414;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: var(--white-color);
}

::selection {
    text-shadow: none;
    background: var(--primary-color);
    color: var(--white-color);
} 
 
/* :: basic style  */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
html {
    overflow-x: hidden;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    margin: 0;
}
  
body {
    background: var(--body-color);
    font-family: var(--body-fonts);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--text-color);
    overflow: hidden;
}

p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}

label,
span {
    color: var(--text-color);
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none;
    outline: 0;
}

iframe {
    width: 100%;
    border: 0px;
    filter: grayscale(100%);
    float: left;
}

/* :: Form */
textarea {
    resize: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type='number'] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}


::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

.input-container {
    position: relative;
    border: 2px solid #ddd;
    margin-bottom: 20px;
    border-radius: 5px !important;
}

.input-error {
    border: 2px solid red;
}

.input {
    box-sizing: border-box;
    color: #000;
    height: 50px !important;
    outline: 0;
    padding: 12px 10px 12px 10px;
    width: 100%;
    border: none !important;
}

textarea.input {
    height: 100px !important;
}

.input-error-text {
    color: red;
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: -18px;
}

.placeholders {
    color: #65657b;
    font-family: sans-serif;
    left: 15px;
    pointer-events: none;
    position: absolute;
    transition: 0.3s;
    margin: 0;
    transform: translate(0px, 50%);
}

.input:focus~.placeholders,
.input:not(:placeholder-shown)~.placeholders {
    transform: translateY(-12px) translateX(-20px) scale(0.75);
    padding: 0 10px;
    background: #fff;
}

/* :: headings */

/* :: Font h1 */
h1 {
    font-size: 62px;
    font-weight: 600;
} 

@media only screen and (min-width: 992px) and (max-width: 1366px) {
    h1 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

/* :: Font h2 */
h2 {
    font-size: 48px;
    font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
    h2 {
        font-size: 38px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 24px;
        line-height: normal;
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
    font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 26;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 26;
    }
}

/* :: Font h4 */
h4 {
    font-size: 28px;
    font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}

/* :: Font h5 */
h5 {
    font-size: 22px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

/* :: Font h6 */
h6 {
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}

/* class */
.text-primary{
    color: var(--primary-color) !important;
}
.text-color{
    color: var(--text-color) !important;
}

/* :: button style */
.button-style {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    vertical-align: top;
    line-height: 48px;
    padding: 0 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.button-style:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--active-primary-color);
    color: var(--white-color);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
    transform-origin: 0 100%;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
}

.button-style:hover {
    color: var(--white-color);
}

.button-style:hover:before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
} 

/* grid */
.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-columns: repeat(1, 1fr);
    grid-gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-columns: repeat(4, 1fr);
    grid-gap: 2rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    -ms-grid-columns: repeat(5, 1fr);
    grid-gap: 2rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-columns: repeat(6, 1fr);
    grid-gap: 2rem;
}

/* :: form */
.form-control {
    height: 56px;
}

.field-inner label {
    font-size: 13px;
    margin-bottom: 10px;
}

.form-control:focus {
    background-color: transparent;
}

.form-group input[type='text'],
.form-group input[type='password'],
.form-group input[type='tel'],
.form-group input[type='email'],
.form-group textarea, 
.form-group select {
    position: relative;
    display: block;
    color: var(--white-color) !important;
    width: 100%;
    font-size: 13px;
    line-height: 28px;
    padding: 10px 20px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid var(--border-color-two);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group textarea { 
    padding: 15px 25px 25px;
    height: 185px; 
    resize: none; 
}

label.error {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
}

label e{
    color: red;
}

input.error,
select.error,
textarea.error {
    border-color: #ff0000 !important;
}

.form-control.error-border {
    border-color: red !important;
}

.field-inner{
    margin-bottom: 30px;
}
.field-inner .error {
    font-size: 12px;
    color: red;
    position: absolute;
    font-weight: 300;
}

.ajax-response.error {
    background-color: rgba(255, 0, 0, .1);
    color: red;
    border-radius: var(--border-radius-two);
    padding: 15px;
    margin-top: 30px;
}
.ajax-response.success {
    background-color: rgba(0, 128, 0, .1);
    color: green;
    border-radius: var(--border-radius-two);
    padding: 15px;
    margin-top: 30px;
}
 
section {
    position: relative;
}



/*-------------------------------------------------
:: scrollbar CSS 
-------------------------------------------------*/

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
  
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--primary-color);
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/*-------------------------------------------------
:: section title
-------------------------------------------------*/
.section-title {
    position: relative;
}
.section-title .sub-title {
    display: inline-block;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);    
    padding: 5px 15px;
    -webkit-border-radius: var(--border-radius-three);
    -moz-border-radius: var(--border-radius-three);
    -ms-border-radius: var(--border-radius-three);
    -o-border-radius: var(--border-radius-three);
    border-radius: var(--border-radius-three);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
    z-index: 2;
}
.section-title h2 {
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}


/*-------------------------------------------------
:: scrolling ticker area
-------------------------------------------------*/
.scrolling-ticker-area {
    background-color: var(--extra-color-two);
    padding: 50px 0;
}
.scrolling-ticker-area .scrolling-ticker-box {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
    align-items: center;
}
.scrolling-ticker-area .scrolling-ticker-box .scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: 40px; 
    animation: scroll 24s linear infinite;
}
@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - 40px));
	}
}
.scrolling-ticker-area .scrolling-ticker-box .scrolling-content p {
    margin-bottom: 0;
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--body-fonts);
    vertical-align: middle;
}
.scrolling-ticker-area .scrolling-ticker-box .scrolling-content p svg {
    margin-right: 40px;
}

/*-------------------------------------------------
:: hero-area
-------------------------------------------------*/
.hero-area{
    padding: 220px 0 120px 0;
}
.hero-content h1{
    font-size: 42px;
    line-height: normal;
    margin-bottom: 30px;
}
.hero-content p{
    font-size: 15px; 
    margin-bottom: 50px;
}


/*-------------------------------------------------
:: about area
-------------------------------------------------*/ 
.counter-box h3{
    position: relative;
}
.counter-box h3:after {
    content: '';
    position: absolute;
    height: 50px;
    width: 50px;
    background-color: var(--black-color);
    border-radius: 100%;
    left: -20px;
    z-index: -1;
    top: -10px;
}
.about-counter {
    margin-left: 10px;
}


/*-------------------------------------------------
:: service area
-------------------------------------------------*/
.services-area .single-service-item { 
    display: flex; 
    align-items: center;
    padding: 40px;
    position: relative; 
    margin-bottom: 30px;
    background-color: var(--extra-color-three); 
    border-radius: var(--border-radius-three);
}
.services-area .single-service-item .service-content { 
    display: flex; 
    justify-content: flex-start; 
    transition: 0.6s; 
    transform: translateY(0);
    gap: 25px;
    flex: 50%;
}
.services-area .single-service-item .service-content .service-number {
    font-size: 26px;
    height: 70px;
    width: 70px;
    color: var(--text-color);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color-two);
}
.services-area .single-service-item .service-inner { 
    display: flex; 
    justify-content: flex-end; 
    align-items: center;
    flex: 50%;
}
.services-area .single-service-item .service-image {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%) rotate(-8deg);
    z-index: 3;
    left: 25%;
    border-radius: 25px;
    overflow: hidden;
}
.services-area .single-service-item .service-image img {
    height: 0;
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0); 
    transition: clip-path 0.3s ease-in;
}
.services-area .single-service-item:hover {
    background-color: var(--black-color); 
}
.services-area .single-service-item:hover .service-content .service-number{
    background-color: var(--white-color);
    color: var(--black-color);
}
.services-area .single-service-item:hover .service-image img {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0); 
    transition: clip-path 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    height: auto;
}

/*-------------------------------------------------
:: projects-area
-------------------------------------------------*/
.projects-area .projects-wapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.projects-area .projects-item .projects-image{
    position: relative;
    overflow: hidden; 
    border-radius: var(--border-radius-three);
    z-index: 1;
}
.projects-area .projects-item .projects-image img{ 
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}
.projects-area .projects-item .projects-content h3{
    font-size: 19px;
    margin-top: 20px;
    text-align: center;
}
.projects-area .projects-item .projects-content h3:hover{
    color: var(--primary-color);
}

.projects-area .projects-item:hover .projects-image img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/*-------------------------------------------------
:: why-choose-area
-------------------------------------------------*/
.why-choose-area {
    background-color: var(--extra-color-two);
}
.why-choose-area .why-choose-wapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.why-choose-area .why-choose-wapper .why-choose-item {
    padding: 40px;
    position: relative; 
    background-color: var(--body-color);
    border-radius: var(--border-radius-three);
    text-align: center;
}
.why-choose-area .why-choose-wapper .why-choose-item .why-choose-icon {
    position: relative;
    z-index: 1;
    font-size: 32px;
    color: var(--white-color);
    height: 80px;
    width: 80px;
    background-color: rgb(255 255 255 / 14%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}
 
.why-choose-area .why-choose-wapper .why-choose-item .why-choose-content h3 {
    font-size: 19px;
    margin-top: 30px; 
}
.why-choose-area .why-choose-wapper .why-choose-item .why-choose-content p {
    font-size: 14px;
    margin-top: 20px; 
}
.why-choose-area .why-choose-wapper .why-choose-item:hover .why-choose-icon{
    background-color: var(--primary-color);
}

.fa-star.active {
    color: #ffb03b;
}
/*-------------------------------------------------
:: testimonials-area
-------------------------------------------------*/
.testimonials-area .testimonials-slider .testimonials-item {
    background-color: var(--extra-color-two);
    padding: 40px;
}

.testimonials-area .testimonials-slider .testimonials-item .testimonials-content {
    margin-bottom: 40px;
}
.testimonials-area .testimonials-slider .testimonials-item .testimonials-author {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
}

.testimonials-area .testimonials-slider .testimonials-item .testimonials-meta {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 25px;
}
.testimonials-area .testimonials-slider .testimonials-item .testimonials-meta .testimonials-rating i {
    font-size: 16px;
    background: var(--background-two);
    padding: 5px;
    display: inline-block;
    border-radius: 2px;
}
.testimonials-area .testimonials-slider .testimonials-item .testimonials-meta .testimonials-quote img{
    width: 32px;
    height: 32px;
}

.testimonials-area .testimonials-slider .testimonials-item .testimonials-author .testimonials-author-image {
    display: block;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 16px;
    width: 70px;
    height: 70px;
}
.testimonials-area .testimonials-slider .testimonials-item .testimonials-author .testimonials-author-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials-area .testimonials-slider .testimonials-item .testimonials-author .testimonials-author-content h3 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--white-color);
}
.testimonials-area .testimonials-slider .testimonials-item .testimonials-author .testimonials-author-content p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6em;
}
.testimonials-area .testimonials-slider .owl-dots{
    display: flex;
    gap: 10px;
    text-align: center;
    margin-top: 30px;
    justify-content: center;
}
.testimonials-area .testimonials-slider .owl-dots button {
    height: 10px;
    width: 10px;
    background: var(--white-color) !important;
    border-radius: 100px;
    opacity: 0.05;
}
.testimonials-area .testimonials-slider .owl-dots button.active{
    opacity: 1;
}
  
/*-------------------------------------------------
:: cta-area
-------------------------------------------------*/
.cta-wapper{
    background-color: var(--extra-color-three); 
    border: 1px solid var(--border-color-two);
    padding: 100px 50px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    background-image: url('../../assets/images/patten/patten-1.png');
    background-size: cover;
    backdrop-filter: blur(10px);
    margin-top: -100px;
}
.cta-content a {
    margin-top: 40px; 
}

.bg-1 {
    height: 190px;
    width: 190px;
    position: absolute;
    background-color: #1E5799;
    bottom: 0;
    filter: blur(161px);
    border-radius: 500px;
    z-index: 0;
    left: 0;
}

.bg-2 {
    height: 190px;
    width: 190px;
    position: absolute;
    background-color: #1E5799;
    bottom: 0;
    filter: blur(161px);
    border-radius: 500px;
    z-index: 0;
    right: 0;
}


/*-------------------------------------------------
:: footer
-------------------------------------------------*/
.footer {
    background: var(--extra-color-three);
        margin-top: 100px;
}

.footer-top{
    margin-bottom: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color-two);
}
.footer .lang-select select {
    padding: 10px 15px;
    display: inline-block;
    margin-top: 30px;
    font-size: 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color-two);
}
.footer-menu li a{
    position: relative;
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 15px;
    display: inline-block;
    transition: var(--transition);
}
.footer-menu li:nth-last-child(1) a{
    margin-bottom: 0;
}
 
.footer-menu li a::after{
    content: "";
    width: 0;
    height: 2px;
    display: block;
    background: var(--white-color);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    will-change: transform, opacity;
}
.footer-menu li a:hover::after { 
    width: 100%;
    opacity: 1;
}

.widget-footer-contact  p {
    font-size: 14px;
    margin-bottom: 20px;
}  
 
 

/*-------------------------------------------------
:: breadcrumb-section
-------------------------------------------------*/
.breadcrumb-section{
    position: relative;
    background: var(--extra-color-three);
    padding: 180px 0 120px 0;
}

.breadcrumb-section:after {
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(360deg, rgb(0 2 18) 0%, rgba(34, 16, 35, 0) 100%);
}

.breadcrumb-section .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-title h1{
    font-size: 42px;
    line-height: normal;
    margin-bottom: 20px;
}
 