/*
Theme Name: default
Author: fulstackagency.it
Author URI: http://fulstackagency.it
Description:  minisite theme
Version: 1
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;800&display=swap');

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    width: 100% !important;
}

body.dev {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    width: 100%;
    overflow-x: hidden !important;
}

body.dev .container {
    max-width: 1140px;
}

.navbar {
    padding: 0;
}

.header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0;
    width: 100%;
}

.header-menu>li {
    display: inline-block;
}

.header-menu>li:first-child {
    margin-left: 0;
}

.header-menu>li:last-child {
    margin-right: 0;
}

.header-menu>li>a {
    display: block;
    font-size: 1rem;
}

body.dev a {
    text-decoration: none;
}

body.dev h1,
body.dev h3,
body.dev h5,
body.dev h2,
body.dev h4 {
    font-weight: 800;
}

body.dev h5 {
    font-size: 1.125rem;
}

body.dev h1 {
    font-size: 3.125rem;
    margin-bottom: 20px;
}

body.dev h2 {
    font-size: 1.625rem;
}

body.dev small {
    font-size: 1.063rem;
}

select {
    cursor: pointer;
}

select option {
    background-color: white;
    color: black;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

body.dev figure {
    margin: 0;
}

figure.img-contain img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

figure.img-cover img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

body.dev .table {
    display: table;
    margin: 0;
    table-layout: fixed;
    height: 100%;
}

.hidden-xs-up {
    display: none !important;
}

body.dev .table {
    display: table;
    margin: 0;
    table-layout: fixed;
    height: 100%;
}

body.dev .table .center {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.tableCell {
    display: table-cell;
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

.max-width {
    width: 100%;
    margin: 0 auto;
}

.lowercase {
    text-transform: lowercase;
}

.uppercase {
    text-transform: uppercase;
}

#main-header {
    /* position: fixed; */
    height: 80px;
    z-index: 9999999;
    top: 0;
    transition: background-color .3s ease-in-out
}

#main-header>.row,
#main-header>.row>div,
#main-header>.row>div figure.logo,
#main-header>.row>div figure.logo a {
    height: 100%;
}

figure.logo.animate__animated.animate__fadeInLeft {
    float: left;
}

#main-header>.row>div figure.logo a {
    display: block;
    position: relative;
}

body.dev .align-right #header-menu {
    text-align: right;
}

.logo img {
    /* background-color: #000; */
    object-fit: contain;
    height: 100%;
}

/* #main-body {
    padding-top: 40px;
} */
#main-body.no-header {
    padding-top: 0;
}

body.dev header {
    background-color: transparent;
    padding: 15px;
}

body.dev.home header.scrolled {
    background-color: #333;
}

aside.sideMenu {
    display: block;
    width: 100%;
    max-width: 625px;
    position: fixed;
    right: -100%;
    z-index: 99999999;
    background-color: #333;
    color: #fff;
    padding: 40px;
    height: 100%;
    top: 0;
    transition: right .3s ease-in-out;
    overflow-y: auto;
}

aside.sideMenu.opened {
    right: 0;
}

.toggleContainer {
    position: relative;
    display: table;
    height: 30px;
    width: 30px;
    float: right;
    vertical-align: middle;
    transform: rotate(180deg);
}

.menuToggle {
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: calc(50% - 10px);
}

.menu-global {
    backface-visibility: hidden;
    position: absolute;
    left: 0;
    border-top: 2px solid #333;
}

.menu-top {
    top: 4px;
    width: 100%;
}

.menu-middle {
    top: 10px;
}

.menu-bottom {
    top: 16px;
}

.menuToggle div {
    align-self: flex-end;
    height: 6px;
    width: 100%;
    background: #fff;
}

.menuToggle .menu-middle {
    width: 75%;
    transition: all 200ms ease-in-out;
}

.menuToggle .menu-bottom {
    width: 100%;
    transition: all 400ms ease-in-out;
}

.menuToggle:hover div {
    width: 100%;
}

.menuToggle:hover .menu-top {
    animation: burger-hover 1s infinite ease-in-out alternate;
}

.menuToggle:hover .menu-middle {
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}

.menuToggle:hover .menu-bottom {
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}

@keyframes burger-hover {
    0% {
        width: 100%;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

.close {
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    position: absolute;
    cursor: pointer;
    transition: transform .3s ease-in-out;
}

.close:hover {
    transform: rotate(360deg);
}

.close figure {
    height: 100%;
}

.close img {
    object-fit: contain;
    height: 100%;
}

#header-menu {
    padding-left: 150px;
}

#header-menu>li.menu-item {
    width: 100%;
}

#header-menu>li.menu-item>a {
    font-size: 1.125;
    color: #333;
    font-weight: bold;
    transition: .3s color ease-in-out;
}

#header-menu>li.menu-item:hover>a {
    color: #0413f6;
}

.main-block {
    margin-bottom: 25px;
}

.blockText small p {
    padding: 0 2px;
}

.row.slave-row>.col-12 {
    margin-top: 20px;
}

body.dev .blockTitle {
    padding: 15px;
}

body.dev .blockCta {
    text-align: left;
    padding: 15px;
}

.row.slave-row {
    background-color: #fff;
}

footer#main-footer {
    background-color: #fff;
}

.privacyLink small p span {
    padding: 0 5px;
}

.main-block .blockImg figure,
.main-block img.img-fluid {
    /*height: 100%;*/
    height: 450px;
    object-fit: contain;
    object-position: right bottom;
}

div#block-0 {
    margin-bottom: 0;
}

div#block-0,
div#block-1,
div#block-2,
div#block-3 {
    text-align: left;
}

.slave-row .blockImg figure {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 100px;
    border: 3px solid #0413f6;
    padding: 16px;
    vertical-align: middle;
    margin-top: -50px;
}

.slave-row .blockImg img.img-fluid {
    object-fit: contain;
    position: relative;
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    height: 62px;
}

#block-0 .col-12.col-md-8.blockTitle {
    padding-bottom: 40px;
}

.blockCta a.text-center.btn {
    border-radius: 50px;
    font-size: 0.875rem;
}

#main-footer small {
    font-size: 0.75rem;
    color: #cbcbcb;
}

.slave-row .blockTitle {
    min-height: 101px;
    vertical-align: middle;
    display: table;
}

.slave-row .blockTitle h2 {
    display: table-cell;
    vertical-align: middle;
}

aside.sideMenu {
    display: none;
}

footer#main-footer {
    background-color: #fff;
    padding-top: 20px;
    border-top: 1px solid #F0EDED;
}

footer#main-footer .privacyLink {
    text-align: right;
}

footer#main-footer a {
    color: #CBCBCB;
}

footer#main-footer a:hover {
    color: #0413f6;
}

body.dev .slave-row {
    padding-bottom: 40px;
}

.main-row.basicLayout .main-block .blockImg figure,
.main-row.basicLayout .main-block img.img-fluid {
    object-fit: contain;
    padding: 15px;
    max-width: fit-content;
}

body.dev .slave-row.basicLayout .blockImg,
body.dev .slave-row.basicLayout .blockTitle,
body.dev .slave-row.basicLayout .blockText {
    text-align: left;
}

.slave-row.basicLayout .blockImg figure {
    margin: auto;
    margin-top: -50px;
}

body.dev .main-row.basicLayout .blockText {
    padding-bottom: 100px;
}

div#header-menu-container {
    float: right;
}

div#breadcrumbHeader {
    display: flex;
    height: 100%;
    position: relative;
    padding-left: 41px;
    margin-left: 20px;
    border-left: 1px solid #333;
    padding-top: 5px;
    float: left;
}

figure.breadcrumb-icon {
    background-color: #0413f6;
    border-radius: 100%;
    padding: 8px;
    height: 40px;
    width: 40px;
    display: table;
}

.breadcrumb-icon img {
    display: table-cell;
    filter: brightness(10);
    position: relative;
    height: 25px;
    width: 25px;
}

.headerTitle {
    height: 40px;
    display: table;
}

.headerTitle h5 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
}

.row.main-row.basicLayout {
    padding-top: 100px;
    /*padding-bottom: 100px;*/
    padding-bottom: 0;
}

.bgDisc {
    height: 50vw;
    position: absolute;
    background-color: #f9f8fe;
    width: 50vw;
    z-index: 0;
    border-radius: 100%;
    right: -20vh;
    top: -10vh;
}

.row.main-row.basicLayout #block-0 .container-fluid {
    background-color: transparent !important;
}

.row.slave-row.basicLayout {
    background-color: #0413f6;
    z-index: 2;
    position: relative;
}

.slave-row.basicLayout div#block-1 {
    background-color: #fff;
    margin-top: 100px;
    padding: 50px;
}

.slave-row.basicLayout .blockTitle h2 {
    vertical-align: top;
    font-size: 3.125rem;
}

.wpcf7-acceptance span.wpcf7-list-item {
    margin: 0;
}

input.wpcf7-form-control.has-spinner.wpcf7-submit.btn {
    border-radius: 100px;
    width: 100%;
    padding: 15px;
}

body.dev .form-control {
    /*min-height: 90px;*/
    min-height: 55px;
    border-radius: 15px;
}

input[type="text"].form-control,
input[type="email"].form-control {
    padding: 10px 15px 0px;
    font-size: 16px !important;
    background: transparent;
    z-index: 2;
    position: relative;
}

.wpcf7-form-control-wrap {
    background: #fff;
    height: 100%;
}

.columns_2 .main-block:not(#block-0) .col-12.blockTitle {
    padding-top: 100px;
    text-align: center;
}

/**
* css rule to hide outline on focus
*/
input[type="text"].form-control:focus,
input[type="email"].form-control:focus,
input[type="tel"].form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #ced4da;
}

textarea.form-control {
    padding-top: 20px;
}

.form-outline label {
    transform: translateY(31px);
    font-size: 1rem;
    font-weight: normal;
    font-style: italic;
    color: #9b9b9b;
    line-height: 42px;
    position: absolute;
    padding: 0 17px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin-left: 10px;
    z-index: 2;
    background-color: #fff;
}

.form-outline.active>label {
    transform: translateY(10px);
    color: #9b9b9b;
    padding: 0 17px;
    background-color: #fff;
    z-index: 10;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

#header-menu>li.menu-item-131>a {
    background-color: #0413f6;
    text-align: center;
    margin: 10px;
    display: block;
    padding: 9px;
    border-radius: 50px;
    width: 100px;
    color: #fff;
    position: relative;
    margin-right: 0;
    margin-left: auto;
    font-size: 0.75rem;
}

#header-menu>li.menu-item>a:hover {
    background-color: #333;
    color: #fff;
}

@media screen and (max-width: 820px) {
    body.dev #block-0 .blockTitle {
        padding-bottom: 60px;
    }

    .bgDisc {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    #header-menu>li.menu-item-131>a {
        right: 0;
        position: absolute;
        margin: 10px 10px 10px 0;
        top: 12px;
    }

    .blockCta a.text-center.btn {
        font-size: 0.8rem;
        padding: 8px;
    }

    .main-block .blockImg figure,
    .main-block img.img-fluid {
        object-position: bottom;
    }

    div#breadcrumbHeader {
        border: none;
        float: left;
    }

    .basicLayout .col-12.col-md-6.col-lg-4.blockImg {
        text-align: center;
    }

    .row.slave-row.basicLayout {
        padding-top: 0;
    }
}

#block-0 .blockCta {
    display: none;
}

@media screen and (max-width: 540px) {
    .form-outline label {
        margin-left: 0;
        left: 15px;
    }

    #block-0 .blockCta {
        display: block;
    }

    .blockCta a.text-center.btn {
        font-size: 0.875rem;
        padding: 10px;
    }

    div.img-top-block {
        padding-bottom: 100px;
    }

    .slave-row .blockImg figure,
    body.dev .blockCta,
    body.dev .blockTitle,
    body.dev .blockText {
        margin: auto;
        text-align: center;
    }

    body.dev h1 {
        font-size: 2.2rem;
    }

    body.dev #block-0 .blockTitle {
        padding-bottom: 0px;
    }

    .row.slave-row {
        padding-top: 100px;
    }

    .logo img {
        padding: 2px;
    }

    footer#main-footer .privacyLink {
        text-align: left;
    }

    .slave-row.basicLayout .blockTitle h2 {
        vertical-align: top;
        font-size: 2rem;
    }

    .form-outline label {
        font-size: 0.7rem;
    }
}

.wpcf7-form-control.wpcf7-select {
    background: url('https://development.fulltransfer.io/wp-content/uploads/2022/10/icn-arrow-down.png') no-repeat 98% center;
}