@font-face {
    font-family: 'gfsdidot';
    src: url('../fonts/GFSDidot.eot');
    src: url('../fonts/GFSDidot.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GFSDidot.woff') format('woff'),
    url('../fonts/GFSDidot.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'gfsdidot_bold';
    src: url('../fonts/GFSDidot-Bold.eot');
    src: url('../fonts/GFSDidot-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GFSDidot-Bold.woff') format('woff'),
    url('../fonts/GFSDidot-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'manrope_light';
    src: url('../fonts/Manrope-Light.eot');
    src: url('../fonts/Manrope-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Manrope-Light.woff') format('woff'),
    url('../fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    margin: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    height: 100vh;
    border: 2px solid #231F20;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
}


.page {
    overflow: hidden;
    height: 100%;
}
.container {
     height: 100%;
}
.page-content{
     height: 100%;
}

.mytitle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 193px;
    text-align: left;
    z-index: 1;

    width: 643px;
    -webkit-animation: opacity_animation 1.5s 1.1s both;
    animation: opacity_animation 1.5s 1.1s both;
}
.column{
    -webkit-animation: opacity_animation 1.5s 1.7s both;
    animation: opacity_animation 1.5s 1.7s both;
}
.mytitle h1{
    font-size: 40px;
    font-family: gfsdidot_bold;
    display: block;
    line-height: 38px;
    color: rgba(159,61, 54, 1);
    margin: auto;
    margin-bottom: 23px;
}
.mytitle h2{
    font-size: 40px;
    font-family: gfsdidot;
    display: block;
    line-height: 38px;
    color:#333333;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin: auto;
}
.logo{
    position: absolute;
    top: 80px;
    left: 120px;
    z-index: 1;
}
.logo svg{
    width:385px;
    color: rgba(159,61, 54, 1);
    stroke: rgba(159,61, 54, 1);
    fill: rgba(159,61, 54, 1);
}
.column span{
    font-size: 16px;
    line-height: 19.2px;
    font-family: manrope_light;
    color:rgba(159,61, 54, 1);
}
.column a{
    color:#231F20;
    display: block;
    font-family: manrope_light;
    font-size: 20px;
    line-height: 24px;
    position: relative;
}
.column a::after{
    content: "";
    position: absolute;
    bottom: 0px;
    left:-20px;
    right:0px;
    height: 1px;
    background-color:#231F20;
    width: 0%;
    transition: all 0.4s ease-in-out;
}
.contact_left a::after{
    bottom: 0px;
}
.column a:hover::after{
    width: calc(100% - (-20px));

}
.column-left{
    position: absolute;
    left: 120px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}
.column-right{
    position: absolute;
    right: 193px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}
.social{
    display: flex;
    margin: auto;
    margin-bottom: 0px;
}
.column-left span{
    margin: auto;
    margin-left: 0px;
}
.social a{
    margin: auto;
    text-transform: uppercase;
}
.column-right span{
    margin: auto;
    margin-left:0px;
}
.column-right .contact{
    margin: auto;
    display: flex;
}
.column-right .contact .contact_right{
    margin: auto;
}
.column-right .contact .contact_left{
    margin: auto;
    margin-right: 180px;

}
.column-right .contact a{
    text-transform: uppercase;
}
/* .column-right .email{
    margin:auto;
    margin-bottom: 0px;
    margin-left: 0px;
}
.column-right .email a{
    text-transform: uppercase;
} */
.email{
  margin-top: 20px;
}
.logo1{
    -webkit-animation: opacity_animation 0.5s 0.5s both;
    animation: opacity_animation 0.5s 0.5s both;
}
.logo2{
    -webkit-animation: opacity_animation 0.5s 0.7s both;
    animation: opacity_animation 0.5s 0.7s both;
}
.logo3{
    -webkit-animation: opacity_animation 0.5s 0.9s both;
    animation: opacity_animation 0.5s 0.9s both;
}
.image_link{
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}
@-webkit-keyframes opacity_animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes opacity_animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }

}
@media (max-width: 1366px){
    .column-right .contact .contact_left {
        margin-right: 100px;
    }
    .mytitle {
        width: 563px;
    }

}
@media (max-width: 1280px){
    .logo svg {
        width: 300px;
    }
    .mytitle h1,.mytitle h2{
        font-size: 35px;
    }
    .column a {
        font-size: 18px;
    }
    .column-right .contact .contact_left {
        margin-right: 80px;
    }
    .mytitle {
        width: 497px;
        right: 50px;
    }
    .logo {
        top: 50px;
        left: 50px;
    }
    .column-left {
        left: 50px;
        bottom: 50px;
    }
    .column-right {
        right: 50px;
        bottom: 50px;
    }
}
@media (max-width: 770px){
    .logo {
        top: 75px;
        left: 0px;
        right: 0px;
        text-align: center;
    }
    .logo svg {
        width: 270px;
    }
    .mytitle h1,.mytitle h2{
        font-size: 23px;
    }
    .mytitle h1{
        margin-bottom: 0px;
    }
    .mytitle {
        position: absolute;
        top: 35%;
        transform: translateY(-50%);
        right: 0px;
        left:0px;
        text-align: center;
        z-index: 1;
        width: 100%;
    }
    .page-content {
        display: flex;
        flex-direction: column;
    }
    .column-left {
        min-height: auto;
        position: relative;
        left: unset;
        bottom: unset;
        margin: auto;
        margin-bottom: 50px;
        margin-left: 0px;
        padding: 0px 45px;
    }
    .column-right {
        min-height: auto;
        left: unset;
        bottom: unset;
        margin: auto;
        position: relative;
        margin-bottom: 50px;
        margin-top: 0px;
        right: unset;
        text-align: left;
        margin-left: 0px;
        padding: 0px 45px;
    }
    .column-left span {
        margin: auto;
        margin-bottom: 20px;
        margin-left: 0px;
    }
    .column-right span {
        margin: auto;
        margin-left: 0px;
        margin-bottom: 20px;
    }
    .social a{
        font-size: 25px;
        line-height: 30px;
    }
    .column-right .contact {
        flex-direction: column;
    }
    .column-right .contact .contact_left {
        margin-right: auto;
        margin-left: 0px;
    }
    .column-right .contact .contact_right a{
        display: block;
        font-size: 16px;
        line-height: 19.2px;
        margin-top:25px;
        margin-bottom: 25px;
        text-transform: lowercase;
    }
    .column-right .contact {
        margin-left: 0px;
    }
    .column-right .contact .contact_right {
        margin: auto;
        margin-left: 0px;
    }
    .column a {
        font-size: 25px;
        display: block;
        line-height: 30px;
    }

}
@media (max-width: 420px) {
    .mytitle {
        position: absolute;
        top: 30%;
    }
    .column-right,.column-left{
        padding: 0px 15px;
    }
    .mytitle h1, .mytitle h2 {
        font-size: 21px;
    }
    .column a {
        font-size: 20px;
        line-height: 19.2px;
    }
}
