/*
	Abstracts are helpers, variables and functions
	for scss compliation.
*/
/*
	@TODO: Add to theme: new division fix for updated sass package.
*/
/**==================================================================================================================================
BREAKPOINT
@TODO: remove? What is use case?? either use simple global points or write custom line. why does first breakpoint have to be 0?
 ==================================================================================================================================*/
/**==================================================================================================================================
BREAKPOINT ENDS
==================================================================================================================================*/
span.edit-link {
  display: inline-block;
  background-color: yellow;
  font-weight: 700;
  position: fixed;
  left: 0;
  bottom: 3.125rem;
  transform: translateX(-45px);
  transition: all 0.4s;
}

span.edit-link a {
  display: block;
  padding: 0.9375rem;
}

span.edit-link:hover {
  transform: translateX(0);
}

/*
	Variables for compliation
	NB! Colors should be added to base/config file as css root variable.
*/
/**
 * Block section background colors.
 * Include the background options ACF fields group to use these.
 */
/*
 * makes ul/ol as a dropdown select (normaly in mobile)
 * Structure: div > title > list > li > a
*/
/*
	Variables for legacy dc plugins
*/
section.big-text-box .big-text-box-container {
  max-width: 938px;
  padding: 60px 0;
  font-family: "TT Commons Pro", sans-serif;
  color: #375172;
  display: flex;
  flex-direction: column;
  gap: 29px;
}

section.big-text-box .big-text-box-container .title-container h2 {
  font-size: 90px;
  font-weight: 700;
  line-height: 110%;
}

section.big-text-box .big-text-box-container .text-button-container {
  display: flex;
  align-items: flex-end;
  gap: 115px;
}

section.big-text-box .big-text-box-container .text-button-container .box-text p {
  max-width: 696px;
  font-size: 20px;
  font-weight: 200;
  line-height: 128%;
  margin: 0;
}

section.big-text-box .big-text-box-container .text-button-container .box-text p:not(:last-child) {
  padding-bottom: 30px;
}

section.big-text-box .big-text-box-container .text-button-container .read-more {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 150px;
  font-size: 1.25rem;
  border: 1px solid #375172;
}

section.big-text-box .big-text-box-container .text-button-container .read-more:hover {
  border: 1px solid #375172;
  background-color: #375172;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  section.big-text-box .big-text-box-container .text-button-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (max-width: 1100px) {
  section.big-text-box .big-text-container .big-text-box-container .title-container h2 {
    font-size: 4.375rem;
  }
}
@media screen and (max-width: 768px) {
  section.big-text-box .big-text-container {
    justify-content: center;
  }
  section.big-text-box .big-text-container .big-text-box-container {
    padding: 40px 0;
    width: 100%;
    gap: 29px;
  }
  section.big-text-box .big-text-container .big-text-box-container .title-container h2 {
    font-size: 48px;
  }
  section.big-text-box .big-text-container .big-text-box-container .text-button-container .box-text p {
    width: 100%;
  }
}
