@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*===== VARIABLES CSS =====*/
:root{
  --body-background-color: #fff;
  --primary-color: #2A75D5;
  --red-color: #FF5630;
  --text-bright-color: #fff;
  --text-primary-color: #322F2F;
  --text-secondary-color: #D2D2D2;
  --underline-color: #D9D9D9;
  --text-gray-color: #959595;
  --navbar-height: 5.375rem;
  --primary-grey-background: #121518;
  --blue-button-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(63, 132, 218, 0.02), 0 42px 33px rgba(63, 132, 218, 0.024), 0 22px 18px rgba(63, 132, 218, 0.058), 0 12px 10px rgba(63, 132, 218, 0.080), 0 7px 5px rgba(63, 132, 218, 0.04), 0 3px 2px rgba(63, 132, 218, 0.07);
}

body{
  background-color: var(--body-background-color);
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  color: var(--text-primary-color);
}

html{
  overflow-x: hidden;
  position: relative;
}

main{
  overflow: hidden;
  position: relative;
}


/*===== Basic Text Properties =====*/

/*===== Text Weights =====*/
.text_bold{
  font-weight: 700;
}

.text_regular{
  font-weight: 400;
}

.text_light{
  font-weight: 300;
}

/*===== Text Colors =====*/

.text_bright{
  color: var(--text-bright-color);
}

/*===== Text Sizes =====*/

.text_8256{
  font-size: 5.160rem;
}

.text_6880{
  font-size: 4.300rem;
}

.text_5733{
  font-size: 3.583rem;
}

.text_4778{
  font-size: 2.986rem;
}

.text_3981{
  font-size: 2.488rem;
}

.text_3318{
  font-size: 2.074rem;
}

.text_2765{
  font-size: 1.728rem;
}

.text_26{
  font-size: 1.625rem;
}

.text_2304{
  font-size: 1.440rem;
}

.text_1920{
  font-size: 1.200rem;
}

.text_1600{
  font-size: 1.000rem;
}

.text_1333{
  font-size: 0.833rem;
}

.text_bold{
  font-weight: 700;
}

.text_gray{
  color: var(--text-gray-color);
}

.red_text{
  color: var(--red-color);
}

.secondary_text{
  color: var(--text-secondary-color);
}

.blue_gradient_text{
  background: linear-gradient(90.36deg, #5B95DD 0.32%, #4095FF 51.14%, #005ED3 102.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.basic_text_button{
  color: #000;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}

.basic_text_button:hover{
  color: var(--primary-color);
}

.text_center{
  text-align: center;
}

.flex_full_center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_column{
  flex-direction: column;
}

/*===== Main Page =====*/

.page_container{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
}

.grey_container{
  background-color: var(--primary-grey-background);
}

.dark_page{
  background: linear-gradient(180deg, #204088 -132.31%, rgba(32, 64, 136, 0) 100%);
  background-repeat: no-repeat;
}

.dark_page_2{
  background: radial-gradient(90.44% 47.08% at 50% 52.92%, #001835 0%, var(--primary-grey-background) 100%);
  background-repeat: no-repeat;
}

.main_first_section{
  width: 100%;
  z-index: 1;
}

.main_first_section p{
  width: 100%;  
}

header{
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: center;
  height: var(--navbar-height);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--body-background-color);
  z-index: 1000;
}

nav{
  max-width: 1360px;
  width: 100%;
  height: var(--navbar-height);
  padding: 0 2rem;
}

.contact_ref_button{
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  border-radius: 0.6rem;
  text-align: center;
  padding: .75rem 1.75rem;

  transition: box-shadow 0.3s ease-in-out;
  color: var(--text-bright-color);
  font-weight: 700;
}

.contact_ref_button svg{
  display: none;
}

main{
  padding-top: var(--navbar-height);
}

.navbar_container{
  max-width: 1360px;
  width: 100%;
  justify-content: space-between !important;
}

.nav_links_container ul{
  display: flex;
  align-items: center;
  list-style-type: none;
  white-space: nowrap;
}

.nav_links_container li{
  margin-right: 3rem;
  cursor: pointer;
}

.nav_links_container li:last-child{
  margin-right: 0;
}

.nav_links_container li:after {
  display: block;
  content: '';
  border-bottom: solid 1px var(--primary-color);  
  transform: scaleX(0);  
  transition: transform 0.3s ease-in-out;
}

.nav_links_container li:hover:after {
  transform: scaleX(1);
  cursor: pointer;
}

.contact_ref_li:hover:after{
  transform: scaleX(0) !important;
}

.hamburger{
  display: none;
  margin-left: 1rem;
}

.hamburger .hamburger_line{
  width: 2.2rem;
  height: 0.15rem;
  background-color: var(--text-primary-color);
  display: block;
  margin: .5rem auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger .hamburger_line_white{
  background-color: var(--text-bright-color) !important;
}

.hamburger:hover{
  cursor: pointer;
}

.hamburger.is-active .hamburger_line:nth-child(2){
  opacity: 0;
}

.hamburger.is-active .hamburger_line:nth-child(1){
  -webkit-transform: translateY(0.65rem) rotate(45deg);
  -ms-transform: translateY(0.65rem) rotate(45deg);
  -o-transform: translateY(0.65rem) rotate(45deg);
  transform: translateY(0.65rem) rotate(45deg);
}

.hamburger.is-active .hamburger_line:nth-child(3){
  -webkit-transform: translateY(-0.65rem) rotate(-45deg);
  -ms-transform: translateY(-0.65rem) rotate(-45deg);
  -o-transform: translateY(-0.65rem) rotate(-45deg);
  transform: translateY(-0.65rem) rotate(-45deg);
}

.slide_navbar{
  max-height: 40rem !important;
}

.logo_small{
  width: 4.556rem;
  filter: drop-shadow(0px 0px 80px rgba(63, 132, 218, 0.7));
  margin-right: 1rem;
}

.logo_container{
  display: flex;
  align-items: center;
  margin-right: 3rem;
}

.main_content{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  padding: 4rem 2rem;
  height: auto;
}

.more_contact{
  padding: 2rem 2rem 6rem 2rem;
}

.navbar_link_text{
  font-size: 1rem;
}

.full_height{
  height: calc(100vh - var(--navbar-height));
}

.bussiness_desc{
  max-width: 50rem;
  margin: 1rem 0 2rem 0;
}

.custom_scroll_link{
  cursor: pointer;
}

/* ====== Language Picker ====== */
.language_selector_container{
  position: relative;
  top: 0;
}

.languagepicker {
  position: absolute;
  top: -1rem;
	background-color: #ffffff;
	display: inline-block;
	padding: 0;
	height: 2rem;
	overflow: hidden;
	transition: all .3s ease;
	vertical-align: top;
}

.languagepicker:hover {
	/* don't forget the 1px border */
	height: 6rem;
  box-shadow: 0px 5px 10px rgba(20,20,20,0.15);
}

.languagepicker img{
  height: 1.5rem;
}

.languagepicker a{
	color: black;
	text-decoration: none;
}

.languagepicker li {
	display: flex;
  justify-content: center;
  align-items: center;
	padding: 0 .7rem;
	border-top: 1px solid #e7e7e7;
  height: 2rem;
}

.languagepicker li:hover{
	background-color: #EEE;
}

.languagepicker div:first-child li {
	border: none;
	background: #f0f0f0 !important;
  cursor: pointer;
}

.languagepicker li img {
	margin-right: 5px;
}

.roundborders {
	border-radius: 5px;
}

/*===== Buttons =====*/

.button{
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.blue_button{
  background-color: var(--primary-color);
  transition: box-shadow 0.3s ease-in-out;
}

.blue_button:hover{
  box-shadow: var(--blue-button-hover);
  transition: box-shadow 0.3s ease-in-out;
}

.blue_linear_button{
  background-size: 200% auto;
  background-image: linear-gradient(to right, #4095FF 0%, #005ED3 50%, #4095FF 100%);
  transition: 0.5s;
}

.blue_linear_button:hover{
  background-position: right center;
  box-shadow: var(--blue-button-hover);
}


/*===== Page Title =====*/

.page_title{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6.625rem;
}

.page_title_underline{
  display: flex;
  width: 11.5rem;
  height: 2px;
  background-color: var(--underline-color);
}

.page_title_underline_highlight{
  width: 2.875rem;
  height: 4px;
  background-color: var(--primary-color);
  transform: translateY(-1px);
}

/* ====== Footer Section ====== */
li{
  list-style: none;
}

a{
  text-decoration: none;
  color: var(--text-primary-color);
}

footer{
  background-color: #fff;
  padding: 3.25rem 0;
}

footer li{
  font-size: 1rem;
}

.footer_button{
  display: inline-block;
  padding: .3rem 0;
}

.footer_line_container .page_title_underline{
  display: flex;
  height: 2px;
  background-color: var(--underline-color);
}

.page_title_underline_highlight{
  background-color: var(--primary-color);
  width: 2.875rem;
  height: 4px;
  transform: translateY(-1px);
}

footer h2{
  font-size: 1.25rem;
}

.footer_line{
  margin: .5rem 0;
  width: 7.5rem;
}

footer section{
  margin: 0 5.5rem;
}

.brand_social_container{
  white-space: nowrap;
  text-align: center;
}

.netlin_glow_small{
  width: 4.5rem;
  /*filter: drop-shadow(0px 0px 30px rgb(0, 114, 255));*/
}

.social_icon{
  width: 2rem;
  margin: .5rem;
}

/* ====== Other Contact Section ====== */

.contact_left_side{
  flex-wrap: wrap;
}

.contact_card{
  width: 14.375rem;
  height: 11.625rem;
  background-color: #fff;
  box-shadow: 0px 0px 40px rgba(242, 242, 242, 0.25);
  border-radius: 7px;
  margin: .5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact_card:hover{
  transform: translateY(-0.5rem);
  transition: all 0.3s ease;
}

.contact_card_title{
  margin: .5rem 0;
}

.contact_card_desc{
  text-align: center;
}

.contact_card_icon{
  width: 3.125rem;
  height: 3.125rem;
}

.contact_head_title{
  margin-bottom: .5rem;
}

/* ====== Background Lines ====== */

.lines {
  position: absolute;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  transform: rotate(-15deg);
}

.horizontal_animation_line{
  position: absolute;
  width: 125%;
  height: 1px;
  top: 0;
  left: -10rem;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.second_horizont{
  margin-top: 60vh;
}

.line:nth-child(1){
  height: 180vh;
}

.line:nth-child(2){
  height: 175vh;
}

.contact_section .line:nth-child(1){
  height: 227vh;
}

.contact_section .line:nth-child(2){
  height: 215vh;
}

.line {
  position: absolute;
  width: 1px;
  height: 110vh;
  top: -20vh;
  left: 8rem;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.horizontal_animation_line::after {
  content: "";
  display: block;
  position: relative;
  height: 15vh;
  width: 10rem;
  background: linear-gradient(to right, rgba(119, 180, 250, 0) 0%, #3B82F6 75%, #3B82F6 100%);
  transform: translateX(-100%);

  animation: drop_right 9s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.22,.9,.63,.84);
  -webkit-animation: drop_right 9s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(.22,.9,.63,.84);
}

.line::after {
  content: "";
  display: block;
  position: relative;
  height: 15vh;
  width: 100%;
  background: linear-gradient(to bottom, rgba(119, 180, 250, 0) 0%, #3B82F6 75%, #3B82F6 100%);
  transform: translateY(-100%);

  animation: drop 11s 0s infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  -webkit-animation: drop 11s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(.22,.9,.63,.84);
}
.line:nth-child(1) {
  margin-left: 25rem;
}
.line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.second_horizont::after{
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

/*===== Get Offer Section =====*/

*:disabled{
  opacity: .3 !important;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

div[disabled]{
  opacity: .3 !important;
  pointer-events: none;
  cursor: not-allowed;
}

#budget_input_container{
  display: none;
}

.form_bottom_title{
  margin-top: .4rem;
}

.form_outter_container{
  background: linear-gradient(180deg, #204088 -300%, rgba(18, 21, 24, 0.9) 100%);
  border-radius: 26px;
}

.get_offer_form {
  height: 36rem;
}

.form_input_container{
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.form_input_element{
  flex: 1 0 25%;
}

.form_input_element label{
  white-space: nowrap;
  display: block;
  margin-bottom: .3rem;
}

.form_input{
  display: block;
  width: 100%;

  background: rgba(250, 250, 250, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: .5rem;
  height: 2.25rem;

  font-family: 'Inter';

  transition: border 0.3s ease;
}

.form_input:hover, .form_message:hover{
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border 0.3s ease;
}

.form_input:focus, .form_message:focus{
  outline: none;
  border: 1px solid rgba(61, 139, 221, 1);
  transition: border 0.3s ease;
}

.form_message{
  width: 100%;
  max-height: 9rem;
  flex-grow: 1;

  border: none;
  overflow: auto;
  outline: none;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  resize: none;

  background: rgba(250, 250, 250, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: .5rem;
  margin: 1rem 0;

  font-family: 'Inter';

  transition: border 0.3s ease;
}

.form_button{
  background: rgba(61, 139, 221, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  width: 100%;
  height: 2rem;

  font-family: 'Inter';
  transition: all 0.3s ease;
}

.form_button_holder{
  width: 100%;
}

.button_loading .button_text_loader{
  cursor: not-allowed;
}

.button_loading .form_button_holder:hover .form_button{
  transform: scale(1);
  background: rgba(61, 139, 221, 0.6);
  transition: all 0.3s ease;

  cursor: not-allowed !important;
}

.form_button_holder:hover .form_button{
  transform: scale(1.05);
  background-color: rgba(61, 139, 221, 1);
  transition: all 0.3s ease;

  cursor: pointer;
}

#mobile_screen_offer_button{
  display: none;
}

.form_message_container{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 50%;

  flex-grow: 1;
  padding: 2rem;

  background: rgba(0, 0, 16, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0px 0px 0px 15px;
}

.form_data_container{
  padding: 2rem;
  
  background: rgba(0, 0, 16, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px 0px 0px 0px;
}

.form_container{
  max-width: 85rem;
  padding: .8rem;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
}

.form_right_side{
  display: flex;
  flex-direction: column;
  align-items: center;

  height: 100%;

  background: rgba(0, 0, 16, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0 15px 15px 0;
  padding: 2rem;
}

.form_left_side{
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
}

.calendar{
  margin-top: 2rem;
}

.calendar_text{
  max-width: 20rem;
}

.vanilla-calendar{
  background: transparent !important;
  padding: 0 !important;
  font-family: 'Inter' !important;
  min-width: unset !important;
}

.vanilla-calendar-day{
  width: auto !important;
  padding: .5rem !important;
}

.vanilla-calendar-day__btn_today{
  background: transparent !important;
}

.vanilla-calendar-day__btn{
  font-family: 'Inter' !important;
  font-weight: 800 !important;
}

[data-calendar-theme="dark"] .vanilla-calendar-month.vanilla-calendar-month_disabled, [data-calendar-theme="dark"] .vanilla-calendar-year.vanilla-calendar-year_disabled{
  color: #fff !important;
  opacity: 1 !important;
}

[data-calendar-theme="dark"] .vanilla-calendar-day__btn_disabled{
  background: transparent !important;
}

[data-calendar-theme="dark"] .vanilla-calendar-day__btn{
  background: transparent !important;
}

[data-calendar-theme="dark"] .vanilla-calendar-day__btn_selected{
  background: rgba(61, 139, 221, 1) !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

.vanilla-calendar-month, .vanilla-calendar-year{
  font-family: 'Inter' !important;
}

.vanilla-calendar-month{
  order: 1 !important;
}

.vanilla-calendar-header{
  margin-bottom: 1.5rem !important;
}

.vanilla-calendar-header__content{
  justify-content: left !important;
  padding-left: 0 !important;
}

.vanilla-calendar-arrow_prev, .vanilla-calendar-arrow_next{
  order: 1 !important;
}

.vanilla-calendar-week{
  margin-bottom: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11) !important;
  padding-bottom: 1rem !important;
}

/*===== Lines Animation =====*/

@-webkit-keyframes drop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(1600%);
  }
}

@keyframes drop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(1600%);
  }
}

@-webkit-keyframes drop_right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(1300%);
  }
}

@keyframes drop_right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(1300%);
  }
}

/*===== Media Queries =====*/

@media screen and (max-width: 1280px){
  html{
    font-size: 12px;
  }
}


@media screen and (max-width: 950px){
  html{
    font-size: 10px;
  }
}

@media screen and (max-width: 800px){
  /* Footer Vertical Direction */

  .footer_container{
    flex-direction: column;
    text-align: center;
  }

  .brand_social_container{
    order: 1;
  }

  .contact_container{
    order: 2;
    margin: 3rem 0;
  }

  .more_information_container{
    order: 3;
    margin: 0;
  }

  footer li{
    font-size: 1.3rem;
  }

  footer h2{
    font-size: 1.7rem;
  }

  .footer_button{
    padding: 1rem 1rem;
  }
  
  .footer_line_container{
    display: flex;
    justify-content: center;
  }

  .footer_line_container .page_title_underline{
    display: flex;
    justify-content: center;
  }

  /* Footer Vertical Direction */
}

@media screen and (max-width: 725px){
  .get_offer_form{
    height: 47rem;
  }
  
  .form_right_side{
    justify-content: center;
  }
}

@media screen and (max-width: 610px){

  .form_right_side{
    border-radius: 0 0 15px 15px;
  }

  .form_data_container{
    border-radius: 15px 15px 0 0;
  }

  .form_message_container{
    border-radius: unset;
  }

  .form_input_element{
    flex: 1 0 45%;
  }

  #full_screen_offer_button{
    display: none;
  }

  #mobile_screen_offer_button{
    display: flex;
    margin-top: 2rem;
  }

  .get_offer_form{
    height: auto;
    flex-direction: column;
  }

  .form_right_side{
    width: 100%;
  }

  .calendar_text{
    max-width: 30rem;
  }

  .hamburger{
    display: block;
    z-index: 1001;
  }

  nav{
    padding: 0;
  }

  .navbar_container{
    padding: 0 2.5rem;
  }

  .nav_links_container{
    display: block;
    position: fixed;
    top: var(--navbar-height);
    right: 0;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    z-index: 500;
    background-color: var(--body-background-color);
    border-top: 1px solid rgb(230,230,230);
    box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.1);
    transition: max-height 0.9s cubic-bezier(0.4, 0.26, 0, 0.97);
  }

  .nav_links_container ul{
    flex-direction: column;
    align-items: flex-start;
  }

  .nav_links_container li{
    padding: 2.5rem 3rem 0 3rem;
    width: 100%;
  }

  .contact_ref_button{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    border-radius: 0.6rem;
    text-align: center;
    padding: 1rem;

    background: linear-gradient(90.36deg, #5B95DD 0%, #4095FF 0%, #005ED3 100%);
    transition: box-shadow 0.3s ease-in-out;
    color: var(--text-bright-color);
    font-weight: 700;
  }

  .contact_arrow_icon{
    display: block;
  }

  .contact_ref_li{
    order: 1;
    padding: 2.5rem 3rem !important;
  }
  
  .nav_links_container li::after{
    display: none;
  }

  .navbar_container{
    background-color: var(--body-background-color);
    height: var(--navbar-height);
    z-index: 1002;
  }

  .navbar_link_text{
    font-size: 1.3rem;
  }

  .lines{
    top: 15rem;
  }

  .horizontal_animation_line{
    left: -3rem;
    width: 150%;
  }

  .line:nth-child(1) {
    margin-left: 30rem;
  }

  .horizontal_animation_line::after {
    left: -12rem;
  }
}

/*===== Preloader =====*/

.loader_logo{
  width: 4rem;
}

#preloader_container{
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  z-index: 999999;
  transition: opacity 0.5s ease-in-out;
}

#loader {
  display: flex;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
}

.outter_circle{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
}

.outter_circle:before{
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  border: 3px solid transparent;
  border-top-color: #3E83DF;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#preloader{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 0;
  top: 0;
  width: 150px;
  height: 150px;
}

#preloader:after{
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 100%;
  border: 3px solid transparent;
  border-top-color: #264992;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

#preloader:before{
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 100%;
  border: 3px solid transparent;
  border-top-color: #4C52D1;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.preloader_text{
  margin-top: 1.5rem;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.button_text_loader{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
  overflow: hidden;
  width: 20rem;
  height: 2rem;
}

.offer_text_container{
  display: flex;
  justify-content: center;
  align-items: center; 
}

.button_loader, .button_loader:after {
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
}

.button_loader {
  margin-right: 1rem;
  font-size: 0.625rem;
  position: relative;
  text-indent: -9999em;
  border-top: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-right: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-left: 0.25rem solid #ffffff;
  transform: translateZ(0);
  animation: loaderSpin 1.1s infinite linear;
}


#offer_loader_container{
  position: absolute;
  transform: translateY(-1rem);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.button_loading #offer_loader_container{
  opacity: 1;
  transform: translateY(0);
}

#offer_text{
  position: relative;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.button_loading #offer_text{
  opacity: 0;
  transform: translateY(1rem);
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}