* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    list-style: none;
    text-decoration: none;
    transition: .3s ease-in-out;
}

body {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #000;
    margin: 0px;
    padding: 0px;
    height: 100%;
    text-rendering: optimizeLegibility;
}

.bgcolor-lightgold {
    background-color: #e2c96e;
}
.bgcolor-black {
    background-color: #000;
}

/* title */
h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #000;
}
h3{
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #fff;
}
.mb-2{
    margin-bottom: 2rem !important;
}


/* .item {
    align-items: center;
    background-color: tomato;
    color: white;
    display: flex;
    justify-content: center;
    min-height: 300px;
    font-size: 5rem;
} */


/* top button */
.custom-btn {
    width: 200px;
    height: 50px;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    overflow: hidden;
}

.btn-12 {
    position: relative;
    border: none;
    box-shadow: none;
    width: 200px;
    height: 50px;
    line-height: 52px;
    -webkit-perspective: 230px;
    perspective: 230px;
}

.btn-12 span {
    background: rgb(100, 100, 100);
    background: linear-gradient(0deg, rgb(100, 100, 100) 0%, #000 100%);
    display: block;
    position: absolute;
    width: 200px;
    height: 50px;
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    border-radius: 5px;
    margin: 0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-12 span:nth-child(1) {
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12 span:nth-child(2) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12:hover span:nth-child(1) {
    color: #fff;
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.btn-12:hover span:nth-child(2) {
    color: #fff;
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    color: transparent;
    -webkit-transform: rotateX(-85deg);
    -moz-transform: rotateX(-85deg);
    transform: rotateX(-85deg);
    /* transform: rotateX(-90deg); */
}



/* small button */

.btn-small {
    display: block;
    position: relative;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 0 auto;
    /* so nobody selects the inside text on button */
    user-select: none;
    /* Smoothing out hover using css3 transitions, if not, the pressed button effect looks a bit hard */
    transition: all 0.2s ease;
    line-height: 36px;
    /* width: 78px; */
    text-transform: uppercase;
    height: 36px;
    text-decoration: none;
}
.btnId {
    background: #e2c96e;
    box-shadow: 0px 5px #835420;
    color: #000;
    font-size: 24px;
    font-weight: bold;
}
.btnId:hover {
    background: #fee997;
    box-shadow: 0px 4px #5c3507;
    color: #000;
}
/* Imitate a pressed effect for buttons */
.btnId:active {
    box-shadow: 0px 0px #5c3507;
    top: 4px;
}



/* header */
header .container {
    /* background-color: #000; */
    padding-top: 2rem;
    padding-bottom: 1rem;
    text-align: center;
    position: relative;
}


header .container img {
    height: 124px;
}



/* banner */

.masthead .container .img-wrap img {
    width: 100%;
}
.masthead .container{
    padding-bottom: 4rem;
}
.CardBanner {
    position: relative;
    display: block;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
    background-color: #e2c96e;
}
.CardBanner .flex{
    display: flex;
}
.CardBanner h2 span{
    display: inline-block;
    padding: 0px 8px;
    color: #fff;
    background-color: #444;
}
.CardBanner a {
    display: block;
    margin: 0 auto;
    font-size: 1rem;
    text-transform: uppercase;
}

.CardBanner .flex1{
    display: flex;
    flex-wrap: wrap;
}
.CardBanner .flex1 a{
    margin-bottom: 1rem;
}


/* services */
.serviceSec .container {
    position: relative;
    padding: 7rem 1.25rem;
}
.serviceSec .container h2{
    color: #fff;
    text-align: center;
}
.align-middle {
    vertical-align: middle !important;
}

.serviceBx {
    border: 2px solid #fff;
    padding: 2rem 1.25rem;
    position: relative;
    text-align: center;
    margin-top: 2rem;
    min-height: 230px;
    background-color: #000;
}

.serviceBx h3,
.serviceBx p {
    color: #fff;
}

/* sec-video */
.sec-video {
    padding: 3rem 0 7rem;
}
.sec-video .owl-carousel .owl-nav{
    
}
.sec-video .owl-carousel .owl-nav button.owl-prev,
.sec-video .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    z-index: 9999999999;
    display: block !important;
    border: 0px solid red;
    position: relative;
    background: yellow;
    border-radius: 9999px;
    position: absolute;
    bottom: -40px;
    transform: translateY(-50%);

}
.sec-video .owl-carousel .owl-nav button.owl-prev{
    left: 38%;
}
.sec-video .owl-carousel .owl-nav button.owl-next {
    right: 38%;
}

/* whatsappp */
.sec-whatsapp{
    padding: 3rem 0;
}

/* telegram */
.sec-telegram{
    padding: 3rem 0 7rem;
}
.sec-telegram .CardBanner{
    background-color: #000;
    padding: 2rem;
}
.sec-telegram p{
    color: #fff;
}

/* bottom */
.bottomTab {
    background: #000;
    display: inline-block;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 9;
}

.bottomTab ul {
    padding: 0;
    margin: 0;
}

.bottomTab ul li {
    float: left;
    width: 25%;
    font-size: 12px;
}

.bottomTab ul li a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px 5px;
}

.bottomTab ul li a i {
    font-size: 24px;
}

.bottomTab ul li a:hover {
    background-color: #e2c96e;
    text-decoration: none;
    color: #000;
}

.bottomTab .link-wrap {
    display: block;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    bottom: 4px;
}

.bottomTab .link-wrap .link {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}


/* media */

@media screen and (max-width: 1024px) {
    header .container img {
        height: 72px;
    }
    h2{
        font-size: 1.5rem;
    }
    h3{
        font-size: 1.25rem;
    }
    .masthead .container{
        padding: 0;
    }
    .masthead .container .CardBanner{
        margin: 0 20px;
    }
    .CardBanner .flex{
        flex-direction: column;
    }
    .CardBanner .flex a:first-child{
        margin-bottom: 1rem;
    }
    .bottomTab ul li a i {
        font-size: 18px;
    }

}