@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

@font-face {
    font-family: "StyleFont";
    src: url('../fonts/Roxborough.ttf');
}

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
    --white: #ffffff;
    --black: #101D25;
    --tinted-black: rgba(45, 45, 45, 0.7);
    --main: #8B0000;
    --dark-main: #360000;
    --light-main: #D14A4A;
    --variant-main: #182C38;
    --dark-variant-main: #0d181f;
    --light-variant-main: #2F566E;
    --main-opacity: rgba(1, 22, 39, 0.8);
    --mid-opacity: rgba(1, 22, 39, 0.5);
    --light-opacity: rgba(1, 22, 39, 0.2);
    --grey: #7A7A7A;
    --light-grey: #F9F9F9;
    --dark-grey: #323332;
    --card-width: 200px;
    --card-height: 300px;
    --card-transition-duration: 800ms;
    --card-transition-easing: ease;
    --style-font: "StyleFont", cursive;
}

*::before,
*::after,
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
}

html {
    /* font-family: 'Playfair Display', serif; */
    font-family: 'Encode Sans', sans-serif;
    width: 100%;
    font-weight: 500;
    font-size: 62.5%;
    color: var(--black);
}

body {
    overflow-x: hidden;
    color: var(--black);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    font-size: 1.5rem;
    line-height: 2.2rem;
    padding-bottom: 4px;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 2px var(--dark-main); */
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--dark-main);
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main);
}

/* Main */
a {
    text-decoration: none;
    color: var(--complementary-main);
    transition: all 0.5s ease;
    font-size: 1.4rem;
}

a:hover {
    color: var(--light-main);
    cursor: pointer;
}

/* Global Button Styles */
a.animated-button:link,
a.animated-button:visited {
    position: relative;
    display: block;
    margin: 30px auto 0;
    padding: 15px 30px;
    background: var(--variant-main);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    letter-spacing: .1em;
    border-radius: 0;
    /* text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2); */
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

a.animated-button:link:after,
a.animated-button:visited:after {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 150%;
    z-index: -1;
    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}

a.animated-button:link:hover,
a.animated-button:visited:hover {
    background-color: var(--white);
    border: 1px solid var(--variant-main);
    color: var(--dark-main);
    text-shadow: none;
}

a.animated-button:link:hover:after,
a.animated-button:visited:hover:after {
    height: 450%;
}

a.animated-button.thar-three {
    color: var(--white);
    cursor: pointer;
    display: block;
    position: relative;
    border: 2px solid var(--variant-main);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

a.animated-button.thar-three:hover {
    color: var(--dark-main) !important;
    background-color: transparent;
    text-shadow: nthree;
}

a.animated-button.thar-three:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

a.animated-button.thar-three:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: -1;
    content: '';
    color: var(--complementary-main) !important;
    background: var(--variant-main);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.card {
    border-radius: 0 !important;
}

button {
    background: var(--dark-variant-main);
    color: var(--white);
    outline: none;
    border: none;
    padding: 12px 30px;
    font-size: 1.6rem;
    transition: all 0.5s ease;
}

button:hover {
    background: var(--white);
    border: 1px solid var(--dark-variant-main);
}

button:hover i {
    padding-left: 10px;
}

.btn {
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 15px;
    cursor: pointer;
    background: var(--dark-main);
    color: var(--white);
}

.btn:hover {
    background: white;
    border: 1px solid var(--dark-main);
}

button {
    outline: none;
    border: none;
    cursor: pointer;
}

button:hover {
    color: var(--dark-main);
}

.main {
    background: var(--main);
}

.light {
    background: var(--light-main);
}

.grey {
    background: var(--grey);
}

.white {
    background: var(--white);
}

.heading-text {
    color: var(--dark-main);
    letter-spacing: 1px;
    position: relative;
    z-index: 10 !important;
}

/* usage {
  font-family: var(--body-fonts);
} */

.decorated-text {
    font-family: 'Great Vibes', cursive;
}

.normal {
    font-weight: 500;
}

.thin {
    font-weight: 300;
}

.thinner {
    font-weight: 200;
}

.thick {
    font-weight: 600;
}

.thick {
    font-weight: 700;
}

section {
    padding: 100px;
}

@media screen and (max-width: 768px) {
    section {
        padding: 50px;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 30px;
    }
}

.linked a {
    color: var(--dark-grey);
    text-decoration: none;
    font-family: var(--style-font);
    font-size: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.linked-light a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--style-font);
    font-size: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.linked a:hover,
.linked-light a:hover {
    color: var(--main);
}

.linked a::after,
.linked-light a::after {
    content: "";
    width: 30px;
    position: absolute;
    margin: 0 auto;
    height: 1px;
    background: var(--main);
    left: 0;
    right: 0;
    bottom: -10px;
}

.top10 {
    margin-top: 10px;
}

.top20 {
    margin-top: 20px;
}

.top30 {
    margin-top: 30px;
}

.top40 {
    margin-top: 40px;
}

.top50 {
    margin-top: 50px;
}

.bottom10 {
    margin-bottom: 10px;
}

.bottom20 {
    margin-bottom: 20px;
}

.bottom30 {
    margin-bottom: 30px;
}

.bottom40 {
    margin-bottom: 40px;
}

.bottom50 {
    margin-bottom: 50px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    height: 60px;
    background: var(--variant-main);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .logo img {
    height: 50px;
}

header nav ul {
    display: flex;
    flex-direction: row;
    font-weight: 400;
}

header nav ul li {
    color: var(--white);
    padding: 0 20px;
}

header nav ul li a.active {
    color: var(--light-main);
}

header .search ion-icon {
    font-size: 2.4rem;
    color: var(--white)
}

/* Hamburger Button */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 25px;
    margin: 5px;
    background: var(--white);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--variant-main);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    header nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }

    header .search {
        display: none;
    }
}

/* Slider */
.slider {
    height: 90vh;
    background: linear-gradient(110deg, rgba(139, 0, 0, 0.3) 0%, rgba(24, 44, 56, 0.5) 78%, rgba(24, 44, 56, 0.9) 100%), url('../images/installation.jpg');
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slider .info {
    padding-top: 100px;
    width: 70%;
}

.slider .info h1 {
    font-size: 4.2rem;
}

.slider .bottom {
    position: absolute;
    bottom: 30px;
    padding-top: 30px;
    left: 0;
    width: 100%;
    border-top: 1px solid var(--white);
}

.slider .bottom .details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider .bottom .details p {
    font-size: 1.8rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .slider .info {
        width: 100%;
    }

    .slider .info h1 {
        font-size: 3.2rem;
    }
}

@media screen and (max-width:480px) {
    .slider .info {
        width: 100%;
    }

    .slider .info h1 {
        font-size: 2.4rem;
    }
}

/* About */
.about .info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

@media screen and (max-width:768px) {
    .about .info {
        flex-direction: column;
    }
}

.about .info h2 {
    flex-basis: 40%;
    color: var(--light-variant-main);
}

.about .info .details {
    flex-basis: 60%;
}

.about-slider {
    padding-top: 50px;
}

.about-slider div {
    padding: 0 10px;
}

.about-slider img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

/* Services */
.services {
    background: var(--dark-variant-main);
    overflow: hidden;
    position: relative;
    color: var(--white);
}

.services .highlight h3 {
    position: relative;
    font-weight: 400;
    color: var(--light-main);
}

.services .highlight h3::after {
    position: absolute;
    top: 40px;
    left: 0;
    height: 2px;
    width: 100px;
    background: var(--white);
    content: '';
}

.services .highlight p {
    padding-top: 30px;
}

.services .info {
    padding-top: 50px;
}

.services .info .graphics {
    animation: spin 60s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -200px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.services .info .graphics img {
    filter: brightness(0) invert(1);
    height: 380px;
}

.services .info { 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.services .info .details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.services .info .details ion-icon {
    font-size: 2.4rem;
    color: var(--main);
    background: var(--white);
    padding: 10px;
    border-radius: 50%;
}

.services .info .details h4 {
    padding-bottom: 10px;
    font-weight: 400;
    color: var(--light-grey);
}

.services .info .link {
    position: absolute;
    bottom: 0;
    right: 50px;
}

.services .info .link a {
    color: var(--white);
}

.services .plan {
    position: absolute;
    bottom: -50px;
    right: -50px;
}

.services .plan img {
    opacity: 0.2;
    height: 450px;
}

@media screen and (max-width:768px) {
    .services .info .graphics {
        display: none;
    }
    
    .services .info {
        flex-direction: column;
    }

    .services .info .details {
        grid-template-columns: 1fr;
    }

    .services .info .link {
        display: none;
    }
}

/* Safety */
.safety .highlight h3 {
    color: var(--main);
}

.safety .info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.safety .info h2 {
    padding-bottom: 20px;
    color: var(--variant-main);
}

.safety .graphics img {
    width: 100%;
    object-fit: cover;
}

.safety .graphics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.safety .graphics .left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    height: 310px;
}

.safety .graphics .left img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.safety .graphics .right  {
    height: 310px;
}

.safety .graphics .right img {
    height: 310px;
}

@media screen and (max-width:768px) {
    .safety .info {
        grid-template-columns: 1fr;
    }
}

/* Breadcrumb */
.breadcrumb {
    height: 70vh;
    background: var(--dark-grey);
}

.breadcrumb h3 {
    color: var(--white);
    padding-top: 100px;
    position: relative;
    padding-left: 10px;
    line-height: 50px;
    font-weight: 400;
}

.breadcrumb h3::before {
    position: absolute;
    content: '';
    left: -10px;
    top: 100px;
    width: 3px;
    height: 50px;
    background: var(--white);
}

.about-crumb {
    background: linear-gradient(290deg, rgba(139, 0, 0, 0.4) 0%, rgba(139, 0, 0, 0.4) 78%, rgba(139, 0, 0, 0.4) 100%), url('../images/site.jpg');
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.service-crumb {
    background: linear-gradient(290deg, rgba(139, 0, 0, 0.4) 0%, rgba(139, 0, 0, 0.4) 78%, rgba(139, 0, 0, 0.4) 100%), url('../images/machine.jpg');
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.projects-crumb {
    background: linear-gradient(290deg, rgba(139, 0, 0, 0.4) 0%, rgba(139, 0, 0, 0.4) 78%, rgba(139, 0, 0, 0.4) 100%), url('../images/installation_main.jpg');
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.team-crumb {
    background: linear-gradient(290deg, rgba(139, 0, 0, 0.4) 0%, rgba(139, 0, 0, 0.4) 78%, rgba(139, 0, 0, 0.4) 100%), url('../images/engineers.jpg');
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

.contact-crumb {
    background: linear-gradient(290deg, rgba(139, 0, 0, 0.6) 0%, rgba(139, 0, 0, 0.6) 78%, rgba(139, 0, 0, 0.6) 100%), url('../images/contact.jpg');
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
}

/* About Us */
.about-us .container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
}

.about-us .container .graphics {
    margin-top: -150px;
    z-index: 1;
}

.about-us .container .graphics img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-us .container .details h2 {
    color: var(--main);
    padding: 20px 0;
}

@media screen and (max-width:768px) {
    .about-us .container {
        grid-template-columns: 1fr;
    }

    .about-us .container .graphics img {
        height: 300px;
    }
}

/* Parallax */
.parallax {
    background: linear-gradient(290deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 78%, rgba(0, 0, 0, 0.6) 100%), url('../images/dgs.jpg');
    padding: 150px 100px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.parallax h3 {
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 500;
    width: 80%;
}

@media screen and (max-width:768px) {
    .parallax {
        padding: 50px;
    }

    .parallax h3 {
        width: 100%;
        font-size: 2.4rem;
    }
}

@media screen and (max-width:480px) {
    .parallax {
        padding: 50px 30px;
    }
}

/* Preview */
.preview {
    background: var(--light-variant-main);
    position: relative;
    overflow: hidden;
}

.preview h1 {
    position: relative;
    width: 60%;
    color: var(--white);
    z-index: 2;
}

.preview .folio {
    position: relative;
    margin-left: 200px;
    margin-right: -100px;
    margin-top: -30px;
    z-index: 0;
}

.preview .folio .item {
    padding: 5px;
}

.preview .folio img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    padding-bottom: 10px;
    /* z-index: 0; */
}

.preview .folio .item p {
    color: var(--white);
}

.preview .prev {
    cursor: pointer;
    position: absolute;
    top: -50px;
    right: 120px;
    color: var(--variant-main);
    width: 40px;
    height: 40px;
    /* border-radius: 50%; */
    text-align: center;
    line-height: 40px;
    display: inline-block;
    background-color: var(--white);
    font-size: 25px;
}

.preview .next {
    cursor: pointer;
    position: absolute;
    top: -50px;
    right: 70px;
    color: var(--white);
    width: 40px;
    height: 40px;
    /* border-radius: 50%; */
    text-align: center;
    line-height: 40px;
    display: inline-block;
    background-color: var(--main);
    font-size: 25px;
}

.preview .prev i::before {
    color: var(--main);
}

.preview .next i::before {
    color: var(--white);
}

@media screen and (max-width:768px) {
    .preview h1 {
        width: 100%;
    }

    .preview .folio {
        margin-left: 0;
        margin-right: 0;
        margin-top: 50px;
    }
}

/* HSE */
.hse {
    padding: 100px;
    position: relative;
    overflow: hidden;
}

.hse .container {
    background: linear-gradient(
        to right,
        var(--variant-main) 0%,
        var(--variant-main) 30%,
        white 30%,
        white 100%
    );
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 80px 50px;
}

.hse .container .item {
    padding: 30px;
    background: var(--light-grey);
    box-shadow: 10px 10px 8px -8px rgba(105, 105, 105, 1);
}

.hse .container .item h3 {
    font-weight: 400;
    padding-top: 5px;
    padding-bottom: 20px;
    color: var(--variant-main);
}

.hse .container .item ion-icon {
    color: var(--light-main);
    font-size: 4.8rem;
}

.hse .plan {
    position: absolute;
    width: 90%;
    right: 0;
    top: 0;
    z-index: 0;
}

.hse .plan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.03;
}

@media screen and (max-width:768px) {
    .hse {
        padding: 50px;
    }

    .hse .container {
        background: var(--white);
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media screen and (max-width:480px) {
    .hse {
        padding: 30px;
    }
}

/* Services */
.bread-highlight {
    padding: 100px 200px 0 200px ;
}

@media screen and (max-width:768px) {
    .bread-highlight {
        padding: 50px;
    }
}

@media screen and (max-width:480px) {
    .bread-highlight {
        padding: 50px 30px;
    }
}

.bread-highlight p {
    text-align: center;
    font-size: 2.4rem;
    line-height: 3.6rem;
    color: var(--variant-main);
}

.our-services .container {
    position: relative;
}

.our-services .container .item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.our-services .container .item:nth-child(even) {
    /* flex-direction: row-reverse; */
    padding: 70px 0;
}

.our-services .container .item .graphics {
    flex-basis: 45%;
    height: 600px;
    position: relative;
    z-index: 0;
}

.our-services .container .item .graphics .title {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--light-variant-main);
    bottom: -30px;
    left: -30px;
    padding: 15px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.our-services .container .item .graphics .title i {
    font-size: 2.4rem;
    padding-right: 10px;
}

.our-services .container .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-services .container .item .details {
    flex-basis: calc(65% + 120px);
    background: var(--white);
    box-shadow: 10px 10px 8px -8px rgba(105, 105, 105, 1);
    margin-left: -120px;
    padding: 30px 50px;
    z-index: 2;
}

.our-services .container .item .details h2 {
    color: var(--main);
}

.our-services .container .item .details h4 {
    padding-top: 20px;
    padding-bottom: 10px;
}

.our-services .container .item .details p span {
    color: var(--light-main);
}

@media screen and (max-width:768px) {
    .our-services .container .item {
        display: grid;
    }

    .our-services .container .item .details {
        margin-left: 0;
        border: 1px solid var(--grey);
    }

    .our-services .container .item .graphics .title {
        display: none;
    }
}

/* Products */
.our-products .main-container {
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.our-products .table-container {
    display: flex;
    flex-flow: column nowrap;
    margin: 0 auto;
    border: 1px solid #DADADA;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, .08);
}

.our-products .table-row {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    border-bottom: 1px solid #dadada;
}

.our-products .heading {
    color: var(--black);
    background: var(--grey);
    font-weight: bold;
    padding: 10px;
}

.our-products .row-item {
    display: flex;
    flex: 1;
    font-size: 14px;
    padding: 8px 0;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    transition: all 0.15s ease-in-out;
}

.our-products .row-item:nth-child(1) {
    flex: 2;
}

.our-products .row-item:hover {
    cursor: pointer;
    background-color: #F0F0F0;
    /*   box-shadow: 0px 1px 4px rgba(0, 0, 0, .08); */
}

.our-products .row-sub-container {
    display: flex;
    flex-flow: column nowrap;
    flex: 1;
}

.our-products .row-sub-container .row-item {
    padding: 8px 0;
    border-bottom: 1px solid #dadada;
}

.our-products .table-row:last-child,
.our-products .row-sub-container .row-item:last-child {
    border-bottom: 0;
}

/* Team */
.team .container .item {
    display: grid;
    grid-template-columns: 3fr 4.5fr;
}

.team .container .item:nth-child(even) {
    margin: 120px 0;
}

.team .container .graphics {
    position: relative;
}

.team .container .graphics .after {
    height: 70px;
    width: 100%;
    background: var(--main);
    margin-left: 80px;
}

.team .container .item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 1px solid var(--grey);
}

.team .container .details {
    position: relative;
    background: var(--dark-variant-main);
    color: var(--white);
    padding: 40px 50px;
    margin-top: 180px;
    margin-left: -120px;
}

.team .container .details .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.team .container .details .title i {
    font-size: 3.2rem;
    color: var(--white);
}

.team .container .details .title i::before {
    color: var(--white);
}

@media screen and (max-width:768px) {
    .team .container .item {
        grid-template-columns: 1fr;
    }

    .team .container .graphics .after {
        display: none;
    }
    .team .container .details {
        margin-top: 0;
        margin-left: 0;
    }
}

/* Contact Us */
.contact .container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
}

.contact .container h3 {
    padding-bottom: 30px;
}

.contact .container .info .content {
    background: var(--light-variant-main);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.contact .container .info .item {
    padding: 20px 0;
}

.contact .container .info i {
    font-size: 3.2rem;
    padding-bottom: 50px;
}

.contact .container .info .item:nth-child(even) {
    padding: 20px 0;
    border-bottom: 1px solid var(--white);
    border-top: 1px solid var(--white);
}

.contact .container form {
    background: var(--light-opacity);
    padding: 30px;
}

.contact .container form .input-item {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 10px;
}

.contact .container form .input-item label {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact .container form .input-item input {
    border: none;
    outline: none;
    background: var(--white);
    color: var(--variant-main);
    height: 40px;
    font-size: 1.4rem;
    padding-left: 10px;
    margin-bottom: 10px;
}

.contact .container form .input-item textarea {
    border: none;
    outline: none;
    background: var(--white);
    color: var(--variant-main);
    height: 240px;
    font-size: 1.4rem;
    padding-left: 10px;
    padding-top: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width:768px) {
    .contact .container {
        grid-template-columns: 1fr;
    }
}


