@font-face {
    font-family: "Furtuna-Condensed-PT";
    src: url("../fonts/futura-condensed-pt-medium-589e44ed1e3a5.woff") format("woff");
}
  
@font-face {
font-family: "Furtuna-Condensed-medium-PT";
src: url("../fonts/futura-pt-medium-589e45b956de4.woff") format("woff");
}

.footer-link-none{
    text-decoration: none;
    color: #535353;
}
.footer-line-height{
    line-height: 35px;
}
.footer-text-and-policys a{
    text-decoration: none;
    color: #021838;
    display: inline-block;
    font-size: 16px;
}

.page-header {
    position: relative;
    width: 100%;
    z-index: 10;
}
.competition-bar{
    background-image: url(../media/img/competition-bar-bg.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px 42px;
    .flex-area{
        display: flex;
        justify-content: space-between;
        font-family: "Furtuna-Condensed-PT", sans-serif;
        color: #ffffff;
        align-items: center;
        font-size: 25px;

        .left-area{
            background: linear-gradient(to right, #FFFFFF, #FFD6F1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent; 
            text-align: center;
        }
        .right-area{
            display: flex;
            align-items: center;
            gap: 44px;
            .desc{
                .diff-font{
                    font-family: "Asap Condensed", sans-serif;
                    font-weight: 600;
                    letter-spacing: 2px;
                    margin-left: 16px;
                }
            }
            .appeal-btn{
                padding: 6px 30px;
                border-radius: 26px;
                color: #B21582;
                font-size: 20px;
                border: unset;
                outline: unset;
                background: linear-gradient(to right, #FFFFFF, #E8C8DD);
                text-decoration: unset ;
                white-space: nowrap;
            }
        }
    }
}
.page-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}    
/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
}

.page-header.is-sticky .non-static{
    display: none;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@media  (max-width: 1350px){
    .competition-bar{
        .flex-area{
            font-size: 22px;
            .right-area{
                gap: 34px;
                .appeal-btn{
                    font-size: 18px;
                }
            }
        }
    }
}

@media  (max-width: 1200px){
    .competition-bar{
        .flex-area{
            font-size: 18px;
            .right-area{
                gap: 24px;
                .appeal-btn{
                    font-size: 16px;
                }
            }
        }
    }
}

@media  (max-width: 965px){
    .competition-bar{
        .flex-area{
            flex-direction: column;
            .left-area{
                margin-bottom: 16px;
            }
        }
    }
}

@media  (max-width: 540px){
    .competition-bar{
        .flex-area{
            font-size: 16px;
            .right-area{
                gap: 16px;
                .appeal-btn{
                    padding: 6px 16px ;
                }
            }
        }
    }
}

header nav a.nav-link {
  transition: color 200ms ease-in-out;
}

header nav a.nav-link::before {
  transition: width 200ms ease-in-out;
}

header nav .dropdown-menu .dropdown-item {
  position: relative;
  transition: color 200ms ease-in-out, background-color 200ms ease-in-out;
}

header nav .dropdown-menu .dropdown-item:hover {
  color: #1977FF;
  background-color: rgba(25, 119, 255, 0.06);
}

header nav .dropdown-menu .dropdown-item::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  background-color: #1977FF;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease-in-out;
}

header nav .dropdown-menu .dropdown-item:hover::after {
  /* transform: scaleX(1); */
}

.mega-dropdown a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 200ms ease-in-out;
}



.demo-request {
  cursor: pointer;
  transition: filter 180ms ease-in-out, background-color 180ms ease-in-out;
}
.demo-request:hover {
  filter: brightness(1.1);
}

.footer-link-none,
.footer-text-and-policys a,
.footer-copy-language .language-btn a {
  position: relative;
  text-decoration: none;
  transition: color 200ms ease-in-out;
}

.footer-link-none::after,
.footer-text-and-policys a::after,
.footer-copy-language .language-btn a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background-color: #1977FF;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease-in-out;
}

.footer-link-none:hover,
.footer-text-and-policys a:hover,
.footer-copy-language .language-btn a:hover {
  color: #1977FF;
}

.footer-link-none:hover::after,
.footer-text-and-policys a:hover::after,
.footer-copy-language .language-btn a:hover::after {
  transform: scaleX(1);
}

.footer-copy-language .language-btn a.active {
  color: #1977FF;
}