@charset "utf-8";

/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,700);
@font-face {
  font-family: 'CenturyGothic';
  src: url('GOTHIC.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'CenturyGothicBold';
  src: url('GOTHICB.otf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'stratum2-bold';
  src: url('Stratum2-Bold.eot');
  src: url('Stratum2-Bold.eot?#iefix') format('embedded-opentype'), url('Stratum2-Bold.otf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* LIQUID BUTTON  */

.amada_liquid_button {
    display: inline-block!important;
    padding: 4px 8px;
    color: #fff!important;
    text-decoration: none!important;
    background: #e0130e;
    border: .5px solid #990000;
    border-radius: 6px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease!important;
}

.amada_liquid_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.amada_liquid_button:hover::before {
    left: 100%;
}

.amada_liquid_button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(109, 75, 75, 0.4);
}

/* LIQUID BUTTON - END */


/* SLIDE BUTTONS */

.amada_slide_button-red {
    display: inline-block;
    padding: 6px 30px;
    border-radius: 22px;
    border: 1px solid #e5e5e5; 
    background-color: rgb(255, 255, 255);
    color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    font-size: 18px;
}

.amada_slide_button-red::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e0130e;
    transform: scaleX(0);
    /* transform: scaleY(0); */
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.amada_slide_button-red:hover {
    color: #fff!important;
    text-decoration: none!important;
}

.amada_slide_button-red:hover::after {
    transform: scaleX(1);
}


/* Slide Button Red - Black */

.amada_slide_button-black {
    display: inline-block;
    padding: 6px 30px;
    border-radius: 22px;
    border: 1px solid #e5e5e5; 
    background-color: #e0130e;
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 0px, rgba(0, 0, 0, 0.22) 0px 2px 3px;
    font-size: 18px;
}

.amada_slide_button-black::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.amada_slide_button-black:hover {
    color: #fff!important;
    text-decoration: none!important;
}

.amada_slide_button-black:hover::after {
    transform: scaleX(1);
}

/* SLIDE BUTTONS - End */



/* VIDEO BUTTON */

.amada_video_button_wrapper {
    position: absolute;
    top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    /* background: linear-gradient(63deg, #726c6c, #cababa); */
    /* background-image: url('../images/logos/2025-INDY-RACECAR.png'); */
    background-image: url('../images/RR_AMADA_2025_2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    width: 100%;
    height: 21%;
    min-height: 200px; /* Add a minimum height */
    overflow: hidden; /* Contain the animations */
}

@media (max-width: 359px) {
    .amada_video_button_wrapper {
        min-height: 0!important;
    }
}

.amada_video_button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: linear-gradient(45deg, #2c2c2c, #1a1a1a);
    color: white;
    text-decoration: none;
    margin: 5px 5px 10px 100px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0130e;
    cursor: pointer;
    animation: pulsingEngine 1.5s ease-in-out infinite;
}

@media (max-width: 391px) {
    .amada_video_button {
        padding: 8px;
    }    
}

@keyframes pulsingEngine {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.95; }
}


.amada_indy_logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: -32%;
}

.amada_video_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(44, 44, 44, 0.4);
    background: #e0130e;
    border: 1px solid #000;
    text-decoration: none !important;
}

.amada_video_button:hover{
    color: #fff!important;
}

.amada_video_button-text {
    color: #000;
}

.amada_video_button:active {
    transform: translateY(0);
}

.amada_play_icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: fill 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.amada_play_icon:hover {
    color: #fff!important;
}

.amada_video_button-text {
    font-weight: 600;
    font-family: CenturyGothic, Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.amada_video_bottom_spacer {
    margin-top: 38%;
}

@media (max-width: 1200px) {
    .amada_video_bottom_spacer {
        margin-top: 60%;
    }
}

@media (max-width: 360px) {
    .amada_video_bottom_spacer {
        margin-top: 78%;
    }
}

/* VIDEO BUTTON - END */



/* PARTICLES BUTTON */

/* Black to Red */

.amada_particles_button--black {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #000000;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-size: 24px;
    border-radius: 28px;
    border: 1px solid #fff;
}

.amada_particles_button--black:hover {
    background: #747373;
    text-decoration: none!important;
    color: #fff!important;
    border: 1px solid #fff;
}

/* Red to Black */

.amada_particles_button--red {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #ef413d;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-size: 24px;
    border-radius: 28px;
    border: 1px solid #fff;
}

.amada_particles_button--red:hover {
    background: #747373;
    text-decoration: none!important;
    color: #fff!important;
    border: 1px solid #fff;
}

@media (max-width: 900px){
    .amada_particles_button--black, 
    .amada_particles_button--red {
        font-size: 18px;
    }
}

/* Magazine Button - Min-Height */

.amada_magazine_button {
    min-height: 60px;
}

@media (max-width: 970px) {
    .amada_magazine_button {
        min-height: 0;
    }
}
/* PARTICLES BUTTON - END */


/* TRANSPARENT to WHITE BUTTON */

.amada_transparent_black_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: transparent;
    color: #fff!important;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    border-radius: 28px;
    border: 1px solid #fff;
    text-transform: uppercase;
}

@media (max-width:800px) {
    .amada_transparent_black_btn {
        font-size: 22px;
    }
}

.amada_transparent_black_btn:hover {
    background: #000;
    text-decoration: none!important;
    color: #fff!important;
    border: 1px solid #fff;
}

/* TRANSPARENT to WHITE BUTTON - END */



/* SPLIT REVEAL BUTTON */

/* .amada_split_reveal_button {
    background: linear-gradient(45deg, #ef413d, #d53636);
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid #767575;
    border-radius: 28px;
    padding: 6px 38px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    user-select: none;
}

.amada_split_reveal_button::before { 
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #708090, #838383);
    transition: left 0.5s ease;
    z-index: -1;
}

.amada_split_reveal_button:hover::before {
    left: 0;
}

.amada_split_reveal_button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
    color: #fff !important;
    text-decoration: none!important;
    border: 1px solid #fff;
}

@media (max-width: 500px) {
    .amada_split_reveal_button {
        padding: 6px 23px;
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .amada_split_reveal_button {
        padding: 6px 21px;
        font-size: 17px;
    }
} */


/* SPLIT REVEAL BUTTON - END */



/* SPLIT REVEAL BUTTON */

.amada_split_reveal_button {
    background: linear-gradient(45deg, #ef413d, #d53636);
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid #767575;
    border-radius: 28px;
    padding: 6px 38px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    user-select: none;
}

.amada_split_reveal_button:hover {
    color: #000!important;
    background: transparent!important; 
    text-decoration: none!important;
    border: 1px solid #000;
}

@media (max-width: 500px) {
    .amada_split_reveal_button {
        padding: 6px 23px;
        font-size: 18px;
    }
}

@media (max-width: 360px) {
    .amada_split_reveal_button {
        padding: 6px 21px;
        font-size: 17px;
    }
}

/* SPLIT REVEAL BUTTON - END */



/* AMADA CORP VIDEO */

.amada_corp_video_button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding:10px 24px;
    background: linear-gradient(45deg, #1c1919, #1f1d1d);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    opacity: .9;
}

.amada_corp_video_button:hover {
    background: #fff;
    color: #000!important;
    opacity: .75;
    text-decoration: none !important;
}

.amada_corp_video_button-text {
    color: #000;
}


@media (max-width: 900px) {
    .amada_corp_video_button {
        padding: 6px 12px;
    }
    .amada_corp_video_button:hover {
        padding: 6.5px 12.5px;
    }
}

/* AMADA CORP VIDEO - END */


/* CLOSE BUTTON - MOBILE */

.close-button--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px!important;
    background: #ef413d;
    color: #fff;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    border-radius: 28px;
    border: 1px solid #000;
    margin-top: 38px;
}

.close_button--mobile:hover {
    background: #000000;
    text-decoration: none!important;
    color: #fff!important;
}

.close-button--mobile-products {
    margin-top: 12px!important;
}

.close-button--mobile-main {
    margin-top: 14px!important;
}

/* CLOSE BUTTON - MOBILE - END */



/* FABTECH FEATURED BUTTON */

.amada_fabtech_featured_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #000;
    color: #fff!important;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    border-radius: 28px;
    border: 1px solid #fff;
    text-transform: none;
}

@media (max-width:800px) {
    .amada_fabtech_featured_btn {
        padding: 4px 12px;
        font-size: 18px;
    }
}

@media (max-width:500px) {
  .amada_fabtech_featured_btn {
      padding: 4px 10px;
      font-size: 16px;
  }
}

@media (max-width:360px) {
  .amada_fabtech_featured_btn {
      padding: 2px 8px;
      font-size: 14px;
  }
}

.amada_fabtech_featured_btn:hover {
    background: #d53636;
    text-decoration: none!important;
    color: #fff!important;
    border: 1px solid #fff;
}

/* FABTECH FEATURED BUTTON - END */