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

@font-face {
    font-family: 'Myriad Pro';
    src: url('../myraid-pro-font/MyriadPro-Regular.woff2') format('woff2'),
        url('../myraid-pro-font/MyriadPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    color: #fff;
    text-decoration: none !important;
}

img {
    width: 100%;
}

i {
    color: #fff;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/* start header css */
.head-top {
    background-color: #303338;
}

.header-top-link {
       display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-left: 175px;
}

.top-links {
    display: flex;
    align-items: center;
    margin-right: 16px
}

.top-menu {
    display: flex;
    margin-right: 60px;
}

.link-icon {
    margin-right: 10px;
    background: #4c5159;
    width: 28px;
    text-align: center;
}

.link-icon i {
    transition: 0.5s ease;
}

.link-icon i:hover {
    color: #e8124d;
}

.link-text p {
    transition: 0.5s ease;
}

.link-text p:hover {
    color: #e8124d;
}

.link-text a {
    color: #fff;
}

.link-text p {
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

.top-social-link {
    display: flex;
}

.social-icon {
    background-color: #4c5159;
    width: 25px;
    text-align: center;
    margin-right: 10px;
}

.social-icon i {
    transition: 0.5s ease;
}

.social-icon i:hover {
    color: #e8124d;
}

.head-bottom {
    background-color: #000;
}

.bottom-menu {
    display: flex;
    height: 75px;
}

.logo {
    background-color: #000;
    padding: 0px 152px;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    margin-top: -44px;
    /* position: absolute; */
    /* z-index: 999; */
}

.logo img {
    /* padding-top: 22px; */
    display: block;
    width: 170px;
    height: 170px;
    margin-top: -30px;
    object-fit: cover;
    transition: 0.5s ease;
}

.sticky .logo img {
    margin-top: 18px;
    width: 129px;
    height: 121px;
    object-fit: cover;
}

.black-red-bg {
    display: flex;
    position: relative;
    margin-left: 46px;
}

.bg-1 {
    border: 10px solid #e8124d;
    height: 75px;
    width: 16px;
    transform: skewX(42deg);
    /* margin-left: 3px; */
    margin-right: -10px;
}

.bg-2 {
    border: 10px solid #5a071e;
    height: 75px;
    width: 16px;
    transform: skewX(42deg);
    display: inline-block;
    position: absolute;
    right: 44px;
}

.bg-3 {
    border: 10px solid #9d0c34;
    height: 75px;
    width: 16px;
    transform: skewX(42deg);
    display: inline-block;
    position: absolute;
    right: 17px;
}


.nav-wrap {
    background: #e8124d;
    height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%);
    margin-left: -12px;
}

.nav-wrap>nav>ul {
    display: flex;
    margin-left: 200px;
    margin-bottom: 0px !important;
}

.nav-wrap>nav>ul>li {
    margin-left: 20px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Myriad Pro';
}

.nav-wrap>nav>ul>li>a {
    transition: 0.5s ease;
}

.nav-wrap>nav>ul>li>a:hover {
    color: black;
}
.sticky{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

#menu-primary-menu li {
    text-align: center;
    position: relative;
    padding: 9px 25px;
}

#menu-primary-menu>li>a::before {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 3px;
    left: 0px;
    right: 0px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin: auto;
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

#menu-primary-menu>li>a::after {
    content: '';
    position: absolute;
    background-color: #fff;
    top: -22px;
    left: 0;
    right: 0;
    width: 2px;
    height: 30px;
    margin: auto;
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

#menu-primary-menu>li.active {
    background: transparent;
}

#menu-primary-menu>li:hover a::before,
#menu-primary-menu>li:hover a::after,
#menu-primary-menu>li.active a::before,
#menu-primary-menu>li.active a::after {
    opacity: 1;
}

/*.head-bottom {*/
/*    background: #000;*/
/*}*/
/*.logo {*/
/*    background: #000;*/
/*    max-width: 200px;*/
/*}*/
/*.logo img {*/
/*    display: block;*/
/*}*/
/* end header css  */

/* Banner css */
.banner-text {
    padding-top: 80px;
}

.banner-slider {
    position: relative;
}

.banner-slider .priv_arrow {
    position: absolute;
    right: 130px;
    top: 38%;
    width: 50px;
    height: 50px;
    background-color: #e8124d;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    cursor: pointer;
    z-index: 99;
}

.banner-slider .next_arrow {
    position: absolute;
    top: 50%;
    right: 128px;
    width: 50px;
    height: 50px;
    background-color: #e8124d;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    cursor: pointer;
}

.ready-tt {
    color: #fff;
    font-size: 24px;
    line-height: 58px;
}

.banner-text h1 {
    color: #fff;
    font-size: 52px;
    line-height: 70px;
    max-width: 630px;
}

.banner-text>h1>span {
    color: #fff;
}

.read-button {
    margin-top: 30px;
}

.read-button a {
    color: #000;
}

.btn-5 {
    padding: 10px 20px;
    background-color: #fff;
    border: 0 solid;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
    outline: 1px solid;
    outline-color: rgba(255, 255, 255, .5);
    outline-offset: 0px;
    text-shadow: none;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 18px;
    font-weight: 700;
}

.btn-5:hover {
    border: 1px solid;
    /* box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2); */
    outline-color: #000;
    outline-offset: 6px;
    /* text-shadow: 1px 1px 2px #427388;  */
}

/* end here */

/* about sec css */
.about-sec {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #262626;
    /* z-index: -1; */
}

.bg-layer {
    position: relative;
    bottom: -25px;
}

.about-img img {
    position: absolute;
    top: 0px;
    width: 466px;
    height: 500px;
    object-fit: cover;
}

.about-img2 img {
    z-index: 9999;
    position: absolute;
    top: 370px;
    height: 300px;
    object-fit: cover;
    width: 300px;
    right: 0;
    border: 7px solid #fff;
}

.about-pannel-text {
    color: #fff;
    display: inline-block;
    position: absolute;
    bottom: -15px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.about-pannel-text p {
    font-size: 54px;
    color: #e8124d;
    font-weight: 700;
}

.about-pannel-text span {
    display: block;
    font-size: 28px;
    color: #fff;
}

.about-heading {
    color: #fff;
}

.about-list {
    color: #fff;
}

.about-head {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-head img {
    width: 25px;
    object-fit: cover;
    margin-right: 14px;
}

.about-title-text span {
    color: #fff;
    font-size: 20px;
}

.about-heading h2 {
    font-size: 38px;
    line-height: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-heading p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    font-family: 'Myriad Pro';
}

.about-list ul li {
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
    margin-bottom: 22px;

}

.about-list ul li img {
    width: 18px;
    margin-right: 6px;
}

.about-read-btn {
    padding: 10px 22px;
    background: #e8124d;
    font-size: 18px;
    display: inline-block;
    margin-top: 18px;
    transition: 0.5s ease;
}

.about-read-btn:hover {
    color: #000;
}

/* end */

/* wcu css start here */
.wcu-sec {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #000;
    position: relative;
}

.wcu-box {
    background-color: #212428;
    padding: 30px 20px;
    height: 360px;
    transition: 0.5s ease;
}

.wcu-box:hover {
    background: #000;
    color: #fff;
}

.wcu-sec .about-head {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.wcu-heading h2 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin: 0px auto 45px auto;
    text-transform: capitalize;
}

.wcu-icon img {
    width: auto;
}

.wcu-icon {
    margin-bottom: 15px;
}

.wcu-text h2 {
   font-size: 23px;
    line-height: 29px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.wcu-text p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    color: #8e8f91;
    font-family: 'Poppins', sans-serif;
        text-transform: capitalize;
}
.right-arrow:before {
    content: " ";
    /* right: 0px;
    bottom: -1px; */
    right: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background: #e8124d;
    position: absolute;
}

.right-arrow::after {
    content: " ";
    /* right: 13px;
    bottom: 0; */
    right: 0;
    bottom: 0;
    width: 2px;
    height: 50px;
    background: #e8124d;
    position: absolute;
}

.left-arrow:before {
    content: "";
    position: absolute;
    transition: .3s;
    /* left: 13px;
    top: -1px; */
    left: 0;
    top: -1px;
    width: 50px;
    height: 2px;
    background: #e8124d;
}

.left-arrow::after {
    content: "";
    /* left: 13px;
    top: 0; */
    left: 0;
    top: 0;
    background: #e8124d;
    width: 2px;
    height: 50px;
    position: absolute;
    transition: .3s;
}

.bor-img {
    border-radius: 30px;
}

.right-arrow-side:before {
    content: " ";
    /* right: 0px;
    bottom: -1px; */
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background: #e8124d;
    position: absolute;
}

.right-arrow-side::after {
    content: " ";
    /* right: 13px;
    bottom: 0; */
    right: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    height: 50px;
    background: #e8124d;
    position: absolute;
}

.left-arrow-side:before {
    content: "";
    position: absolute;
    transition: .3s;
    /* left: 13px;
    top: -1px; */
    right: 0;
    top: -1px;
    width: 50px;
    height: 2px;
    background: #e8124d;
}

.left-arrow-side::after {
    content: "";
    /* left: 13px;
    top: 0; */
    right: 0px;
    top: 0;
    background: #e8124d;
    width: 2px;
    height: 50px;
    position: absolute;
    transition: .3s;
}
/*  end wcu css */


/* start gallery css */
.gallery-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #262626;
}

.gallery-wrap .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 18px;
}

.gallery-wrap .about-head {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    justify-content: center;
}

.gallery-item-full img {
    height: 300px;
    object-fit: cover;
}

.gallery-item-side img {
    height: 300px;
    object-fit: cover;
}
.inside {
    width: 48%;
    position: relative;
    z-index: 0;
    display: inline-block;
    margin: 16px 8px;
}

.inside p,
.inside2 p {
    font-size: 14px;
    font-weight: 600;
}

.inside-half {
    width: 23%;
    position: relative;
    z-index: 0;
    display: inline-block;
    margin: 16px 9px;
}

.inside-half div {
    width: 23%;
}

.inside img {
    height: 293px;
    object-fit: cover;
}

.inside-half img {
    height: 293px;
    object-fit: cover;
}

.zoom-box {

    /* margin-left: 60px;
  
      margin-bottom: 15px; */

    overflow: hidden;

    border-radius: 6px;

}

.zoom-box img {

    -webkit-transition: 0.6s;

    transition: 0.6s;

}

.zoom-box:hover img {

    -webkit-transform: scale(1.1);

    transform: scale(1.1);

}

.view-btn {
    padding: 14px 38px;
    background: #e8124d;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    transition: 0.5s ease;
}

.view-btn:hover {
    color: #000;
}

/*  */

/* test css start */
.test-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #000;
}

.test-wrap .about-head {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 25px;
    justify-content: center;
}

.test-box-img {
    background-color: #212428;
    padding: 30px;
}

.test-text h3 {
    color: #fff;
}

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

.test-item-img2 img {
    width: auto;

}

.test-text-box h3 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.test-text-box span {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.test-text-box {
    background-color: #212428;
    padding: 20px;
}

.test-item-img2 {
    margin-bottom: 18px;
}

.test-text-box p {
    color: #8e8f91;
    line-height: 24px;
    font-weight: 300;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;

}

.bottom-line {
    width: 100%;
    border-bottom: 2px solid #000;
    margin: 20px 0px;
}

.same-slide .col-lg-4 {
    display: inline-block;
    float: left;
}

.test-item-img2 {
    display: inline-block;
}

.same-slide .col-lg-8 {
    display: inline-block;
}

.testmonial-slider {
    position: relative;
}

.testmonial-slider .priv_arrow {
    position: absolute;
    right: 60px;
    width: 50px;
    height: 50px;
    background-color: #e8124d;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    cursor: pointer;
    z-index: 99;
}

.testmonial-slider .next_arrow {
    position: absolute;
    top: 0;
    right: 127px;
    width: 50px;
    height: 50px;
    background-color: #e8124d;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    cursor: pointer;
}

/* end */
/* blog css start */
.blog-sec {
    padding-top: 80px;
    padding-bottom: 60px;
    background-color: #262626;

}

.blog-sec .about-head {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 25px;
    justify-content: center;
}

.blog-box {
    background-color: #000;
    border-radius: 6px;
}

.blog-img {
    text-align: center;
}

.blog-img img {
    max-width: 306px;
    margin: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    /* margin-top: -20px; */
    height: 150px;
}

.blog-date {
    position: relative;
    background: #e8124d;
    padding: 8px 14px 8px 30px;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: -38px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
}

.blog-date:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 0px;
    border-right: 20px solid #a9002f;
    border-bottom: 20px solid transparent;
    left: 0px;
    top: 31px;
    transform: rotate(0deg);
    font-family: 'Poppins', sans-serif;
}

.blog-name {
    font-size: 11px;
    line-height: 17px;
    color: #e8124d;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.blog-text {
    padding: 20px;
}

.blog-head h2 {
    font-size: 15px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-head p {
    font-size: 12px;
    color: #b7b7b7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-head a {
    transition: 0.5s ease;
}

.blog-head a:hover {
    color: #e8124d !important;
}

.blog-sec .zoom-box {
    overflow: visible;
}

.gallery-slider .col-lg-4 {
    max-width: 100%;
}

.gallery-slider {
    position: relative;
}

.gallery-slider .priv_arrow {
    position: absolute;
    right: -47px;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: #e8124d;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    cursor: pointer;
}

.gallery-slider .next_arrow {
    position: absolute;
    top: 50%;
    left: -47px;
    width: 50px;
    height: 50px;
    background-color: #e8124d;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    cursor: pointer;
}

/* end */

/* start contact css */
.contact-wrap {
    background-image: url('../images/conatact-layer-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
}

.contact-title span {
    font-size: 16px;
    line-height: 22px;
    color: #d91e25;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.contact-title h2 {
    font-size: 40px;
    line-height: 22px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 35px;
}

.form-pannel {
    width: 500px;
}

.form-pannel h2 {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.form-pannel form {
    padding: 38px;
    border-radius: 6px;
}

.form-pannel input {
    width: 100%;
    height: 40px;
    margin-bottom: 25px;
    background-color: #f3f3f3;
    border: none;
    padding-left: 10px;
    font-family: "Poppins";
    outline: none;
    border-radius: 4px;
}

.form-pannel textarea {
    width: 100%;
    margin-bottom: 20px;
    background-color: #f3f3f3;
    border: none;
    outline: none;
    padding-top: 6px;
    padding-left: 12px;
    font-size: 16px;
    font-family: "Poppins";
    border-radius: 4px;
}

.form-btn {
    text-align: center;
}

.form-pannel p {
    margin-bottom: 0px;
}

.form-btn .sumbit-btn {
    padding: 10px 30px;
    background: #e8124d;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    border-radius: 6px;
    cursor: pointer;
    margin: 0px;
    color: #fff;
    width: 40%;
    transition: 0.5s ease;
}

.form-btn .sumbit-btn:hover {
    color: #000;
}

.form-btn a:hover {
    color: #fff;
}

/* end */

/********************************* start inner page css **********************/

/* start about banner  */
.inner-banner {
    position: relative;
}

.layer {
    background: #9f0b344d;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.inner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inner-img img {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.inner-text h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    text-transform: capitalize;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.mystory-sec {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #262626;
}


.detail h1 {
    font-size: 40px;
}

.mystory-text h2 {
    font-size: 40px;
    color: #fff;
}

.story-img-1 img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.story-img-2 img {
   	position: absolute;
    bottom: -87px;
    right: -20px;
    width: 300px;
    height: 260px;
    border: 4px solid #fff;
}

.mystroy-img img {
    height: 500px;
    object-fit: cover;
}

.about-inner-head {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-inner-title-text span {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
}

.about-inner-head img {
    width: auto;
    margin-right: 15px;
}

.mystory-text p {
    color: #fff;
    font-family: 'Myriad Pro';
    font-size: 16px;
}

.about-visit {
    padding: 100px 0px;
    background-image: url('../images/contact-new-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.about-achievement{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #000;
}
.achieve-text p{
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    font-family: 'Myriad Pro';
}
.visit-layer {
    background: rgba(0 0 0 / 66%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.visit-inner-text {
    position: relative;
    z-index: 99;
    text-align: center;
}

.visit-inner-text h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.visit-inner-text p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    max-width: 698px;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
}

.visit-btn {
    padding: 10px 20px;
    background-color: #e8124d;
    margin: 10px 0px;
    display: inline-block;
    font-size: 18px;
    transition: 0.5s ease;
}
.visit-btn:hover{
    color: #000;
}

/* end about  */

/* start gallery inner */
.gallery-inner-sec {
    background-color: #333;
    padding-top: 50px;
    padding-bottom: 50px;
}

.gall-inner-head h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.gallery-inner-sec .row {
    margin-bottom: 20px;
}

.img-wrapper img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

#image-gallery {
    padding-top: 60px;
    padding-bottom: 60px;
}

#gallery {
    background-color: #262626;
}

@media screen and (min-width: 991px) {
    #gallery {
        /* padding: 60px 30px 0 30px; */
    }
}

.img-wrapper {
    position: relative;
    margin-top: 15px;
}

.img-wrapper img {
    width: 100%;
}

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    cursor: pointer;
}

.img-overlay i {
    color: #fff;
    font-size: 3em;
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#nextButton:hover {
    opacity: 0.7;
}

#overlay img {
    margin: 0;
    width: 80%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 5%;
}
ul.slick-dots {
    display: none !important;
}
span.wpcf7-spinner {
    position: absolute !important;
}
.contact-info {
    text-align: center;
}
div#overlay i {
    font-size: 29px;
}

@media screen and (max-width: 1250px) {
    .header-top-link {
        display: flex;
        align-items: center;
        justify-content: end ;
        padding: 10px;
        margin-left: 0 ;
    }
}

@media screen and (max-width: 1280px){
	.header-top-link {
    margin-left: 200px;
	}
}

@media screen and (max-width: 991px){
	.header-top-link {
    	margin-left: 0px;
	}
}


@media only screen and (min-width: 700px){
   #menu-primary-menu li {
        text-align: center;
        position: relative;
        padding: 9px 8px;
    }
    .nav-wrap>nav>ul {
        margin-left: 123px;
    }
}
@media screen and (min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
    #menu-primary-menu li {
        text-align: center;
        position: relative;
        padding: 9px 25px;
    }
    .nav-wrap>nav>ul {
        margin-left: 200px;
    }
    
}



@media screen and (min-width: 768px) {
      #overlay img {
        width: 60%;
    }
    #nextButton {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#prevButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #prevButton {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

#exitButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #exitButton {
        font-size: 3em;
    }
}

/* end gallery inner */

/* start inner blog sec */

section.blog-inner-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #212428;
}

.blog-inner-title {
    color: #fff;
}

.blog-inner-main {
    -webkit-box-shadow: 0px 0px 22px -10px rgb(0 0 0 / 29%);
    -moz-box-shadow: 0px 0px 22px -10px rgba(0, 0, 0, 0.29);
    box-shadow: 0px 0px 22px -10px #e8124d54;
    background: #000;
    padding: 20px 22px 20px;
    position: relative;
    margin-bottom: 30px;
}

.cus-blog-box-text p a {
    background: #e8124d;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
}

.blog-inner-main:before {
    content: '';
    background: #e8124d;
    width: 10px;
    height: 120px;
    position: absolute;
    right: 0px;
    top: 25%;
}

.cus-blog-box-text h2 {
    font-size: 24px;
    color: #e8124d;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.cus-blog-box-text h4 {
    font-size: 24px;
    color: #2bafc5;
}

.cus-blog-box-text span {
    color: #fff;
    font-size: 17px;
    display: block;
    border-bottom: 1px solid #fff;
    padding: 0px 0 12px;
    margin-bottom: 15px;
}

.cus-blog-box-text p {
    font-size: 18px;
    color: #fff;
    line-height: 30px;
}

.blog-inner-title h2 {
    font-size: 30px;
}

.blog-inner-date {
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
}

.blog-inner-user {
    color: #fff;
    font-size: 16px;
}

.blog-inner-title i {
    margin-right: 5px;
}

.bg-detail-sec {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #262626;
}

.bg-detail-head h2 {
    color: #fff;
    margin: 16px 0px;
}

.bg-detail-head p {
    color: #fff;
    line-height: 28px;
    font-size: 16px;
}

.bg-detail-head i {
    color: #e8124d;
}

.side-sec h3 {
    background: #e8124d;
    padding: 10px;
    color: #fff;
}

.user-box {
    margin: 20px 0px;
}

.side-sec-list ul li:before {
    content: "\2022";
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 15px;
}

.side-sec-list ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    display: flex;
}

.side-sec-list ul li a:hover {
    color: #e8124d;
}

.blog-detail-img img {
    height: 350px;
    object-fit: cover;
}

/* end inner blog sec */

/* test inner sec */
.test-main-item{
    background: #262626;
    color: #fff;
    padding: 10px
}
.test-inner-wrap{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #000;
    margin-bottom: 50px;
}
.test-img-text h3{
    font-size: 23px;
    margin-top: 12px;
    font-weight: 700;
}
.tes-inner-text h2{
    font-size: 26px;
    margin-top: 8px;
    font-weight: 700;
}
.tes-inner-text p{
    color: #8e8f91;
}
.test-inner-box{
    box-shadow: 0px 0px 6px #000;
}
.test-inner-box{
    box-shadow: 0px 0px 6px #000;
    overflow: hidden;
    transition: 0.5s ease;
}
.test-inner-box:hover {
    /* transform: scale(1.5); */
    -webkit-transform: translate(0px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(0px, -10px);
    -webkit-box-shadow: 0 20px 40px rgb(0 0 0 / 8%);
    
}
.test-inner-wrap .row{
    margin-bottom: 20px;
}
.test-inner-wrap .row{
    margin-bottom: 20px;
}

.test-inner-quote img{
    width: 60px;
}
.test-quote-text p{
    font-weight: 600;
}
.test-review{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.review-img img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #e8124d;
    border-radius: 100%;
}
.review-text{
    margin-left: 10px;
}
.review-text h3{
    margin-bottom: 0px;
    color: #fff;
}
.review-text p{
    margin-bottom: 0px;
    color: #fff;
}
/* start contact */

/*	Contact Start Here 
------------------------------------------------- */
.ct-inner-box {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* .contact-info {
    border: 1px solid #ededed;
    float: left;
    width: 100%;
} */
.contact-info .contact-info-item {
    width: 30%;
    padding: 28px 10px;
    margin: 0px 10px;
    /* float: left; */
    display: inline-block;
    text-align: center;
    min-height: 234px;
    vertical-align: top;
    background-color: #262626;
}

.contact-info .contact-info-item span {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #000;
    text-align: center;
    color: #fff;
    font-size: 24px;
    display: inline-flex;
    vertical-align: top;
    position: relative;
    z-index: 1;
    padding: 15px;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.contact-info .contact-info-item span i {
    font-size: 25px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.contact-info .contact-info-item span i.fa.fa-mobile {
    font-size: 56px;
}

.contact-info .contact-info-item span i.fa.fa-envelope {
    font-size: 25px;
}

.contact-info .contact-info-item .title {
    font-size: 19px;
    padding-top: 15px;
    color: #fff;
}

.contact-info .contact-info-item p,
.contact-info .contact-info-item a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #8e8f91;
    margin: 0;
    padding: 0;
}

.contact-info .contact-info-item p,
.contact-info .contact-info-item a:hover {}

.contact-info .contact-info-item:hover span {
    background-color: #e8124d;
}

.contact-info .contact-info-item:hover a {
    color: #e8124d;
}

.form-sec.contact-sec .form-box {
    padding-left: 60px;
}

.form-sec.contact-sec .form-box .form-group {
    margin-top: 15px;
}

.form-sec.contact-sec .form-box .form-group button.btn {
    margin-top: 14px;
}



.form-sec .form-group .form-control {
    box-shadow: 0px 0px 4px 1px #edeff0;
    outline: none;
    border: none;
    border-radius: 0;
    color: #5f6061;
    font-size: 19px;
    padding: 10px 30px;
    height: auto;
}

.form-box {
    margin-left: 35px;
}

.form-box .h-title {}

.form-box .h-title::before {
    margin: 0;
    left: 55px;
}

.form-box .h-title::after {
    margin: 0;
}

.form-box .form-control {
    box-shadow: 0px 0px 4px 1px #edeff0;
    outline: none;
    border: none;
    border-radius: 0;
    color: #5f6061;
    font-size: 16px;
    padding: 10px 15px;
    height: auto;
}

.contact-inner-form {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #000;
    margin-bottom: 50px;
}

/*	Contact End Here
------------------------------------------------- */

/* end inner page css */
/* start footer css */
footer {
    background-color: #000;
    padding-top: 80px;
}

.social-bg {
    position: relative;
}

.social-bg-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-58%, -50%);
}

.f-bottom-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.left-line {
    width: 66px;
    height: 2px;
    background: #e8124d;
}

.center-dot {
    width: 10px;
    height: 10px;
    margin: 0px 6px;
    background: #e8124d;
    border-radius: 100%;
}

.right-line {
    width: 66px;
    height: 2px;
    background: #e8124d;
}

.social-bg img {
    width: 90%;
}

.social-bg-text img {
    height: 150px;
    width: 150px;
    object-fit: cover;
    display: block;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-social-item {
    border: 2px solid #e8124d;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    padding-top: 2px;
    text-align: center;
    margin: 0px 10px;
}

.f-social-item i{
    transition: 0.5s ease;
}

.f-social-item i:hover{
    color: #e8124d;
}


.f-about h2 {
    font-size: 25px;
    font-weight: 700;
    color: #e8124d;
}

.f-about p {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    font-weight: 300;
}

.f-contact h2 {
    font-size: 25px;
    font-weight: 700;
    color: #e8124d;
}

.f-ct-link {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.f-icon i {
    margin-right: 10px;
    border: 2px solid #e8124d;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 100%;
    padding-top: 5px;
    transition: 0.5s ease;
}
.f-icon i:hover{
    color: #e8124d;
}

.f-text p {
    margin-bottom: 0px;
}

.f-text p a {
    transition: 0.5s ease;
}

.f-text a:hover {
    color: #e8124d;
}

.f-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-menu>ul>li {
    margin-left: 35px;
}

.f-menu>ul>li>a {
    font-size: 18px;
    color: #fff;

}

.f-menu>ul>li>a:hover {
    font-size: 18px;
    color: #e8124d;

}

.copyright {
    padding-bottom: 30px;
}

.copyright p {
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
}

/* end footer */
.mtoggle {
  display: none;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #e8124d;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}


/* start media queries here */
@media only screen and (max-width: 1280px){
    .nav-wrap {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 8% 100%);
    margin-left: -7px;
}
.bg-1 {
    transform: skewX(40deg);
    margin-right: -13px;
}
.bg-2 {
    transform: skewX(40deg);
    right: 42px;
}
.bg-3 {
    transform: skewX(40deg);
    right: 14px;
}

}


 

@media screen and (min-width: 1160px) {
    .nav-wrap>nav>ul>li{
            margin-left: 11px;
    }
    .logo {
        padding: 0px 80px;
    }
    .top-menu {
        margin-right: 14px;
    }


}




@media only screen and (max-width: 1199px){
    .wcu-box {
        background-color: #212428;
        padding: 30px 20px;
        height: 440px;
        transition: 0.5s ease;
    }
    
    .about-pannel-text {
    color: #fff;
    display: inline-block;
    position: absolute;
    bottom: -97px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    }
    
    .about-pannel-text span {
    display: block;
    font-size: 17px;
    color: #fff;
    }
    .about-pannel-text span {
    display: block;
    font-size: 17px;
    color: #fff;
    }
    
    
}   
@media only screen and (max-width: 1140px){
    .logo{
    padding: 0px 80px;
    } 
    .black-red-bg{
    margin-left: 41px;
    }
    .inside{
    width: 45%;
    }
    .inside-half{
    width: 21%;
    }
    .about-img img {
    width: 395px;
    height: 420px;
    }
    .about-img2 img {
    top: 318px;
    height: 275px;
    width: 275px;
    }
    .about-pannel-text p {
    font-size: 50px;
    }
    .about-pannel-text span {
    font-size: 20px;
    }
    .wcu-box {
    height: 100%;
    }
    .test-box-img{
    height: 375px;
    }
    .test-text{
    margin-top: 28px;
    }
    
    .detail h1 {
    font-size: 38px;
    }
    .top-menu {
        margin-right: 0;
    }

}
@media only screen and (max-width: 1060px){
    .nav-wrap>nav>ul {
        margin-left: 56px;
    }
}
@media only screen and (max-width: 1024px){
    .logo {
    padding: 0px 40px;
}
    .black-red-bg {
    margin-left: 50px;
}
.bg-1 {
    transform: skewX(34deg);
    margin-right: -10px;
}
.bg-2 {
    transform: skewX(34deg);
    right: 49px;
}
.bg-3 {
    transform: skewX(35deg);
    right: 20px;
}
.nav-wrap {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%);
    margin-left: -7px;
}
.nav-wrap>nav>ul {
    margin-left: 45px;
}
    .gallery-slider .next_arrow {
    top: inherit;
    bottom: -50px;
    left: 45%;
    width: 40px;
    height: 40px;
    line-height: 44px;
}
    .gallery-slider .priv_arrow {
    right: 45%;
    top: inherit;
    bottom: -50px;
    width: 40px;
    height: 40px;
    line-height: 44px;
}
    .blog-sec{
    padding-bottom: 80px;
    }
}


@media only screen and (max-width: 991px){
    .banner-text h1 {
    color: #fff;
    font-size: 53px;
    line-height: 64px;
    max-width: 627px;
    }
    
    .top-menu {
    display: flex;
    margin-right: 0px;
    }
    
    .header-top-link {
    padding: 10px 0px;
    }
    
    .link-text p {
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    }      
    
    .about-sec .col-md-6 {
    flex: 100%;
    max-width: 100%;
    }
    .about-pannel {
    margin-bottom: 68px;
    }
    .bg-layer img {
    height: 400px;
    object-fit: cover;
    }
    
    .about-img img {
   width: 86%;
    height: 470px;
    object-fit: cover;
    }
    
    .about-img2 img {
    top: 202px;
    height: 360px;
    width: 60%;
    }
    
    .about-pannel-text {
    color: #fff;
    display: inline-block;
    position: absolute;
    bottom: -182px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    }
    
    .about-sec  .about-head {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 118px;
    }
    
     .about-heading h2 {
    font-size: 38px;
    line-height: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 35px;
    }
    
    .wcu-text h2 {
    font-size: 21px;
    line-height: 32px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    }
    .wcu-box {
    background-color: #212428;
    padding: 40px 16px 20px 21px;
    transition: 0.5s ease;
    }
    .test-box-img {
    display: flex;
    align-items: center;
    position: relative;
    }
    .test-text {
    margin: auto;
    }
    
    .test-item-img2 {
    /* display: inline-block; */
    position: absolute;
    /* bottom: 0; */
    right: 30px;
    }
    .gallery-slider .next_arrow {
    top: inherit;
    bottom: -50px;
    left: 42%;
    width: 40px;
    height: 40px;
    line-height: 44px;
    }
    .gallery-slider .priv_arrow {
    right: 43%;
    top: inherit;
    bottom: -50px;
    width: 40px;
    height: 40px;
    line-height: 44px;
    }
    .social-bg-text {
    top: 36%;
    left: 50%;
    }
    .social-bg-text img {
    height: 120px;
    width: 120px;
    display: inline-block;
    }
    .f-bottom-line {
    margin-bottom: 15px;
    margin-top: -16px;
    }
    .f-social-item {
    width: 28px;
    height: 28px;
    padding-top: 1px;
    margin: 0px 4px;
    }
    .testmonial-slider .priv_arrow {
    top: -48px;
    right: 60px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    }
    .testmonial-slider .next_arrow {
    top: -48px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    }
    .story-img-1 img {
    width: 100%;
    }
    .story-img-2 img {
    width: 83%;
    }
    
    .blog-inner-main .col-md-4 {
    flex: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    }
    .contact-info .contact-info-item {
    width: 100%;
    margin: 20px 10px;
    }
    
    .wcu-sec .col-md-4 {
    flex: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    }
    .detail h1 {
    font-size: 32px;
    }
    
    .side-sec-list ul li {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    }
    
    .link-icon {
        margin-right: 4px;
    }
    
    .bg-2 {
    transform: skewX(35deg);
    right: 44px;
    }
}



@media only screen and (max-width: 980px){
    .top-menu{
    margin-right: 5px;
    }
    .top-links {
    margin-right: 10px;
    }
    .link-text p{
    font-size: 10px;
    }
    .nav-wrap>nav>ul>li{
    margin-left: 10px;
    }
    .bg-1 {
    transform: skewX(33deg);
    margin-right: -6px;
    }
    .bg-2 {
    transform: skewX(33deg);
    right: 53px;
    }
    .bg-3 {
    transform: skewX(33deg);
    right: 23px;
    }
    .banner-wrap .slick-dots {
    display: none !important;
    }
    .about-sec .col-md-6 {
    flex: 100%;
    max-width: 100%;
    }
    .about-img img {
    width: 86%;
    height: 459px;
    object-fit: cover;
    }
    .bg-layer img {
    height: 400px;
    object-fit: cover;
    }
    .about-img2 img {
    top: 249px;
    height: 275px;
    width: 60%;
    }
    .about-pannel {
    margin-bottom: 68px;
    }
    .wcu-sec .col-md-4 {
    flex: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    }
    .test-box-img {
    display: flex;
    align-items: center;
    position: relative;
    }
    .test-item-img2 {
    /* display: inline-block; */
    position: absolute;
    /* bottom: 0; */
    right: 30px;
    }
    .test-text h3 {
    font-size: 70px;
    }
    .test-text{
    margin: auto;
    }
    .test-wrap .slick-dots {
    display: none !important;
    }
    .blog-sec .slick-dots {
    display: none !important;
    }
    .gallery-slider .next_arrow {
    left: 44%;
    }
    .gallery-slider .priv_arrow {
    right: 44%;
    }
    .form-btn .sumbit-btn {
    padding: 10px 20px;
    width: 36%;
    }
    .social-bg-text img {
    height: 120px;
    width: 120px;
    display: inline-block;
    }
    .social-bg-text {
    top: 36%;
    left: 50%;
    }
    .f-bottom-line {
    margin-bottom: 15px;
    margin-top: -16px;
    }
    .left-line {
    width: 42px;
    height: 2px;
    }
    .right-line {
    width: 42px;
    height: 2px;
    }
    .f-social-item {
    width: 28px;
    height: 28px;
    padding-top: 1px;
    margin: 0px 4px;
    }
    .mystory-sec .col-6 {
    flex: 100%;
    max-width: 100%;
    }
    .story-img-1 img{
    width: 100%;
    }
    .story-img-2 img{
    width: 45%;
    }
    .about-achievement .col-6{
        flex: 100%;
        max-width: 100%;
    }
    .visit-inner-text h2{
        font-size: 33px;
    }
    .achieve-img img {
    height: 324px;
    object-fit: cover;
    }
    .blog-inner-main .col-md-4 {
    flex: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    }
    .blog-inner-main:before{
    top: 50%;
    }
    .contact-inner-form{
    flex: 100%;
    max-width: 100%;
    }
    .test-inner-wrap .col-4 {
    flex: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    }
    .test-inner-quote {
    bottom: 70px;
    }
    .contact-info .contact-info-item{
    width: 100%;
    margin: 20px 10px;
    }
    .form-pannel{
    width: 100%;
    }
    .testmonial-slider .next_arrow {
    top: -48px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    }
    .testmonial-slider .priv_arrow {
    top: -48px;
    right: 60px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    }
    .bg-detail-sec .col-9 {
    flex: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    }
    .bg-detail-sec .col-3 {
    flex: 100%;
    max-width: 100%;
    }
    .side-sec h3{
    width: 32%;
    }
}






@media only screen and (max-width: 960px){
    .banner-text h1{
    font-size: 50px;
    } 
    .top-links .link-text {
        display: none;
    }
}



@media only screen and (max-width: 840px){
    .header-top-link {
    justify-content: end;
    }
    .link-text p {
    display: none;
    }
    .nav-wrap>nav>ul>li {
    margin-left: 4px;
    font-size: 16px;
    }
    .nav-wrap {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 7% 100%);
    margin-left: 6px;
    }
    .bg-1 {
    transform: skewX(26deg);
    margin-right: -8px;
    }
    .bg-3 {
    transform: skewX(27deg);
    right: 24px;
    }
    .bg-2 {
    transform: skewX(27deg);
    right: 58px;
    }
    .banner-text h1 {
    font-size: 46px;
    line-height: 58px;
    }
    .banner-height {
    height: 500px !important;
    }
    
    .detail h1 {
    font-size: 27px;
    line-height: 41px;
    }
}
@media only screen and (max-width: 800px){
    .nav-wrap{
        display: none;
    }
    .nav-wrap ul{
        flex-direction: column;
    } 
    .nav-wrap {
    position: absolute;
    top: 118px;
    height: auto;
    z-index: 999;
    clip-path: inherit;
    margin-left: 0px;
    }
    #menu-primary-menu>li:hover a::before,
    #menu-primary-menu>li:hover a::after,
    #menu-primary-menu>li.active a::before,
    #menu-primary-menu>li.active a::after {
            opacity: 1;
            display: none;
        }
    .sticky .nav-wrap {
    position: absolute;
    top: 75px;
    }
    .bottom-menu{
        align-items: center;
        justify-content: space-between;
    }
    .black-red-bg{
        display: none;
    }
    .sticky .logo {
    background-color: transparent;
    margin-top: 0px;
    }
    .mtoggle{
      display: inline-block;
      padding-right: 70px;
  }
  #menu-primary-menu li{
      text-align: left;
  }
  .nav-wrap>nav>ul>li{
    font-size: 18px;
  }
  .inside {
    width: 100%;
    }
    .inside-half {
    width: 45%;
    }

}
@media only screen and (max-width: 768px){
    .about-heading h2{
    font-size: 32px;
    line-height: 46px;
    }
    .wcu-heading h2{
    font-size: 32px;
    line-height: 46px;  
    }
    .test-text h3 {
    font-size: 65px;
    }
    
    .banner-text h1 {
    font-size: 38px;
    line-height: 58px;
    }
    .story-img-1 img{
    height: auto;
    }
    section.mystory-sec .col-6.abb {
    width: 100% !important;
    }
    .achieve-img.zoom-box {
    /* float: right; */
    width: 100% !important;
    margin-left: auto;
    }
    .about-inner-head {
    display: inherit;
    }
    .about-inner-head img {
    display: none;
    }
}

@media only screen and (max-width: 767px){
    .gallery-slider .next_arrow {
    left: 40%;
    }
    
    .gallery-slider .priv_arrow {
    right: 40%;
    }
    .social-bg {
    position: relative;
    display: none;
    }
    
    .f-menu>ul>li>a {
    font-size: 16px;
    color: #fff;
    }
}




@media only screen and (max-width: 734px){
    .gallery-slider .next_arrow {
    left: 43%;
    }
    .gallery-slider .priv_arrow {
    right: 40%;
    }
    .social-bg img {
    width: 58%;
    }
    .social-bg-text {
    top: 36%;
    left: 33%;
    }
    .social-bg-text img {
    height: 180px;
    width: 180px;
    }
    .f-menu>ul>li {
    margin-left: 24px;
    white-space: nowrap;
    }
    .f-social-link {
    margin-bottom: 20px;
    }
    .test-item-img2 img {
    width: 95px;
    }
    .test-text-box h3 {
    font-size: 28px;
    }
    .same-slide .col-lg-4{
    float: inherit;
    flex: 100%;
    max-width: 100%;
    }
    .test-box-img{
    display: inherit;
    }
    .same-slide .col-lg-8{
    flex: 100%;
    max-width: 100%; 
    }
    .test-box-img{
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .test-item-img img{
    border-radius: 100%;
    height: 100px;
    width: 100px;
    border: 2px solid #e8124d;
    }
    .test-text{
    margin-left: 20px;
    }
    .test-box-img {
    height: 139px;
    }
    .test-text h3 {
    font-size: 40px;
    }
    .banner-height {
    height: 400px !important;
    }
    .banner-text h1 {
    font-size: 33px;
    line-height: 48px;
    max-width: 428px;
    }
    .banner-slider .next_arrow {
    width: 40px;
    height: 40px;
    line-height: 45px;
    }
    .banner-slider .priv_arrow {
    width: 40px;
    height: 40px;
    line-height: 44px;
    }
    .test-inner-quote img {
    width: 32px;
    }
    .cus-blog-box-text h2 {
    font-size: 20px;
    }
    .bg-detail-head h2{
    font-size: 24px;
    }
    .inner-img img{
    height: 250px;
    }
    footer {
    background-color: #000;
    padding-top: 40px;
    }
}


@media only screen and (max-width: 667px){
    .f-links{
        flex-direction: column;
        align-items: inherit;
    }
    .f-menu>ul>li{
        margin-bottom: 15px;
    }
    .visit-inner-text h2 {
    font-size: 28px;
    }
    .visit-inner-text p {
    font-size: 14px;
    }
    .inner-text h1{
    font-size: 29px;
    font-weight: 700;
    }
    .side-sec h3 {
    width: 42%;
    }
    
    .detail h1 {
    font-size: 22px;
    line-height: 37px;
    }
    .wpcf7-spinner{
        position: absolute !important;
    }
}





@media only screen and (max-width: 600px){
    .banner-text h1 {
    font-size: 24px;
    line-height: 46px;
    }
    .btn-5 {
    padding: 10px 15px;
    font-size: 15px;
    }
    .about-heading h2 {
    font-size: 30px;
    line-height: 43px;
    }
    .test-item-img img {
    height: 90px;
    width: 90px;
    }
    .test-text h3 {
    font-size: 34px;
    }
    .about-inner-title-text span {
    font-size: 34px;
    }
    .visit-inner-text h2 {
    font-size: 28px;
    max-width: 500px;
    margin: 0px auto 20px auto;
    }
    .visit-inner-text p {
    font-size: 14px;
    margin: auto;
    max-width: 500px;
    }
}

@media only screen and (max-width: 599px){
    .blog-img img {
    max-width: 85%;
    margin: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    /* margin-top: -20px; */
    height: auto;
    }
    .banner-slider .priv_arrow {
        right: 16px;
    }
    .banner-slider .next_arrow{
        right: 16px;
    }
}

@media only screen and (max-width: 568px){
    .inside {
    width: 98%;
    }
    .contact-info .contact-info-item {
    margin: 12px 0px;
    }
    .form-pannel .col-6 {
    flex: 100%;
    max-width: 100%;
    }
    .form-btn .sumbit-btn {
    padding: 10px 20px;
    width: auto;
    }
    footer {
    background-color: #000;
    padding-top: 40px;
    }
    
    .banner-height {
    height: 360px !important;
    }
    
    .f-menu>ul>li {
    margin-left: 0px;
    white-space: nowrap;
    }
    
    .about-visit {
    padding: 35px 0px;
    }
    
    .visit-inner-text h2 {
    font-size: 24px;
    }
    
    .visit-inner-text p {
    max-width: 440px;
    }
    
}


@media only screen and (max-width: 480px){
    .about-img img{
        height: 300px;
    }
    .about-pannel {
        margin-bottom: 38px;
    }
    .about-sec .about-head{
        margin-top: 0;
    }
    .gallery-slider .priv_arrow {
        right: 37%;
    }
        .gallery-slider .next_arrow {
        left: 41%;
    }
    .about-pannel-text{
        bottom: -11px;
    }
    .about-img2 img {
        top: 185px;
        height: auto;
    }
    .banner-height {
    height: 300px !important;
    }
    .banner-text {
    padding-top: 20px;
    }
    .banner-slider .priv_arrow {
    top: 37%;
    }
    .banner-slider .next_arrow {
    top: 52%;
    }
    .about-heading h2 {
    font-size: 24px;
    line-height: 38px;
    }
    .wcu-heading h2 {
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 10px;
        margin-top: 11px;
    }
    .test-text-box h3 {
    font-size: 24px;
    }
    .test-item-img2 img {
    width: 56px;
    }
    .top-links {
    margin-right: 0px;
    }
    .inner-img img {
    height: 200px;
    }
    .about-inner-title-text span {
    font-size: 24px;
    }
    .visit-inner-text h2 {
    font-size: 24px;
    }
    .gall-inner-head h2 {
    font-size: 34px;
    }
    .form-pannel h2{
    font-size: 28px;
    line-height: 16px;
    }
    .side-sec h3 {
    width: 45%;
    }
    
    .detail h1 {
    font-size: 19px;
    line-height: 30px;
    }

}


@media only screen and (max-width: 414px){
    
    .inner-text h1 {
    font-size: 21px;
    line-height: 33px;
    }
    .read-button {
    margin-top: 20px;
    }
    .btn-5 {
    padding: 10px 14px;
    font-size: 12px;
    }
    .ready-tt {
    font-size: 17px;
    line-height: 58px;
    }
    .banner-text h1 {
    font-size: 19px;
    line-height: 34px;
    max-width: 272px;
    }
    .top-menu{
    display: none;
    }
    .about-pannel-text span {
    font-size: 17px;
    }
    .inside-half {
    width: 96%;
    }
    .testmonial-slider .next_arrow{
    right: 110px;
    }
    .test-item-img2 img {
    width: 44px;
    }
    .gallery-slider .priv_arrow {
    right: 38%;
    }
    .gallery-slider .next_arrow {
    left: 40%;
    }
    .form-pannel h2{
    font-size: 25px;
    line-height: 18px;
    margin-bottom: 30px;
    }
    .form-btn .sumbit-btn{
    font-size: 12px;
    }
    .f-about h2{
    font-size: 22px;
    }
    .social-bg-text img {
    height: 140px;
    width: 140px;
    }
    footer{
    padding-top: 58px;
    }
    .visit-inner-text h2 {
    font-size: 20px;
    }
    .visit-inner-text p {
    font-size: 11px;
    }
    .visit-btn{
    font-size: 16px;
    }
    .inner-img img {
    height: 180px;
    }
    .cus-blog-box-text p {
    font-size: 16px;
    }
    .bg-detail-head h2 {
    font-size: 18px;
    }
    .side-sec h3 {
    width: 42%;
    font-size: 20px;
    }
    .copyright p{
    font-size: 14px;
    }
    .mtoggle {
    padding-right: 35px;
    }
    .logo {
    padding: 0px 28px;
    }
}



@media only screen and (max-width: 384px){
    .banner-text h1 {
    font-size: 19px;
    line-height: 34px;
    max-width: 272px;
}
    .banner-height {
    height: 232px !important;
    }
    .banner-slider .priv_arrow {
    top: 31%
    }
    .banner-slider .next_arrow {
    top: 53%;
    }
    .about-pannel-text span {
    font-size: 16px;
    }
    .about-pannel-text p {
    font-size: 46px;
    }
    .about-heading h2 {
    font-size: 20px;
    line-height: 33px;
    }
    .wcu-heading h2 {
    font-size: 20px;
    line-height: 33px;
    }
    .test-item-img img {
    height: 70px;
    width: 70px;
    }
    .test-text h3 {
    font-size: 30px;
    }
    .test-text-box h3 {
    font-size: 20px;
    }
    .test-text-box span {
    font-size: 12px;
    line-height: 22px;
    }
    .logo {
    padding: 0px 20px;
    }
    .mtoggle {
    padding-right: 34px;
    }
    
    .inner-text h1 {
    font-size: 17px;
    line-height: 27px;
    }

}


@media only screen and (max-width: 360px){
    .logo {
    padding: 0px 20px;
    }
    .banner-height {
    height: 200px !important;
    }
    .ready-tt {
    font-size: 15px;
    line-height: 40px;
    }
    .banner-text h1 {
    font-size: 17px;
    line-height: 28px;
    max-width: 250px;
    }
    .about-pannel-text span {
    font-size: 14px;
    }
    .wcu-text h2 {
    font-size: 26px;
    line-height: 42px;
    }
    .form-pannel h2 {
    font-size: 20px;
    line-height: 10px;
    margin-bottom: 28px;
    }
    .contact-title span{
    margin-bottom: 18px;
    }
    .form-btn .sumbit-btn {
    width: 50%;
    }
    .social-bg-text img {
    height: 120px;
    width: 120px;
    }
    .cus-blog-box-text h2 {
    font-size: 16px;
    }
    .cus-blog-box-text span {
    font-size: 12px;
    }
    .cus-blog-box-text p {
    font-size: 14px;
    }
    .cus-blog-box-text p a {
    padding: 10px 15px;
    }
    .side-sec h3 {
    font-size: 18px;
    }
    .inner-text h1 {
    font-size: 16px;
    line-height: 26px;
    }
    .inner-img img {
    height: 136px;
    }
    .visit-inner-text h2 {
    font-size: 16px;
    }
    .f-about h2 {
    font-size: 17px;
    }
}


@media only screen and (max-width: 320px){
    .logo {
    padding: 0px 10px;
    }
    .banner-slider .priv_arrow {
    width: 35px;
    height: 35px;
    line-height: 39px;
    }
    .banner-slider .next_arrow {
    width: 35px;
    height: 35px;
    line-height: 44px;
    }
    .mtoggle {
    padding-right: 34px;
    }
    .banner-text h1 {
    font-size: 17px;
    line-height: 25px;
    max-width: 225px;
    }
    .btn-5 {
    padding: 8px 10px;
    }
    .read-button {
    margin-top: 12px;
    }
    .about-pannel-text p {
    font-size: 42px;
    }
    .about-pannel-text span {
    font-size: 12px;
    }
    .about-read-btn {
    padding: 8px 15px;
    font-size: 14px;
    }
    .wcu-heading h2{
    margin: 0px auto 30px auto;
    }
    .testmonial-slider .priv_arrow {
    top: -40px;
    right: 22px;
    width: 35px;
    height: 35px;
    line-height: 38px;
    }
    .testmonial-slider .next_arrow {
    right: 63px;
        top: -40px;
    width: 35px;
    height: 35px;
    line-height: 38px;
    }
    .gallery-slider .next_arrow {
    left: 38%;
    width: 35px;
    height: 35px;
    line-height: 38px;
    }
    .gallery-slider .priv_arrow {
    width: 35px;
    height: 35px;
    line-height: 38px;
    }
    .form-btn .sumbit-btn {
    padding: 10px 14px;
    width: 56%;
    }
    .social-bg img {
    width: 68%;
    }
    .social-bg-text {
    top: 36%;
    left: 38%;
    text-align: center;
    }
    .side-sec h3 {
    font-size: 16px;
    }
    .side-sec-list ul li {
    font-size: 14px;
    line-height: 26px;
    }
    .about-inner-title-text span {
    font-size: 20px;
    }
    .visit-btn {
    font-size: 15px;
    padding: 8px 15px;
    }
}


/* end */

figure.story-img-1 {
    position: relative;
}

section.mystory-sec .col-6.abb {
    width: 40%;
    float: left;
    margin-right: 45px;
    margin-bottom: 47px;
}
section.mystory-sec .col-6{
	width: 100%;
    max-width: 100%;
}
section.mystory-sec .row {
    display: initial !important;
}
.achieve-img.zoom-box {
    float: right;
    width: 50%;
    margin-left: 7px;
}
.h3, h3 {
    font-size: 1.75rem;
    color: #fff;
    font-family: 'Myriad Pro';
}
ol li {
    color: #fff;
}
ul li {
    color: #fff;
    margin-bottom: 17px;
}


@media only screen and (max-width: 1199px){
    section.mystory-sec .col-6.abb {
    margin-right: 69px;
    margin-bottom: 75px;
    }
}
@media only screen and (max-width: 400px){
    .logo {
        padding: 0px 18px;
    }
    .logo img {
        /* padding-top: 22px; */
        display: block;
        width: 116px;
        height: 130px;
        margin-top: -7px;
        object-fit: cover;
        transition: 0.5s ease;
    }
}
@media screen and (max-width: 768px) {
    .sticky .logo img {
        margin-top: -4px;
    }
}



.bg-detail-side {
    background-color: #000;
    padding: 20px 20px;
    position: sticky;
    top: 80px;
}
.ab-text-none {
    display: none;
}
.wpcf7-response-output {
    color: #fff !important;
}


.copyright a:hover {
    color: #e8124d;
}
@media screen and (max-width: 575px){
	#overlay img {
   width: 90%;
    padding: 2%;
	}
	div#overlay i {
    font-size: 19px;
	}
}
