/*----------------------------------------------
# Default Styling
----------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Poppins', sans-serif;
}
.color-primary{color: #ff302e;}
.color-secondary{color: #0a0a36;}
.bgc-primary{background-color: #ff302e;}
.bgc-secondary{background-color: #F0F0E5;}
.gc-primary{
    background-image: linear-gradient(to right, #fff 0%, #ff302e 100%);
    -webkit-background-clip: text; 
    color: transparent; 
}
.section{
    padding: 80px 0;
}
.padding-section{
    padding-left: 40px;
    padding-right: 40px;
}
.section-radius{
    border-radius: 36px;
}
.section-title h2 {
    font-size: 64px;
    line-height: 80px;
    margin-bottom: 0px;
}
.section-title p{
    font-size: 18px;
}
.section-subtitle{
    position: relative;
    padding-left: 100px;
}
.section-subtitle p{
    font-size: 24px;
    margin: 0;
}
.section-subtitle:before {
    content: '';
    width: 90px;
    height: 1px;
    position: absolute;
    top: 15px;
    left: 0;
    
}
.section-subtitle.dark:before{
    background-color: #010101;
}
.section-subtitle.light:before{
    background-color: #fff;
}
.heading-subtitle{
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    margin-bottom: 0px;
}
.heading-primary{
    font-size: 60px;
    
}
.heading-secondary{
    font-size: 50px;
    
}
.heading-1{
    font-size: 52px;
}
.heading-2{
    font-size: 42px;
}
.heading-3{
    font-size: 24px;
    line-height: 36px;
}
.heading-4{
    font-size: 18px;
    line-height: 26px;
}
.button-wrap{
    display: flex;
    justify-content: end;
    margin-top: 30px;
}
.btn-socio {
    font-size: 16px;
    position: relative;
    padding: 7px 15px;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    outline: none;
    z-index: 1;
    border: 1px solid;
}
.light .btn-socio{
    color: #fff;
}
.dark .btn-socio{
    color: #000;
}
.btn-socio:hover{
    color: #fff;
    border: 1px solid #ff302e;
}
.btn-socio > i {
    font-size: 24px;
    display: inline-block;
    transform: rotate(0deg);
    margin-left: 15px;
    transition: all .5s;
    text-align: center;
}
.dark .btn-socio:before {
    background-color: transparent;
    transition: all .5s;
    animation-name: borderchange3;
    animation-duration: .5s;
}
.light .btn-socio:before {
    background-color: transparent;
    transition: all .5s;
    animation-name: borderchange3;
    animation-duration: .5s;    
}
.btn-socio:before{
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .5s;
    animation-name: borderchange2;
    z-index: -1;
}
.btn-socio:hover:before {
    border-color: #ff302e;
    background-color: #ff302e;
    width: 100%;
    animation-name: borderchange;
    animation-duration: .5s;
}
@keyframes borderchange {
    from {width: 0;}
    to {width: 100%;}
}
@keyframes borderchange3 {
    from {width: 100%;}
    to {width: 0;}
}
.btn-socio:hover > i{
    color: #fff;
    transform: rotate(45deg);
}


.btn-socio-outline {
    font-size: 16px;
    position: relative;
    padding: 7px 0;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    outline: none;
}
.light .btn-socio-outline{
    color: #fff;
}
.dark .btn-socio-outline{
    color: #000;
}
.btn-socio-outline:hover{
    color: #ff302e;
}
.btn-socio-outline > i {
    font-size: 24px;
    display: inline-block;
    transform: rotate(0deg);
    margin-left: 15px;
    transition: all .5s;
    text-align: center;
}
.dark .btn-socio-outline:before {
    background-color: transparent;
    border-bottom: 1px solid;
}
.light .btn-socio-outline:before {
    background-color: transparent;
    border-bottom: 1px solid;
}
.btn-socio-outline:before{
    content: '';
    height: 100%;
    width: 100%;
    border-bottom: 1px solid;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .5s;
    animation-name: borderchange2;
}
.btn-socio-outline:hover:before {
    border-color: #ff302e;
    width: 100%;
    animation-name: borderchange;
    animation-duration: .5s;
}
.btn-socio-outline:hover > i{
    color: #ff302e;
    transform: rotate(45deg);
}

hr.section-seprator-dark {
    margin: 1rem 0;
    background-color: rgb(0 0 0 / 30%);
    opacity: 1;
}
.navbar-btn {
    border: 1px solid #ff302e;
    color: #fff;
    background-color: #ff302e;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}



hr.section-seprator-light {
    margin: 1rem 0;
    background-color: rgba(255,255,255,.3);
    opacity: 1;
}

.slider-btn-prev, .slider-btn-next {
    cursor: pointer;
    font-size: 14px;
    color: #000;
    border: 1px solid;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
}
.slider-btn-next {
    margin-left: 30px;
}
.title-banner{
    background: url(../img/title-banner.jpg);
    background-position: center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: 75vh;
    display: flex;
    align-items: end;
}
.banner-heading p{
    font-size: 24px;
    line-height: 36px;
    color: #000;
}
.banner-heading h2 {
    font-size: 75px;
    text-align: center;
    font-weight: 500;
    position: relative;
    color: #fff;
    background: -webkit-linear-gradient(150deg, #fff 0%, #ff302e 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner-heading h3 {
    font-size: 42px;
    line-height: 50px;
    color: #fff;
    text-align: center;
}

/***************************************************
# SCROLLER
***************************************************/
.scroller__inner{
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.scroller[data-animated="true"] {
    overflow: hidden;
    /* -webkit-mask: linear-gradient(transparent, white) ;
    mask: linear-gradient(transparent, white) ; */
}

.scroller[data-animated="true"] .scroller__inner{
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;   
}
.scroller[data-direction="right"]{
    --_animation-direction:reverse;
}
.scroller[data-direction="left"]{
    --_animation-direction:forwards;
}
.scroller[data-speed="slow"]{
    --_animation-duration:100s;
}
.scroller[data-speed="medium"]{
    --_animation-duration:80s;
}
.scroller[data-speed="fast"]{
    --_animation-duration:20s;
}
@keyframes scroll{
    to{
        transform: translate(calc(-50% - 0.5rem));
    }
}


.service-list-scrolloer.scroller {
    border-top: 1px solid rgb(0 0 0 / 30%);
    border-bottom: 1px solid rgb(0 0 0 / 30%);
    padding: 20px;
}
.service-list-scrolloer .scroller__inner {
    padding: 0;
    margin: 0;
    gap: 4rem;
}
.service-list-scrolloer .scroller__inner li{
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 1px;
}
/*----------------------------------------------
# Header
----------------------------------------------*/
.header {
    position: absolute;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    padding: 10px 0px;
}
.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); 
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .navbar-toggler{
    background-color: #fff;
    color: #000;
    font-size: 18px;
    height: 40px;
}
.header .navbar-brand img {
    max-height: 50px;
}
.header .navbar .navbar-nav {
    background: rgb(0,0,0);
    padding: 10px;
    border-radius: 10px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0.3) 100%);
    backdrop-filter: blur(1px);
    box-shadow: inset 0px 0px 50px 0px rgb(0 0 0 / 100%);
}
.header .navbar .navbar-nav .nav-item:not(:last-child){
    margin-right: 10px;
}
.header .navbar .navbar-nav .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    transition: all .3s ease-in;
    min-width: 100px;
    text-align: center;
}
.header .navbar .navbar-nav .nav-link:hover, .header .navbar .navbar-nav .nav-item.active .nav-link{
    color: #fff;
    border: 1px solid #ff302e;
    background-color: #ff302e;
}
.header .navbar .navbar-nav .nav-item.active .nav-link{
    font-weight: 400;
}
.header .dropdown-toggle {
    padding-right: 30px !important;
    padding-left: 15px !important;
}
.header .dropdown-toggle::after {
    content: '\f135';
    display: inline-block;
    border-left: .3em solid transparent;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: none;
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
}
.header .show.dropdown-toggle::after{
    transform: rotate(-45deg);
}
.header  .dropdown-menu {
    padding: .5rem .5rem;
    font-size: 1rem;
    color: #fff;
    border: 1px solid rgb(0,0,0);
    border-radius: .25rem;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(255,255,255,.1) 50%, rgba(0,0,0,0.3) 100%);
    backdrop-filter: blur(1px);
    box-shadow: inset 0px 0px 100px 50px rgb(0 0 0 / 100%);
}
.header .dropdown-item {
    padding: .25rem 1rem;
    font-weight: 300;
    color: #fff;
    background-color: transparent;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 5px;
}
.header  .dropdown-menu li:not(:last-child){
    margin-bottom: 5px;
}
.header .dropdown-item:hover{
    background-color: #ff302e;
}
.inner-container {
    position: relative;
    z-index: 1;
    padding: 60px 30px;
}
.inner-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    backdrop-filter: blur(5px);
    z-index: -1;
    border-radius: 0 0 30px 30px;
    opacity: .4;
    border-top: none;
}
/*----------------------------------------------
# Hero Section
----------------------------------------------*/
.hero{
    background: url(../img/hero-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    z-index: 1;
}
.hero .container{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}
.hero-inner {
    height: 80%;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0.7764355742296919) 0%, rgba(255,255,255,0.1741946778711485) 51%, rgba(0,0,0,0.5131302521008403) 80%);
    backdrop-filter: blur(3px);
    border-radius: 50px 50px 0 0;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    box-shadow: inset 0px 0px 100px 30px rgb(0 0 0 / 100%);
}
.hero:before {
    content: '';
    height: 100vh;
    width: 100%;
    background: rgb(40,40,204);
    background: linear-gradient(180deg, rgba(40,40,204,0) 0%, rgba(255,255,255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-top {
    z-index: 1;
    position: relative;
    width: 100%;
}
.hero-bottom{
    width: 100%;
    padding-bottom: 30px;
}
.hero-heading {
    font-size: 62px;
    line-height: 74px;
    margin-bottom: 0;
    font-weight: 600;
    text-align: center;
}
.hero-heading span {
    background: -webkit-linear-gradient(150deg, #fff 0%, #ff302e 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subheading{
    margin-top: 30px;
    font-size: 24px;
    list-style: 32px;
    text-align: center;
}
.hero-widget{
    color: #fff;
    padding: 50px;
}
.hero-widget h2{
    font-size: 80px;
    font-weight: 400;
}
.hero-widget h4{
    font-size: 50px;
}
.hero-service-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hero-service-box .service-box-inner {
    position: relative;
    width: calc(33.33% - 30px);
    display: flex;
    justify-content: center;
}
.hero-service-box .service-box-inner h3 {
    position: relative;
    margin: 0;
    font-size: 32px;
    font-weight: 400;
}
.hero-service-box .service-box-inner h3 a{
    position: relative;
    color: #fff;
    text-decoration: none;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .5s;
}
.hero-service-box .service-box-inner h3 a i{
    font-size: 24px;
    display: inline-block;
    transform: rotate(0deg);
    margin-left: 15px;
    transition: all .5s;
    text-align: center;
}
.service-box-inner h3 a:before{
    content: '';
    height: 100%;
    width: 100%;
    border-bottom: 1px solid;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .5s;
    animation-name: borderchange2;
}

.service-box-inner h3 a:hover:before{
    border-color: #ff302e;
    width: 100%;
    animation-name: borderchange;
    animation-duration: .5s;
}
.service-box-inner h3 a:hover > i{
    color: #ff302e;
    transform: rotate(45deg);
}



.glowingball {
    position: absolute;
    left: 5px;
    top: 10px;
    z-index: 0;
    width: 14vw;
    height: 14vw;
    background-image: radial-gradient(circle farthest-corner at 50% 50%,#ff302e,#2eff30 54%,#ffc163);
    filter: blur(100px);
    font-size: 162px;
    animation: movingarea 5s linear infinite;
}

@keyframes movingarea {
  0%   {left:5px; top:10px;}
  25%  {left:200px; top:0px;}
  50%  {left:200px; top:200px;}
  75%  {left:0px; top:200px;}
  100% {left:5px; top:10px;}
}
@-webkit-keyframes movingarea {
   0%   {left:5px; top:10px;}
  25%  {left:200px; top:0px;}
  50%  {left:200px; top:200px;}
  75%  {left:0px; top:200px;}
  100% {left:5px; top:10px;}
}

.glowingball.gball {
    border-radius: 100%;
    background-image: repeating-linear-gradient(97deg,#ff302e,#ff9119 54%,#ffc163);
}
.glowingball.gball {
    overflow: hidden;
    width: 200px;
    height: 200px;
    border-radius: 100%;

}

.glowingball2 {
    position: absolute;
    top: 398px;
    right: 10px;
    z-index: 0;
    width: 14vw;
    height: 14vw;
    background-image: radial-gradient(circle farthest-corner at 50% 50%,#ff302e,#ff9119 54%,#ffc163);
    filter: blur(100px);
    animation: movingarea2 6s linear infinite;
}
.glowingball2.gball {
    top: 233px;
    overflow: hidden;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-image: repeating-linear-gradient(0deg,#ff302e,#ff9119 36%,#ffc163 69%,#ffd8cb 98%,#ffc163);
}

@keyframes movingarea2 {
    0%   {right:10px; top:398px;}
    25%  {right:100px; top:398px;}
    50%  {right:100px; top:298px;}
    75%  {right:10px; top:298px;}
    100% {right:10px; top:398px;}
    }
    @-webkit-keyframes movingarea2 {
    0% {right:10px; top:398px;}
    25%  {right:100px; top:398px;}
    50%  {right:100px; top:298px;}
    75%  {right:10px; top:298px;}
    100% {right:10px; top:398px;}
    }


    .animate-up-down{
        position: relative;
    }
    .animate-up-down{
      animation: up-down 1.5s ease-in-out infinite alternate-reverse both;
      animation-direction: alternate;
    }
    @-webkit-keyframes up-down {
      0% {
        transform: translateY(10px);
      }
      100% {
        transform: translateY(-10px);
      }
    }
    
    @keyframes up-down {
      0% {
        transform: translateY(10px);
      }
      100% {
        transform: translateY(-10px);
      }
    }
    
/*----------------------------------------------
# About Section
----------------------------------------------*/
.highlighted-lg{
    font-size: 60px;
}
.team-section{
    background-color: #F0F0E5;
}

.team-card{
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}
.team-content {
    background: #ff302ea6;
    position: absolute;
    left: 0;
    bottom: 0px;
    padding: 10px;
    color: #fff;
    transform: translateY(100%);
    transition: all .3s linear;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-card:hover .team-content{
    transform: translateY(0);
}
.team-content .name{
    font-size: 16px;
    line-height: 16px;
}
.team-content .role {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
}
.team-content .social-links a {
    color: #fff;
    font-size: 18px;
}
.team-content .social-links a:not(:first-child){
    padding-left: 5px;
}
.values-card {
    background-color: #EAE7E7;
    border-radius: 36px;
    padding: 30px;
}
.counter-row{
    padding-top: 60px;
    justify-content: space-between;
}
.counter-card {
    border: 1px solid;
    padding: 50px;
}
.counter-number {
    font-size: 75px;
    font-weight: 500;
    line-height: 80px;
    background-image: linear-gradient(to left, #000 30%, #ff302e 100%);
    -webkit-background-clip: text; 
    color: transparent; 
}
.counter-title {
    margin-top: 10px;
    font-size: 24px;
    
}
.counter-desc{
    margin-top: 10px;
    font-size: 14px;
}
/*----------------------------------------------
# Services Section
----------------------------------------------*/
.service-section {
    background-size: cover;
    background-color: #F0F0E5;
    background-repeat: no-repeat;
    position: relative;
}
.service-row .service-col {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgb(0 0 0 / 30%);
    padding: 30px 0px 30px 0px;
}
.service-col h2 {
    font-size: 64px;
    background: transparent;
}
.service-col h2 a{
    text-decoration: none;
    color: #000;
}
.service-row .service-col ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-top: 20px;
}
.service-row .service-col li {
    display: inline-block;
    font-size: 24px;
    position: relative;
    background: -webkit-linear-gradient(150deg, #0a0a36 0%, #ff302e 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-row .service-col li:not(:last-child){
    padding-right: 30px;
}
.service-row .service-col li:not(:last-child):before {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 2px;
    height: 100%;
    background: #000;
    transform: translate(-50%, -50%);
}
.service-card {
    border-bottom: 1px solid rgb(0 0 0 / 30%);
    padding: 50px 0px;
}
.service-card-body{
    display: flex;
    justify-content: space-between;
}
.service-card .service-card-body h3 {
    font-size: 64px;
    width: 45%;
}
.service-card-body div{
    width: 55%;
}
.service-card-body{
    font-size: 20px;
}
.service-card-body h4{
    font-size: 20px;
}
.service-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card ul > li {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid rgb(0 0 0 / 30%);
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.service-card ul > li:not(:last-child) {
    margin-right: 20px;
}

.service-card2{
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    padding: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-title {
    width: 45%;
}
.service-title h3{
    font-size: 42px;
    
}
.service-description {
    width: 30%;
}
.service-card2-inner{
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    padding-left: 50px;
}
.service-card2-inner ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card2-inner ul > li{
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.service-card2-inner ul > li:not(:last-child){
    margin-right: 15px;
}
.service-card2-inner .button-wrap{
    width: 100%;
}

/*----------------------------------------------
# Career Page
----------------------------------------------*/
.accordion-section .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-section .accordion-button:focus {
    box-shadow: none;
}

/*----------------------------------------------
# Our Work Section
----------------------------------------------*/
.project-card {
    position: relative;
}
.project-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.project-card-text{
    width: 70%;
}
.project-card-text h4{
    font-size: 18px;
    margin-bottom: 0px;
}
.project-card-text p{
    font-size: 14px;
    margin-bottom: 0px;
}
.project-card-button-wrap{
    width: 30%;
    align-self: center;
}

.project-sidebar{
    top: 120px;
}
.project-images img:not(:last-child){
    margin-bottom: 30px;
}
/*----------------------------------------------
# Client Section
----------------------------------------------*/
.client-slider-inner{
    list-style: none;
    padding: 0;
    margin: 0;
}
.client-slider-inner li{
    display: flex;
    align-items: center;
}
.client-slider-inner li > img {
    width: 150px;
}
/*----------------------------------------------
# Testimonial Section
----------------------------------------------*/
.testimonial-card {
    background: #ffffff;
    padding: 30px;
}
.test-client img{
    max-width: 100px;
}
.test-desc{
    padding: 30px 0;
}
.test-author{
    font-size: 14px;
}
.test-author span{
    font-weight: 400;
}
.testimonial-nav {
    display: flex;
    margin-top: 30px;
}
.rating{
    margin-bottom: 10px;
}
.rating i{
    font-size: 24px;
}
/*----------------------------------------------
# Contact Section
----------------------------------------------*/
.contact-card {
    display: flex;
    flex-wrap: wrap;
    min-height: 250px;
    padding: 50px;
    border: 1px solid;
    height: 100%;
}
.contact-heading{
    width: 100%;
}
.contact-heading h4 i{
    font-size: 40px;
    color: #ff302e;
}
.contact-heading h4{
    font-size: 34px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}
.contact-btn{
    display: flex;
    align-items: end;
}
.btn-socio-rounded-fill {
    color: #fff;
    border: 2px solid #ff302e;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    background-color: #ff302e;
    font-size: 18px;
    display: inline-block;
    transition: all .3s ease-in;
}
.btn-socio-rounded-fill:hover{
    color: #fff;
    background-color: #ff302e;
}

.form  label{
    color: #000;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 300;
}
.form .form-control {
    padding: 12px 15px 12px 0px;
    border-radius: 0px;
    border-color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    color: #000;
    font-weight: 300;
}
.form .form-control:focus {
    color: #000;
    background-color: transparent;
    border-color: #ff302e;
    box-shadow: none;
}
.form .form-check a{
    color: #ff302e;
    text-decoration: none;
}
.form-check-label{
    margin-bottom: 0px !important;
    padding-left: 15px;
}
.form .form-check-input:checked {
    background-color: #ff302e;
    border-color: #ff302e;
    width: 25px;
    height: 25px;
}
.btn-submit{
    color: #fff;
    border: 1px solid #0a0a36;
    padding: 12px 30px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 400;
    background-color: #0a0a36;
    font-size: 18px;
    min-width: 200px;
    display: inline-block;
    transition: all .3s ease-in;
    position: relative;
    z-index: 1;
}
.btn-submit:before{
    content: '';
    width: 0%;
    height: 100%;
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s linear;
}
.btn-submit:hover{
    color: #fff;
    border: 1px solid #ff302e;
}
.btn-submit:hover:before{
    width: 100%;
    background-color: #ff302e;
    transition: all .3s linear;
    z-index: -1;
}
label.error{
    color: red;
}


/*----------------------------------------------
# Footer Section
----------------------------------------------*/
.footer {
    background: #030310;
    padding-top: 80px;
    border-top: 1px solid rgb(255 255 255 / 10%);
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.footer .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-top {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    height: calc(100% - 160px);
    flex-direction: column;
}
.cta-heading {
    font-size: 75px;
    
    color: #fff;
}
.cta-heading img{
    width: 100px;
}
.footer-buttons {
    margin-top: 70px;
}
.footer-buttons a:first-child{
    margin-right: 30px;
}
.btn-socio-flat {
    color: #fff;
    border: 1px solid #ff302e;
    padding: 16px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    background-color: #ff302e;
    font-size: 18px;
    display: inline-block;
    transition: all .3s ease-in;
}
.btn-socio-flat:hover{
    color: #fff;
    border-color: #ff302e;
    background-color: #ff302e;
}
.btn-socio-bordered {
    color: #fff;
    border: 1px solid #fff;
    padding: 16px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    background-color: transparent;
    font-size: 18px;
    display: inline-block;
    transition: all .3s ease-in;
}
.btn-socio-bordered:hover{
    color: #fff;
    border-color: #ff302e;
    background-color: #ff302e;
}

.footer-nav {
    padding: 50px 0px;
}
.footer-nav li:not(:last-child) {
    padding-right: 30px;
}
.footer-nav a{
    color: #fff;
    padding: 0;
}
.footer-nav a:hover{
    color: #ff302e;
}
.right-circle-block {
    z-index: 2;
    justify-content: center;
    margin-right: 20px;
    display: flex;
    position: relative;
    width: 300px;
    height: 300px;
}
.cta-circle {
    z-index: 1;
    width: 200px;
    height: 200px;
    color: #fff;
    background-color: #ff302e;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    flex: none;
    justify-content: center;
    margin: 50px;
    transition: all .3s linear;
    display: flex;
    position: relative;
    align-items: center;
    text-decoration: none;
}
.cta-circle:hover {
    border-color: #0a0a36;
    color: #fff;
    background-color: #0a0a36;
}
.border-first {
    border: 1px dashed rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    animation: zooomIn 3s infinite;
    transition: ease-in-out .3s;
}
.border-second {
    border: 1px dashed rgba(255, 255, 255, .6);
    border-radius: 50%;
    margin: 30px;
    display: inline-block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    animation: zooomIn 3s linear infinite;
    transition: ease-in-out .3s;
}

@keyframes zooomIn {
    0%   {
        scale: 1;
        transform: rotate(0deg);
    }
    50%  {
        scale: 1.1;
        transform: rotate(360deg);
    }
    100% {
        scale: 1;
        transform: rotate(0deg);
    }
}
.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 30%);
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.social-links{
    margin-top: 0px;
}
.social-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-links li{
    display: inline-block;
}
.social-links li:not(:last-of-type) {
    margin-right: -10px;
}
.social-links li a {
    position: relative;
    width: 60px;
    height: 60px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff302e;
}

.social-links li span-text {
    font-size: 14px;
}
.social-links li a span:not(.social-icon) {
    color: #ff302e;
    font-weight: bold;
    font-size: 13px;
    transform-origin: center bottom;
    cursor: pointer;
}

.social-links li a:after, .social-links li a span:not(.social-icon) {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.55,0.02,0.1,0.9);
}

.social-links li a:after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff302e;
    transform: translate(-50%,-50%) scale(0.2);
}

.social-links li a:hover span:not(.social-icon) {
    opacity: 1;
    transform: matrix(1,0,0,1,0,-20);
    transition: all 0.6s cubic-bezier(0.75,-0.5,0,1.75);
}

.social-links li a span:not(.social-icon) {
    color: #ff302e;
    font-weight: bold;
    font-size: 13px;
    transform-origin: center bottom;
    cursor: pointer;
}
.social-links li a:hover:after {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: all 0.5s cubic-bezier(0.75,-0.5,0,1.75);
    transition-delay: 0.2s;
}
.social-links li a i {
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.social-links a:hover .social-icon i {
    opacity: 0;;
}
.social-links .social-icon i {
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
    font-size: 18px;
}
.copyright p{
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0px;
    text-align: right;
}
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-size: 14px;
    padding: 10px 13px;
    border: 1px solid #ff302e;
    color: #000;
    transition: opacity 0.5s;
}
.scroll-to-top.show {
    display: block;
    opacity: 1;
}
.scroll-to-top:hover{
    background-color: #ff302e;
    color: #fff;
}

/*----------------------------------------------
# Modal
----------------------------------------------*/
.custom-modal .modal-content{
    border-radius: 0px;
    border: none;
    background: url(../img/modal-bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.custom-modal .modal-body {
    padding: 50px 30px 30px;
}
.modal-form .form-control, .modal-form .form-select {
    border-radius: 0px;
    padding: 10px 15px;
}
.modal-form .form-control:focus{
    box-shadow: none;
    border-color: #ff302e;
}
.modal-form .btn-submit{
    padding: 9px 30px;
}
.modal-close {
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    color: #fff;
    border-color: #0000;
    font-size: 20px;
    z-index: 9999;
}
.modal-form-title{
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 28px;
}
.modal-text h4{
    font-size: 42px;
}
.modal-text p{
    font-size: 18px;
}