/* #region General styles */

* {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Bronova-Bold;
}

H1,
H2,
H3,
H4,
H5,
H6 {
    font-family: MADEOuterSansAlt-Medium;
}

.text-white {
    color: var(--color-white);
}

.decoration-none{
    text-decoration: none;
}

.non-style-list {
    list-style: none;
}

.hiddenblock {
    display: none;
}

.adjusted-width-element {
    display: inline-block;
    width: auto;
}

.right-side-aligment-with-margin {
    display: block;
    /* border: solid red 1px; */
    text-align: right;
    margin-right: 20%;
}

.pointer-cursor{
    cursor: pointer;
}

.white-letters{
    color: var(--color-white);
}

.grid-inputs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.background-gradient{
    background-color: transparent;
    background-image: linear-gradient(110deg, #e63c2d 52%, #ff6a00 78%);
    opacity: 0.78;
    /* transition: background 0.3s, border-radius 0.3s, opacity 0.3s; */
}

.heigh-scrollable-alerts{
    height: 250px;
}

.legal-content-font-style {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.standard-content-font-style {
    font-family: Bronova-Bold;
    font-size: 15px;
    font-weight: 500;
}

.standard-titles-font-style {
    font-family: MADEOuterSansAlt-Medium;
    font-size: medium;
    font-weight: 500;
}

/* #endregion General styles */






/* #region Footer */

footer {
    background-color: #1C1C27;
    color: #FFFFFF;
    list-style: none;
}


.footer-component-three{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-content{
    display: flex;
    flex-direction: column;
    width: 175px;
    align-items: center;
}

.legal-content > li{
    padding-bottom: 10px;
}



/* #region Diseño SVG Footer-wave */
footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

footer-wave svg {
    position: relative;
    display: block;
    width: calc(143% + 1.3px);
    height: 150px;
}

.shape-fill {
    fill: #FFFFFF;
}

.shape-fill-top {
    fill: var(--color-raisin-black);
}

.shape-bg-top {
    background-color: var(--color-raisin-black);
}

.top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
}

.frontal-mixed-top-wave {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 88vh;
    line-height: 0;
    z-index: 1;
}

.svg-with-circuit{
    height: 88vh;
    width: 100%;
}

.asymetrical-triangle-intersection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.asymetrical-triangle-intersection svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.asymetrical-triangle-intersection .shape-fill-triangle {
    fill: #CCCCCC;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .asymetrical-triangle-intersection svg {
        width: calc(100% + 1.3px);
        height: 160px;
    }
}

.symetrical-triangle-intersection {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.symetrical-triangle-intersection svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}

.symetrical-triangle-intersection .shape-fill-sym-triangle {
    fill: var(--color-white);
}

/** For mobile devices **/
@media (max-width: 767px) {
    .symetrical-triangle-intersection svg {
        width: calc(100% + 1.3px);
        height: 160px;
    }
}

.symetrical-triangle-intersection-at-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.symetrical-triangle-intersection-at-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}

.symetrical-triangle-intersection-at-bottom .shape-fill-sym-bottom-triangle {
    fill: var(--color-pumpking);
}

/** For mobile devices **/
@media (max-width: 767px) {
    .symetrical-triangle-intersection-at-bottom svg {
        width: calc(100% + 1.3px);
        height: 160px;
    }
}


.flip-asimetrical-triangle {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.flip-asimetrical-triangle svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 64px;
    transform: rotateY(180deg);
}

.flip-asimetrical-triangle .shape-fill-flip-asym-triangle {
    fill: var(--color-raisin-black);
}



/* #endregion */

.main-image {
    width: 75%;
    height: auto;
}

.font-icon {
    color: #FFFFFF;
}

address {
    all: initial;
    color: #FFFFFF
}

.social-media-logos {
    text-decoration: none;
    color: #FFFFFF;
    font-size: xx-large;
    margin: 5px;

}

.copyright-section {
    padding: 5px;
    box-sizing: border-box;
    /* height: 50px; */
}

.copyright-section>p {
    width: 100%;
    text-align: center;
}




/* #endregion Footer */


/* #region General and reusable Transition effects */
.text-color-transition {
    cursor: pointer;
    color: #FFFFFF;
    /* Transitions: */
    -webkit-transition: color 0.5s ease-in-out;
    -moz-transition: color 0.5s ease-in-out;
    -ms-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.text-color-transition:hover {
    color: var(--color-pumpking);
}

.box-shadow-transition {
    box-shadow: 2px 2px 3px #999;
    /* Transitions: */
    -webkit-transition: box-shadow 0.5s ease-in-out;
    -moz-transition: box-shadow 0.5s ease-in-out;
    -ms-transition: box-shadow 0.5s ease-in-out;
    -o-transition: box-shadow 0.5s ease-in-out;
    transition: box-shadow 0.5s ease-in-out;
}

.box-shadow-transition:hover {
    box-shadow: 2px 2px 3px var(--color-pumpking);
}

.bottom-border-color-transition:hover {
    color: var(--color-pumpking);
}

.bottom-border-color-transition:after {
    display: block;
    content: '';
    border-bottom: solid 3px var(--color-pumpking);
    transform: scaleX(0);
    /* Transitions: */
    -webkit-transition: transform 250ms ease-in-out;
    -moz-transition: transform 250ms ease-in-out;
    -ms-transition: transform 250ms ease-in-out;
    -o-transition: transform 250ms ease-in-out;
    transition: transform 250ms ease-in-out;
}

.bottom-border-color-transition:hover:after {
    transform: scaleX(1);
}



/* #endregion General and reusable Transition effects*/

/* #region Flexible boxes */
.row-flexstyle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.column-flexstyle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.column-gridstyle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.three-in-a-row-content {
    margin: auto;
    margin-top: 0%;
    padding: 0;
    text-align: center;
    width: calc(100%/3);
    /* border: #FFFFFF solid 1px; */
}

.left-align-content-box {
    text-align: left;
}

.right-align-block-content {
    position: relative;
    left: 75%;
}

.left-align-block-content {
    position: relative;
    left: 0%;
}

.left-align-block-content {
    position: relative;
    left: 0%;
}

.top-align-block-content {
    position: absolute;
    bottom: 60%;
}

.bottom-align-block-content {
    position: absolute;
    top: 75%;
}



/* #endregion Flexible boxes*/


.grid-70-30 {
    display: grid;
    grid-template-columns: 7fr 3fr;
    overflow: hidden;
}

.ov-hidden {
    overflow: hidden;
}

/* #region Hexagon styles & animations */

.hexagon-item {
    cursor: pointer;
    width: 200px;
    height: 173.20508px;
    /* height: 190px; */
    float: left;
    margin-left: -29px;
    z-index: 0;
    position: relative;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}

.hexagon-item:first-child {
    margin-left: 0;
}

.hexagon-item:hover {
    z-index: 1;
}

.hexagon-item:hover .hex-item:last-child {
    opacity: 1;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.hexagon-item:hover .hex-item:first-child {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.hexagon-item:hover .hex-item div::before,
.hexagon-item:hover .hex-item div::after {
    background-color: var(--color-pumpking);
}

.hexagon-item:hover .hex-content svg {
    -webkit-transform: scale(0.97);
    -moz-transform: scale(0.97);
    -ms-transform: scale(0.97);
    -o-transform: scale(0.97);
    transform: scale(0.97);
}

.hexagon-item:hover .hex-item:first-child div:before,
.hexagon-item:hover .hex-item:first-child div:after {
    height: 5px;
}

.hex-item {
    position: absolute;
    top: 0;
    left: 50px;
    width: 100px;
    height: 173.20508px;
}

::after,
::before {
    box-sizing: border-box;
}

.hex-content {
    color: var(--color-black);
    display: block;
    height: 180px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    transform: rotate(-30deg);
    width: 156px;
}

.hex-content .icon {
    display: block;
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 11px;
}

.hexagon-item:hover .icon i {
    color: var(--color-pumpking);
    transition: 0.6s;

}

.hex-content .hex-content-inner {
    left: 50%;
    margin: -3px 0 0 2px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hex-content svg {
    left: -7px;
    position: absolute;
    top: -13px;
    transform: scale(0.87);
    z-index: -1;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.hex-content:hover {
    color: var(--color-black)
}

.hex-item div {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    width: 100px;
    height: 173.20508px;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
}

.hex-item div::before,
.hex-item div::after {
    background-color: var(--color-silver);
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}



.hex-item div:before {
    top: 0;
}

.hex-item div:after {
    bottom: 0;
}

.hex-item div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.hex-item div:nth-child(2) {
    -webkit-transform: rotate(60deg);
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -o-transform: rotate(60deg);
    transform: rotate(60deg);
}

.hex-item div:nth-child(3) {
    -webkit-transform: rotate(120deg);
    -moz-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    -o-transform: rotate(120deg);
    transform: rotate(120deg);
}

.hexagon-item:hover .title-hex {
    -webkit-animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* .row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
} */

.hexagon-item:nth-last-child(1),
.hexagon-item:nth-last-child(2),
.hexagon-item:nth-last-child(3) {
    -webkit-transform: rotate(30deg) translate(87px, -80px);
    -moz-transform: rotate(30deg) translate(87px, -80px);
    -ms-transform: rotate(30deg) translate(87px, -80px);
    -o-transform: rotate(30deg) translate(87px, -80px);
    transform: rotate(30deg) translate(87px, -80px);
}

/***************************/

@-webkit-keyframes focus-in-contract {
    0% {
        letter-spacing: 1em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes focus-in-contract {
    0% {
        letter-spacing: 1em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}



/* #endregion Hexagon styles & animations*/


/* #region Hexagonals container */
.hex-blocks-container {
    width: 75%;
    margin: auto;
}

.hexblock-container-2 {
    /* border: solid 1px red; */
    width: 80%;
    height: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.hexblock-container-3 {
    /* border: solid 1px black; */
    width: 80%;
    height: 150px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

/* #endregion Hexagonals container*/





/* #region Fixed webpage modals */

.fixed-buttons-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    position: fixed;
    right: 2%;
    bottom: 5%;
    z-index: 100;
    width: 150px;
}

.fixed-button {
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.fixed-button>a>i {
    color: var(--color-white);
    font-size: 30px;
    padding: 5px;
    position: absolute;
    top: 18%;
    left: 23%;
}

.fixed-button>a>i:hover {
    color: var(--color-pumpking);
}


.fixed-button-circle {
    border-radius: 50%;
   
}

.social-circle{
    background-color: var(--color-whatssapp);
}

.catalog-circle{
    background-color: #e63c2d;
}

.fixed-button-square {
    border-radius: 20px;
    background-color: var(--color-black);
}

.fixed-button:hover {
    cursor: pointer;
}



/* #endregion Fixed webpage modals*/

/* #region Main Sections */
.stage {
    width: 100%;
    height: 500px;
    background-color: var(--color-raisin-black);
}


h2 {
    margin: 0;
}

.simple-info-section {
    background-color: var(--color-silver);
    height: 450px;
    text-align: center;
    position: relative;
    display: block;
}

.simple-info-section>article {
    position: absolute;
    top: 50%;
    width: 80%;
    left: 10%;
    right: 10%;
    box-sizing: border-box;
}


.solutions-section {

    display: block;
    /* background-image: url("../images/pattern-developed.png");
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: var(--color-raisin-black);
    position: relative;
    height: auto;
}

.hex-blocks-container {
    position: absolute;
    top: 15%;
    left: 10%;
    right: 10%;
    width: 80%;
}

.absolute-title {
    position: absolute;
    left: 40%;
    top: 10%;
}


.training-section {
    height: 500px;
    text-align: center;
    position: relative;
}

.training-blocks-container{
    position: absolute;
    top: 15%;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 400px;
}

.training-blocks{
    width: 50%;
    height: 100%;
}

.complementary-box{
    padding: 5%;
    box-sizing: border-box;
}

.controls {
    width: 90%;
    background: rgb(237, 243, 254);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 2px solid var(--color-silver);
    font-size: 15px;
    font-family:'Bronova-Bold';
}


.form-btn{
    background-color: var(--color-black);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 5%;
    color: var(--color-silver);
    font-size: 15px;
    font-family:'Bronova-Bold';
    transition: background-color 1s;
}
textarea{
    font-family:'Bronova-Bold';
 }

.form-btn:hover{
    background-color: #e63c2d;
    border-color: #e63c2d;
    opacity: 0.78;
    cursor: pointer;
}

.align-bottom{
    padding-top: 10%;
}

.location-section {
    height: 500px;
    position: relative;
}

.location-sub-container {
    position: absolute;
    top: 20%;
    width: 100%;
    justify-content: center;
}

.flexible-map {
    height: 350px;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-map {
    width: 400px;
    height: 300px;
}


/* #endregion Main Sections*/


/* #region  Framed Images*/
.framed-image {
    --g: 4px;
    /* the gap */
    --b: 12px;
    /* border thickness*/
    --c: var(--color-pumpking);
    /* the color */


    padding: calc(var(--g) + var(--b));
    --_c: #0000 0 25%, var(--c) 0 50%;
    --_g1: repeating-linear-gradient(90deg, var(--_c)) repeat-x;
    --_g2: repeating-linear-gradient(180deg, var(--_c)) repeat-y;
    background:
        var(--_g1) var(--_p, 25%) 0, var(--_g2) 0 var(--_p, 125%),
        var(--_g1) var(--_p, 125%) 100%, var(--_g2) 100% var(--_p, 25%);
    background-size: 200% var(--b), var(--b) 200%;
    cursor: pointer;
    filter: grayscale(50%);
    transition: .3s;
}

.framed-image:hover {
    --_p: 75%;
    filter: grayscale(0%);
}

/* #endregion Framed Images*/

.shift-title {
    position: absolute;
    top: 30%;
    left: 10%;
    right: 10%;
}

.shift-content {
    position: absolute;
    top: 45%;
    /*Asumming the content is 80%*/
    box-sizing: border-box;
    left: 10%;
    right: 10%;
}

.big-image {
    width: 300px;
    height: auto;
}



/* #region Locations Carrousel */


.locations-carrousel {
    /* background: linear-gradient(60deg, #420285, #08BDBD); */
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.carrousel {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 350px;
}

.carrousel-item {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    padding: 0 12px;
    opacity: 0;
    filter: drop-shadow(0 2px 2px #555);
}


.carrousel-item-header {
    border-radius: 50%;
    background-color: var(--color-persian-orange);
    width: 90px;
    height: 90px;
    padding: 14px;
    position: relative;
    margin-right: -45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.carrousel-item-body {
    width: 100%;
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 16px 20px 16px 70px;
    /* border: solid red 1px; */
}

.title-carrousel {
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    color: black;
}

.map {
    border-radius: 50%;
    width: 90px;
    height: 90px;
}

.map-icon {
    cursor: pointer;
    color: var(--color-raisin-black);
    /* Transitions: */
    -webkit-transition: color 0.5s ease-in-out;
    -moz-transition: color 0.5s ease-in-out;
    -ms-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

.map-icon:hover {
    cursor: pointer;
    color: var(--color-ghost-white);
}

.carrousel-top-hidden {
    transform: translateY(-100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    /* Transitions: */
    -webkit-transition: transform 1s ease-in-out;
    -moz-transition: transform 1s ease-in-out;
    -ms-transition: transform 1s ease-in-out;
    -o-transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
}

.carrousel-top-visible {
    transform: translateY(-100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
    /* Transitions: */
    -webkit-transition: transform 1s ease-in-out;
    -moz-transition: transform 1s ease-in-out;
    -ms-transition: transform 1s ease-in-out;
    -o-transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
}

.carrousel-active-item {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    /* Transitions: */
    -webkit-transition: transform 1s ease-in-out;
    -moz-transition: transform 1s ease-in-out;
    -ms-transition: transform 1s ease-in-out;
    -o-transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
}

.carrousel-bottom-hidden {
    transform: translateY(100%) scale(0.5);
    opacity: 0;
    visibility: hidden;
    /* Transitions: */
    -webkit-transition: transform 1s ease-in-out;
    -moz-transition: transform 1s ease-in-out;
    -ms-transition: transform 1s ease-in-out;
    -o-transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
}

.carrousel-bottom-visible {
    transform: translateY(100%) scale(0.7);
    opacity: 0.4;
    visibility: visible;
    /* Transitions: */
    -webkit-transition: transform 1s ease-in-out;
    -moz-transition: transform 1s ease-in-out;
    -ms-transition: transform 1s ease-in-out;
    -o-transition: transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
}


/* #endregion Locations Carrousel*/



/* #region Intersection animations */

.block-hidden-animation {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1.5s;
}

.block-pops-out-animation {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.content-hidden-animation {
    opacity: 0;
    filter: blur(5px);
    transition: all 1.5s;
}

.content-pops-out-animation {
    opacity: 1;
    filter: blur(0);
}


/* #endregion */

/*Deactivate Animations*/
@media(prefers-reduced-motion) {
    .block-hidden-animation {
        transition: none;
    }
}


.stage {
    display: flex;
    justify-content: center;
    /* border: red solid 1px; */
    height: 80vh;
}

.ITD-svg {
    position: absolute;
    top: 5%;
    width: 80%;
    height: 60vh;
    padding-top: 5vh;
    z-index: 2;
    /* border: solid aqua 1px; */
}



/* #region Info and details blocks for solutions */

.info-block {
    color: white;
    /* background-color: #43b899;
    border: solid red 1px;; */
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.details-info-block {
    box-sizing: border-box;
    /* border: solid aqua 1px; */
    width: 50%;
    height: 500px;
}

.big-info-block{
    color: white;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-flow: column-reverse;
    align-items: center;
    /* border: solid red 1px; */
}

.details-info-big-block {
    box-sizing: border-box;
    /* border: solid aqua 1px; */
    width: 80%;
    height: auto;
}

.content-block {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 75px;
    padding-right: 75px;
}

.center-cut-title-block {
    text-align: center;
    width: 100%;
    height: 50px;
    padding-top: 150px;
}



/* #endregion Info and details blocks for solutions*/



.fill-circuit{
    background-color: var(--color-raisin-black);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%239C92AC' fill-opacity='0.31' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");
}



