@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@300;400;700&display=swap');

@font-face {
  font-family: 'Mona Sans';
  src:
    url('./assets/fonts/Mona-Sans.woff2') format('woff2 supports variations'),
    url('./assets/fonts/Mona-Sans.woff2') format('woff2-variations'),
    url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2)
    format('woff2');
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

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

/*===== VARIABLES CSS =====*/
:root{
  /*===== Colors =====*/
  --body-background-color: #fff;
  --primary-color: #2A75D5;
  --red-color: #FF5630;
  --secondary-white-color: #F7F9FB;

  --text-bright-color: #fff;
  --text-primary-color: #000;
  --text-secondary-color: #595959;
  
  --text-third-color: #BEBEBE;
  --text-fourth-color: #BABABA;
  --underline-color: #D9D9D9;
  --blog-grey-text-color: #7D7D7D;
  
  --text-gray-color: #959595;
  --border-color: #5B596A;

  --navbar-height: 5.375rem;
  --main-button-hover: 0 4px 7px rgba(0, 0, 0, 0.15), 0 100px 80px rgba(255, 255, 255, 0.02), 0 42px 33px rgba(255, 255, 255, 0.024), 0 22px 18px rgba(255, 255, 255, 0.028), 0 12px 10px rgba(255, 255, 255, 0.050), 0 7px 5px rgba(255, 255, 255, 0.04), 0 3px 2px rgba(255, 255, 255, 0.07);
  --main-button-border: rgb(255 255 255 / 25%) 0 0 0 1px inset;
  --main-button-border-hover: rgb(255 255 255) 0 0 0 2px inset;
  --blue-button-hover: 0 4px 7px rgba(64, 149, 255, 0.15), 0 100px 80px rgba(64, 149, 255, 0.02), 0 42px 33px rgba(64, 149, 255, 0.024), 0 22px 18px rgba(64, 149, 255, 0.058), 0 12px 10px rgba(64, 149, 255, 0.080), 0 7px 5px rgba(64, 149, 255, 0.04), 0 3px 2px rgba(64, 149, 255, 0.07);
  --primary-grey-background: #121518;
}


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

html{
  position: relative;
}

main{
  position: relative;
}

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

/*===== Text Weights =====*/

.text_black{
  font-weight: 900;
}

.text_bold{
  font-weight: 700;
}

.text_regular{
  font-weight: 400;
}

.text_light{
  font-weight: 300;
}

/*===== 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 Colors =====*/

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

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

.text_third_color{
  color: var(--text-third-color);
}

.blue_gradient_text{
  background: linear-gradient(90deg, #146FE1 0%, #1C559D 100%);
  -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);
}

.page_container {
  flex-direction: column;
}

/*===== Text Fonts =====*/

.text_montserrat{
  font-family: 'Mona Sans';
}

.text_inter{
  font-family: 'Inter', sans-serif;
}

.main_h1_text{
  line-height: 3.5rem;
}

.main_description{
  margin: 2rem 0;
}

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

.flex_column{
  flex-direction: column;
}

.flex_row{
  display: flex;
  flex-direction: row !important;
}

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

.landing_section{
  overflow: hidden;
  padding: 5rem;
}

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

.main_second_section{
  display: flex;
  align-items: center;
  max-width: 50%;
  max-height: 500px;
}

.main_second_section img{
  width: 37rem;
}

.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: 0 2rem;
  height: auto;
}

.navbar_link_text{
  font-size: 1rem;
}

.service_first_text{
  margin-bottom: 1rem;
}

/* ====== 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_linear_button{
  background-size: 200% auto !important;
  background-image: linear-gradient(to right, #4095FF 0%, #005ED3 50%, #4095FF 100%) !important;
  transition: 0.5s !important;
}

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

.white_button{
  background-color: #fff;
  text-wrap: nowrap;
  transition: 0.3s;
}

.white_button:hover{
  transform: scale(1.05);
  background-color: #000;
  color: #fff;
}

.white_button:hover .work_together_arrow{
  fill: #fff !important;
  stroke: #fff !important;
}

.work_together_arrow{
  fill: #000 !important;
  stroke: #000 !important;
  transition: 0.3s;
}

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

  width: fit-content;
  border-radius: 0.6rem;
  text-align: center;
  padding: 1rem 1.75rem;
}

.arrow_button svg{
  margin-left: 1rem;
  width: 2.25rem;
}

/*===== Service Process Page =====*/
.service_process_section{
  width: 100%;
  background-image: url("./assets/color_gradient_background.png");
  background-size: cover;
  border-top: solid 2px #E8E8E8;
  border-bottom: solid 2px #E8E8E8;
}

.service_process_container{
  max-width: 1360px;
  width: 100%;
  padding: 3rem 2rem;
}

.text_background_container{
  position: relative;
}

.text_background{
  position: absolute;
  top: -1.7rem;
  right: -2.3rem;
  font-size: 20em;
  line-height: 0.75;
  color: rgba(62, 148, 254, 0.2);
}

.icon_background{
  position: absolute;
  right: -4rem;
  width: 15rem;
}

/*===== Portfolio Page =====*/

.portfolio_container{
  display: flex;
  max-width: 1360px;
  padding: 10rem 2rem;
  justify-content: center;
  gap: 10rem;
}

.portfolio_image{
  width: 30rem;
  border-radius: 2.125rem;
  margin-bottom: 1.5rem;
}

.portfolio_desc{
  margin: 1.75rem 0;
}

.portfolio_left_side{
  position: sticky;
  top: calc(var(--navbar-height) + 10rem);
  height: fit-content;
}

.small_advantages_container{
  display: flex;
  margin-top: 1.75rem;
  gap: 2rem;
}

.small_advantage p{
  margin-top: 1rem;
  max-width: 18rem;
}

.small_advantage_icon_container{
  background-color: #232323;
  border-radius: 100%;
  width: 5.625rem;
  height: 5.625rem;
}


#advantage_icon_1{
  width: 4rem;
}

#advantage_icon_2{
  width: 2.7rem;
}

/*===== Work Together Section =====*/
.work_together_section{
  width: 100%;
  background: linear-gradient(90deg, #5B95DD 0%, #4095FF 0.01%, #005ED3 100%);
}

.work_together_container{
  max-width: 1360px;
  width: 100%;
  padding: 5.5rem 2rem;
}

.work_together_text_container h3{
  margin-bottom: 1rem;
}

.work_together_text_container p{
  max-width: 50rem;
}

.work_together_container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*===== Article Section =====*/

.article_section_container{
  max-width: 1360px;
  padding: 0 2rem;
  width: 100%;
}

/*===== Blog Section =====*/

.color_box_title{
  margin-bottom: 1.5rem;
}

.flex_content_picture{
  cursor: pointer;
}

.flex_content_picture:hover .read_more_button{
  opacity: 1;
  transform: translateY(-1rem);
  transition: all 0.3s ease-in-out;
}

.read_more_button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  position: relative;
  height: 0;
  bottom: 1rem;
  padding: 0 1.5rem;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.read_article_icon{
  width: 1.125rem;
}

.flex_card_container{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog_picture{
  width: 100%;
  max-height: 16rem;
  border-radius: 1.25rem;
  aspect-ratio: 394/454;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.flex_card{
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(28, 118, 230, 0.2);
  border-radius: 9.6px;
  padding: 1.5rem;

  width: 100%;
  flex: 0 0 calc(50% - 0.5rem);
  max-width: calc(50% - 0.5rem);
  overflow: hidden;
}

.flex_content{
  overflow: hidden;
  height: 100% !important;
  display: block;
}

.flex_inner{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.blog_title{
  margin: 4rem 0 .7rem 0;
}

.blog_short_description{
  line-height: 1.3rem;
}

.blog_more_info_container{
  display: flex;
  align-items: center;
  height: 2rem;
}


/*===== FAQ Section =====*/
.faq_section{
  width: 100%;
}

.faq_section_container{
  max-width: 1360px;
  width: 100%;
  padding: 3rem 2rem;
}

.title_text{
  display: block;
  font-weight: bold;
}

#faq {
  text-align: center;
}

section.faq {
  padding-top: 2em;
  padding-bottom: 3em;
}

#faq ul {
  text-align: left;
}
.transition, p, ul li i:before, ul li i:after {
  transition: all 0.3s;
}

#faq .no-select, #faq label {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

#faq .title_text{
  margin-bottom: 2rem;
  margin-top: 0;
  text-align: left;
}

#faq label {
  color: #111928;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  text-transform: none;
  display: block;
  margin: 0;
  cursor: pointer;
  transition: .2s;
}

#faq p {
  color: #333;
  text-align: left;
  font-size: 1rem;
  line-height: 1.45;
  position: relative;
  overflow: hidden;
  max-height: 250px;
  will-change: max-height;
  contain: layout;
  display: block;
  opacity: 1;
  transform: translate(0, 0);
  padding: 0 1rem;
  transition: .3s opacity, .6s max-height;
  hyphens: auto;
  z-index: 2;
  margin: 1rem 0;
}

#faq ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
#faq ul li {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  /*padding-bottom: 4px;*/
  /*padding-top: 18px;*/
  background: #fff;
  border-top: 1px solid #E5E7EB;
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  -webkit-tap-highlight-color: transparent;
}

#faq ul li:first-of-type {
  border-radius: 7px 7px 0 0;
}

#faq ul li:last-of-type {
  border-radius: 0 0 7px 7px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 2rem;
}

#faq ul li:last-of-type {
  padding-bottom: 0;
}
#faq ul li i {
  transform: translate(-6px, -5px);
  margin-left: 1rem;
}
#faq ul li i:before, ul li i:after {
  content: "";
  position: absolute;
  background-color: #6B7280;
  width: 0.1875rem;
  height: 0.5625rem;
  border-radius: 50%;
}
#faq ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#faq ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#faq ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  touch-action: manipulation;
}
#faq ul li input[type=checkbox]:checked ~ .question label {
  color: #6B7280;
}
#faq ul li input[type=checkbox]:checked ~ p {
  /*margin-top: 0;*/
  max-height: 0;
  transition: .3s;
  opacity: 0;
  margin: 0;
  /*transform: translate(0, 50%);*/
}

#faq ul li input[type=checkbox]:checked ~ .question{
  background: #fff;
}
#faq ul li input[type=checkbox]:checked ~ .question i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#faq ul li input[type=checkbox]:checked ~ .question i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

.question{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2rem;
  padding: 1.5rem 1rem;
  background: #E5E7EB;
  transition: .2s;
}

/* ====== 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;
}

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

@media (min-width: 680px){
  .flex_card{
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}

@media (min-width: 1024px){
  .flex_card{
    flex: 0 0 calc(33.33333% - 0.6666666rem);
    max-width: calc(33.33333% - 0.6666666rem);
  }
}

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

@media screen and (max-width: 1010px){
  /* Services Page */
  .bento_container{
    flex-direction: column;
  }

  .smaller_bento{
    height: auto;
  }
  
  .bottom_bento_container .smaller_bento{
    min-height: 12rem;
  }

  .second_bento .smaller_bento{
    min-height: 17rem;
  }

  .second_bento .bento_inner_container{
    flex-direction: row;
  }

  .service_info .text_2304{
    font-size: 1.728rem;
  }

  .service_info .text_1333{
    font-size: 1.2rem;
  }

  .print_service_card{
    min-height: 41rem;
    padding: 2rem;
  }

  .print_service_card .service_info h2{
    font-size: 2.074rem;
  }

  .print_service_card .service_info p{
    font-size: 1.440rem;
  }

  .print_service_icon{
    bottom: -7.5rem;
    left: -7.7rem;
    height: 35rem;
  }
}

@media screen and (max-width: 850px){
  /* Main Page */

  .landing_section{
    padding: 3rem 0;
  }
  .main_content{
    flex-direction: column;
  }

  .main_second_section{
    order: 1;
    max-width: calc(100% + 10rem);
    max-height: 75vw;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .main_first_section{
    order: 2;
  }

  /* Services Page */
  .second_bento .bento_inner_container{
    flex-direction: column;
  }

  .bottom_bento_container{
    flex-direction: column;
  }
  
  .webservice_bg_picture{
    right: -5rem;
  }
  
  .smaller_bento{
    padding: 1.5rem;
  }

  /* Portfolio Section */
  .portfolio_container {
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 2rem;
  }

  .portfolio_right_side{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .portfolio_right_side img{
    width: calc(50% - 2rem);
    margin-bottom: 0;
  }

  .portfolio_left_side{
    position: static;
  }

  /* Footer Vertical Direction */

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

  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;
  }

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

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

  /* Articles */
  
  .article_card{
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }

  /* Navbar settings */

  .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: 1.25rem 3rem;
    width: 100%;
  }

  .nav_links_container li:first-of-type{
    padding: 2.5rem 3rem 1.25rem 3rem;
  }

  .contact_arrow_icon{
    display: block;
  }

  .contact_ref_li{
    order: 1;
    padding: 1.25rem 3rem 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;
  }
}

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

  .main_first_section .text_3981{
    font-size: 2.074rem;
  }

  .portfolio_right_side img{
    width: 100%;
  }

  .portfolio_left_side .text_5733{
    font-size: 2.986rem;
  }

  .work_together_container{
    flex-direction: column;
  }

  .work_together_button_container{
    margin-top: 2rem;
  }

  .work_together_text_container{
    text-align: center;
  }
}

@media screen and (max-width: 510px){
  .flex_card{
    flex: 0 0 calc(100% - 0.5rem);
    max-width: calc(100% - 0.5rem);
  }

  .blog_picture{
    height: 20rem;
  }
}


/*===== 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);
    }
}