@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('../fonts/Lora-Regular.woff2') format('woff2'),
        url('../fonts/Lora-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins';
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #606060;
}
a,a:hover,a:focus{
    text-decoration: none;
    transition: 0.3s;
}
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.lora-font{
    font-family: 'Lora';
}

input, select{
    outline: none;
}


/*HEADER*/
header {
    background: rgb(255 255 255 / 50%);
    padding: 10px 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}
header .header-right a {
    color: #000;
    font-size: 20px;
}
header .logo {
    display: block;
}
header .logo img {
    max-width: 270px;
}
header .container {
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
}
/*END-HEADER*/

/*MIDDLE_SECTION*/
.home-boxes {
    margin: 140px 0;
}
.boxes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.flip-box {
    background-color: transparent;
    width: 100%;
    height: 400px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    background-color: #bbb;
    color: black;
}

.flip-box-back {
    background-color: #555;
    color: white;
    transform: rotateY(180deg);
}
.flip-box-back h2 {
    font-size: 46px;
    margin: 0;
    background: #606060;
    padding: 5px 0;
    font-weight: normal;
}
.flip-box-back a {
    font-size: 22px;
    color: #fff;
    background: #606060;
    display: block;
    padding: 9px 0;
}
.flip-box-back .inner-content {
    min-height: calc(398px - 130px);
    display: flex;
    flex-flow: wrap;
    align-content: center;
    padding: 0 15px;
    font-size: 16px;
    line-height: 32px;
}
.flip-box-front strong {
    position: absolute;
    bottom: 10px;
    z-index: 9;
    font-weight: 400;
    font-size: 54px;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 1;
    left: 0;
    right: 0;
}

.form-bottom {
    background-image: url(../images/form-back.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 160px 0;
    text-align: center;
    background-attachment: fixed;
}
.form-bottom h3 {
    font-weight: normal;
    font-size: 50px;
    line-height: 75px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 50px;
}
.form-bottom .container {
    max-width: 1000px;
}
.sec-part input, .sec-part select {
    height: 60px;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    color: #000;
}

.sec-part input::-webkit-input-placeholder {
  color: #000;
}

.sec-part input:-ms-input-placeholder {
  color: #000;
}

.sec-part input::placeholder {
  color: #000;
}

.sec-part {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.submit-btn button {
    cursor: pointer;
    background: #f3f3f3;
    border: none;
    outline: none;
    padding: 15px 40px;
    font-size: 24px;
    text-transform: uppercase;
    color: #606060;
    margin-top: 50px;
}
.submit-btn button:hover, .submit-btn button:focus{
    background-color: #000;
    color: #fff;
}
.g-recaptcha > div {
    margin: 40px auto 0 auto;
}
.g-cap-con .error {
    color: red;
    font-size: 14px;
}

.video-wrapper {
    position: relative;
    height: 0;
}
video {
    width: 100%;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slick-prev, .slick-next {
    background: #606060;
    width: 60px;
    height: 60px;
    z-index: 9;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{
    background: #000 !important;
}
.slick-next {
    right: 0;
}
.slick-prev {
    left: 0;
}
.slick-prev:before, .slick-next:before {
    content: "" !important;
    background-image: url(../images/banner-left-icon.png);
    display: inline-block;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
}
.slick-next:before{
    background-image: url(../images/banner-right-icon.png);
}
.banner {
    position: relative;
}
.banner-text {
    max-width: 800px;
    position: absolute;
    top: 50%;
    z-index: 9;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    background: rgb(0 0 0 / 30%);
    border-radius: 15px;
    -moz-transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
    padding: 50px;
}
.banner-text h1 {
    color: #fff;
    margin: 0;
    font-weight: normal;
    font-size: 48px;
}
.banner-text strong {
    margin-top: 20px;
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 52px;
}

/*END-MIDDLE_SECTION*/


/*FOOTER*/
footer > .container {
    text-align: center;
    padding: 50px 15px;
}
footer img {
    max-width: 150px;
}
.copy-right {
    background: #000;
    padding: 5px 0;
    text-align: center;
}
.copy-right a {
    color: #fff;
}

.copy-right p {
    color: #fff;
}
.social-media a {
    display: inline-block;
    background: #333333;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    line-height: 51px;
    margin: 30px 10px 0 10px;
    text-align: center;
}
.social-media a:hover, .social-media a:focus {
    background: #606060;
}
/*END-FOOTER*/



/*THANK-YOU-PAGE*/
.thankyou-main header {
    position: unset;
}
.thank-you-page {
    text-align: center;
    padding: 130px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.thank-you-page h1 {
    font-size: 42px;
    letter-spacing: 0.05em;
}
.thank-you-page p {
    font-size: 20px;
    padding: 0 330px;
    line-height: 34px;
}
.thank-you-page a {
    background: #606060;
    padding: 15px 30px;
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
}
.thank-you-page a:hover, .thank-you-page a:focus {
    background: #000;
}
/*END-THANK-YOU-PAGE*/