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

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

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

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

@font-face {
    font-family: "Roboto";
    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");
}

/* Reset default margins/paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1;
    -webkit-text-size-adjust: 100%; /* Prevent font zooming on iOS Safari */
}

body {
    width: 100%;
    height: 100%;
    font-family: "Montserrat-Regular";
    overflow-x:hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
    position: relative;
    outline: none;
    font-weight: 600;
}

img{
    width: 100%;
    display: block;
    line-height: 0; /* Remove inline gap */
}

svg{
    width: 100%;
}

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

ul li{
    list-style: none;
    text-decoration: none;
}

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

.d-flex{
    width: 1400px;
}

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

.flex_center{
    display: flex;
    /* display: -webkit-box; */
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    align-items: center;
}

.selected{
    color:#D8094F ;
}

[data-shadow-animation] {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

[data-shadow-animation].shadow-in {
  box-shadow: 0 20px 100px rgba(0, 0, 0, 0.1);
}

[data-shadow-animation].shadow-in img {
  opacity: 1;
  transition-delay: 0.35s;
}

[data-top-bottom] {
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}


.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 12s infinite linear;
}

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

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

@supports (-webkit-touch-callout: none) {
  img, video {
    display: block;
    vertical-align: middle;
    margin: 0; /* remove any default margin */
    padding: 0; /* remove any default padding */
    line-height: 0; /* stop inline gap */
  }
}

@media screen and (max-width:1660px) {
    /* .nav-menu li a{
        font-size: 16px;
    } */
}

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

@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;
    }
}


@media screen and (max-width:340px) {
    
}