/* sarangus989@gmail.com */

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    border-radius: 10px;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #707070;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #000000;
    background-image: -webkit-linear-gradient(90deg,
            transparent,
            #3124a5 50%,
            transparent,
            transparent)
}

#scrollableDiv {
    scroll-behavior: smooth;
}

@font-face {
    font-family: Inter-Regular;
    src: url(../assets/fonts/inter/Inter-Regular.ttf);
}

@font-face {
    font-family: Alata-Regular;
    src: url(../assets/fonts/Alata-Regular.ttf);
}

@font-face {
    font-family: ArchivoBlack-Regular;
    src: url(../assets/fonts/ArchivoBlack-Regular.ttf);
}

@font-face {
    font-family: BebasNeue-Regular;
    src: url(../assets/fonts/BebasNeue-Regular.ttf);
}

/* @font-face {
    font-family: Baskervville-Regular;
    src: url(../assets/fonts/Baskervville-Regular.ttf);
} */

@font-face {
    font-family: ProstoOne-Regular;
    src: url(../assets/fonts/ProstoOne-Regular.ttf);
}

::-moz-selection {
    color: rgb(255, 255, 255);
    background: #000000;
}

::selection {
    color: rgb(255, 255, 255);
    background: #000000;
}

h4,
h5 {

    font-family: Inter-Regular;
    color: #505050;
}

h3 {
    font-family: ProstoOne-Regular;
    color: #505050;
}

h1 {
    font-family: BebasNeue-Regular;
    font-weight: 100;
    font-size: 70px;
    line-height: 64px;
}

h2 {
    font-size: 30px;
    line-height: 41px;
    font-family: ProstoOne-Regular;
    color: #505050;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

p,
a {
    font-family: Inter-Regular;
    font-size: 14px;
    line-height: 21px;
}

.fr-up {
    overflow: hidden;
    position: relative;
}

.fr-up2 {
    overflow: hidden;
    padding-left: 25px !important;
    padding: 15px;
    padding-right: 25px;
    margin-left: -25px;
}

.msk {
    position: relative;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
}

#burger-menu {
    display: none;
    cursor: pointer;
    height: 27px;
    width: 27px;
    margin: 10px;
    overflow: visible;
    position: relative;
    z-index: 4;
}

#burger-menu span,
#burger-menu span:before,
#burger-menu span:after {
    background: #000000;
    display: block;
    height: 4px;
    opacity: 1;
    position: absolute;
    transition: 0.3s ease-in-out;
}

#burger-menu span:before,
#burger-menu span:after {
    content: "";
}

#burger-menu span {
    right: 0px;
    top: 13px;
    width: 27px;
}

#burger-menu span:before {
    left: 0px;
    top: -10px;
    width: 16px;
}

#burger-menu span:after {
    left: 0px;
    top: 10px;
    width: 20px;
}

#burger-menu.close span {
    transform: rotate(-45deg);
    top: 13px;
    width: 27px;
    background-color: #ffffff;
}

#burger-menu.close span:before {
    top: 0px;
    transform: rotate(90deg);
    width: 27px;
    background-color: #ffffff;
}

#burger-menu.close span:after {
    top: 0px;
    left: 0;
    transform: rotate(90deg);
    opacity: 0;
    width: 0;
}

#menu {
    z-index: 3;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    padding-top: 20px;
    transition: all 0.3s ease-in-out;
}

#menu ul li p {
    font-size: 18px;
}

#menu.overlay {
    visibility: visible;
    opacity: 1;
    padding-top: 170px;
    background: rgb(0, 0, 0);
}

#menu li {
    list-style: none;
}

#menu a {
    color: #fff;
    display: block;
    font-size: 32px;
    margin-bottom: 32px;
    text-decoration: none;
}

/* sarangus989@gmail.com */

.modal {
    display: none;
    position: fixed;
    z-index: 4;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    place-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 450px;
    border-radius: 10px;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.inp-flx input {
    width: 100%;
    height: 40px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    margin-top: 5px;
    padding: 0 10px;
}

.inp-flx textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 120px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    margin-top: 5px;
    padding: 10px 10px;
}

.inp-flx input:focus {
    outline: none;
}

.inp-flx textarea:focus {
    outline: none;
}

.modal-content form {
    margin-top: 30px;
}

.inp-flx {
    margin-bottom: 10px;
}

.inp-flx label {
    margin-left: 7px;
    font-family: Inter-Regular;
    font-size: 13px;
    color: #636363;
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

form button {
    width: 100%;
    height: 40px;
    background-color: #2F3190;
    border: none;
    border-radius: 5px;
    color: #fff;
    margin-top: 10px;
}

/* header  */

.header .logo img {
    width: 160px;
    object-fit: contain;
}

.fr-und-ln.active p {
    color: #ff0000 !important;
    position: relative;
    font-weight: 600;
}

.header {
    /* padding: 10px 0px 0px 0px; */
    /* background-image: url(../assets/img/index/hdrbg.jpg);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat; */
    /* background-image: linear-gradient(  #82aec2, #ffffff, #ffffff ); */
    /* background-image: linear-gradient(#828cc2, #ffffff, #ffffff); */
}

.hdr-menu {
    width: 100%;
    height: 70px;
    background-image: linear-gradient(#000000, #0000008c, #00000000);
    display: flex;
    align-items: center;
}

.head-rt {
    width: 100%;
    padding-left: 30px;
}

.head-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: -20px;
}

.hd-rt-tp {
    height: 50px;
    border-bottom: 1px solid #d4d4d4;
    width: 100%;
    text-align: end;
}

.hd-rt-tp p {
    padding: 6px 20px;
    border: 1px solid #d4d4d4;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    background-color: #3124a5;
    color: #fff;
    cursor: pointer;
}

.pages ul {
    display: flex;
    gap: 40px;
}

.pages ul li a p {
    font-size: 15px;
}

.dropdown-toggle i {
    font-size: 13px;
}

.dropdown-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pages {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    width: fit-content;
}


/* sarangus989@gmail.com */
.pages .cnt-btn {
    padding: 7px 25px;
    border: 1px solid #d4d4d4;
    border-radius: 50px;
    width: fit-content;
    color: #ffffff;
    background-color: #3124a5;
}

.pages ul li a p {
    color: #000000;
}

.menus ul li {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menus ul li a p {
    color: #ffffff;
}

.hdr-menu {
    margin-top: 7px;
    position: relative;
    z-index: 2;
}

.header.header2 .menus ul li a p {
    color: #000000;

}

.non-pc {
    display: none;
}

.header.header2 .menus {
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.menus {
    position: relative;
}

.header.header2 .menus::before {
    position: absolute;
    content: "";
    width: 63%;
    height: 1px;
    background-color: #b2b2b2;
    top: 17px;
    right: 0;
}

.hd-shdow {
    box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

/* header close  */

/* index  */

.mn-ind-bg {
    width: 100%;
    height: 86vh;
    background-image: url(../assets/img/intrbg1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* margin-top: 0px; */
    background-attachment: fixed;
}

.mn-ind-bg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.384);
}

.fix-pos {
    height: 450px;
    width: 100%;
    background-image: url(../assets/img/17.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative
}

.main-ind-cont h1 {
    color: #ffffff;
    max-width: 710px;
    margin-bottom: 10px !important;
}

.main-ind-cont p {
    color: #ffffff;
    max-width: 650px;
}

.main-ind-cont-fl {
    height: 100%;
    display: flex;
    align-items: end;
    position: relative;
}

.main-ind-cont {
    margin-bottom: 100px !important;
    position: relative;
}

.main-brdr-img {
    width: 130px;
    object-fit: contain;
    position: absolute;
    left: -26px;
    top: -21px;
}

.fr-cntr {
    display: flex;
    height: 100%;
    position: relative;
    z-index: 1;
}

.rnd-strk {
    height: 52px;
    position: absolute;
    top: 10px;
    right: -29px;
}

.rnd-strk-fl {
    position: relative;
}

.rnd-strk-fl h1 {
    position: relative;
    z-index: 2;
}

/* sarangus989@gmail.com */

.mn-ind-btn {
    padding: 5px 5px 5px 20px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 50px;
    margin-top: 50px !important;
    width: fit-content;
}

.mn-ind-btn i {
    transition: all 0.2s ease-in-out;
}

.mn-ind-btn:hover i {
    rotate: -40deg;
    transition: all 0.2s ease-in-out;
}

.arw-rnd {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arw-rnd i {
    color: #000000;
}

.ind-bg-bx {
    position: absolute;
    width: 400px;
    height: 30px;
    background-color: #b3b3b3;
    right: 0;
    bottom: 0;
}

.ind-abt-btn {
    padding: 5px 20px;
    border-radius: 5px;
    border: 1px solid #000000;
    color: #000000;
    width: fit-content;
    margin-left: 20px;
    margin-top: 20px;
}

.main-ind-h2 {
    color: transparent;
    -webkit-text-stroke: 0.6px rgba(255, 255, 255, 0.548);
    position: absolute;
    bottom: 50px;
    right: 0;
    font-family: ArchivoBlack-Regular;
    font-size: 160px;
    font-weight: 100;
    z-index: 1;
}

.ind1-img-lft {
    width: 60%;
    height: 560px;
}

.ind1-img-rt {
    width: 38%;
    height: 430px;
    position: relative;
    top: -80px
}

.ind1-cont-lft {
    display: flex;
    gap: 15px;
    position: relative;
}

.ind1-cont-lft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind1-cont-lft video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* sarangus989@gmail.com */
.ind1 {
    padding: 190px 0 130px 0;
    background-color: #fdfdfd;
    position: relative;
}
.ind1-tp{
    margin-bottom: 160px;
    display: flex;
    justify-content: space-between;
}
.ind1-tp-rt p{
    text-align: end;
    max-width: 550px;
}
.ind1-tp h2 {
    font-size: 35px;
    max-width: 420px;
}
.ind1-tp h3{
    margin-top: 10px;
    color: #ff0000;
}
.ind1-tp h4{
    margin-bottom: 10px;
    color: #ff0000;
}

.ind1-cont-rt h3 {
    margin-bottom: 15px;
    color: #ff0000;
}

.ind1-cont-rt {
    padding-left: 20px;
    margin-top: 30px;
}

.ind1-cont-rt h2 {
    margin-bottom: 10px;
    color: #000000;
}

.ind1-cont-rt p {
    color: #000000;
}

.exp-conts h2,
.exp-conts p {
    color: #000000;
}

.exp-cont-fl {
    display: flex;
    gap: 50px;
    width: fit-content;
    margin-top: 50px;
    position: relative;
    left: -170px;
}

.ind2 {
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
    margin: 0px 0 50px 0;
    padding: 80px 0 130px 0;
    position: relative;
}

.ind2-tp .wth-clr {
    font-size: 50px;
    font-family: ArchivoBlack-Regular;
    position: relative;
    z-index: 2
}

.ind2-tp .whot-clr {
    font-size: 90px;
    font-family: ArchivoBlack-Regular;
    color: transparent;
    -webkit-text-stroke: 0.6px rgb(0, 0, 0);
    margin-left: 70px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    font-weight: 100;
}

.ind2-tp {
    margin-left: 80px;

}

.ind2-tp p {
    max-width: 315px;
    text-align: end;
    float: right;
}

.ind2-tp-ln {
    height: 1px;
    width: 62%;
    background-color: #d2d2d2;
    float: right;
}

.ind2-tp-bg-bx {
    height: 250px;
    width: 230px;
    background-color: #f1f1f1;
    position: absolute;
    top: 0;
    margin-left: 45px;
}

.ind2-btm-bg-bx {
    width: 60%;
    height: 610px;
    background-color: #F9F9F9;
    position: absolute;
    left: 0;
}

.ind2-btm-cont-lft h2 {
    font-size: 25px;
}

.hdr-tp {
    width: 880px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-top: 6px;
    position: relative;
}
.hdr-tp p{
    color: #fff;
}
.hd-tp-rt{
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}
.hd-tp-rt i{
    font-size: 18px;
}
.gap-ln{
    width: 1px;
    height: 30px;
    background-color: #fff;
}

.hdr-tp-bg {
    width: 72vw;
    height: 45px;
    background: linear-gradient(to bottom, red 5%, darkred 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%, 0 0);
    position: absolute;
    right: 0;
    top: 0;
}

.hd-tp-lft-flx {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hd-tp-lft {
    display: flex;
    align-items: center;
    gap: 30px;
}

.srv-cont-bx p {
    color: #000000;
}

.srv-cont-bx h3 {
    color: #000000;
}

.ind2-btm {
    margin-top: 120px;
}

.ind2-btm-cont-lft {
    text-align: end;
}

.ind2-btm-cont-lft .lft-h2-2 {
    font-size: 50px;
    font-family: ArchivoBlack-Regular;
    margin-top: 15px;
    line-height: 58px;
    color: #535353;
    margin-bottom: 20px;
}

.ind2-btm-cont {
    position: relative;
    top: 80px;
    margin-bottom: 270px;
}

.ind2-btm-cont-lft-img {
    display: flex;
    gap: 20px;
    width: fit-content;
    margin-left: auto;
    margin-top: 40px;
}

.ind2-btm-cont-lft-img img {
    width: 190px;
    height: 130px;
    object-fit: cover;
}

.ind2-btm-cont-lft .p {
    padding: 8px 30px;
    background-color: #e70000;
    color: #FFFFFF;
    width: fit-content;
    margin-top: 30px;
    margin-left: auto;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 9px;
}

.srv-cont {
    display: flex;
    gap: 20px;
    padding-left: 20px;
}

.srv-cont-bx-lft {
    width: 50%;
    height: 100%;
    position: relative;
    top: -140px;
}

.srv-cont-bx-rt {
    width: 50%;
    height: 100%;
    position: relative;
    top: -50px;
}


/* sarangus989@gmail.com */
.srv-cont-bx {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
    display: flex;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
}

.srv-cont-bx img {
    width: 40px;
    object-fit: contain;
    margin: 0;
}

.srv-cont-bx-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.srv-cont-bx h3 {
    font-size: 16px;
    margin: 10px 0;
}

.srv-cont-bx {
    text-align: center;
    padding: 30px 20px;
}

.bg-blu-bx1 {
    height: 450px;
    width: 200px;
    background-color: #e30404;
    position: absolute;
    left: -25px;
    top: -12px;
}

.bg-blu-bx2 {
    height: 338px;
    width: 115px;
    background-color: #e30404;
    position: absolute;
    left: 50%;
    top: 174px;
}

.ind1-img-rt {
    position: relative;
    z-index: 2;
}

.ind1-img-lft {
    position: relative;
    z-index: 2;
}

.ind2-scnd-btm {
    margin-top: 200px;
}

.ind2-scnd-btm h4 {
    font-size: 18px;
    max-width: 400px;
    position: relative;
    top: 50px;
}

.ind2-scnd-btm-lft {
    text-align: end;
    display: flex;
    align-items: center;
    height: 100%;
}

.ind2-scnd-btm-lft h2 {
    max-width: 500px;
    margin-left: auto;
    margin-bottom: 20px;
}

.ind2-scnd-btm-lft-btn {
    padding: 8px 20px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    margin-top: 30px;
    width: fit-content;
    margin-left: auto;
    border-radius: 5px;
    border: 1px solid #cfcfcf;
    background-color: #e70000;
}

.ind2-scnd-btm-rt img {
    width: 95%;
    height: 100%;
    object-fit: cover;
}

.ind2-scnd-btm-rt {
    height: 560px;
    position: relative;
}

.ind2-scnd-btm-rt::after {
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    top: -43px;
    right: -28px;
    z-index: -1;
    border: 20px solid #e5e5e5;
}

.ind2-scnd-btm-lft-brdr {
    padding: 50px 70px 50px 22px;
    border: 4px solid #B3A74B;
    position: relative;
    left: 70px;
    z-index: 1;
    top: 50px;
}

.ind2-scnd-btm-rt-sml {
    width: 260px;
    height: 150px;
    position: absolute;
    left: -80px;
    top: -70px;
}

/* sarangus989@gmail.com */

.scnd-btm-img {
    width: 100%;
    height: 250px;
}

.scnd-btm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scnd-btm-img-sec {
    margin-top: 25px;
    position: relative;
}

.scnd-btm-img-sec-bg {
    height: 150px;
    background-color: #dddddd;
    width: 553px;
    margin-left: auto;
    position: absolute;
    top: 125px;
    right: -12px;
    z-index: -1;
}

.ind3-hdng {
    text-align: center;
}

.ind3-hdng p {
    max-width: 700px;
    margin: 0 auto;
}

.ind3-hdng h2 {
    margin-bottom: 10px;
}

.ind3 {
    padding: 80px 0 50px 0;
}

.testimonial {
    margin-top: 50px !important;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial .item {
    border: 1px solid #cfcfcf;
    padding: 40px 30px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    margin: 0 10px;
    position: relative;
}

.testimonial .item h3 {
    margin-bottom: 10px;
}

.testimonial .item img {
    width: 52px;
    object-fit: contain;
    position: absolute;
    top: 20px;
    right: 30px;
}

.ind4 {
    padding: 70px 0;
    background-color: #FAFAFA;
    width: 100%;
    height: 100%;
    margin-top: 40px;
    margin-bottom: 50px;
}

.ind4-hdng {
    text-align: center;
}

.latest-slide .item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.latest-slide .item {
    padding: 0 8px;
}

.latest-slide {
    margin-top: 50px;
}

.ftr-logo img {
    width: 170px;
    object-fit: contain;
}

.ftr-logo {
    width: fit-content;
    margin: 0 auto;
}

.ftr-ln {
    width: 90%;
    height: 1px;
    background-color: #dadada;
    margin: 10px auto;
}

.footer-btm {
    display: flex;
    justify-content: space-between;
}

.fix-pos-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #0000005b;
}

.fix-pos-cont h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.fix-pos-cont p {
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fix-pos-cont h4 {
    color: #fff;
    text-align: center;
    margin-top: 30px !important;
    padding: 7px 25px;
    border: 1px solid #fff;
    border-radius: 5px;
    width: fit-content;
    margin: 0 auto;
}

/* index close */

/* about  */

.page-hdr.crtns {
    background-image: url(../assets/img/22.jpg);
}

.page-hdr.intr {
    background-image: url(../assets/img/intrbg.webp);
    position: relative;
}

.page-hdr.blnds {
    background-image: url(../assets/img/blindbg.jpg);
    position: relative;
}

.page-hdr.blnds::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000006c;
}

.page-hdr-cont {
    position: relative;
    z-index: 2;
}

.page-hdr.intr::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000006c;
}

/* sarangus989@gmail.com */

.page-hdr.walpaper {
    background-image: url(../assets/img/20.jpg);
}

.page-hdr.sofa {
    background-image: url(../assets/img/19.jpg);
}

.page-hdr.flrng {
    background-image: url(../assets/img/18.jpg);
}

.page-hdr {
    height: 300px;
    width: 100%;
    background-image: url(../assets/img/10.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 50px;
}

.page-hdr h2 {
    color: #fff;
    margin: 0 auto;
    width: fit-content;
}

.page-hdr-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: #fff;
    margin-top: 15px;
    width: fit-content;
    margin: 15px auto;
}

.page-hdr-nav p {
    color: #fff;
}

.abt1-img {
    width: 300px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.abt1 {
    position: relative;
    padding-top: 100px;
}

.abt1-cont-lft img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.abt1-cont-lft {
    position: relative;
}

.abt1-cont-rt {
    padding-left: 60px;
}

.abt1-cont-rt h3 {
    margin-bottom: 20px;
}

.abt1-cont-rt p {
    margin-top: 10px;
}

.abt-expns {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
}

.abt2 {
    margin-top: 150px;
}

.abt2-cont-lft {
    width: 100%;
}

.abt2-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-expns h2,
.abt-expns p {
    color: #3124a5;
}

.wy-bx {
    width: 300px;
    height: fit-content;
    background-color: #f8f8f8;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.wy-bx h3 {
    margin-bottom: 10px;
    color: #000000;
}

.abt2-cont-rt {
    display: flex;
    gap: 30px;
}

.abt2-cont-lft {
    padding-right: 50px;
}

.abt2-cont-lft {
    max-width: 500px;
}

.abt2-cont-lft h2 {
    margin-bottom: 20px;
}

.wy-bx-rt {
    position: relative;
    top: -80px;
}

/* sarangus989@gmail.com */

.wy-icon img {
    width: 50px;
    object-fit: contain;
    margin-bottom: 20px;
}

.abt2-cont-btn {
    padding: 5px 25px;
    border: 1px solid #515151;
    width: fit-content;
    margin-top: 30px;
    color: #000000;
}

.wy-bx h3 {
    font-size: 17px;
}

.abt3 {
    margin-top: 80px;
}

.abt3-cont h2 {
    text-align: center;
}

.msn {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #bbbbbb;
    padding: 30px;
}

.msn-vsn {
    max-width: 1000px;
    margin: 50px auto 80px auto;
}

.msn-vsn h3 {
    margin-bottom: 10px;
}

.abt-blu-bx1 {
    width: 190px;
    height: 455px;
    background-color: #2F3190;
    position: absolute;
    left: -30px;
    top: -12px;
    z-index: -1;
}

.abt-blu-bx2 {
    width: 65px;
    height: 400px;
    background-color: #2F3190;
    position: absolute;
    right: -23px;
    bottom: 57px;
    z-index: -1;
}

/* about close  */

/* gallery  */
.gal-img-bx {
    height: 650px;
    margin: 0 30px;
    position: relative;
}

.gal-img-bx h4 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 1;
    font-size: 21px;
    max-width: 400px;
}

.gal-img-bx::after {
    content: "";
    position: absolute;
    background-image: linear-gradient(rgba(0, 0, 0, 0), #000000);
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
}

.gal-img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gal-1 {
    padding: 80px 0;
    background: #ffffff;
}

.gal-rt {
    margin-top: 80px;
}

/* gallery close  */

/* services  */
.serv1-bx {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.serv1-bx::after {
    content: "";
    position: absolute;
    background-color: #d1d1d1;
    width: 80%;
    height: 1px;
    bottom: -20px;
    left: 0;
}

.blog-cont {
    padding: 10px 0;
}

.blog-cont h3 {
    font-size: 18px;
    margin-bottom: 7px;
}

.serv1-bx img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.servinnr-bx {
    height: 500px;
    margin-bottom: 20px;
}

.servinnr-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serv1-bx h3 {
    margin: 10px 0;
    color: #000000;
}

.serv1-bx p {
    color: #000000;
}

.serv1 {
    padding: 100px 0 50px 0;
    background: #ffffff;
}

.srv-fr-btm {
    margin-top: 70px;
}

.serv1 .row {
    justify-content: left;
}

.serv-ind-hdng {
    margin-bottom: 70px;
    max-width: 900px;
}

.serv-ind-hdng p,
.serv-ind-hdng h2 {
    color: #000000;
}

/* services close  */

/* curtains  */

.crtns-cat-lft {
    border-right: 1px solid #d1d1d1;
    width: 100%;
    height: 100%;
    padding-right: 50px;
}

/* sarangus989@gmail.com */

.wrk-cat {
    position: relative;
}

.category-btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.serv-ind-hdng h2 {
    margin-bottom: 10px;
}


.button.is-checked i {
    display: block !important;
    transition: all 0.3s ease-in-out;
    color: #000000;
}

.button.is-checked p {
    color: #fa0000 !important;
    margin-left: 30px;
    transition: all 0.2s ease-in-out;
}

.category-btn .button p {
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    font-size: 17px;
    color: #000000;
}

.category-btn .button {
    border: none;
    padding: 8px 5px;
    border-bottom: 1px solid #dfdfdf;
    background-color: transparent;
    cursor: pointer;
    text-align: left;
    color: #000000;
    font-size: 15px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

.category-btn .button i {
    display: none;
    transition: all 0.3s ease-in-out;
}

/* curtains close  */

/* blog  */
.blog-img {
    height: 200px;
    width: 100%;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog1 {
    padding: 80px 0;
}

.blog-fl {
    padding: 20px 0;
}

.blog1 .row {
    justify-content: start;
}

.blog-cont h5 {
    margin-top: 10px;
    font-size: 12px;
    color: #ff0000;
}

.blog-inner-img-bx {
    height: 400px;
    width: 800px;
    margin-bottom: 15px;
}

.blog-inner-img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog-inner {
    padding: 80px 0;
}

.blog-inner-cont {
    max-width: 800px;
}

.blog-inner-cont h3 {
    margin-bottom: 10px;
}

.blog-inner-cont h4 {
    margin-bottom: 10px;
}

.blog-inner-cont p {
    margin-bottom: 10px;
    margin-bottom: 20px;
}







.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: -100%;
    background: white;
    border: 1px solid #ccc;
    min-width: 150px;
    z-index: 999;
    width: 260px;
    padding: 10px;
    border-radius: 7px;
}

.drop-cont {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;

}

.drop-cont a {
    padding: 5px 0;
    color: #000000;

}

.drop-cont a:hover {
    background-color: #ececec;
}



/* Show on hover */
.dropdown:hover .dropdown-content {
    display: block;
}



/* blog close  */

/* conatct  */


.cnt1 {
    padding: 80px 0;
}

.cnt1-lft {
    width: 40%;
}

.cnt1-lft p {
    color: #000;
}

.wth-icon {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.wth-icon i {
    margin-top: 3px !important;
    color: #3124a5;
}

.cnt1-lft h3 {
    margin: 50px 0 20px 0;
    color: #3124a5;
}

.cnt1-lft h2 {
    color: #3124a5;
}

.cnt-scl {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cnt-scl i {
    font-size: 25px;
    color: #3124a5;
}

.cnt1-rgt {
    width: 60%;
    height: 500px;
    padding-left: 50px;
}

.cont-fl {
    display: flex;
}

/* contact close  */

/* footer  */

.foot-bg {
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
    padding: 50px 0;
    background-color: #f9f9f9;
}

.ftr-lft p {
    color: #000000;
    margin: 10px 0;
}

.ftr-rt p {
    color: #000000;
    margin: 10px 0;
    max-width: 250px;
}

.ftr-rt a {
    display: flex;
    gap: 10px;
}

.ftr-rt .cnt-det a i {
    font-size: 18px;
    margin-top: 14px !important;
}

.footer-btm h3 {
    margin-bottom: 27px;
    position: relative;
    width: fit-content;
}

.footer-btm h3::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #bdbdbd;
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.footer-btm {
    margin-top: 40px;
}

.ftr-lft {
    display: flex;
    justify-content: space-between;
    width: 40%;
}

.ftr-rt {
    display: flex;
    justify-content: space-between;
    width: 40%;
}

.bk-tp-btn button {
    background-color: #2F3190;
    padding: 8px 10px;
    color: #FFFFFF;
    border: none;
    border-radius: 7px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.ftr-rt i {
    font-size: 25px;
    color: #2F3190;
}

.bk-tp-btn {
    position: fixed;
    right: 60px;
    bottom: 8%;
    z-index: 22222;
}

.ftr-wtsp {
    width: 50px;
    object-fit: contain;
    position: fixed;
    right: 20px;
    bottom: 20%;
    z-index: 22222;
}

.copyright {
    margin: 0 auto;
    text-align: center;
    max-width: fit-content;
    margin-top: 40px;
    font-weight: 100;
    font-size: 13px;
}

/* sarangus989@gmail.com */

.footer-btm h3 {
    font-size: 16px;
    color: #2F3190;
}

.copyright img {
    position: relative;
    top: 3px;
}

.srv-img-an2 {
    transform: translatey(0px);
    -webkit-animation: float2 3s ease-in-out infinite;
    animation: float2 3s ease-in-out infinite;
}

@keyframes float2 {
    0% {

        transform: translatey(0px);
    }

    50% {

        transform: translatey(-15px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* footer close  */

/* sarangus989@gmail.com */
