*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

main.site-main {
    overflow: hidden;
}

.container {
	width: auto !important;
    max-width:1320px !important;
    margin: 0 auto;
	padding:0px 20px;
}

.site_header .container {
    width: 100%;
    max-width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-6 {
    width: 50%;
}

header.site_header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}

.header_left {
    width: 85%;
    background: #181E29;
    clip-path: polygon(0 0, 100% 0%, 88% 100%, 0% 100%);
    padding-left: 100px;
    padding-right: 90px;
    position: relative;
    z-index: 1;
}

.header_left_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 15px;
    position: relative;
}

.header_left_top:before {
    border-bottom: 1px solid #EBEBEB33;
    content: '';
    position: absolute;
    bottom: 0;
    width: 97%;
    height: 1px;
}

.header-top-left {
    width: 50%;
}

.header-top-left ul {
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
    column-gap: 15px;
}

.header-top-left li:first-child {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.header_top_right ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.header_top_right ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 300ms all;
}

.header_top_right ul li a:hover {
    color: #fdcb2b;
}

.header_bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 110px;
    padding-top: 15px;
    padding-bottom: 25px;
}

.header_bottom_right nav.site_navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.header_bottom_right nav.site_navigation ul a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    padding: 0 30px;
    position: relative;
    transition: 300ms all;
}

.header_bottom_right nav.site_navigation ul a:hover {
    color: #fdcb2b;
}

.header_bottom_right nav.site_navigation ul li:not(:last-child) a:before {
    content: '';
    width: 4px;
    height: 80%;
    position: absolute;
    background: #fdcb2b;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-right {
    width: 15%;
}

.header_phone {
    width: calc(100% + 120px);
    right: 120px;
    position: relative;
    clip-path: polygon(5% 0, 100% 0%, 100% 100%, 0% 100%);
    background: #fdcb2b;
    padding: 28px 20px 28px 130px;
}

.header_phone a {
    font-size: 16px;
    color: #181E29;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-left: 35px;
}

.header_phone a:before {
    content: '';
    background-image: url(../images/phone-icon.svg);
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.home-banner {
    position: relative;
    height: 100vh;
	margin-top:-92px;
}

.home-banner .banner-img img {
    width: 100%;
    object-fit: cover;
    height: 100vh;
    object-position: bottom;
}

.colum-img img {
    clip-path: polygon(28% 0%, 100% 0, 100% 100%, 0 100%, 0% 21%) !important;
}


.banner_bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 86%;
    background: #181E29;
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
    padding: 40px 0 40px 240px;
    min-height: 183px;
    display: flex;
    align-items: center;
}

.banner_nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_nav {
    width: 100%;
}

.banner_nav ul li a {
    font-size: 24px;
    color: #fdcb2b;
    text-decoration: none;
    position: relative;
    padding: 0 100px;
    display: flex;
    align-items: center;
}

.banner_nav ul li:not(:last-child) a:before {
    content: '';
    width: 4px;
    height: 80%;
    position: absolute;
    background: #fdcb2b;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.banner_nav ul li a:after {
    content: '';
    background-image: url(../images/banner-nav-arrow.svg);
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-left: 15px;
    transition: 300ms all;
    position: relative;
    left: 0;
}

.banner_nav ul li a:hover:after {
    left: 10px;
}

.about-section {
    padding: 100px 0 60px;
    position: relative;
}

.about-section:before {
    content: '';
    clip-path: polygon(0 100%, 100% 0, 0 0);
    background: #fdcb2b;
    width: 270px;
    height: 210px;
    position: absolute;
    top: 0;
    left: 0;
}

.about-section .row {
    align-items: center;
}

.about-section .col-6 .colum-img img {
    width: 100%;
}

.about-section .col-6 .colum-content {
    padding-left: 100px;
}

.about-section .col-6 .colum-content h1,
.about-section .col-6 .colum-content h2 {
    font-size: 48px;
    color: #181E29;
    line-height: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 20px;
}

strong.line-text {
    font-size: 20px;
    color: #fdcb2b;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
}

strong.line-text:before {
    content: '';
    width: 50px;
    height: 4px;
    background: #fdcb2b;
    display: inline-block;
    margin-right: 15px;
}

ul.arrow-list {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 30px;
}

ul.arrow-list li {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fdcb2b;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

ul.arrow-list li:before {
    content: '';
    background-image: url(../images/tick-arrow.png);
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 10px;
}

.colum-content p {
    font-size: 18px;
    color: #181E29;
    line-height: 30px;
    margin-bottom: 25px;
    font-weight: 300;
}

.colum-content p strong {
    font-weight: 600;
}

a.primary-btn {
    background: #fdcb2b;
    padding: 6px 20px 6px 24px;
    font-size: 16px;
    line-height: 40px;
    display: inline-flex;
    color: #181E29;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
    transition: 300ms all;
}

a.primary-btn:hover {
    background-color: #181E29;
    color: #fff;
}

a.primary-btn:hover:after {
    filter: brightness(0) invert(1);
}

a.primary-btn:after {
    content: '';
    background-image: url(../images/primary-arrow.svg);
    width: 33px;
    height: 33px;
    margin-left: 10px;
    transition: 300ms all;
}

.category-heading {
    text-align: center;
    padding-bottom: 35px;
}

.category-heading strong.line-text {
    justify-content: center;
}

.category-heading h2 {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 600;
    color: #181E29;
}

.categories-section .row {
    column-gap: 70px;
}

.category-box a {
    display: block;
    position: relative;
    height: 100%;
}

.category-box a span {
    position: absolute;
    bottom: 0px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    width: 100%;
    right: 0;
    text-align: right;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    background: #181E29;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
}

.category-boxes {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 16px;
}

.category-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-section .col-6 {
    width: calc(50% - 35px);
}

.category-boxes .category-box {
    width: calc(50% - 8px);
}

.category-box a span:after {
    content: '';
    background-image: url(../images/white-arrow.svg);
    width: 30px;
    height: 30px;
    margin-left: 15px;
    transition: 300ms all;
    position: relative;
    left: 0;
}

.category-box a:hover span:after {
    left: 10px;
}

.categories-btn {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 0px;
}

section.top-occation-section {
    position: relative;
}

.occation-shape {
    position: relative;
    padding-top: 400px;
    padding-bottom: 300px;
    background: #EBEBEB;
    clip-path: polygon(-60% 0%, 100% 20%, 100% 100%, 0 90%);
}

.top-occation-img {
    position: absolute;
    top: -30px;
    z-index: 2;
}

.top-occation-img img {
    width: 630px;
}

.top-occation-head {
    text-align: center;
    padding-bottom: 150px;
}

.top-occation-head h2 {
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 600;
    color: #181E29;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 35px;
}

.occation-slider-box {
    background: #FFFFFF;
}

.occation-slider-box h3 {
    padding: 15px 10px;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #181E29;
	margin-bottom:0px;
}

.content-box-occation {
    padding: 25px 60px;
}

.content-box-occation h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    padding-bottom: 12px;
    color: #181E29;
	margin-bottom:0px !important;
}

.content-box-occation ul.arrow-list li {
    font-size: 16px;
    text-transform: none;
    color: #181E29;
    font-weight: normal;
}

ul.product-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.product-list li {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #181E29;
}

p.yellow-pera {
    font-size: 16px;
    color: #fdcb2b;
    font-weight: 600;
    margin-top: 28px;
}

.occations-btn {
    padding: 10px;
    display: flex;
    column-gap: 20px;
}

.occations-btn a {
    display: inline-flex;
    height: 45px;
    align-items: center;
    padding: 0 6px;
    width: calc(50% - 10px);
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.occations-btn a:after {
    content: '';
    background-image: url(../images/blue-arrow.svg);
    width: 21px;
    height: 14px;
    margin-left: 5px;
}

.occations-btn a.blue-btn {
    background: #181E29;
    color: #fff;
    transition: 300ms all;
}

.occations-btn a.blue-btn:hover {
    background-color: #fdcb2b;
}

.occations-btn a.blue-btn:after {
    filter: brightness(0) invert(1);
}

.occations-btn a.border-btn {
    border: 2px solid #fdcb2b;
    color: #181E29;
    transition: 300ms all;
}

.occations-btn a.border-btn:hover {
    background-color: #fdcb2b;
}

.all-occation-btn {
    text-align: center;
    padding-top: 100px;
}

.occation-slider .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
}

.occation-slider .owl-nav button {
    width: 52px;
    height: 49px;
    background: #181E29 !important;
    position: relative;
    transition: 300ms all;
}

.occation-slider .owl-nav button:hover {
    background-color: #fdcb2b !important;
}

.occation-slider .owl-nav button:before {
    content: '';
    background-image: url(../images/slider-arrrow.svg);
    width: 32px;
    height: 31px;
    position: absolute;
    filter: brightness(0) invert(1);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.occation-slider .owl-nav button.owl-prev::before {
    transform: translate(-50%, -50%) scaleX(-1);
}

.occation-slider .owl-nav button span {
    font-size: 0;
}

section.about-section.about-section-two {
    margin-top: -268px;
    background: #1B1B1B;
    clip-path: polygon(0% 0%, 100% 21%, 100% 100%, 0 100%);
	padding-top: 213px;
    padding-bottom: 114px;
}

.about-section-two .col-6 .colum-content h2 {
    color: #fff;
}

.about-section-two .col-6 .colum-content p {
    color: #fff;
}

.occations-two {
    background: #EBEBEB;
    padding: 100px 0 230px;
}

.testimonials-section {
    background-image: url(../images/testimonials-bg.jpg);
    padding: 260px 0 150px;
    clip-path: polygon(0 17%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -160px;
    position: relative;
}

.testimonials-section:before {
    content: '';
    content: '';
    clip-path: polygon(0 100%, 100% 0, 0 0);
    background: #fdcb2b;
    width: 270px;
    height: 210px;
    position: absolute;
    top: 0;
    right: 0;
    transform: scaleX(-1);
}

.testimonials-box {
    text-align: center;
  }

.testimonals-box {
    width: 700px;
    margin: 0 auto;
    background: #181E29;
    padding: 20px 0px;
}


.testimonals-box strong.line-text {
    justify-content: center;
    margin-bottom: 15px;
}

.testimonals-box h2 {
    font-size: 45px;
    color: #fff;
    width: 395px;
    line-height: 50px;
    margin: 0 auto 20px;
	text-align:center;
}

.testimonials-box p {
    color: #FFFFFF;
    font-size: 18px;
    width: 400px;
    margin: 0 auto 50px;
}

.testimonials-box h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.testimonials-section .item {
    margin-bottom: 80px;
}

.testimonials-box a.primary-btn {
    margin-bottom: -80px;
}

.testimonials-section .owl-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 640px;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.testimonials-section .owl-nav button {
    width: 52px;
    height: 49px;
    position: relative;
}

.testimonials-section .owl-nav button:before {
    background-image: url(../images/slider-arrrow.svg) !important;
    background-size: 32px !important;
    filter: brightness(0) invert(1);
    background-repeat: no-repeat !important;
    background-position: center !important;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
}

.testimonials-section .owl-nav button span {
    font-size: 0;
}

.testimonials-section .owl-nav button.owl-prev:before {
    transform: translate(-50%, -50%) scaleX(-1);
}

.faq_section {
    padding: 120px 0 70px;
}

.faq_section .container {
    width: 1380px;
}

.faq_headings .row {
    align-items: center;
}

.faq_headings h2 {
    font-size: 50px;
    line-height: 55px;
    text-transform: uppercase;
    color: #181E29;
    max-width: 85%;
}


.accordion__wrapper {
    border: 1px solid #EBEBEB;
}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #EBEBEB;
    min-height: 80px;
    padding: 0 30px;
}

.accordion__icon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #181E29;
    position: relative;
}

.accordion__icon:before {
    content: '';
    width: 16px;
    height: 2px;
    background: #181E29;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.accordion__icon:after {
    content: '';
    width: 2px;
    height: 16px;
    background: #181E29;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.accordion__header h2.accordion__question {
    font-size: 18px;
    color: #181E29;
    text-transform: uppercase;
    font-weight: 600;
}

.accordion__answer {
    padding: 20px 30px;
    border-bottom: 1px solid #EBEBEB !important;
}

.accordion__content {
    overflow: hidden;
    height: 0;
    transition: var(--transition);
}

.faq_content .col-3 {
    width: 35%;
}

.faq_content .col-9 {
    width: 65%;
    background: #EBEBEB;
    padding: 40px 100px;
}

.faq_right_box h3 {
    font-size: 45px;
    line-height: 50px;
    text-transform: uppercase;
    color: #181E29;
    margin-bottom: 25px;
}

.faq_right_box p {
    font-size: 18px;
    line-height: 26px;
    color: #181E29;
    font-weight: 300;
}

.faq_right_box p:not(:last-child) {
    margin-bottom: 20px;
}

.faq_right_box p a.pera-link {
    font-size: 18px;
    font-weight: 500;
    color: #181E29;
    text-decoration: none;
    padding: 0px 0 10px 8px;
    display: inline-flex;
    position: relative;
    align-items: center;
}

.faq_right_box p a.pera-link:after {
    content: '';
    background-image: url(../images/blue-arrow.svg);
    width: 21px;
    height: 14px;
    margin-left: 8px;
}

.faq_content {
    padding-top: 50px;
}

footer.site-footer {
    background: #181E29;
}

.footer-top .footer-top-inner {
    display: flex;
    justify-content: flex-end;
}

.footer-top .footer-top-inner .footer-chat-box a {
    width: 544px;
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fdcb2b;
    color: #181E29;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
    padding-left: 50px;
}

.footer-top .footer-top-inner .footer-chat-box a:before {
    content: '';
    background-image: url(../images/chat-icon.svg);
    width: 52px;
    height: 52px;
    margin-right: 15px;
}

.footer-top-inner ul {
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 15px;
    align-items: center;
    padding-right: 60px;
}

.footer-top-inner ul li:first-child {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.footer-middle-row {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.footer-middle-row .footer-middle-col:first-child {
    width: 65%;
    padding-left: 100px;
}

.footer-middle-row .footer-middle-col:nth-child(2) {
    width: 35%;
}


.footer-image img {
    width: calc(100% + 250px);
    height: 420px;
    object-fit: cover;
    position: relative;
    right: 250px;
    clip-path: polygon(51% 0, 100% 0, 100% 100%, 0% 100%);
    object-position: right center;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    column-gap: 50px;
}

.footer-logo-area a.footer-phone {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.footer-logo-area a.footer-phone:before {
    content: '';
    background-image: url(../images/phone-icon.svg);
    width: 25px;
    height: 25px;
    display: inline-block;
    margin-right: 10px;
    filter: brightness(0) invert(1);
    background-size: cover;
}

.footer-colum-area .footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-colum-area .footer-row .footer-col {
    width: 25%;
}

.footer-colum-area .footer-row .footer-col .footer-box p {
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    padding-right: 100px;
    font-weight: 600;
}

.footer-colum-area .footer-row .footer-col:not(:first-child) .footer-box h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-colum-area .footer-row .footer-col:not(:first-child) .footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-colum-area .footer-row .footer-col:not(:first-child) .footer-box ul a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
    transition: 300ms all;
}

.footer-colum-area .footer-row .footer-col:not(:first-child) .footer-box ul a:hover {
    color: #fdcb2b;
}

.footer-colum-area {
    padding-top: 70px;
}

.footer_link_area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 45px;
}

.footer_link_area {
    padding-top: 60px;
	padding-bottom:30px !important;
}

.footer_link_area ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
}

.footer-bottom {
    background: #000;
    margin-top: -7px;
    padding: 30px 100px;
}

.footer-bottom .footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .footer-bottom-row p {
    color: #fff;
    font-size: 12px;
}

.footer-image img{
	max-width:inherit !important;
}


@media(max-width:1799px) {


    .header_bottom_right nav.site_navigation ul a {
        font-size: 16px;
        padding: 0 20px;
    }

    .about-section:before {
        clip-path: polygon(0% 84%, 100% 0%, 0% 0%);
    }
}

@media(max-width:1599px) {
    .header_left {
        padding-left: 50px;
        padding-right: 60px;
    }

    .header_bottom {
        padding-right: 70px;
    }

    .header_phone {
        padding: 28px 10px 28px 110px;
    }

    .banner_bottom {
        padding: 40px 0 40px 240px;
        clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
    }

    .about-section:before {
        clip-path: polygon(0% 60%, 80% 0%, 0% 0%);
    }

 
    .about-section .col-6 .colum-content {
        padding-left: 70px;
    }

    strong.line-text {
        font-size: 18px;
    }

    .about-section .col-6 .colum-content h1,
    .about-section .col-6 .colum-content h2 {
        font-size: 40px;
        line-height: 45px;
    }

    ul.arrow-list li {
        font-size: 16px;
        margin: 4px 0;
    }

    .colum-content p {
        font-size: 16px;
        line-height: 22px;
    }

    a.primary-btn {
        font-size: 14px;
    }

    .category-heading h2 {
        font-size: 30px;
    }

    .categories-section .row {
        column-gap: 40px;
    }

    .categories-section .col-6 {
        width: calc(50% - 20px);
    }

    .categories-btn {
        padding-top: 80px;
    }

    .top-occation-img img {
        width: 540px;
    }

    .top-occation-img {
        top: -20px;
    }

    .top-occation-head {
        padding-bottom: 110px;
    }

    .top-occation-head h2 {
        font-size: 30px;
    }

    .occation-slider .owl-nav button {
        width: 45px;
        height: 44px;
    }

    .occation-slider .owl-nav button:before {
        width: 24px;
        height: 22px;
        background-size: contain;
    }

    .faq_section .container {
        width: 1200px;
    }

    .faq_headings h2 {
        font-size: 40px;
        line-height: 45px;
        max-width: 90%;
    }

    .faq_content .col-9 {
        width: 60%;
        padding: 40px 70px;
    }

    .faq_content .col-3 {
        width: 40%;
    }

    .accordion__header {
        min-height: 80px;
        padding: 0 25px;
    }

    .accordion__answer {
        padding: 20px 25px;
    }

    .faq_right_box h3 {
        font-size: 40px;
        line-height: 45px;
    }

    .faq_right_box p {
        font-size: 16px;
        line-height: 24px;
    }

    .faq_right_box p a.pera-link {
        font-size: 16px;
    }

    .footer-top .footer-top-inner .footer-chat-box a {
        width: 450px;
        height: 113px;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        font-size: 16px;
    }

    .footer-top .footer-top-inner .footer-chat-box a:before {
        width: 45px;
        height: 45px;
        margin-right: 10px;
        background-size: contain;
    }

    .footer-top-inner ul {
        padding-right: 30px;
    }

    .footer-image img {
        width: calc(100% + 100px);
        height: 396px;
        right: 100px;
        clip-path: polygon(41% 0, 100% 0, 100% 100%, 0% 100%);
        object-position: right center;
    }

    .footer-colum-area .footer-row .footer-col .footer-box p {
        font-size: 16px;
        color: #fff;
        line-height: 24px;
        padding-right: 20px;
        font-weight: 600;
    }

    .footer-colum-area .footer-row .footer-col:not(:first-child) .footer-box h3 {
        font-size: 16px;
        margin-bottom: 17px;
    }

    .footer-colum-area .footer-row .footer-col:not(:first-child) .footer-box ul a {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .footer-middle-row .footer-middle-col:first-child {
        padding-left: 50px;
    }

    .footer-bottom {
        padding: 30px 50px;
    }
}

@media(max-width:1399px) {
    .header_left {
        padding-left: 40px;
        padding-right: 40px;
        width: calc(100% - 40px);
    }

    .header_bottom {
        padding-right: 50px;
    }

    .header_bottom_right nav.site_navigation ul a {
        font-size: 15px;
        padding: 0 17px;
    }

    .header-right {
        width: 40px;
    }

    .header_phone a {
        font-size: 0;
    }

    .header_phone {
        padding: 28px 10px 28px 110px;
    }

    .banner_bottom {
        padding: 40px 0 40px 100px;
        clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
        width: 100%;
        min-height: 130px;
    }

    .banner_nav ul li a {
        font-size: 20px;
        padding: 0 70px;
    }


    .home-banner .banner-img img {
        height: auto;
    }

    .home-banner {
        position: relative;
        height: auto;
    }

    .about-section .col-6 .colum-content h1,
    .about-section .col-6 .colum-content h2 {
        font-size: 30px;
        line-height: 35px;
    }

    strong.line-text {
        font-size: 16px;
    }

    .category-heading h2 {
        font-size: 24px;
    }

    .category-box a span {
        font-size: 14px;
        height: 45px;
        padding-right: 15px;
    }

    .category-box a span:after {
        width: 25px;
        height: 25px;
        margin-left: 10px;
        background-size: contain;
    }

    .top-occation-img img {
        width: 420px;
    }

    .top-occation-img {
        top: 0px;
    }

    .occation-shape {
        padding-top: 330px;
    }

    section.about-section.about-section-two {
        margin-top: -218px;
        clip-path: polygon(0% 0%, 100% 15%, 100% 100%, 0 100%);
        padding-top: 170px;
    }
}

@media(max-width:1099px) {
    .testimonials-section:before {
        width: 200px;
        height: 150px;
    }

    .navTrigger {
        width: 40px;
        cursor: pointer;
    }

    .navTrigger.active span:nth-child(1) {
        transform: translateY(8px) rotate(-135deg);
    }

    .navTrigger.active span:nth-child(2) {
        opacity: 0;
        transition: 0;
    }

    .navTrigger.active span:nth-child(3) {

        transform: translateY(-8px) rotate(135deg);
    }

    .navTrigger span {
        width: 35px;
        height: 2px;
        display: block;
        background: #fff;
        margin: 0 0 6px;
        transition: 300ms all;
    }

    .header_left {
        padding-left: 30px;
        padding-right: 30px;
        width: 100%;
        position: initial;
        clip-path: initial;
    }

    .header_left_top {
        padding: 10px 0;
    }

    .header_bottom {
        padding: 20px 0;
        align-items: center;
    }

    .header-right {
        display: none;
    }

    nav.site_navigation {
        position: absolute;
        width: 100%;
        height: auto;
        left: 0;
        top: 100%;
        z-index: 1;
        background: #181e29;
        transition: 300ms all;
        padding: 20px 0px;
        border-top: 1px solid rgb(255 255 255 / 18%);
        opacity: 0;
        visibility: hidden;
    }

    .header_bottom_right nav.site_navigation ul {
        flex-wrap: wrap;
    }

    .header_bottom_right nav.site_navigation ul li {
        width: 100%;
    }

    .header_bottom_right nav.site_navigation ul li a {
        width: 100%;
        display: block;
        padding: 6px 30px;
        font-size: 18px;
    }

    .header_bottom_right nav.site_navigation ul li:not(:last-child) a:before {
        display: none;
    }

    nav.site_navigation.show_list {
        opacity: 1;
        visibility: visible;
    }

    .header_left_top:before {
        width: 100%;
    }

    .banner_bottom {
        padding: 20px 0 20px 40px;
        clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
        width: 100%;
        min-height: 60px;
    }

    .banner_nav ul li a {
        font-size: 16px;
        padding: 0 40px;
    }

    .banner_nav ul li a:after {
        width: 20px;
        height: 20px;
        margin-left: 5px;
        background-size: contain;
    }

    .banner_nav ul li:not(:last-child) a:before {
        width: 2px;
    }

    .about-section:before {
        width: 200px;
        height: 150px;
    }

    .about-section .col-6 {
        width: 100%;
    }



    .about-section .col-6 .colum-content {
        padding-left: 0;
        padding-top: 30px;
    }

    .about-section {
        padding: 70px 0 80px;
    }

    .categories-section .col-6 {
        width: 100%;
    }

    .categories-section .row {
        column-gap: 40px;
        row-gap: 50px;
    }

    .top-occation-img {
        top: -30px;
    }

    .top-occation-img img {
        width: 330px;
    }

    .occation-shape {
        padding-top: 250px;
        clip-path: polygon(0% 0%, 100% 11%, 100% 100%, 0 95%);
        margin-top: 60px;
        padding-bottom: 180px;
    }

    .top-occation-head h2 {
        font-size: 24px;
        flex-wrap: wrap;
    }

    .occation-slider .owl-nav {
        top: -70px;
    }

    section.about-section.about-section-two {
        margin-top: -118px;
        clip-path: polygon(0% 0%, 100% 9%, 100% 100%, 0 100%);
        padding-top: 170px;
    }

    .testimonials-section {
        padding: 200px 0 60px;
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
        margin-top: -90px;
    }

    .occations-two {
        padding-bottom: 150px;
    }

    .testimonials-box {
        width: 100%;
        pad: 20px 20px 0;
    }

    .testimonials-section .owl-nav {
        width: 100%;
    }

    .testimonals-box h2 {
        font-size: 35px;
        line-height: 40px;

        margin: 0 auto 40px;
    }

    .faq_section {
        padding: 70px 0 70px;
    }

    .faq_section .container {
        width: 600px;
    }

    .faq_headings .col-6 {
        width: 100%;
    }

    .faq_headings .row {
        row-gap: 15px;
    }

    .faq_headings h2 {
        font-size: 30px;
        line-height: 35px;
        max-width: 60%;
    }

    .faq_content .col-3 {
        width: 100%;
    }

    .faq_content .col-9 {
        width: 100%;
        padding: 40px 30px;
    }

    .faq_right_box h3 {
        font-size: 30px;
        line-height: 39px;
    }

    .footer-middle-row .footer-middle-col:first-child {
        width: 100%;
        padding: 40px 30px 40px;
    }

    .footer-middle-row .footer-middle-col:nth-child(2) {
        display: none;
    }

    .footer-bottom {
        padding: 15px 30px;
    }
}

@media(max-width:767px) {

.header-top-left {
        width: 35%;
    }

    .header-top-left ul {
        column-gap: 10px;
    }

    .header-top-left li:first-child {
        font-size: 14px;
    }

    .header_bottom_left img {
        width: 110px;
    }

    .navTrigger span {
        width: 30px;
    }

    .home-banner .banner-img img {
        height: 430px;
    }

    .banner_nav ul li a {
        font-size: 16px;
        padding: 0 15px;
    }

    .banner_nav ul li a:hover:after {
        left: 0px;
    }

    strong.line-text {
        font-size: 14px;
    }

    strong.line-text:before {
        width: 30px;
    }

    .about-section .col-6 .colum-content h1,
    .about-section .col-6 .colum-content h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    ul.arrow-list li {
        font-size: 14px;
        margin: 4px 0;
    }

    ul.arrow-list {
        margin-bottom: 20px;
    }

    .colum-content p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 15px;
    }

    a.primary-btn {
        font-size: 14px;
        line-height: 33px;
    }

    .colum-content a.primary-btn {
        margin-top: 20px;
    }



    .content-box-occation {
        padding: 25px 30px;
    }

    .occations-btn a {
        font-size: 12px;
        height: 40px;
    }

    .top-occation-head {
        padding-bottom: 90px;
    }

    .all-occation-btn {
        text-align: center;
        padding-top: 60px;
    }

    .occations-two {
        padding-top: 60px;
    }

    .about-section {
        padding: 70px 0 60px;
    }

    .testimonials-box p {
        color: #FFFFFF;
        font-size: 14px;
        width: 100%;
        margin: 0 auto 40px;
    }

    .testimonals-box h2 {
        font-size: 24px;
        line-height: 30px;
        margin: 0 auto 30px;
        width: 100%;
		text-align:center;
    }
   .testimonals-box {
	   width: 100%;
	}
    .faq_section {
        padding: 60px 0 60px;
    }

    .faq_section .container {
        width: 460px;
    }

    .faq_headings h2 {
        font-size: 24px;
        line-height: 30px;
        max-width: 100%;
    }

    .accordion__header {
        min-height: 65px;
        padding: 0 20px;
    }

    .accordion__header h2.accordion__question {
        font-size: 16px;
    }

    .accordion__icon {
        width: 26px;
        height: 26px;
    }

    .accordion__icon:before {
        width: 14px;
    }

    .accordion__icon:after {
        height: 14px;
    }

    .faq_content .col-9 {
        width: 100%;
        padding: 30px 20px;
    }

    .faq_right_box h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .faq_right_box p {
        font-size: 14px;
        line-height: 20px;
    }

    .faq_right_box p a.pera-link {
        font-size: 14px;
        padding-bottom: 0;
    }

    .header_top_right ul li a {
        font-size: 14px;
    }

    .footer-top-inner ul {
        display: none;
    }

    .footer-colum-area {
        padding-top: 40px;
    }

    .footer-colum-area .footer-row .footer-col {
        width: 100%;
    }

    .footer-colum-area .footer-row {
        row-gap: 30px;
    }

    .footer-colum-area .footer-row .footer-col:not(:first-child) .footer-box h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer_link_area {
        padding-top: 30px;
        border-top: 1px solid #343d4e;
        margin-top: 30px;
    }

    .footer_link_area ul {
        column-gap: 20px;
        justify-content: center;
    }

    .footer-bottom {
        padding: 10px 30px;
        margin-top: 0;
    }

    .footer_link_area {
        padding-top: 20px;
    }

    .footer-middle-row .footer-middle-col:first-child {
        width: 100%;
        padding: 40px 30px 25px;
    }
}

@media(max-width:519px) {
    .header_left_top {
        justify-content: center;
    }

    .testimonials-section:before {
        width: 160px;
        height: 110px;
    }

    .header_left {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-top-left {
        width: 100%;
    }

    .header-top-left ul {
        column-gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .header-top-left li:first-child {
        display: none;
    }

    .header_bottom_right nav.site_navigation ul li a {
        padding: 6px 20px;
        font-size: 16px;
    }

    .banner_bottom {
        padding: 20px 20px 20px 20px;
        clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0% 100%);
        width: 100%;
        min-height: auto;
        position: relative;
        margin-top: -7px;
    }

    .about-section:before {
        width: 160px;
        height: 110px;
    }

    .banner_nav ul {
        width: 100%;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .home-banner .banner-img img {
        height: 380px;
    }

    .container {
        width: 100%;
        padding: 0 20px;
        max-width: 100%;
    }

    .about-section {
        padding: 50px 0 50px;
    }

    .site_header .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    strong.line-text {
        font-size: 14px;
        text-align: center;
        flex-wrap: wrap;
        flex-direction: column;
    }

    strong.line-text:before {
        width: 100%;
        display: block;
        order: 2;
        margin: 8px auto 20px;
        max-width: 60px;

    }

    .about-section .col-6 .colum-content h1,
    .about-section .col-6 .colum-content h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
        margin-top: 10px;
        text-align: center;
    }

    ul.arrow-list li {
        font-size: 14px;
        margin: 4px 0;
        position: relative;
        padding-left: 30px;
    }

    ul.arrow-list li:before {
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
    }

    .colum-content p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 15px;
        text-align: center;
    }

    .about-section .col-6 .colum-content {
        text-align: center;
    }

    a.primary-btn {
        font-size: 12px;
        line-height: 28px;
    }

    a.primary-btn:after {
        width: 20px;
        height: 20px;
        margin-left: 6px;
        transition: 300ms all;
        background-size: contain;
    }

    .category-heading h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .category-heading {
        text-align: center;
        padding-bottom: 25px;
    }

    .category-boxes .category-box {
        width: 100%;
    }

    .category-boxes {
        display: flex;
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 10px;
    }

    .categories-btn {
        padding-top: 50px;
    }

    .top-occation-img img {
        width: 240px;
    }

    .occation-shape {
        padding-top: 200px;
        clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0 100%);
        margin-top: 90px;
        padding-bottom: 180px;
    }

    .top-occation-head h2 {
        font-size: 20px;
        flex-wrap: wrap;
        row-gap: 7px;
    }

    .occation-slider .owl-nav {
        top: 0;
        position: relative;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        column-gap: 15px;
    }

    .top-occation-head {
        padding-bottom: 30px;
    }

    .occation-slider-box h3 {
        padding: 12px 8px;
        text-align: center;
        font-size: 16px;
    }

    .content-box-occation {
        padding: 20px 20px;
    }

    .content-box-occation h4 {
        font-size: 14px;
        padding-bottom: 8px;
    }

    .content-box-occation ul.arrow-list li {
        font-size: 14px;
    }

    .content-box-occation ul.arrow-list {
        margin-bottom: 15px;
    }

    ul.product-list li {
        font-size: 14px;
        flex-wrap: wrap;
    }

    p.yellow-pera {
        font-size: 14px;
        margin-top: 20px;
    }

    .occations-btn a {
        width: 100%;
    }

    .occations-btn {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    section.about-section.about-section-two {
        margin-top: -128px;
        clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0 100%);
        padding-top: 90px;
    }

    .occations-two {
        padding-top: 50px;
    }

    .testimonials-section {
        padding: 110px 0 20px;
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
        margin-top: -90px;
    }

    .testimonials-box {
        width: 100%;
        padding: 20px 20px 0;
    }

    .testimonals-box strong.line-text {
        margin-bottom: 0;
    }

    .testimonals-box h2 {
        font-size: 20px;
        line-height: 24px;
        margin: 0 auto 25px;
        width: 100%;
    }

    .testimonials-box p {
        color: #FFFFFF;
        font-size: 14px;
        width: 100%;
        margin: 0 auto 28px;
        padding: 0 40px;
    }

    .testimonials-box h3 {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .faq_section {
        padding: 50px 0 50px;
    }

    .faq_headings h2 {
        font-size: 20px;
        line-height: 24px;
        max-width: 100%;
        text-align: center;
    }

    .faq_content {
        padding-top: 20px;
    }

    .faq_section .container {
        width: 100%;
        max-width: 100%;
    }

    .accordion__header {
        min-height: 60px;
        padding: 0 15px;
    }

    .accordion__header h2.accordion__question {
        font-size: 16px;
        width: calc(100% - 40px);
        line-height: 18px;
    }

    .accordion__answer {
        padding: 15px 15px;
        font-size: 14px;
    }

    .faq_content .col-9 {
        width: 100%;
        padding: 25px 15px;
    }

    .faq_right_box h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .faq_right_box p:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-chat-box {
        width: 100%;
    }

    .footer-top .footer-top-inner .footer-chat-box a {
        width: 100%;
        height: auto;
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
        font-size: 14px;
        padding: 20px 20px;
    }

    .footer-middle-row .footer-middle-col:first-child {
        width: 100%;
        padding: 30px 20px 30px;
    }

    .footer-logo-area {
        flex-wrap: wrap;
        row-gap: 15px;
        justify-content: center;
        flex-direction: column;
    }

    .footer-colum-area .footer-row .footer-col {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        padding: 20px 20px;
        margin-top: 0;
    }

    .footer-bottom .footer-bottom-row {
        flex-direction: column;
        row-gap: 5px;
    }

    .footer-colum-area .footer-row .footer-col .footer-box p {
        font-size: 14px;
        color: #fff;
        line-height: 20px;
        padding-right: 0;
        font-weight: 600;
    }

    .footer-colum-area {
        padding-top: 25px;
    }
}