
:root
{
    --mainColorMenu:#000000;
    --hoverColorMenu:#f87403;
    --headerColorLine:#fb7305;
    --headerColorLineOpacity:rgb(	251, 115, 5, 0.2);
    --boxColorLine:#e1eafc;
    --secondaryColor:#584053;
    --footerColor:#ffffff;
    --bgImage:url('img/header-111.jpg');
    --bgGenImage:url('img/header-general-111.jpg');
}

/* For mobile phones: */
[class*="col-"] 
{
    width: 100%;
}

html
{
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.fullWidth
{
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    float: left;
}

.bgWhite
{
    background-color: #ffffff;
}

.bgFooter
{
    background-color: var(--secondaryColor);
}


    .mainHeader
    {
        background-image: var(--bgImage);
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .mainHeader.generalPage
    {
        background-image: var(--bgGenImage);
    }

    #mainContainerLanding
    {
        height: 700px;
        width: 550px;
        margin: auto;
        overflow: hidden;
    }

    #logoMenu
    {
        height: 80px;
        display: inline-block;
        position: relative;
        border-bottom: 1px solid  var(--headerColorLineOpacity);
    }

    #theLogo
    {
        width: 220px;
        height: inherit;
        display: block;
        float: left;
    }

    #theLogo a 
    {
        text-decoration: none;
        border: none;
    }


    #theMenu
    {
        width: 500px;
        height: inherit;
        display: block;
        float: left;
    }

    #theMenu ul 
    {
        display: block;
        float: right;
        padding-top: 45px;
    }

    #theMenu ul li
    {
        display: block;
        float: left;
        font-size: 1rem;
    }

    #theMenu ul li a 
    {
        padding: 0 0 0 20px;
        text-decoration: underline transparent;
        font-weight: 100;
        color: var(--mainColorMenu);
        transition: color 400ms ease-in, text-decoration-color 400ms ease-in, font-weight 100ms ease-in;
    }

    #theMenu ul li a:hover
    {
        color: var(--hoverColorMenu);
        text-decoration-color: var(--hoverColorMenu);
        font-weight: 300;
    }

    #landingCharacter
    {
        width: 550px;
        height: 616px;
        position: relative;
        

    }

    #landingCharacter > div 
    {
        display: block;
        float:right;
        width: 530px;
        text-align: center;
        padding-top: 30px;
    }

    

    #landingCharacter > #landingText
    {
        vertical-align: middle;
        text-align: center;
        height: 230px;
        
    }
    
    #landingText h1 
    {
        font-size: 1.8rem;
        font-weight: 300;
        color: var(--mainColorMenu);
        width: 350px;
        padding: 0 100px 10px;
    }

    #landingText h1.phone 
    {
        font-size: 1.8rem;
        font-weight: 100;
        color: var(--mainColorMenu);
        padding: 20px 0 0 0;
        width: 100%;
    }

    #landingText h1.phone::before 
    {
        content: "\260F";
        font-size: 1.2rem;
    }

    #landingText h2 
    {
        padding: 10px 0 0 0;
        color: var(--secondaryColor);
        font-size: 1rem;
        font-weight: 300;
    }

    .mainBody
    {
        width: 550px;
        margin: auto;
        position: relative;
        margin-bottom: 30px;
        display: table;
    }

    .mainBody > h1, .mainBody > div > h1
    {
        color: var(--headerColorLine);
        font-size: 1.5rem;
        text-align: center;
        padding: 30px;
    }

    .boxDescription
    {
        width: 550px;
        display:table-cell;
        float: left;
        padding: 0;
        margin: 0;
        border: 0;
    }

    

    .boxDescription > div
    {
        display: block;
        float: left;
        width: 470px;
        height: auto;
        border: 1px solid var(--boxColorLine);
        margin: 10px;
        padding: 30px ;
        box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
        transition: box-shadow 200ms ease-in;
    }

    .boxDescription > div:hover
    {
        box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.3);
    }

    .boxDescription > div img 
    {
        display: block;
        width:65px;
    }

    .boxDescription > div h2
    {
        font-size: 1.1rem;
        font-weight: 300;
        padding-bottom: 15px;
    }

    .boxDescription > div p
    {
        font-size: 0.85rem;
        font-weight: 100;
        text-align: justify;
        line-height: 1.1rem;
    }

    .boxDescription > div a 
    {
        color: var(--hoverColorMenu);
    }

    .boxDescription > div ul li
    {
        padding: 10px 0 0px 20px;
    }
    .boxDescription > div ul li::before
    {
        content: '\2713';
        font-size: 0.6rem;
        margin: 0 10px 0 0 ;
    }

    .boxDescription > div ul li.thePhone::before
    {
        content: '\260F';
        font-size: 1rem;
        margin: 0 10px 0 0 ;
    }

    .boxDescription > div ul li.theMail::before
    {
        content: '\2709';
        font-size: 1rem;
        margin: 0 10px 0 0 ;
    }

    

    .mainFooter
    {
        width: 550px;
        margin: auto;
        position: relative;
        margin-top: 30px;
        display: table;
        color: var(--footerColor);
    }

    .mainFooter .boxFooter
    {
        display: table-cell;
        width: 200px;
        margin: 10px;
        padding: 20px;
        font-size: 0.8rem;
        min-height: 200px;
        float: left;
    }

    .mainFooter .boxFooter a.theLogo 
    {
        display: block;

    }

    .mainFooter .boxFooter p 
    {
        padding: 20px 0 0 0;
        line-height: 1rem;
    }

    .mainFooter .copyrights
    {
        text-align: center;
        color: var(--footerColor);
        min-height: 50px;
        font-size: 0.6rem;
        width: 480px;
    }

    .mainFooter .boxFooter:empty
    {
        min-height: 50px;
        display: none;
    }

    .mainFooter .boxFooter h2 
    {
        color: var(--footerColor);
        padding: 5px 0 20px 0;
    }

    .mainFooter .boxFooter ul li
    {
        padding: 0 0 5px 20px;
    }

    .mainFooter .boxFooter ul li::before
    {
        content: '\203A';
        color: var(--footerColor);
        font-size: 1.2rem;
    }

    .mainFooter .boxFooter ul li a 
    {
        color: var(--footerColor);
        text-decoration: 1px solid transparent;
        font-size: 1rem;
    }


/* just for the menu on smaller screen */
#logoMenu
{
    z-index: 1;
}

#menu__toggle {
    opacity: 0;
  }
  #menu__toggle:checked + .menu__btn > span {
    transform: rotate(45deg);
  }
  #menu__toggle:checked + .menu__btn > span::before {
    top: 0;
    transform: rotate(0deg);
  }
  #menu__toggle:checked + .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  #menu__toggle:checked ~ .menu__box {
    right: 0px !important;
  }
  .menu__btn {
    position: fixed;
    top: 35px;
    right: 20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 1;
  }
  .menu__btn > span,
  .menu__btn > span::before,
  .menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--boxColorLine);
    transition-duration: .25s;
  }
  .menu__btn > span::before {
    content: '';
    top: -10px;
  }
  .menu__btn > span::after {
    content: '';
    top: 10px;
  }
  #theMenu  ul.menu__box {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    list-style: none;
    background-color: var(--headerColorLine);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .25s;
  }
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .25s;
  }
  .menu__item:hover {
    background-color: #CFD8DC;
  }

  

    .menu__box li
    {
        display: block;
        width: 180px;
        float: left;
        padding: 10px 0;
    }

  .menu__box li a 
  {
    font-size: 1.5rem;
  }



/* **************************************** */
/* **************************************** */
/* *****************EXTRA****************** */
/* *****************PAGES****************** */
/* **************************************** */
/* **************************************** */

/* CANCEL */

#mainContainerPage
{
    height: 200px;
    width: 550px;
    margin: auto;
    overflow: hidden;
}

#currentPage
{
    width: 550px;
    height: 115px;
    position: relative;
    display:block;

}

#currentPage > div 
{
    display: block;
    float: left;
   
}

#currentPage > #thePath
{
    width: 95%;
}

#currentPage > #thePath ul
{
    list-style: none;
    position: relative;
}
#currentPage > #thePath ul li
{
    display: block;
    float: left;
    padding: 10px 4px;
    color: var(--mainColorMenu);
    font-size: 0.8rem;
}

#currentPage > #thePath ul li a
{
    text-decoration: none;
    color: var(--mainColorMenu);
}

#currentPage > #thePath ul li:not(:first-child):before
{
    content: '/';
}

#currentPage > #currentPageText
{
    width: 100%;
    width: 40%;
}
#currentPage > #currentPageText h1,
#currentPage > #currentPagePhone h1
{
    font-size: 1.8rem;
    color: var(--mainColorMenu);
}

#currentPage > #currentPagePhone h1:before
{
    content: "\260F";
    font-size: 1.8rem;
}

#currentPage > #currentPagePhone
{
    width: 60%;
    text-align: right;
}

.mainBody .generalTitle
{
    text-align: left;
    padding-left: 0;
    padding-bottom: 10px;
}

.mainBody .generalText
{
    padding: 10px 0;
    line-height: 1.4rem;
    text-align: justify;
}


.mainBody .generalText span
{
    display: block;
    font-weight: 700;
}
.mainBody ul
{
    padding-bottom: 30px;
}

.mainBody ul li
{
    padding: 5px 0 5px 35px;
}

.mainBody ul li:before
{
    content: '\27A4';
    font-size: 0.6rem;
    padding: 0 10px;
}

.mainBody > div.generalTile 
{
    width: 100%;
    float: left;
}

div.contactTile
{
    width: 450px;
    height: 300px;
    margin: 20px 0 0 50px;
    padding: 10px;
}

div.contactTile a
{
    display: block;
    color: var(--hoverColorMenu);
    font-size: 1.4rem;
    text-decoration: none;
    margin-top: 15px;
}


a.bigPhone::before
{
    content: url(img/icons/thePhone40.png);
    position: relative;
    top: 10px;
    padding-right: 15px;
}

a.bigMail::before
{
    content: url(img/icons/theMail40.png);
    position: relative;
    top: 26px;
    padding-right: 15px;
}






  

























































