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

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 25px;
    color: #000;
    font-size: 15px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Trajan-reg';
    src: url(../fonts/Trajan-reg.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: 1px solid;
    border-radius: 40px;
    color: #ffffff;
    z-index: 1;
    position: relative;
    font-size: 18px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: auto;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    background: rgb(248, 162, 138);
    background: linear-gradient(180deg, rgba(248, 162, 138, 1) 24%, rgba(173, 108, 88, 1) 88%);
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 30px;
    background-color: #df866e;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Trajan-reg';
    font-size: 80px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Trajan-reg';
    font-size: 80px;
    line-height: 1;
    color: #000;
    font-weight: 400;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Trajan-reg';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */


/*.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}

.menuSec li:hover ul {opacity: 1;}

.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #393939;
    font-size: 13px;
}

.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #000000;
    left: 0px;
    width: 200px;
    text-align: left;
    top: -80px;
    opacity: 0;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.menuSec li:hover ul {
    transition: 0.5s ease-in-out;
    top: 40px;
    z-index: 99;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
    width: 100%;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}
*/

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */

.menu_sec #menu li a {
    font-size: 20px;
    color: #fff;
    font-family: 'Poppins';
    text-transform: uppercase;
}

.menu_sec #menu {
    justify-content: end;
    margin: 0;
    gap: 80px;
}

.menu_sec #menu>li>ul {
    background: #000;
    width: 240px;
    position: absolute;
    top: -90px;
    padding: 20px 20px;
    transition: 0.3s all;
    opacity: 0;
    z-index: -1;
}

.menu_sec #menu>li:nth-child(3) {
    position: relative;
}

.menu_sec #menu>li>ul>li>a {
    color: #fff;
}

.menu_sec #menu>li:nth-child(3):after {
    position: absolute;
    content: "";
    background: #000;
    width: 10px;
    height: 10px;
    bottom: -14px;
    left: 10px;
    clip-path: polygon(52% 0, 0 100%, 100% 100%);
    transition: 0.3s all;
    opacity: 0;
}

.menu_sec #menu>li:nth-child(3):hover:after {
    opacity: 1;
    transition: 0.5s ease-in-out;
}

.menu_sec #menu>li:nth-child(3):hover ul {
    opacity: 1;
    transition: 0.5s ease-in-out;
    top: 40px;
    z-index: 2;
    padding: 10px;
}

.menu_sec #menu>li:nth-child(3):hover ul li {
    margin-bottom: 11px;
    background: green;
    padding: 10px;
}


/* Header */

header {
    position: absolute;
    z-index: 99;
    top: 10px;
    width: 100%;
}

.logo a img {
    object-fit: contain;
    width: 190px;
}

header:before {
    position: absolute;
    content: '';
    background: #000;
    width: 20%;
    height: 110px;
    left: 0;
    top: -10px;
    z-index: -1;
}

.container-fluid {
    padding: 0 5%;
}


/* end  */


/* Banner  */

section.banner {
    position: relative;
    height: 910px;
    background-image: url(../images/banner-bg.png);
    background-size: cover;
    z-index: 0;
}

.ban-text:before {
    position: absolute;
    content: '';
    background: #000;
    top: -10%;
    left: -18%;
    width: 140%;
    height: 120%;
    z-index: -1;
}

section.banner .container-fluid {
    padding-right: 0;
    position: relative;
    margin-left: 5%;
}

.ban-text p {
    color: #fff;
}

.ban-text {
    position: absolute;
    width: 30%;
    left: 0;
    top: 39%;
    z-index: 0;
}

.ban-text p {
    color: #fff;
}

.big_slider {
    margin-top: 100px;
    z-index: -1;
}

.bog-wrap img {
    height: 661px;
    object-fit: cover;
}

.small-wrap img {
    height: 200px;
    width: 300px;
}

.small-wrap img {
    height: 190px;
    width: 340px;
}

.small_slider {
    width: 340px;
    margin: 0 0 0 auto;
    position: absolute;
    right: 200px;
    bottom: -128px;
}

.small_slider .slick-slide {
    margin: 0;
}

section.banner:after {
    position: absolute;
    content: '';
    background: #fff;
    width: 480px;
    height: 210px;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.small_slider .slick-prev,
.cer-slider .slick-prev:before {
    display: none !important;
}

.small_slider .slick-next:before,
.cer-slider .slick-next:before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 26px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ad6c58;
    border-radius: 50%;
    color: #fff;
    opacity: 1;
}

.small_slider .slick-next,
.cer-slider .slick-next {
    right: 0;
    top: 44%;
}

.social-icons ul {
    display: flex;
    align-items: center;
    gap: 27px;
    left: 0;
    position: absolute;
    bottom: -80px;
    margin: 0;
}

.social-icons ul li a i {
    color: #b27766;
    font-size: 18px;
    background: #8e5f52;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.social-icons ul li span {
    font-size: 21px;
    text-transform: uppercase;
    color: #fff;
}

.social-icons ul li a i:hover {
    color: #b27766;
    background: #fff;
}


/* end  */


/* About */

section.about {
    padding: 17% 0 0 0;
    position: relative;
    margin-bottom: 80px;
}

section.about .container-fluid {
    padding-left: 0;
}

h2.theme-h2 {
    font-family: 'Trajan-reg';
    font-size: 80px;
    line-height: 1;
    color: #000;
    text-align: center;
    font-weight: 400;
}

img.abt-img2 {
    position: absolute;
    top: 100px;
    z-index: -1;
    width: 22%;
}

.ban-img img {
    width: 100%;
    height: 450px;
    z-index: 2;
    position: relative;
    object-fit: cover;
    object-position: top;
}

.abt-text a.theme_btn {
    padding: 15px 35px;
    margin-left: -40px;
    position: absolute;
    left: 48%;
    bottom: 0;
    font-size: 15px;
    width: 200px;
    text-align: center;
}


/* end  */


/* Services  */

section.service {
    padding-bottom: 80px;
}

.ser-text h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.ser-text {
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ser-wrap img {
    width: 100%;
    height: 275px;
    object-fit: cover;
}

.ser-text p {
    margin-bottom: 0;
}

.ser-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.ser-links a p {
    margin-bottom: 0;
    color: #ad6c58;
    text-transform: uppercase;
    font-family: 'Trajan-reg';
    font-weight: 600;
    font-size: 17px;
}

.ser-links a i {
    background: #ad6c58;
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    margin-top: -50px;
    margin-right: 10px;
}

.ser-wrap {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.top-head p {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.top-head {
    margin-bottom: 40px;
}

.ser-slider .slick-slide {
    margin: 10px 20px;
    opacity: 1;
}

.ser-slider .slick-next:before,
.ser-slider .slick-prev:before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 26px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ad6c58;
    border-radius: 50%;
    color: #fff;
    opacity: 1;
    transition: 0.5s;
}

.ser-slider .slick-prev:before {
    content: '\f104';
}

.ser-slider .slick-prev:hover:before,
.ser-slider .slick-next:hover:before {
    opacity: 1;
    background: #000;
}


/* end  */


/* Choose  */

section.why-choose {
    position: relative;
    padding-bottom: 0px;
    z-index: 0;
}

section.why-choose:before {
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 110px;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.chs-text p {
    width: 59%;
    font-size: 14px;
}

section.why-choose h2.theme-h2 {
    font-size: 69px;
    text-align: start;
}

section.why-choose h2.theme-h2 span {
    display: block;
}

.chs-img-left {
    text-align: right;
    margin-bottom: -30px;
    margin-right: 40px;
}

.chs-img-left img {
    width: 27vw;
    height: 16vw;
    margin-top: 40px;
}

.chs-text p {
    width: 59%;
    font-size: 14px;
}

.chs-img-right img {
    width: 33vw;
    height: 50vw;
    object-fit: cover;
    padding-top: 60px;
}

.chs-img-right {
    text-align: center;
}

section.why-choose:after {
    position: absolute;
    content: '';
    background: #b37867;
    width: 42%;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: -2;
}

section.why-choose .container-fluid {
    padding-right: 2%;
}

.chs-ans ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.chs-ans ul li h5 span {
    display: block;
    font-size: 13px;
    font-family: 'Poppins';
    font-weight: 300;
    text-transform: capitalize;
}

.chs-ans ul li h5 {
    color: #000;
    font-weight: 400;
    font-size: 21px;
    font-family: 'Trajan-reg';
    margin: 0;
}

.chs-ans {
    width: 500px;
    background: #fff;
    padding: 20px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: absolute;
    top: 49%;
    left: 38%;
    padding-bottom: 30px;
}

.chs-ans ul li:last-child {
    margin-bottom: 0;
}

.abt-text {
    margin-left: 30px;
}

.chs-ans ul li img {
    border: 1px solid #b37867;
    width: 90px;
    padding: 15px;
    border-radius: 90px;
    height: 90px;
    object-fit: contain;
}

.chs-ans ul {
    margin: 0;
}


/* end  */


/* Certification */

section.certification {
    padding: 100px 0;
    position: relative;
}

.certf-img img {
    width: 760px;
    height: 460px;
}

section.certification .container-fluid {
    padding-left: 0;
}

section.certification h2.theme-h2 {
    font-size: 74px;
    text-align: start;
    margin-bottom: 10px;
}

.cer-text {
    margin-left: 40px;
}

section.certification:before {
    position: absolute;
    content: '';
    background: #ad6c58;
    height: 100%;
    width: 30%;
    z-index: -1;
    top: 0;
}

.cer-box img {
    width: 130px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.slick-slide {
    margin: 10px;
}

.cer-slider {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
    padding: 10px 0;
    margin-top: -11%;
}


/* end  */


/*testimonial sec*/

.test-detail {
    /* border: solid; */
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

ul.clients {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -63px;
}

.clinetdetail h5 {
    font-size: 20px;
    line-height: 20px;
    color: black;
    margin: 0;
}

.clinetdetail p {
    font-family: 'Poppins';
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0 0 10px;
}

.test-detail p {
    color: #7c7c7c;
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
}

.testi_slider .slick-slide {
    opacity: 1;
    margin: 50px 10px 10px 10px;
}

.test-cont {
    /* padding: 0px 3% 5px; */
    margin-bottom: 18px;
    border-bottom: solid 1px #80808059;
}

.ic {
    color: #f4a600;
    margin-bottom: 13px;
}

.test-heading {
    margin-top: 35px;
}

section.testimonials {
    z-index: 0;
    position: relative;
    padding: 100px 0;
}

.whit {
    background: white;
}

ul.cd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px !important;
}


/* end  */


/* Footer  */

section.news_lettersecc {
    background-color: #000;
    padding: 30px 0px;
    position: relative;
    margin-top: 10%;
}

section.news_lettersecc:before {
    position: absolute;
    content: '';
    background-image: url(../images/onion.png);
    background-size: contain;
    width: 60px;
    height: 59px;
    right: 30%;
    top: -25px;
    z-index: 0;
    background-repeat: no-repeat;
}

.email_textt h3 {
    font-size: 31.44px;
    color: #fff;
    margin-bottom: 0;
    line-height: 44px;
    font-weight: 400;
}

.email_textt p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    font-style: italic;
}

.news_formm form input {
    width: 100%;
    height: 60px;
    background: #fff;
    color: #000;
    padding: 10px 30px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: unset;
}

.news_formm {
    position: relative;
    background: #ad6c58;
    padding: 30px 50px;
    margin-top: -12%;
}

.news_formm form input::placeholder {
    color: #7c7c7c;
    font-size: 13px;
    text-transform: uppercase;
}

.news_formm form button {
    /* position: absolute; */
    /* bottom: 0; */
    /* right: 0; */
    width: 100%;
    border: unset;
    background: #000;
    font-size: 27px;
    text-transform: uppercase;
    font-family: 'Trajan-reg';
    padding: 20px 0 16px;
    line-height: 1;
}

.email_imgg {
    animation: wiggle 2s linear infinite;
}

@keyframes wiggle {
    0%,
    7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%,
    100% {
        transform: rotateZ(0);
    }
}

footer.main_footer {
    background: #000;
    padding: 6% 0 0%;
}

.footer_details h5 {
    font-size: 35px;
    color: #fff;
    font-family: 'Trajan-reg';
}

.footer_details {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 16%;
}

.footer_details.linkks>ul {
    display: flex;
    justify-content: space-between;
}

.footer_details.linkks {
    width: 60%;
    margin-left: 0;
}

.footer_details.linkks ul li ul li a {
    color: #fff;
    font-size: 15px;
    font-family: 'Poppins';
    text-transform: capitalize;
    font-weight: 400;
}

.footer_details.linkks ul li ul li {
    margin-bottom: 14px;
}

.footer_details.linkks:after {
    right: -90px;
}

.footer_details.adrxs ul li a {
    font-size: 15px;
    color: #fff;
    font-family: 'Poppins';
}

.footer_details.adrxs ul li {
    margin-bottom: 20px;
}

.footer_details.adrxs ul li a i {
    margin-right: 15px;
}

.footer_bottm {
    background: #ad6c58;
    border-bottom: 0;
    padding: 20px 10px 20px;
    border: 1px solid #343434;
}

.footer_bottm p {
    margin: 0;
    color: #fff;
    text-align: center;
}

.ftr_line {
    position: relative;
}

.ftr_line:after {
    position: absolute;
    content: "";
    background: #2f2f2f;
    height: 239px;
    width: 2px;
    top: 0;
    right: -40px;
}

.footer_details img {
    margin-bottom: 20px;
    margin-top: -18%;
}

.footer_details.adrxs ul li a i {
    font-size: 18px;
}

.footer_details.ftr-social ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.footer_details.ftr-social ul li a i {
    font-size: 27px;
    color: #fff;
}

.footer_details.linkks>ul>li>ul>li {
    list-style: inside disc;
    color: #c27b66;
}

.news_formm h3 {
    font-size: 57px;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
}

section.news_lettersecc .row {
    align-items: end;
}


/* Footer end */


/* Inner Pages  */


/* Inner Banner */

section.banner.inn-banner:after {
    display: none;
}

section.banner.inn-banner {
    height: auto;
    position: relative;
}

section.banner.inn-banner .slick-initialized .slick-slide {
    margin: 0;
}

section.banner.inn-banner h1 {
    height: 350px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

section.banner.inn-banner .ban-text {
    top: unset;
    bottom: 34px;
    width: 38%;
}

section.banner.inn-banner .bog-wrap img {
    height: 560px;
    object-fit: cover;
}

section.banner.inn-banner h1 span {
    display: block !important;
}


/* end */


/* ser detail  */

section.service-detaikl .ser-wrap h3 {
    font-size: 64px;
    font-weight: 400;
}

section.service-detaikl .ser-wrap {
    text-align: center;
    box-shadow: unset;
}

section.service-detaikl .ser-wrap img {
    height: 500px;
    margin-bottom: 40px;
}


/* end  */


/* Contact Page Start */

.contact-text h2 {
    font-size: 46px;
    color: #09161d;
    line-height: 50px;
    font-family: 'Poppins', Sans-Serif;
}

.contact-text h2 span {
    display: block;
}

.contact-text p {
    font-size: 16px;
    line-height: 25px;
    color: #7c7c7c;
    font-weight: 500;
    margin-bottom: 6%;
}

ul.contact-number {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5%;
}

ul.contact-number h2 {
    font-size: 19px;
    margin-bottom: 0;
    font-family: 'Poppins';
    line-height: 27px;
    color: #333333;
}

ul.contact-number li h3 {
    font-size: 41px;
    color: #09161d;
    margin: 0;
    font-family: 'Poppins', Sans-Serif;
    font-weight: 500;
}

.contact-text time {
    font-size: 17px;
    color: #333333;
    font-weight: 500;
    line-height: 30px;
}

.contactus-form input {
    width: 100%;
    height: 60px;
    background: #ebebeb;
    border: none;
    margin-bottom: 5%;
    padding: 0 15px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.contactus-form input::placeholder {
    color: #7c7c7c;
}

.contactus-form textarea {
    width: 100%;
    height: 150px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3%;
    background: #ebebeb;
    border: none;
    resize: none;
    margin-top: -13px;
}

.contact-sec .row {
    display: flex;
    align-items: center;
}

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

.contactus-form textarea::placeholder {
    color: #7c7c7c;
}

ul.contact-number img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    object-fit: cover;
}

.contact-sec button.theme_btn {
    width: 190px;
}


/* Contact end*/


/* end  */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

section.banner.inn-banner .ban-text:before {
    width: 110%;
}







@media only screen and (min-width: 992px) and (max-width: 1199px){
header:before {
    width: 30%;
}

.ban-text {
    width: 50%;
}

.ban-text {
    width: 50%;
}

h2.theme-h2 {
    font-size: 60px;
}

.abt-text a.theme_btn {
    left: inherit;
}

.chs-ans {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
}

section.why-choose h2.theme-h2 {
    font-size: 50px;
}

section.certification h2.theme-h2 {
    font-size: 59px;
}

.footer_details h5 {
    font-size: 25px;
}

ul.contact-number li h3 {
    font-size: 34px;
}

section.service-detaikl .ser-wrap img {
    width: 100%;
}

}

@media only screen and (min-width: 768px) and (max-width: 991px){
    html {
        overflow-x: hidden;
    }
    .menu_sec #menu li a {
    font-size: 16px !important;
}

section.service-detaikl .ser-wrap img {
    width: 100% !important;
    height: 260px !important;
    margin-bottom: 0 !important;
}

.menu_sec #menu {
    gap: 40px !important;
}

.logo a img {
    width: 100% !important;
}

.ban-text {
    width: 50% !important;
}

.ban-text h1 {
    font-size: 40px;
}

h2.theme-h2 {
    font-size: 50px;
}

.ser-text h3 {
    font-size: 30px;
}

.ser-slider .slick-slide {
    margin: 10px;
    position: relative;
}

section.why-choose h2.theme-h2 {
    font-size: 40px;
}

section.why-choose:before {
    display: none;
}

.chs-ans {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
}

.chs-text p {
    width: 90%;
}

ul.cd {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.clinetdetail {
    text-align: center;
}

section.certification h2.theme-h2 {
    font-size: 42px;
}

.news_formm {
    padding: 20px 10px !important;
}

.news_formm h3 {
    font-size: 40px;
}

.footer_details.linkks {
    width: 85%;
}

.ftr_line:after {
    display: none;
}

.footer_details h5 {
    font-size: 21px;
}

.footer_details.adrxs ul li a {
    font-size: 12px;
}

header:before {
    width: 30%;
}

.ban-text:before {
    width: 120%;
}

.small_slider {
    right: 100px;
}

.test-detail {
    height: 460px;
}

.ser-wrap {
    height: 660px;
}
.ban-img img {
    object-position: 0 !important;
}
.news_lettersecc span.wpcf7-spinner {
    display: none;
}

.service-detaikl {
    padding: 100px 0;
}

.contact-sec .row {
    display: flex;
     align-items: start; 
}

ul.contact-number li h3 {
    font-size: 22px;
}

}

@media only screen and (min-width: 520px) and (max-width: 767px){
     header {
        position: relative;
        top: 0;
    }
    header:before {
        width: 100%;
        height: 110px;
    }
    .logo {
        text-align: center;
    }
    .ban-text:before{
        background-color:transparent;
    }
    section.banner .container-fluid {
        margin-left: 0;
        padding: 0 12px;
    }
.ban-text {
    padding: 40px 0 0;
    width: 100%;
    position: relative;
}
.ban-text h1 {
    font-size: 26px !important;
}
    .big_slider {
        margin-top: 0;
        z-index: 0;
    }
    .bog-wrap img {
        height: 180px;
        object-fit: cover;
    }
    .small_slider {
        width: 100%;
        right: 30%;
    }
    .small-wrap img {
        height: 120px;
        width: 100%;
        object-fit: contain;
    }
    section.banner:after{
        display:none;
    }
    section.about .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
h2.theme-h2 {
    font-size: 34px;
    line-height: 1;
}

.slick-prev {
    left: -5px;
}

.slick-next {
    right: 15px;
}

    img.abt-img2{
        display:none;
    }
    .ban-img img {
        height: auto;
    }
    .abt-text {
        margin-left: 0;
        margin-top: 20px;
    }
    .abt-text a.theme_btn {
        margin-left: 0;
        left: 0;
        width: 200px;
        position:relative;
    }
    .top-head p {
        width: 100%;
    }
    section.banner {
        height: 640px;
    }
    section.why-choose h2.theme-h2 {
        font-size: 45px;
        text-align: start;
    }
    .chs-img-left {
        text-align: center;
        margin-bottom: 0;
        margin-right: 0;
    }
    .chs-img-left img {
        width: 100%;
        height: auto;
        margin-top: -30px;
        margin-bottom: 30px;
    }
    .chs-ans {
        width: 100%;
        top: 0 !important;
        left: 0;
        position: relative;
    }
    .chs-ans ul li {
        display: block;
        text-align: center;
    }
    .chs-ans ul li img {
        margin-bottom: 20px;
    }
    .chs-img-right img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        padding-top: 0;
    }
    section.certification .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    section.certification h2.theme-h2 {
        font-size: 30px;
        text-align: start;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .cer-slider {
        margin-top: 0;
    }
    .news_formm {
        padding: 30px 10px 0 !important;
    }
    .news_formm h3 {
        font-size: 30px;
    }
    input.wpcf7-form-control.wpcf7-submit.has-spinner.theme_btn {
        font-size: 21px !important;
    }
    .footer_details {
        width: 100%;
    }
    .footer_details h5 {
        font-size: 27px;
    }
    .footer_details.linkks {
        width: 80%;
        margin-left: 0;
    }
    section.banner.inn-banner {
        height: 220px;
    }
    section.banner.inn-banner .big_slider {
        display: none;
    }
    section.banner.inn-banner .col-md-10 {
        display: none;
    }
    section.banner.inn-banner>.container-fluid {
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .certf-img img {
        width: 100%;
        height: auto;
    }
    .cer-text {
        margin-left: 0 !important;
    }

.chs-text p {
    width: 100%;
}

.top-head {
    margin-bottom: 0;
}
.ftr_line:after {
    display: none;
}

section.banner.inn-banner .ban-text {
    width: 100%;
}

.contact-text h2 {
    font-size: 32px;
    margin: 0;
}

ul.contact-number {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 0;
    align-items: center;
    text-align: center;
}

ul.contact-number img {
    width: 100px;
    height: 100px;
}

ul.contact-number li h3 {
    font-size: 30px;
}

section.service-detaikl .ser-wrap h3 {
    font-size: 40px;
}

section.service-detaikl .ser-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}


html {
    overflow-x: hidden;
}
}

@media only screen and (min-width: 300px) and (max-width: 519px){
    header {
        position: relative;
        top: 0;
    }
    header:before {
        width: 100%;
        height: 110px;
    }
    .logo {
        text-align: center;
    }
    .ban-text:before{
        background-color:transparent;
    }
    section.banner .container-fluid {
        margin-left: 0;
        padding: 0 12px;
    }
.ban-text {
    padding: 40px 0 0;
    width: 100%;
    position: relative;
}
.ban-text h1 {
    font-size: 26px !important;
}
    .big_slider {
        margin-top: 0;
        z-index: 0;
    }
    .bog-wrap img {
        height: 180px;
        object-fit: cover;
    }
    .small_slider {
        width: 100%;
        right: 30%;
    }
    .small-wrap img {
        height: 120px;
        width: 100%;
        object-fit: contain;
    }
    section.banner:after{
        display:none;
    }
    section.about .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
h2.theme-h2 {
    font-size: 34px;
    line-height: 1;
}

.slick-prev {
    left: -5px;
}

.slick-next {
    right: 15px;
}

img.abt-img2 {
    top: 60px;
}

    .ban-img img {
        height: auto;
    }
    .abt-text {
        margin-left: 0;
        margin-top: 20px;
    }
    .abt-text a.theme_btn {
        margin-left: 0;
        left: 0;
        width: 200px;
        position:relative;
    }
    .top-head p {
        width: 100%;
    }
    section.banner {
        height: 640px;
    }
    section.why-choose h2.theme-h2 {
        font-size: 45px;
        text-align: start;
    }
    .chs-img-left {
        text-align: center;
        margin-bottom: 0;
        margin-right: 0;
    }
    .chs-img-left img {
        width: 100%;
        height: auto;
        margin-top: -30px;
        margin-bottom: 30px;
    }
    .chs-ans {
        width: 100%;
        top: 0 !important;
        left: 0;
        position: relative;
    }
    .chs-ans ul li {
        display: block;
        text-align: center;
    }
    .chs-ans ul li img {
        margin-bottom: 20px;
    }
    .chs-img-right img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        padding-top: 0;
    }
    section.certification .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    section.certification h2.theme-h2 {
        font-size: 30px;
        text-align: start;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .cer-slider {
        margin-top: 0;
    }
    .news_formm {
        padding: 30px 10px 0 !important;
    }
    .news_formm h3 {
        font-size: 30px;
    }
    input.wpcf7-form-control.wpcf7-submit.has-spinner.theme_btn {
        font-size: 21px !important;
    }
    .footer_details {
        width: 100%;
    }
    .footer_details h5 {
        font-size: 27px;
    }
    .footer_details.linkks {
        width: 80%;
        margin-left: 0;
    }
    section.banner.inn-banner {
        height: 220px;
    }
    section.banner.inn-banner .big_slider {
        display: none;
    }
    section.banner.inn-banner .col-md-10 {
        display: none;
    }
    section.banner.inn-banner>.container-fluid {
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .certf-img img {
        width: 100%;
        height: auto;
    }
    .cer-text {
        margin-left: 0 !important;
    }

.chs-text p {
    width: 100%;
}

.top-head {
    margin-bottom: 0;
}
.ftr_line:after {
    display: none;
}

section.banner.inn-banner .ban-text {
    width: 100%;
}

.contact-text h2 {
    font-size: 32px;
    margin: 0;
}

ul.contact-number {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 0;
    align-items: center;
    text-align: center;
}

ul.contact-number img {
    width: 100px;
    height: 100px;
}

ul.contact-number li h3 {
    font-size: 30px;
}

section.service-detaikl .ser-wrap h3 {
    font-size: 40px;
}

section.service-detaikl .ser-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.small_slider .slick-next, .cer-slider .slick-next {
    right: 23%;
}


html {
    overflow-x: hidden;
}

}
