@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    touch-action: none;
    -ms-touch-action: none;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a,
button {
    display: inline-block;
}

button:focus {
    outline: none;
    box-shadow: none;
}

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** Header css **************************/
.header-mian {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid #565656;
    transition: 0.5s;
}

.header-mian .logo {
    width: 130px;
    transition: 0.5s;
}

.header-mian .logo-2 {
    display: none;
}

.header-mian.scroll {
    background-color: #fff;
    border-bottom: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.header-mian.scroll .logo-2 {
    display: block;
}

.header-mian.scroll .logo-1 {
    display: none;
}

.header-mian.scroll .navbar .nav-item .nav-link {
    color: #000 !important;
}

.header-mian.scroll .navbar {
    padding: 5px 0;
}

.header-mian.scroll .logo {
    width: 130px;
}

.header-mian .navbar .nav-item {
    padding: 0 10px;
}

.header-mian .navbar .nav-item .nav-link {
    color: #fff !important;
    transition: 0.5s;
}

.header-mian .navbar .nav-item .nav-link.active {
    color: #ff000c !important;
    font-weight: 500;
}

.quote-btn {
    background: #ed0028;
    border: 1px solid #ed0028;
    padding: 8px 22px;
    border-radius: 3px;
    color: #fff;
    transition: 0.5s;
}

.quote-btn:hover {
    background: transparent;
    color: #fff;
}

/************************** Header css end **************************/

.main-banner {
    background-image: url('../images/main-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner::before {
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
}

.main-banner .inner-box-slider {
    position: relative;
    padding-top: 40px;
}

.main-banner .inner-box-slider .slick-prev {
    left: unset;
    right: 26%;
    bottom: -70px;
    position: absolute;
    top: unset;
    background-color: #ed0028 !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner .inner-box-slider .slick-prev:before,
.main-banner .inner-box-slider .slick-next:before {
    content: '\f061';
    font-family: "Font Awesome 6 Pro";
    font-size: 15px;
    color: #fff;
    position: absolute;
}

.main-banner .inner-box-slider .slick-prev:before,
.main-banner .inner-box-slider .slick-prev:before {
    content: '\f060';
    font-family: "Font Awesome 6 Pro";
    font-size: 15px;
    color: #fff;
    position: absolute;
}

.main-banner .inner-box-slider .slick-next {
    left: unset;
    right: 11%;
    bottom: -70px;
    position: absolute;
    top: unset;
    background-color: #ed0028 !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner .inner-box-slider .slick-dots {
    position: absolute;
    bottom: -52px;
    display: block;
    width: unset;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    right: 16%;
    left: unset;
}

.main-banner .inner-box-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
}

.main-banner .inner-box-slider .content-box h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}

.main-banner .inner-box-slider .content-box .para {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 15px 0;
}

.main-banner .inner-box-slider .content-box .quote-btn {
    padding: 10px 35px;
}

/* sec-experience */
.sec-experience {
    background-color: #ed0028;
    padding: 70px 0;
    position: relative;
}

.sec-experience .text-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sec-experience .text-box i {
    font-size: 55px;
    color: #fff;
    padding-right: 17px;
}

.sec-experience .text-box h2 {
    font-size: 34px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.sec-experience .start-btn {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 14px 40px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}

.sec-experience .start-btn:hover {
    background-color: #fff;
    color: #ed0028;
}

/* sec-about-us */
.sec-about-us {
    padding: 70px 0;
    position: relative;
}

.sec-about-us .content-box h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ed0028;
    position: relative;
}

.sec-about-us .content-box h2 {
    font-size: 30px;
    font-weight: 700;
    color: #161616;
    text-transform: uppercase;
    padding: 5px 0 10px;
    line-height: 35px;
}

.sec-about-us .content-box .para {
    line-height: 25px;
    padding-bottom: 10px;
    font-size: 15px;
}

/* sec-services */
.sec-services {
    padding: 70px 0;
    position: relative;
}

.sec-services::before {
    content: '';
    background-image: url('../images/services-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    height: 420px;
    opacity: 0.1;
}

.sec-services .sec-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.sec-services .sec-title h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ed0028;
    position: relative;
}

.sec-services .sec-title h2 {
    font-size: 40px;
    font-weight: 600;
    color: #161616;
    text-transform: uppercase;
    padding: 10px 0;
}

.sec-services .services-box {
    background-color: #fff;
    padding: 50px 15px;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    margin-bottom: 30px;
    min-height: 420px;
}

.sec-services .services-box .icon-box {
    background-color: #f6f6f6;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.sec-services .services-box .icon-box i {
    font-size: 34px;
    color: #ed0028;
}

.sec-services .services-box .cont-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #17161a;
    width: 80%;
    margin: 0 auto;
    padding-top: 15px;
    text-transform: capitalize;
}

.sec-services .services-box .cont-box .para {
    font-size: 15px;
    padding: 15px 0;
}

.sec-services .services-box .cont-box .read-more {
    font-size: 16px;
    font-weight: 500;
    color: #ed0028;
    text-transform: uppercase;
    transition: 0.5s;
}

.sec-services .services-box .cont-box .read-more:hover {
    color: #3a3a3a;
}

/* sec-our-process */
.sec-our-process {
    padding: 70px 0;
    position: relative;
}

.sec-our-process .sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.sec-our-process .sec-title h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ed0028;
    position: relative;
}

.sec-our-process .sec-title h2 {
    font-size: 40px;
    font-weight: 600;
    color: #161616;
    text-transform: uppercase;
    padding: 10px 0;
}


/* sec-choose */
.sec-choose {
    padding: 70px 0;
    position: relative;
}

.sec-choose .sec-title {
    margin-bottom: 30px;
}

.sec-choose .sec-title h2 {
    color: #000;
}

.sec-choose .content-box .choose-list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.sec-choose .content-box .choose-list .nav-item {
    padding: 13px 0;
}

.sec-choose .content-box .choose-list .nav-item .nav-link {
    background-color: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.sec-choose .content-box .choose-list .nav-item .nav-link.active {
    color: #ed0028;
}

.sec-choose .content-box .choose-list .nav-item .nav-link span {
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
}

.sec-choose .content-box .choose-list .nav-item .nav-link.active span {
    border: 1px solid #ed0028;
}

.sec-choose .cont-text .inner-box {
    position: relative;
}

.sec-choose .cont-text .inner-box::before {
    content: '';
    background-color: #ed0028;
    position: absolute;
    width: 100px;
    height: 110px;
    top: -10px;
    right: 50px;
    z-index: -1;
}


.sec-choose .cont-text .inner-box .img-box {
    text-align: center;
}

.sec-choose .cont-text .inner-box .white-box {
    position: absolute;
    bottom: -26px;
    left: 0;
    background: #fff;
    padding: 20px;
    width: 80%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sec-choose .cont-text .inner-box .white-box span {
    position: absolute;
    font-size: 76px;
    font-weight: 700;
    left: 18px;
    top: -15px;
    z-index: 1;
    color: #ed0028;
    opacity: 0.2;
}


.sec-Portfolio {
    padding: 30px 0 60px;
    position: relative;
}

.sec-Portfolio .sec-title {
    text-align: center;
    margin-bottom: 30px;
}

.sec-Portfolio .sec-title h4 {
    font-size: 20px;
    font-weight: 500;
    color: #dd0000;
    padding-bottom: 5px;
}

.sec-Portfolio .sec-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    letter-spacing: -1px;
}

.sec-Portfolio .sec-title h2 span {
    color: #dd0000;
    letter-spacing: 0px;
}

.sec-Portfolio .sec-title .para {
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0;
    width: 80%;
    margin: 0 auto;
}

.sec-Portfolio .tab-list {
    margin-bottom: 40px;
}

.sec-Portfolio .tab-list .nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-Portfolio .tab-list .nav .nav-item {
    padding: 0 10px;
}

.sec-Portfolio .tab-list .nav .nav-item .nav-link {
    background-color: #f0f0f0;
    border: 1px solid #f0f0f0;
    padding: 10px 20px;
    border-radius: 10px;
    color: #dd0000;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
    text-transform: capitalize;
}

.sec-Portfolio .tab-list .nav .nav-item .nav-link:hover {
    background-color: #dd0000;
    border: 1px solid #dd0000;
    color: #fff;
}

.sec-Portfolio .tab-list .nav .nav-item .nav-link.active {
    background-color: #dd0000;
    border: 1px solid #dd0000;
    color: #fff;
}

.sec-Portfolio .img-tab-box .img-box {
    border: 1px solid #d9d9d9;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin-bottom: 10px;
}

.sec-Portfolio .img-tab-box .img-box::before {
    content: '';
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.5s;
}

.sec-Portfolio .img-tab-box .img-box:hover::before {
    opacity: 0.4;
}

.sec-Portfolio .img-tab-box .img-box i {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    font-size: 24px;
    font-weight: 500;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.5s;
}

.sec-Portfolio .img-tab-box .img-box p {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    font-size: 20px;
    font-weight: 500;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.5s;
}

.sec-Portfolio .img-tab-box .img-box:hover p {
    opacity: 1;
}

.sec-Portfolio .img-tab-box .img-box:hover i {
    opacity: 1;
}

.sec-Portfolio .img-tab-box .logo-box {
    height: unset;
}

.sec-Portfolio .confo-img {
    min-height: 280px;
    object-fit: cover;
}

/* sec-contact */
.sec-contact {
    padding: 70px 0;
    background-color: #f7f7f7;
}
.sec-contact .content-box h3 {
    font-size: 20px;
    font-weight: 500;
    color: #dd0000;
    padding-bottom: 5px;
}

.sec-contact .content-box h2 {
    font-size: 46px;
    font-weight: 700;
    color: #000;
    line-height: 53px;
    text-transform: capitalize;
}

.sec-contact .contact-form .contact-field {
    padding: 10px 0;
}

.sec-contact .contact-form .contact-field .c-input {
    border-radius: 0;
    padding: 10px 5px 10px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #22252d;
}

.sec-contact .contact-form .contact-field .c-input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 12px;
    font-weight: 400;
    color: #22252d;
}

.sec-contact .contact-form .contact-field .c-input::-moz-placeholder {
    /* Firefox 19+ */
    color: pink;
}

.sec-contact .contact-form .contact-field .c-input:-ms-input-placeholder {
    /* IE 10+ */
    color: pink;
}

.sec-contact .contact-form .contact-field .c-input:-moz-placeholder {
    /* Firefox 18- */
    color: pink;
}

.sec-contact .contact-form .contact-field .c-input:focus {
    border: 1px solid #ccc;
}

.sec-contact .contact-form .submit-btn input {
    background: #dd0000;
    border: 1px solid #dd0000;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    transition: 0.5s all ease;
}
.sec-contact .contact-form .submit-btn input:hover{
    background: transparent;
    color: #dd0012;
}

/* footer css start */
.footer-bg {
    background-color: rgb(49 45 46);
    padding: 70px 0;
    position: relative;
}

.footer-bg::before {
    content: '';
    background-color: #dd0000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45%;
}

.footer-bg .sec-title {
    position: relative;
    margin-bottom: 35px;
}

.footer-bg .sec-title h2 {
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    padding-left: 0;
}

.footer-bg .content-box {
    position: relative;
}

.footer-bg .content-box h5 {
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    line-height: 22px;
}

.footer-bg .content-box h4 {
    font-size: 31px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
}

.footer-bg .content-box .para {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 3px 0;
}

.footer-bg .content-box .contact-text {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    transition: 0.5s;
    padding: 2px 0;
}

.footer-bg .content-box .social-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 15px;
}

.footer-bg .content-box .social-list li {
    padding-right: 30px;
}

.footer-bg .content-box .social-list li a {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
}

.footer-bg .footer-list h5 {
    color: #da0505;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-left: 10px;
    position: relative;
}

.footer-bg .footer-list h5::before {
    content: '';
    background-color: #fff;
    width: 3px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}

.footer-bg .footer-list ul li {
    padding: 3px 0;
}

.footer-bg .footer-list ul li a {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    transition: 0.5s;
}

.footer-bg .footer-list ul li a:hover {
    color: #dd0012;
}


/*********************************** testi ****************************************/

.testimonial-sec {
    padding: 30px 0 50px;
    position: relative;
}

.testimonial-sec .card {
    position: relative;
    padding: 30px 17px 22px 32px;
    border: none;
    box-shadow: 0 0 15px rgb(0 0 0 / 17%);
    background-color: #fff;
    border-radius: 18px;
    min-height: 340px;
}

.testimonial-sec .card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.testimonial-sec .card::after {
    content: '';
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    /* background-color: #fff; */
    /* background-color: #fff; */
}

.testimonial-sec .card .t-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.testimonial-sec .card .t-content .para {}

.testimonial-sec .card .t-content li:nth-child(1) img {
    border-radius: 50%;
    width: 75px;
    height: 75px;
    object-fit: cover;
    border: 2px solid #4676d7;
    padding: 2px;
    margin-right: 20px;
}

.testimonial-sec .card .t-content li:nth-child(2) .rate {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.testimonial-sec .card .t-content li:nth-child(2) h6 {
    font-family: "Outfit", sans-serif;
    color: #FB515E;
    text-transform: capitalize;
    font-size: 14px;
}

.testimonial-sec .card .t-content li:nth-child(2) p {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    /* text-transform: uppercase; */
    font-size: 14px;
    color: #000;
    letter-spacing: 0px;
}

.testimonial-sec .card .t-content li:nth-child(2) .rate a {
    color: #4676d7;
    padding: 0 4px 0 0px;
}

.testimonial-sec .testimonial-slide .card .para {
    position: relative;
    z-index: 10;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #383838;
    padding-top: 31px;
    font-style: italic;
}

.testimonial-sec .testimonial-slide .slick-slide {
    padding: 12px 14px;
    transition: 0.5s;
}

.testimonial-sec .testimonial-slide .slick-slide.slick-center {
    background-color: transparent;
}

.testimonial-sec .testimonial-slide .slick-slide.slick-center .card {
    background-color: #0e49a4;
}

.testimonial-sec .testimonial-slide .slick-slide.slick-center p {
    color: #fff
}

.testimonial-sec .testimonial-slide .slick-slide.slick-center ul li p {
    color: #fff;
}

.testimonial-sec .testimonial-slide .slick-slide {
    padding: 0 15px;
    margin: 20px 0;
}

.testimonial-sec .testimonial-slide .slick-dots {
    bottom: -50px;
}

.testimonial-sec .testimonial-slide .slick-dots li {
    width: unset;
    height: unset;
    margin: 0 3px;
}

.testimonial-sec .testimonial-slide .slick-dots button {
    height: 10px;
    width: 10px;
    background-color: #000000;
    font-size: 1px;
    padding: 1.2px;
    border-radius: 50%;
}

.testimonial-sec .testimonial-slide .slick-dots .slick-active button {
    background-color: #dd0000;
}

.testimonial-sec .testimonial-slide .slick-prev::before {
    content: "\f104";
    font-family: "Font Awesome 6 Pro";
    color: #ffffff;
    font-size: 32px;
    width: 56px;
    height: 50px;
    /* background-color: #222021; */
    position: absolute;
    left: -24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-sec .testimonial-slide .slick-next::before {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    color: #000;
    font-size: 24px;
    width: 56px;
    height: 50px;
    /* background: linear-gradient(180deg, rgba(251,0,0,1) 0%, rgba(147,11,5,1) 100%) !important; */
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -30px;
    display: none;
}

.testimonial-sec .sec-title {
    text-align: center;
    position: relative;
}

.testimonial-sec .sec-title h3 {
    font-size: 20px;
    font-weight: 500;
    color: #dd0000;
    padding-bottom: 5px;
}

.testimonial-sec .sec-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.testimonial-sec .sec-title .para {
    padding: 5px 0 15px;
    font-size: 15px;
    color: #000;
}

/* modal css start */
.modal-threevertex{

}
.modal-threevertex .modal-header {
    border: none;
    display: block;
    text-align: center;
    color: #dd0000;
    font-size: 65px;
}

.modal-threevertex h3.modal_head {
    margin: 15px 0;
    font-size: 34px;
    text-align: center;
    color: #dd0000;
}
.modal-threevertex .modal-header .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    background: #dd0000;
    color: #fff;
    opacity: 1;
    border-radius: 50%;
    width: 25px;
    height: 25px;
}
.modal-threevertex .modal-header .btn-close i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.modal-body {
    padding: 0rem 1rem 1rem 1rem;
}
/* modal css end */


/************************** media-query **************************/

@media only screen and (min-width: 1921px) and (max-width: 7368px) {}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {}

@media only screen and (min-width: 1366px) and (max-width: 1444px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .sec-choose .cont-text .inner-box::before {
        right: 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .header-mian .logo {
        width: 110px;
    }
    .header-mian.scroll .logo {
        width: 110px;
    }
    .main-banner {
        height: 600px;
    }
    .main-banner .inner-box-slider {
        padding: 40px 0 20px;
    }

    .main-banner .inner-box-slider .content-box {
        padding-bottom: 20px;
    }

    .main-banner .inner-box-slider .content-box h1 {
        font-size: 42px;
    }

    .main-banner .inner-box-slider .content-box .para {
        font-size: 16px;
        padding: 12px 0;
    }

    .main-banner .inner-box-slider .content-box .quote-btn {
        padding: 6px 23px;
        font-size: 14px;
    }

    .main-banner .inner-box-slider .slick-dots {
        bottom: 0px;
        right: 50%;
        transform: translateX(50%);
    }

    .main-banner .inner-box-slider .slick-prev {
        right: 59%;
        bottom: -12px;
        width: 25px;
        height: 25px;
    }

    .main-banner .inner-box-slider .slick-next {
        right: 37%;
        bottom: -13px;
        width: 25px;
        height: 25px;
    }

    .sec-about-us {
        padding: 30px 0;
        position: relative;
    }

    .sec-about-us .content-box h2 {
        font-size: 25px;
        padding: 6px 0;
        line-height: 28px;
    }

    .sec-about-us .content-box .para {
        line-height: 20px;
        font-size: 14px;
    }

    .sec-services {
        padding: 30px 0;
    }

    .sec-services .sec-title {
        margin-bottom: 15px;
    }

    .sec-services .sec-title h2 {
        font-size: 30px;
        padding: 5px 0;
        letter-spacing: -1px;
    }

    .sec-services .sec-title h3 {
        font-size: 17px;
    }

    .sec-services .services-box {
        padding: 30px 15px;
        margin-bottom: 20px;
        min-height: 370px;
    }

    .sec-services .services-box .cont-box h4 {
        font-size: 20px;
        width: 100%;
    }

    .sec-services .services-box .cont-box .para {
        font-size: 14px;
        padding: 10px 0;
    }

    .sec-Portfolio {
        padding: 30px 0;
    }

    .sec-Portfolio .sec-title h4 {
        font-size: 18px;
    }

    .sec-Portfolio .sec-title h2 {
        font-size: 27px;
        letter-spacing: 0;
    }

    .sec-Portfolio .sec-title .para {
        font-size: 14px;
        padding: 5px 10px;
        width: 100%;
    }

    .sec-Portfolio .tab-list .nav .nav-item .nav-link {
        margin: 0 0 10px;
    }

    .sec-contact {
        padding: 30px 0;
    }
    .sec-contact .content-box h2 {
        font-size: 50px;
        line-height: 48px;
    }
    .sec-choose .cont-text .inner-box .white-box {
        bottom: -50px;
        padding: 12px;
        width: 100%;
    }
    .sec-choose .cont-text .inner-box .white-box .para {
        font-size: 14px;
    }
    .sec-choose .cont-text .inner-box::before {
        width: 90px;
        height: 90px;
        top: -10px;
        right: -10px;
    }
    .testimonial-sec {
        padding: 30px 0 40px;
    }
    .testimonial-sec .sec-title h3 {
        font-size: 18px;
    }
    .testimonial-sec .sec-title h2 {
        font-size: 30px;
        letter-spacing: 0;
    }
    .footer-bg {
        padding: 40px 0;
    }
    .footer-bg .sec-title {
        margin-bottom: 25px;
    }
    .footer-bg .sec-title h2 {
        font-size: 54px;
    }
    .footer-bg::before {
        width: 40%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .header-mian {
        background-color: #fff;
    }

    .header-mian .logo {
        width: 90px;
        transition: 0.5s;
    }

    .header-mian.scroll .logo {
        width: 90px;
        transition: 0.5s;
    }

    .header-mian .navbar .nav-item .nav-link {
        color: #000 !important;
    }

    .header-mian .logo-1 {
        display: none;
    }

    .header-mian .logo-2 {
        display: block;
    }

    .main-banner {
        margin-top: 80px;
        height: unset;
    }

    .main-banner .inner-box-slider {
        padding: 40px 0 20px;
    }

    .main-banner .inner-box-slider .content-box {
        padding-bottom: 20px;
    }

    .main-banner .inner-box-slider .content-box h1 {
        font-size: 28px;
    }

    .main-banner .inner-box-slider .content-box .para {
        font-size: 16px;
        padding: 12px 0;
    }

    .main-banner .inner-box-slider .content-box .quote-btn {
        padding: 6px 23px;
        font-size: 14px;
    }

    .main-banner .inner-box-slider .slick-dots {
        bottom: 0px;
        right: 50%;
        transform: translateX(50%);
    }

    .main-banner .inner-box-slider .slick-prev {
        right: 59%;
        bottom: -12px;
        width: 25px;
        height: 25px;
    }

    .main-banner .inner-box-slider .slick-next {
        right: 37%;
        bottom: -13px;
        width: 25px;
        height: 25px;
    }

    .sec-about-us {
        padding: 30px 0;
        position: relative;
    }

    .sec-about-us .content-box h2 {
        font-size: 25px;
        padding: 6px 0;
        line-height: 28px;
    }

    .sec-about-us .content-box .para {
        line-height: 20px;
        font-size: 14px;
    }

    .sec-services {
        padding: 30px 0;
    }

    .sec-services .sec-title {
        margin-bottom: 15px;
    }

    .sec-services .sec-title h2 {
        font-size: 27px;
        padding: 5px 0;
        letter-spacing: -1px;
    }

    .sec-services .sec-title h3 {
        font-size: 15px;
    }

    .sec-services .services-box {
        padding: 30px 15px;
        margin-bottom: 20px;
        min-height: 350px;
    }

    .sec-services .services-box .cont-box h4 {
        font-size: 20px;
        width: 100%;
    }

    .sec-services .services-box .cont-box .para {
        font-size: 14px;
        padding: 10px 0;
    }

    .sec-Portfolio {
        padding: 30px 0;
    }

    .sec-Portfolio .sec-title h4 {
        font-size: 18px;
    }

    .sec-Portfolio .sec-title h2 {
        font-size: 27px;
        letter-spacing: 0;
    }

    .sec-Portfolio .sec-title .para {
        font-size: 14px;
        padding: 5px 10px;
        width: 100%;
    }

    .sec-Portfolio .tab-list .nav .nav-item .nav-link {
        margin: 0 0 10px;
    }

    .sec-contact {
        padding: 30px 0;
    }
    .sec-contact .content-box h2 {
        font-size: 40px;
        line-height: 43px;
    }
    .sec-choose .cont-text .inner-box .white-box {
        bottom: -50px;
        padding: 12px;
        width: 100%;
    }
    .sec-choose .cont-text .inner-box .white-box .para {
        font-size: 12px;
    }
    .sec-choose .cont-text .inner-box::before {
        width: 90px;
        height: 90px;
        top: -10px;
        right: -10px;
    }
    .testimonial-sec {
        padding: 0px 0 40px;
    }
    .testimonial-sec .sec-title h3 {
        font-size: 18px;
    }
    .testimonial-sec .sec-title h2 {
        font-size: 27px;
        letter-spacing: 0;
    }
    .footer-bg {
        padding: 30px 0;
    }
    .footer-bg .sec-title {
        margin-bottom: 25px;
    }
    .footer-bg .sec-title h2 {
        font-size: 46px;
    }
    .footer-bg::before {
        width: 40%;
    }

}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }

    .header-mian {
        background-color: #fff;
    }

    .header-mian .logo {
        width: 90px;
        transition: 0.5s;
    }

    .header-mian.scroll .logo {
        width: 90px;
        transition: 0.5s;
    }

    .header-mian .navbar .nav-item .nav-link {
        color: #000 !important;
    }

    .header-mian .logo-1 {
        display: none;
    }

    .header-mian .logo-2 {
        display: block;
    }

    .main-banner {
        margin-top: 80px;
        height: unset;
    }

    .main-banner .inner-box-slider {
        padding: 40px 0 20px;
    }

    .main-banner .inner-box-slider .content-box {
        padding-bottom: 20px;
    }

    .main-banner .inner-box-slider .content-box h1 {
        font-size: 28px;
    }

    .main-banner .inner-box-slider .content-box .para {
        font-size: 16px;
        padding: 12px 0;
    }

    .main-banner .inner-box-slider .content-box .quote-btn {
        padding: 6px 23px;
        font-size: 14px;
    }

    .main-banner .inner-box-slider .slick-dots {
        bottom: 0px;
        right: 50%;
        transform: translateX(50%);
    }

    .main-banner .inner-box-slider .slick-prev {
        right: 66%;
        bottom: -12px;
        width: 25px;
        height: 25px;
    }

    .main-banner .inner-box-slider .slick-next {
        right: 24%;
        bottom: -13px;
        width: 25px;
        height: 25px;
    }

    .sec-about-us {
        padding: 30px 0;
        position: relative;
    }

    .sec-about-us .content-box h2 {
        font-size: 27px;
        padding: 6px 0;
        line-height: 30px;
    }

    .sec-about-us .content-box .para {
        line-height: 20px;
        font-size: 14px;
    }

    .sec-services {
        padding: 30px 0;
    }

    .sec-services .sec-title {
        margin-bottom: 15px;
    }

    .sec-services .sec-title h2 {
        font-size: 27px;
        padding: 5px 0;
        letter-spacing: -1px;
    }

    .sec-services .sec-title h3 {
        font-size: 15px;
    }

    .sec-services .services-box {
        padding: 30px 15px;
        margin-bottom: 20px;
        min-height: unset;
    }

    .sec-services .services-box .cont-box h4 {
        font-size: 20px;
        width: 100%;
    }

    .sec-services .services-box .cont-box .para {
        font-size: 14px;
        padding: 10px 0;
    }

    .sec-Portfolio {
        padding: 30px 0;
    }

    .sec-Portfolio .sec-title h4 {
        font-size: 16px;
    }

    .sec-Portfolio .sec-title h2 {
        font-size: 21px;
        letter-spacing: 0;
    }

    .sec-Portfolio .sec-title .para {
        font-size: 14px;
        padding: 5px 10px;
        width: 100%;
    }

    .sec-Portfolio .tab-list .nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .sec-Portfolio .tab-list .nav .nav-item {
        width: 50%;
    }

    .sec-Portfolio .tab-list .nav .nav-item .nav-link {
        padding: 0;
        border-radius: 7px;
        font-size: 13px;
        width: 100%;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 5px 0;
    }

    .sec-Portfolio .img-tab-box .img-box img {
        width: 100%;
    }

    .sec-contact {
        padding: 30px 0;
    }

    .sec-contact .content-box {
        margin-bottom: 10px;
    }

    .sec-contact .content-box h2 {
        font-size: 30px;
        line-height: 33px;
    }

    .sec-choose {
        padding: 30px 0;
    }

    .sec-choose .sec-title {
        margin-bottom: 0;
    }

    .sec-choose .content-box .choose-list .nav-item {
        padding: 7px 0;
    }

    .sec-choose .content-box .choose-list .nav-item .nav-link {
        font-size: 15px;
        justify-content: flex-start;
        text-align: left;
        line-height: 20px;
    }

    .sec-choose .cont-text {
        padding-top: 15px;
    }

    .sec-choose .cont-text .inner-box .white-box {
        position: relative;
        bottom: 0;
        left: 0;
        padding: 15px;
        width: 100%;
    }

    .sec-choose .cont-text .inner-box .white-box .para {
        font-size: 14px;
    }

    .sec-choose .cont-text .inner-box::before {
        display: none;
    }

    .testimonial-sec {
        padding: 30px 0;
    }

    .testimonial-sec .sec-title h3 {
        font-size: 18px;
    }

    .testimonial-sec .sec-title h2 {
        font-size: 25px;
    }

    .testimonial-sec .sec-title .para {
        padding: 10px 0;
        font-size: 14px;
    }

    .testimonial-sec .card {
        padding: 15px;
        border-radius: 8px;
        min-height: unset;
    }

    .testimonial-sec .testimonial-slide .card .para {
        font-size: 13px;
        padding-top: 15px;
    }

    .testimonial-sec .card .t-content li img {
        width: 65px !important;
        height: 65px !important;
        margin-right: 12px !important;
    }

    .testimonial-sec .card .t-content li .coma {
        width: 40px !important;
        height: 40px !important;
    }

    .footer-bg {
        padding: 30px 0;
    }

    .footer-bg .sec-title {
        margin-bottom: 15px;
    }

    .footer-bg .sec-title h2 {
        font-size: 27px;
    }

    .footer-bg::before {
        top: 0;
        left: 0;
        bottom: unset;
        width: unset;
        right: 0;
        height: 26%;
    }

    .footer-bg .content-box h4 {
        font-size: 26px;
    }

    .footer-list {
        margin-top: 30px;
    }

}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    body {
        overflow-x: hidden;
    }

    main {
        overflow-x: hidden;
    }
        .sec-frame .product-box iframe {
    width: 100%;
    height: calc(100vh - 23.5px);
}
   .sec-frame {
       position:relative;
       top:23.5px;
   }

    .header-mian {
        background-color: #fff;
    }

    .header-mian .logo {
        width: 90px;
        transition: 0.5s;
    }

    .header-mian.scroll .logo {
        width: 90px;
        transition: 0.5s;
    }

    .header-mian .navbar .nav-item .nav-link {
        color: #000 !important;
    }

    .header-mian .logo-1 {
        display: none;
    }

    .header-mian .logo-2 {
        display: block;
    }

    .main-banner {
        margin-top: 80px;
        height: unset;
    }

    .main-banner .inner-box-slider {
        padding: 40px 0 20px;
    }

    .main-banner .inner-box-slider .content-box {
        padding-bottom: 20px;
    }

    .main-banner .inner-box-slider .content-box h1 {
        font-size: 28px;
    }

    .main-banner .inner-box-slider .content-box .para {
        font-size: 16px;
        padding: 12px 0;
    }

    .main-banner .inner-box-slider .content-box .quote-btn {
        padding: 6px 23px;
        font-size: 14px;
    }

    .main-banner .inner-box-slider .slick-dots {
        bottom: 0px;
        right: 50%;
        transform: translateX(50%);
    }

    .main-banner .inner-box-slider .slick-prev {
        right: 66%;
        bottom: -12px;
        width: 25px;
        height: 25px;
    }

    .main-banner .inner-box-slider .slick-next {
        right: 24%;
        bottom: -13px;
        width: 25px;
        height: 25px;
    }

    .sec-about-us {
        padding: 30px 0;
        position: relative;
    }

    .sec-about-us .content-box h2 {
        font-size: 27px;
        padding: 6px 0;
        line-height: 30px;
    }

    .sec-about-us .content-box .para {
        line-height: 20px;
        font-size: 14px;
    }

    .sec-services {
        padding: 30px 0;
    }

    .sec-services .sec-title {
        margin-bottom: 15px;
    }

    .sec-services .sec-title h2 {
        font-size: 27px;
        padding: 5px 0;
        letter-spacing: -1px;
    }

    .sec-services .sec-title h3 {
        font-size: 15px;
    }

    .sec-services .services-box {
        padding: 30px 15px;
        margin-bottom: 20px;
        min-height: unset;
    }

    .sec-services .services-box .cont-box h4 {
        font-size: 20px;
        width: 100%;
    }

    .sec-services .services-box .cont-box .para {
        font-size: 14px;
        padding: 10px 0;
    }

    .sec-Portfolio {
        padding: 0 0 30px;
    }

    .sec-Portfolio .sec-title h4 {
        font-size: 16px;
    }

    .sec-Portfolio .sec-title h2 {
        font-size: 21px;
        letter-spacing: 0;
    }

    .sec-Portfolio .sec-title .para {
        font-size: 14px;
        padding: 5px 10px;
        width: 100%;
    }

    .sec-Portfolio .tab-list .nav {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .sec-Portfolio .tab-list .nav .nav-item {
        width: 50%;
    }

    .sec-Portfolio .tab-list .nav .nav-item .nav-link {
        padding: 0;
        border-radius: 7px;
        font-size: 13px;
        width: 100%;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 5px 0;
    }

    .sec-Portfolio .img-tab-box .img-box img {
        width: 100%;
    }

    .sec-contact {
        padding: 30px 0;
    }

    .sec-contact .content-box {
        margin-bottom: 10px;
    }

    .sec-contact .content-box h2 {
        font-size: 30px;
        line-height: 33px;
    }

    .sec-choose {
        padding: 30px 0;
    }

    .sec-choose .sec-title {
        margin-bottom: 0;
    }

    .sec-choose .content-box .choose-list .nav-item {
        padding: 7px 0;
    }

    .sec-choose .content-box .choose-list .nav-item .nav-link {
        font-size: 15px;
        justify-content: flex-start;
        text-align: left;
        line-height: 20px;
    }

    .sec-choose .cont-text {
        padding-top: 15px;
    }

    .sec-choose .cont-text .inner-box .white-box {
        position: relative;
        bottom: 0;
        left: 0;
        padding: 15px;
        width: 100%;
    }

    .sec-choose .cont-text .inner-box .white-box .para {
        font-size: 14px;
    }

    .sec-choose .cont-text .inner-box::before {
        display: none;
    }

    .testimonial-sec {
        padding: 30px 0;
    }

    .testimonial-sec .sec-title h3 {
        font-size: 18px;
    }

    .testimonial-sec .sec-title h2 {
        font-size: 25px;
    }

    .testimonial-sec .sec-title .para {
        padding: 10px 0;
        font-size: 14px;
    }

    .testimonial-sec .card {
        padding: 15px;
        border-radius: 8px;
        min-height: unset;
    }

    .testimonial-sec .testimonial-slide .card .para {
        font-size: 13px;
        padding-top: 15px;
    }

    .testimonial-sec .card .t-content li img {
        width: 65px !important;
        height: 65px !important;
        margin-right: 12px !important;
    }

    .testimonial-sec .card .t-content li .coma {
        width: 40px !important;
        height: 40px !important;
    }

    .footer-bg {
        padding: 30px 0;
    }

    .footer-bg .sec-title {
        margin-bottom: 15px;
    }

    .footer-bg .sec-title h2 {
        font-size: 27px;
    }

    .footer-bg::before {
        top: 0;
        left: 0;
        bottom: unset;
        width: unset;
        right: 0;
        height: 26%;
    }

    .footer-bg .content-box h4 {
        font-size: 26px;
    }

    .footer-list {
        margin-top: 30px;
    }
    br {
        display: none;
    }


}