@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
* {
    font-family: "Lato", sans-serif !important;
}
body, p{
    font-family: "Lato", sans-serif !important;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
.btn_default {
    padding: 4px 15px !important;
    text-align: center !important;
    color: #fff !important;
    font-size: 12px !important;
    box-shadow: none !important;
    min-width: 95px !important;
    border-radius: 4px !important;
    text-transform: none !important;
    height: 30px;
    outline: none !important;
}
.btn_default:hover, .btn_default:active, .btn_default:focus {
    outline: none !important;
}
.btn_grad, .btn_grad:hover, .btn_grad:active, .btn_grad:focus {
    border: 1px solid transparent !important;
   /* background-image: linear-gradient(to right, #6C31CB, #1D74F5);
    */
    background-image: linear-gradient(135deg, #6c31cb, #1d74f5, #6c31cb, #1d74f5, #6c31cb);
    background-size: 500% 100%;
    animation: btnGrad 10s ease infinite;
    transition: all 0.3s;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 20px !important;
}
@keyframes btnGrad {
    0% {
        background-position: 0% 0%;
   }
    67% {
        background-position: 0% 0%;
   }
    100% {
        background-position: 100% 0%;
   }
}
.btn_rounded_fill,
.btn_rounded_fill2 {
    background-color: #fff !important;
    color: #0b0b23 !important;
    border: 1px solid #fff !important;
    font-size: 16px !important;
    min-width: 180px !important;
    border-radius: 8px !important;
    height: 55px;
    font-weight: 600 !important;
    position: relative;
    text-align: left !important;
    padding: 0 2.25625rem !important;
}
.btn_rounded_fill2 {
    line-height: 52px !important;
    padding: 0 1.25625rem !important;
}
.btn_rounded_fill::after,
.btn_rounded_fill2::after {
    content: "";
    background: url(/img/common/arrow_right_black.svg) no-repeat;
    display: inline-block;
    width: 16px;
    height: 11px;
    background-position: 100%;
    margin-left: 0.5rem;
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 40%;
    right: 21%;
}
.btn_rounded_fill2::after {
    right: 13%;
}
.btn_rounded_fill:hover, .btn_rounded_fill:focus, .btn_rounded_fill:active {
    /* background-color: #e2d9fb !important; */
    background-image: linear-gradient(135deg, #6c31cb, #1d74f5, #6c31cb, #1d74f5, #6c31cb);
    background-size: 500% 100%;
    animation: btnGrad 2s ease infinite;
    transition: all 0.3s;
    border: 1px solid transparent !important;
    color: #fff !important;
}
.btn.btn_rounded_fill:not(:disabled):not(.disabled):active {
    background-image: linear-gradient(135deg, #6c31cb, #1d74f5, #6c31cb, #1d74f5, #6c31cb) !important;
}
.btn_rounded_fill2:hover, .btn_rounded_fill2:focus, .btn_rounded_fill2:active {
    background-color: #e2d9fb !important;
}
.btn_rounded_fill:hover::after, .btn_rounded_fill:focus::after, .btn_rounded_fill:active::after,
.btn_rounded_fill2:hover::after, .btn_rounded_fill2:focus::after, .btn_rounded_fill2:active::after {
    right: 18%;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.btn_rounded_fill2:hover::after, .btn_rounded_fill2:focus::after, .btn_rounded_fill2:active::after {
    right: 10%;
}
.btn_rounded_border {
    background-color: transparent !important;
    border: 2px solid #fff !important;
    font-size: 16px !important;
    min-width: 180px !important;
    border-radius: 8px !important;
    height: 55px;
    font-weight: 600 !important;
}
.btn_rounded_border2{
    line-height: 42px !important;
}
.btn_rounded_border:hover, .btn_rounded_border:active, .btn_rounded_border:focus {
    background-color: rgba(255, 255, 255, .2) !important;
}
.btn_rounded_border2:hover, .btn_rounded_border2:active, .btn_rounded_border2:focus {
    background-color: #fff !important;
    color: #0b0b23 !important;
    border: 2px solid #fff !important;
}
.btn_border_animate, .btn_border_animate:hover, .btn_border_animate:active, .btn_border_animate:focus {
    border-image: linear-gradient(to right, #6c31cb 0%, #1d74f5 100%) 1 !important;
    border-width: 2px !important;
    border-style: solid !important;
    padding: 5px;
    color: #0b0b23 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    height: 50px !important;
    border-radius: 8px !important;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, darkblue, darkorchid) border-box;
    border: 2px solid transparent;
    animation: moveDown 1s ease-in-out infinite alternate;
    line-height: 40px;
}
.btn_border_animate img, .btn_border_animate:hover img, .btn_border_animate:active img, .btn_border_animate:focus img {
    width: 20px;
    margin-right: 7px;
}
.hover_btn {
    text-decoration: none;
    font-size: 20px !important;
    color: #fff;
    font-weight: 600 !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.hover_btn span {
    opacity: 0;
    transition: opacity 0.4s ease;
    font-size: 20px !important;
    font-weight: 600 !important;
}
.hover_btn::after {
    content: "";
    background: url(/img/home-new/right_arrow.svg) no-repeat;
    width: 20px;
    height: 13px;
    background-size: cover;
    position: absolute;
    background-position: center;
    left: 0px;
    top: 7px;
    transition: left 0.4s ease;
}
.hover_btn:hover {
    text-decoration: none;
    color: #fff;
}
.hover_btn:hover span {
    opacity: 1;
    transition: opacity 0.4s ease;
}
.hover_btn:hover::after {
    left: 190px;
    transition: left 0.3s ease;
}
.go_down_btn{
    background: transparent !important;
    color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
    position: absolute;
    right: 105px;
    bottom: 30px;
}
.go_down_btn img{

}
.go_down_btn span{
    background-color: #0B0B23;
    height: 5px;
    width: 3px;
    border-radius: 10px;
    position: absolute;
    right: 13px;
    bottom: 43px;
    animation: moveDown 1s ease-in-out infinite alternate;
}

@keyframes moveDown {
    0% {
        transform: translateY(0);
   }
    100% {
        transform: translateY(10px);
   }
}
.flex_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex_item1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flex_item2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.flex_item3 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex_item4 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.flex_item5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.flex_item6 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.is_visible {
    visibility: hidden;
}
/*common section css start*/
.common_section {
    padding: 5rem 0rem;
}
.common_section h2 {
    font-size: 48px !important;
    font-weight: 600 !important;
    color: #fff !important;
}
.common_section .sub_title {
    font-size: 24px !important;
    color: #fff !important;
    font-weight: 400 !important;
}
/*common section css end*/

/*common section css end*/
@media only screen and (max-width:767px){
    .common_section h2 {
        font-size: 30px !important;
    }
    .common_section .sub_title {
        font-size: 16px !important;
    }
    .common_section {
        padding: 2rem 0rem;
    }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1305px;
    }
}
@media (min-width: 1920px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1440px;
    }
}
