@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500&family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}

h1,h2,h3,h4,h5,h6{
    color: #fff;
}

html{
    overflow-x: hidden;
}

.container{
    max-width: 1450px;
}


.ctn-preloader {
    align-items: center;
    cursor: none;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999
}

.ctn-preloader .animation-preloader {
    position: absolute;
    z-index: 100
}

.ctn-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgb(255, 255, 255);
    border-top-color:#ff9d00 !important;
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em
}

.ctn-preloader .animation-preloader .txt-loading {
    font: bold 5em "Montserrat", sans-serif;
    text-align: center;
    user-select: none
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    color: #fff;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: rotateY(-90deg)
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
    color: #ff9d00 !important;
    position: relative
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s
}

.ctn-preloader .loader-section {
    background-color: #000;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px)
}

.ctn-preloader .loader-section.section-left {
    left: 0
}

.ctn-preloader .loader-section.section-right {
    right: 0
}

.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out
}

.loaded .loader-section.section-left {
    transform: translateX(-101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1)
}

.loaded .loader-section.section-right {
    transform: translateX(101%);
    transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1)
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {
    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@media screen and (max-width: 767px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
    .ctn-preloader .animation-preloader .txt-loading {
        font: bold 3.5em "Montserrat", sans-serif;
    }
}

@media screen and (max-width: 500px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }
    .ctn-preloader .animation-preloader .txt-loading {
        font: bold 2em "Montserrat", sans-serif;
    }
}


  /* header_title */
  

  .header_title h2{
    font-size: 60px;
    font-weight: 700;
    line-height: 44px;
  }

  .sub_title{
    color: #fff;
    font-size: 35px;
    margin-top: 2px;
    font-weight: 600;
  }

  .section_header{
    padding: 5rem 0 3rem 0;
  }

  .y_llow{
    color: #ff9d00;
  }

  .header_title p{
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
  }


  /* header_title */


  /* btn css */
  .btn{
    color: #ffffff;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    padding: 11px 20px 11px;
    border: 1px solid #ffebeb;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-out;
    width: 391px;
}
.btn:focus{ color: #000; }
.btn:hover{
    color: #000; 
    background: #ff9d00;
    border-color: #ff9d00;
}
.btn:before,
.btn:after{
    content: '';
    border-top: 2px solid #ff9d00;
    border-left: 2px solid #ff9d00;
    position: absolute;
    top: -6px;
    left: -6px;
    right: calc(100% - 20px);
    bottom: calc(100% - 20px);
    z-index: -1;
    transition: all 0.4s ease 0s;
}
.btn:after{
    transform: rotate(180deg);
    right: -6px;
    bottom: -6px;
    left: calc(100% - 20px);
    top: calc(100% - 20px);
}
.btn:hover:before{
    right: -6px;
    bottom: -6px;
    border-color: #fff;
}
.btn:hover:after{
    top: -6px;
    left: -6px;
    border-color: #fff;
}


.btn_area{
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

  /* btn css */

@media (max-width: 991.98px) {
	html {
		font-size: 13px;
	}

    .header_title p br{
        display: none;
    }

    .btn {
        width: 81%;
    }

}
@media (max-width: 767.98px) {
	html {
		font-size: 12px;
	}
	.hidden-xs {
		display: none!important;
	}

    .btn_area {
        display: flex;
        gap: 2rem;
    }

    .header_title h2 {
        font-size: 45px;
    }
    .sub_title {
        color: #fff;
        font-size: 27px;
    }

    .header_title p {
        font-size: 14px;
    }
 
}
@media (max-width: 479px) {
    .header_title h2 {
        font-size: 43px;
    }

    .sub_title {
        font-size: 25px;
    }

    .btn {
        width: 93%;
    }

}

@media (max-width: 414px) {
    .header_title h2 {
        font-size: 39px;
    }
}



  