@font-face {
    font-family:"Montserrat-Regular";
    src: url("../Assets/Fonts/Montserrat/static/Montserrat-Regular.ttf");
}

@font-face {
    font-family:"Montserrat-Bold";
    src: url("../Assets/Fonts/Montserrat/static/Montserrat-Bold.ttf");
}


@font-face {
    font-family: "Montserrat-Medium";
    src: url("../Assets/Fonts/Montserrat/static/Montserrat-Medium.ttf");
}

@font-face {
    font-family: "Montserrat-SemiBold";
    src: url("../Assets/Fonts/Montserrat/static/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("../Assets/Fonts/Roboto/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("../Assets/Fonts/Roboto/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("../Assets/Fonts/Roboto/Roboto-Bold.ttf");
}

*{
    margin: 0;
    padding: 0;
}

img{
    width: 100%;
    /* height: 100%; */
}

svg{
    width: 100%;
    /* height: 100%; */
}

.pt1{
    padding-top: 80px;
}

.pb_1{
    height: 100%;
}

html{
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #FFFFFF !important;
    scroll-behavior: smooth;
    position: relative;
    font-family: "Roboto-Regular";
    border: none;
    outline: none;
}

::-webkit-scrollbar{
    display: none;
}

section{
    width: 100%;
    height: 100%;
    position: relative;
}

a{
    text-decoration: none;
    color: #fff;
    border: none;
    outline: none;
}

ul li{
    list-style: none;
}

button{
    color: #fff;
    background: #1D7C7C 0% 0% no-repeat padding-box;
    border-radius: 25px;
    padding: 15px 24px;
    font-size: 18px;
    font-family:"Roboto";
    border: none;
    outline: none;
}

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

.d-flex{
    width: 1400px;
    height: 100%;
}

#closeBtn{
    cursor: pointer;
}

.selected{
    color:#D8094F ;
}

.animation-zoom {
    animation: zoom-in-zoom-out 2000ms linear 500ms infinite alternate both;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

#logoObject{
    animation: rotation 15s infinite linear;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.product3 {
    animation: floatUp 7s 0.2s ease-in-out infinite;
}

@keyframes floatUp {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -5%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.product5 {
    animation: floatDown 7s 0.2s ease-in-out infinite;
}

@keyframes floatDown {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 5%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (max-width:1440px) {
    .d-flex{
        width:1200px;
        height: 100%;
    }
}

@media screen and (max-width:1250px) {
    .d-flex{
        width:100%
    }
    
    .pb_1{
        padding: 0px 60px;
    }
}

@media screen and (max-width:1100px) {
    .pb_1{
        padding: 0px 50px;
    }
}

@media screen and (max-width:990px) {
    .pb_1{
        padding: 0px 40px;
    }

}

@media screen and (max-width:830px) {
    .pb_1{
        padding: 0px 30px;
    }
}

@media screen and (max-width:430px) {
    .pb_1 {
        padding: 0px 20px;
    }
}
