@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Rubik", sans-serif;
}

.body{
    overflow-x: hidden;
}

h1,h2,h3,h4,h5{
    font-family: "Inter", sans-serif;
}

/* NAVIGATION---------------START-----------------HERE------------------- */

nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
} 

nav .nav-active-item{
    margin: 0 5px;
}

nav .nav-active-link{
    color: #000;
    text-decoration: none;
    font-weight: 400;
    padding: 5px 15px;  
    overflow: hidden;
    border-radius: 100px;
    position: relative;
    z-index: 1;
}

nav .nav-active-link::before{
    content: "";
    background: linear-gradient(135deg, #FFA9A9B3 0%, #F3AEE4B3 100%);
    width: 0%;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}

nav .nav-active-item.active .nav-active-link::before{
    content: "";
    background: linear-gradient(135deg, #FFA9A9B3 0%, #F3AEE4B3 100%);
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 100px;
}

nav .nav-active-link:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}

nav .nav-show-btn,.nav-hide-btn{
    display: none;
}

.bttn{
    width: 160px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bttn::before{
    content: "";
    background: linear-gradient(135deg, #FFA9A9B3 0%, #F3AEE4B3 100%);
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 40px;
    z-index: -1 ;
    transition: all 0.4s ease-in-out;
}

.bttn:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}

@media only screen and (max-width: 1200px){
    nav .nav-active-link{
        padding: 5px 12px;
    }
    nav .nav-active-item{
        margin: 0 2px;
    }
}
@media only screen and (max-width: 992px){
    nav .nav-bar {
        display: block;
        top: 0;
        left: -100%;
        position: fixed;
        background: #FFF;
        width: 300px;
        height: 100vh;
        z-index: 2;
        box-shadow: 0 0 10px rgba(128, 128, 128, 0.445);
        transition: all 0.5s ease-in-out;
    }
    nav .nav-active-item{
        margin: 25px 20px;
    }
    nav a.nav-hide {
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #FFA9A9B3 0%, #F3AEE4B3 100%);
        color: #000;
        border-radius: 100px;
        font-size: 25px;
        text-decoration: none;
        margin: 15px 15px 50px auto;
    }
    nav .nav-show-btn,.nav-hide-btn{
        display: block;
    }
}
@media only screen and (max-width: 767px){
    nav .bttn{
        display: none;
    }
}

/* NAVIGATION---------------ENDS-----------------HERE------------------- */

/* BANNER---------------START-----------------HERE------------------- */

.banner{
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 120vh;
    display: flex;
    align-items: center
}

.banner h1{
    color: #000000;
    font-size: 75px;
    line-height: 1;
    font-weight: 500;
}

.banner p{
    font-size: 22px;
    color: #696687;
}

.banner .b-btn{
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #FFF;
    text-decoration: none;
    border-radius: 100px;
    font-size: 14px;
    border: 1px solid #000000;
    transition: all 0.3s ease-in-out;
}

.banner .b-btn:hover{
    background: transparent;
    color: #000000;
}

.banner #banner-content-1{
    margin-left: 110px;
}

.banner .img{
    position: absolute;
}

.banner .img-5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: circle 5s linear infinite;
}

@keyframes circle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.banner .img-3{
    animation: move 5s linear infinite;
}
@keyframes move {
    0%,100%{
        transform: translate(0);
    }20%{
        transform: translateY(15px);
    }40%{
        transform: translateX(-15px);
    }60%{
        transform: translateY(-10px);
    }80%{
        transform: translateX(15px);
    }
}

@media only screen and (max-width: 1200px){
    .banner .img-1{
        width: 100%  !important;
        left: -20px !important;
    }
    .banner #banner-content-1 {
        margin-left: 35px;
    }
    .banner h1{
        font-size: 65px;
    }
     .banner .img-2 {
        width: 170px;
    }
    .banner .img-6 {
        top: 14rem !important;
    }
}
@media only screen and (max-width: 992px){
    .banner .img-1{
        left: -50px !important;
        margin: 20px 0;
    }
    .banner h1{
        font-size: 45px;
    }
    .banner p{
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px){
    .banner .img-1{
        left: 0px !important;
    }
    .banner #banner-content-1 {
        margin: 120px 0 0 0 !important;
        text-align: center;
    }
    .banner .img-1{
        position: static;
        margin-top: 40px;
    }
    .banner .img-6{
        display: none;
    }
    .banner .img-3{
        top: -20px !important;
    }
    .banner h1{
        font-size: 42px;
    }
    .banner .b-btn{
        margin: 0 auto;
    }
    .brand{
        padding: 10px 0 !important;
    }
}

/* BANNER---------------ENDS-----------------HERE------------------- */

/* BRAND---------------START-----------------HERE------------------- */

.brand{
    background-image: url(../images/brand-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 40px 0;
}

.brand img{
    width: 200px;
    aspect-ratio: 3/1;
    object-fit: contain;
}

.brand .swiper-wrapper{
    transition-timing-function: linear !important;
}

/* BRAND---------------ENDS-----------------HERE------------------- */

/* TEAM---------------START-----------------HERE------------------- */

.team h1{
    color: #F57156;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
}

.team .star{
    position: absolute;
    top: 50px;
    left: -50px;
    animation: move 5s linear infinite
}

@media only screen and (max-width: 992px){
    .team h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px){
    .team .star{
        left: 0;
    }
    .team h1{
        font-size: 20px;
    }
}

/* TEAM---------------ENDS-----------------HERE------------------- */

/* COUNTER---------------START-----------------HERE------------------- */

.counter{
    background-image: url(../images/counter-bg-png.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 60px 0;
}

.counter strong{
    font-size: 60px;
    font-weight: 500;
    color: #000;
}

.counter h1{
    font-size: 60px;
    font-weight: 500;
    color: #000;
}

@media only screen and (max-width: 992px){
    .counter img.pe-3 {
        width: 60px;
    }
    .counter h1 {
        font-size: 45px;
    }
    .counter strong {
        font-size: 45px;
    }
    .counter p {
        font-size: 16px !important;
    }
}
@media only screen and (max-width: 767px){
    .counter .d-flex{
        justify-content: center;
    }
    .counter .counter-content{
        margin: 20px 0;
    }
    .counter p {
        font-size: 16px !important;
        text-align: center;
    }
}

/* COUNTER---------------ENDS-----------------HERE------------------- */

/* SERVICES---------------START-----------------HERE------------------- */

.service h1{
    font-size: 50px;
}

.service h3{
    font-size: 25px;
}

.service .serv-content{
    background: linear-gradient(135deg, #ABF6F7B3 0%, #A4EB7EB3 100%);
    border-radius: 150px;
    padding:50px 80px 40px 80px;
    margin: 15px 0;
}

.service .s-btn{
    color:#000;
    font-weight: 500;
    text-decoration: none;
}

.service .star{
    position: absolute;
    right: 0px;
    top: 0;
    width: 170px;
    animation: move 5s linear infinite
}

@media only screen and (max-width: 1200px){
    .service .serv-content{
        padding: 40px;
    }
    .service h1 {
        font-size: 45px;
    }
}
@media only screen and (max-width: 992px){
    .service .serv-content img {
        width: 70px !important;
    }
    .service .serv-content{
        border-radius: 40px;
        padding: 30px 10px;
    }
    .service h3 {
        font-size: 20px;
    }
    .service .serv-title{
        width: 75% !important;
    }
}
@media only screen and (max-width: 767px){
    .service .serv-content img {
        width: 50px !important;
    }
    .service h1{
        font-size: 28px;
    }
    .service h3 {
        font-size: 18px;
    }
    .service .serv-title{
        width: 100% !important;
    }
    .service .star{
        right: 20px;
        top: -10rem;
    }
}

/* SERVICES---------------ENDS-----------------HERE------------------- */

/* CASE---------------STARt-----------------HERE------------------- */

.case{
    background: #0F110F;
    padding: 100px 0;
}

.case h1{
    font-size: 45px;
}

.case .buttn{
    margin: 5px 3px;
    padding: 2px 13px;
    color: #AEC9D2;
    cursor: pointer;
}

.case .buttn.active{
    background: #FFF;
    color: #000;
    border-radius: 100px;
}

.case .c-btn{
    background: #FFF;
    color: #000;
    text-decoration: none;
    width: 160px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #FFF;
}

.case .c-btn:hover{
    background: transparent;
    color: #FFF;
    transition: all 0.3s ease-in-out;
}

.case .img{
    background-image: url(../images/case-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
}

.case .img::before{
    content: '';
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.case .img-1{
    position: absolute;
    top: -70px;
    left: -70px;
    animation: move 5s linear infinite
}

.case .swiper-slide {
    width: 80%;
}

.case .swiper-slide:nth-child(2n) {
    width: 70%;
}

.case  .swiper-slide:nth-child(3n) {
    width: 60%;
}

@media only screen and (max-width: 992px){
    .case h1{
        font-size: 35px;
    }
    .case p{
        font-size: 18px !important;
    }
    .case h4{
        font-size: 22px;
    }
}
@media only screen and (max-width: 767px){
    .case .case-content{
        margin: 15px 0;
        text-align: center;
    }
    .case .c-btn{
        margin: 0 auto;
    }
    .case .controls{
        justify-content: center;
    }
    .case .swiper-slide {
        width: 100% !important;
    }   
    .case .img-1{
        left: 0;
    }
}

/* CASE---------------ENDS-----------------HERE------------------- */

/* TEXT---------------START-----------------HERE------------------- */

.text{
    background-image: url(../images/text-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 45rem;
    position: relative;
}

.text .bg-img{
    background-image: url(../images/text-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.text h1{
    font-size: 115px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.text .swiper-wrapper{
    transition-timing-function: linear !important;
}

.text .text-content{
    padding-top: 12em;
}

@media only screen and (max-width: 1200px){
    .text h1{           
        font-size: 90px;
    }
}
@media only screen and (max-width: 992px){
    .text h1{           
        font-size: 70px;
    }
}
@media only screen and (max-width: 767px){
    .text h1{           
        font-size: 25px;
    }
    .text{
        height: 80vh;
    }
    .text img.mx-3{
        width: 60px;
    }
    .text .text-content{
        padding-top: 10rem;
    }
    .text .bg-img{
        height: 70%;
        margin-top: 60px;
    }
}

/* TEXT---------------ENDS-----------------HERE------------------- */

/* TESTIMONIAL---------------START-----------------HERE------------------- */

.testimonial h1{
    font-size: 45px;
}

.testimonial p{
    font-size: 18px;
}

.testimonial .test-content{
    border: 1px solid #000000;
    border-radius: 100px;
    padding: 50px;
}

.testimonial .img{
    position: absolute;
}

.testimonial .img-1{
    top: 0;
    left: -70px;
    width: 80px;
    animation: move 5s linear infinite
}

.testimonial .img-2{
    bottom: -50px;
    right: 0px;
    width: 70px;
    animation: move 5s linear infinite
}

@media only screen and (max-width: 992px){
    .testimonial .test-content {
        padding: 40px 20px;
        border-radius: 40px;
    }
}
@media only screen and (max-width: 767px){
    .testimonial h1 {
        font-size: 35px;
    }
    .testimonial .img-1{
        left: 0;
        top: -50px;
    }
    .testimonial .img-2{
        right: 20px;
    }
}

/* TESTIMONIAL---------------ENDS-----------------HERE------------------- */

/* FOOTER---------------START-----------------HERE------------------- */

.footer {
    background-image: url(../images/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.footer #ft-top{
    border-bottom: 1px solid #ffffff56;
}

.footer .pre-footer{
    border-top: 1px solid #ffffff56;
}

.footer .icn{
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
    color: #FFF;
    border-radius: 100px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.footer .icn:hover{
    background: #FFF;
    color: #E26A23;   
}

.footer li a{
    color: #FFF;
    text-decoration: none;
    transition: all  0.3s ease-in-out;
}

.footer li a:hover{
    color: #E26A23;
}

@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
}
@media only screen and (max-width: 767px){
    .footer .footer-info{
        margin: 15px 0;
    }
}

/* FOOTER---------------ENDS-----------------HERE------------------- */

/* ABOUT---------------PAGE-------------------START-----------------HERE------------------- */

/* BANNER_2---------------START-----------------HERE------------------- */

.banner-2{
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
}

.banner-2 h1{
    font-size: 45px;
}
 
/* BANNER_2---------------ENDS-----------------HERE------------------- */

/* ABOUT---------------START-----------------HERE------------------- */

.abt p{
    font-size: 18px;
}

@media only screen and (max-width: 1200px){
    .abt h1 {
        font-size: 35px;
    }
    .abt h4{
        font-size: 20px;
    }
}
@media only screen and (max-width: 992px){
    .abt h1 {
        font-size: 25px;
    }
    .abt h4{
        font-size: 18px;
    }
    .abt p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .abt .abt-content{
        margin: 20px 0;
        text-align: center;
    }
    .abt h4{
        font-size: 16px;
    }
    .abt .bttn{
        margin: 0 auto;
    }
}

/* ABOUT---------------ENDS-----------------HERE------------------- */

/* WHAT---------------START-----------------HERE------------------- */

.what .progress-ring {
    position: relative;
    width: 140px;
    height: 140px;
}

.what .progress-ring svg {
    transform: rotate(-90deg);
}

.what .progress-ring circle {
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
}

.what .progress-ring .bg {
    stroke: #e0e0e0;
}

.what .progress-ring .progress {
    stroke: #7f5af0;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s ease-out;
}

.what .progress-ring .percentage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 500;
    color: #7f5af0;
}

@media only screen and (max-width: 992px){
    .what h4{
        font-size: 18px;
    }
    .what p {
        font-size: 12px;
    }
}
@media only screen and (max-width: 767px){
    .what .what-info{
        flex-direction: column;
        text-align: center;
    }
    .what .d-block.ps-3 {
        padding: 0 !important;
    }
    .why .why-content{
        margin: 20px 0;
    }
}

/* WHAT---------------ENDS-----------------HERE------------------- */

/* MEMBER---------------START-----------------HERE------------------- */

.member .member-content{
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.member .img-info{
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
}

.member .icns{
    position: absolute;
    bottom: 30px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.member .member-content:hover .icns{
    opacity: 1;
    visibility: visible;
}

.member .icn{
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    color: #3B3663;
    border-radius: 100px;
    text-decoration: none;
    margin: 0 5px;
}

.member .img-txt{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

.member .member-content:hover .img-txt{
    bottom: 85px;
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 992px){
    .member  .member-title{
        width: 75% !important;
    }
}
@media only screen and (max-width: 767px){
    .member  .member-title{
        width: 100% !important;
    }
}

/* MEMBER---------------ENDS-----------------HERE------------------- */

/* WHY---------------START-----------------HERE------------------- */

.why .img-2{
    position: absolute;
    left:-100px;
    z-index: -1;
}

.why p{
    color: #7a7a7a;
}

@media only screen and (max-width: 992px){
    .why h1{
        font-size: 30px;
    }
    .why p {
        font-size: 15px !important;
    }
}
@media only screen and (max-width: 767px){
    .why h1{
        font-size: 25px;
    }
    .why .img-1{
        height: auto;
    } 
    .why .img-2{
        width: 300px;
        left: -50px;
    }
    .why .why-content{
        margin: 20px 0;
        text-align: center;
    }
    .why .why-info p{
        text-align: left;
    }
}

/* WHY---------------ENDS-----------------HERE------------------- */

/* BEST---------------START-----------------HERE------------------- */

@media only screen and (max-width: 1200px){
    .best h1{
        font-size: 35px;
    }
}
@media only screen and (max-width: 992px){
    .best h1{
        font-size: 25px;
    }
    .best p{
        font-size: 14px;
    }
    .best .best-content{
        margin: 0 !important;
    }
    .best h5{
        font-size: 15px;
    }
}
@media only screen and (max-width: 767px){
    .best .best-content{
        margin: 20px 0 !important;
        text-align: center;
    }
    .best h5{
        font-size: 15px;
    }
}

/* BEST---------------ENDS-----------------HERE------------------- */

/* OUR---------------START-----------------HERE------------------- */

.our{
    background-image: url(../images/serv-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
}

.our .our-content{
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(201, 201, 201, 0.281);
    text-align: center;
    padding: 50px 15px;
    border-radius: 10px;
}

@media only screen and (max-width: 1200px){
    .our p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .our p {
        font-size: 14px;
    }
    .our h5{
        font-size: 18px;
    }
    .our .our-content {
        padding: 30px 15px;
    }
    .our h1{
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px){
    .our .our-content {
        position: static;
        margin: 15px 0 !important;
        top: 0 !important;
    }
    .our .our-title{
        text-align: center;
    }
}

/* OUR---------------ENDS-----------------HERE------------------- */

/* PORTFOLIO---------------START-----------------HERE------------------- */

.portfolio .button{
    margin: 8px 10px;
    border: 1px  solid #000000;
    padding: 4px 15px;
    color: #000000;
    font-weight: 400;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.portfolio span{
    position: relative;
    z-index: 2;
}

.portfolio .button::before{
    content: "";
    background: linear-gradient(135deg, #FFA9A9B3 0%, #F3AEE4B3 100%);
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 35px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.portfolio .button:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}

.portfolio .button.active::before{
    content: "";
    background: linear-gradient(135deg, #FFA9A9B3 0%, #F3AEE4B3 100%);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 35px;
    z-index: 1;
}

.portfolio .port-content{
    margin: 20px 0;
}

.portfolio .overflow-hidden{
    height: 260px;
}

.portfolio .img{
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.5);
}

.portfolio .img::before{
    content: "";
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.portfolio .img:hover::before{
    opacity: 1;
}

.portfolio .p-link{
    background: rgba(128, 128, 128, 0.308);
    border: 2px solid #FFF;
    color: #FFF;
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition:  0.3s ease-in-out;
}

.portfolio .img:hover .p-link{
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 1200px){
    .portfolio .overflow-hidden {
        height: 215px;
    }
}
@media only screen and (max-width: 767px){
    .portfolio .overflow-hidden {
        height: 185px;
    }
    .portfolio .button{
        margin: 7px;
    }
}

/* PORTFOLIO---------------ENDS-----------------HERE------------------- */

/* CONTACT---------------START-----------------HERE------------------- */

.contact p{
    color: #7a7a7a;
}

.contact #name{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
}

.contact #name:focus{
    outline: none;
}

@media only screen and (max-width: 992px){
    .contact p {
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .contact .contact-content {
        margin: 20px 0;
        text-align: center;
    }
    .contact .bttn{
        margin: 0 auto;
    }
}

/* CONTACT---------------ENDS-----------------HERE------------------- */

/* BLOG---------------STTART-----------------HERE------------------- */

.blog span{
    color:#7a7a7a;
}

.blog h3{
    font-size: 25px;
}

.blog p{
    color: #7a7a7a;
}

.blog .blog-content{
    margin: 20px 0;
}

.blog .b-btn{
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.blog .b-btn:hover{
    color: #E26A23;
}

@media only screen and (max-width: 1200px){
    .blog h3 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){
    .blog p{
        font-size: 14px;
    }
    .blog span{
        font-size: 14px;
    }
}

/* BLOG---------------ENDS-----------------HERE------------------- */

/* ABOUT---------------PAGE-------------------ENDS-----------------HERE------------------- */