/* Please ❤ this if you like it! */

@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");

:root {
    --text-color: #14151a; /*#01182f;*/
    --a-text-color: #14151a73; /*#01182f;*/
    --body-color: #fff;
    --a-body-color: #ffffff86;
    --primary-color: #85bef7;
    --secondary-color: #0a4f9c;
    --color-success: #85d66d;
    --color-success-border: #4fb432;
    --border-radius: 10px;
    --box-shadow-dark: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    --box-shadow-light: 0px 10px 15px -3px rgba(255, 255, 255, 0.1);
}
/* #Primary
================================================== */

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
    /* background-image: url("/front/svg/pat-back.svg"); */
    background-position: center;
    background-repeat: repeat;
    background-size: 7%;
    background-color: var(--body-color);
    overflow-x: hidden;
    transition: all 200ms linear;
    height: 100vh;
}
::selection {
    color: var(--body-color);
    background-color: var(--primary-color);
}
::-moz-selection {
    color: var(--body-color);
    background-color: var(--primary-color);
}

/* body a.lined,
.postBodyContainer a {
    color: var(--text-color);
    text-decoration: none;
    background-image: linear-gradient(var(--text-color), var(--text-color));
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
}
body a.lined:hover,
.postBodyContainer a:hover {
    background-size: 100% 88%;
    color: var(--body-color) !important;
} */

/* #Navigation
================================================== */

.start-header {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 0 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.start-header.scroll-on .company-logo {
    height: 40px !important;
}
.start-header.scroll-on .navbar-brand img {
    height: 70px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.navbar {
    padding: 0;
}
.navbar-brand {
    background-color: var(--body-color);
    border-radius: 3px;
}
.navbar-brand img {
    height: 70px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}
.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid var(--text-color);
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: var(--text-color);
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}
.nav-link,
body a.lined,
.postBodyContainer a {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: all 200ms linear;
}
body.dark a.lined,
body.dark .postBodyContainer a {
    color: var(--body-color) !important;
}
/* .switchContainer {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 767px) {
    .switchContainer {
        min-height: 50px;
        display: flex;
  justify-content: end;
  align-items: center;


    }
    .switchContainer #switch {
        margin: 0;

    }
} */

.toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 34px;
    height: 34px;
    align-self: end;
}

.toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.dark .toggle input[type="checkbox"] + label {
    background: var(--body-color);
    animation: rotate 400ms cubic-bezier(0.175, 0.885, 0.32, 1.075);
    animation-delay: 250ms;
}

body.dark .toggle input[type="checkbox"] + label::after {
    background: var(--text-color);
    transform: translate(35%, -30%);
    opacity: 1;
}

.toggle label.toggle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.175, 0.885, 0.32, 1.075);
    background-color: #ffc109;
    border: 8px solid lighten(#ffc109, 10%);
    overflow: hidden;
}

.toggle label.toggle-btn::after {
    content: "";
    position: absolute;
    top: 0%;
    right: 0%;
    background: var(--text-color);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(72%, -72%);
    transition: all 250ms cubic-bezier(0.175, 0.885, 0.32, 1.075);
    opacity: 0;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.nav-item:hover .nav-link,
body a.lined:hover,
.postBodyContainer a:hover,
body.dark .postBodyContainer a:hover {
    color: var(--primary-color) !important;
}
.nav-item.active .nav-link,
body a.lined:active,
.postBodyContainer a:active {
    color: #777 !important;
}
.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}
.nav-item:after,
body a.lined:after,
.postBodyContainer a:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: var(--primary-color);
    opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after,
body a.lined:hover:after,
.postBodyContainer a:hover:after {
    bottom: 0;
    opacity: 1;
}
.nav-item.active:hover:after,
body a.lined.active:hover:after,
.postBodyContainer a.active:hover:after {
    opacity: 0;
}
.nav-item,
body a.lined,
.postBodyContainer a {
    position: relative;
    transition: all 200ms linear;
    text-decoration: none;
}

/* #Primary style
================================================== */

.bg-light {
    background-color: var(--body-color) !important;
    transition: all 200ms linear;
}
.section {
    position: relative;
    width: 100%;
    display: block;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: 40px;
    transform: translateY(-50%);
    z-index: 20;
}

body.hero-anime p {
    opacity: 0;
    transform: translateY(40px);
    transition-delay: 1700ms;
}
h1 span {
    display: inline-block;
    transition: all 300ms linear;
    opacity: 1;
    transform: translate(0);
}

body.hero-anime h1.anim-top {
    opacity: 0;
    transform: translateY(20px);
}
body.hero-anime h1 span:nth-child(1) {
    opacity: 0;
    transform: translateY(-20px);
}
body.hero-anime h1 span:nth-child(2) {
    opacity: 0;
    transform: translateY(-30px);
}
body.hero-anime h1 span:nth-child(3) {
    opacity: 0;
    transform: translateY(-50px);
}
body.hero-anime h1 span:nth-child(4) {
    opacity: 0;
    transform: translateY(-10px);
}
body.hero-anime h1 span:nth-child(5) {
    opacity: 0;
    transform: translateY(-50px);
}
body.hero-anime h1 span:nth-child(6) {
    opacity: 0;
    transform: translateY(-20px);
}
body.hero-anime h1 span:nth-child(7) {
    opacity: 0;
    transform: translateY(-40px);
}
body.hero-anime h1 span:nth-child(8) {
    opacity: 0;
    transform: translateY(-10px);
}
body.hero-anime h1 span:nth-child(9) {
    opacity: 0;
    transform: translateY(-30px);
}
body.hero-anime h1 span:nth-child(10) {
    opacity: 0;
    transform: translateY(-20px);
}
body.hero-anime h1 span:nth-child(11) {
    opacity: 0;
    transform: translateY(30px);
}
body.hero-anime h1 span:nth-child(12) {
    opacity: 0;
    transform: translateY(50px);
}
body.hero-anime h1 span:nth-child(13) {
    opacity: 0;
    transform: translateY(20px);
}
body.hero-anime h1 span:nth-child(14) {
    opacity: 0;
    transform: translateY(30px);
}
body.hero-anime h1 span:nth-child(15) {
    opacity: 0;
    transform: translateY(50px);
}
body.hero-anime h1 span:nth-child(16) {
    opacity: 0;
    transform: translateY(-10px);
}
body.hero-anime h1 span:nth-child(17) {
    opacity: 0;
    transform: translateY(20px);
}
body.hero-anime h1 span:nth-child(18) {
    opacity: 0;
    transform: translateY(40px);
}
body.hero-anime h1 span:nth-child(19) {
    opacity: 0;
    transform: translateY(-30px);
}
body.hero-anime h1 span:nth-child(20) {
    opacity: 0;
    transform: translateY(-20px);
}
body.hero-anime h1 span:nth-child(21) {
    opacity: 0;
    transform: translateY(10px);
}
body.hero-anime h1 span:nth-child(22) {
    opacity: 0;
    transform: translateY(30px);
}
body.hero-anime h1 span:nth-child(23) {
    opacity: 0;
    transform: translateY(-10px);
}
body.hero-anime h1 span:nth-child(24) {
    opacity: 0;
    transform: translateY(20px);
}
body.hero-anime h1 span:nth-child(25) {
    opacity: 0;
    transform: translateY(-30px);
}

h1 span:nth-child(1) {
    transition-delay: 1000ms;
}
h1 span:nth-child(2) {
    transition-delay: 700ms;
}
h1 span:nth-child(3) {
    transition-delay: 900ms;
}
h1 span:nth-child(4) {
    transition-delay: 800ms;
}
h1 span:nth-child(5) {
    transition-delay: 1000ms;
}
h1 span:nth-child(6) {
    transition-delay: 700ms;
}
h1 span:nth-child(7) {
    transition-delay: 900ms;
}
h1 span:nth-child(8) {
    transition-delay: 800ms;
}
h1 span:nth-child(9) {
    transition-delay: 600ms;
}
h1 span:nth-child(10) {
    transition-delay: 700ms;
}
h1 span:nth-child(11) {
    transition-delay: 1300ms;
}
h1 span:nth-child(12) {
    transition-delay: 1500ms;
}
h1 span:nth-child(13) {
    transition-delay: 1400ms;
}
h1 span:nth-child(14) {
    transition-delay: 1200ms;
}
h1 span:nth-child(15) {
    transition-delay: 1450ms;
}

h1 span:nth-child(16) {
    transition-delay: 1200ms;
}
h1 span:nth-child(17) {
    transition-delay: 1400ms;
}
h1 span:nth-child(18) {
    transition-delay: 1600ms;
}
h1 span:nth-child(19) {
    transition-delay: 1800ms;
}
h1 span:nth-child(20) {
    transition-delay: 2000ms;
}
h1 span:nth-child(21) {
    transition-delay: 2200ms;
}
h1 span:nth-child(22) {
    transition-delay: 2400ms;
}
h1 span:nth-child(23) {
    transition-delay: 2600ms;
}
h1 span:nth-child(24) {
    transition-delay: 2800ms;
}
h1 span:nth-child(25) {
    transition-delay: 3000ms;
}
h1.anim-top {
    transition-delay: 1000ms;
}

.img-container {
    width: 100%;
    position: relative;
    padding: 10px;
}
img.intro {
    width: 100%;
}
.animate {
    width: 100%;
    transform: translateX(0);
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
.animate.elmntRight.removed {
    transform: translateX(100%);
    opacity: 0;
}
.animate.elmntLeft.removed {
    transform: translateX(-100%);
    opacity: 0;
}
.img-container::before,
.img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0; /* Adjust the color and thickness of the lines */
    transition: width 1s ease, height 1s ease;
    border-top: 4px solid var(--text-color); /* Adjust the color and thickness of the lines */
    border-left: 4px solid var(--text-color); /* Adjust the color and thickness of the lines */
}

/* Animation to draw the lines */
.img-container::before,
.img-container::after {
    animation: drawLines 2s forwards; /* Change the duration as needed */
}

@keyframes drawLines {
    to {
        width: 200px;
        height: 100px;
    }
}

.to-right {
    opacity: 0; /* Start with opacity set to 0 to make it fade out */
    transform: translateX(-100px); /* Initially no horizontal translation */
    transition: opacity 1s ease, transform 1s ease; /* Add a transition for a smooth fade */
}

/* Apply the fade-in effect when the "to-right" class is present */
.to-right.fade-in {
    opacity: 1; /* Make the image fully visible */
    transform: translateX(
        0
    ); /* Move the image 100px to the right (adjust as needed) */
}
.to-left {
    opacity: 0; /* Start with opacity set to 0 to make it fade out */
    transform: translateX(100px); /* Initially no horizontal translation */
    transition: opacity 1s ease, transform 1s ease; /* Add a transition for a smooth fade */
}

/* Apply the fade-in effect when the "to-right" class is present */
.to-left.fade-in {
    opacity: 1; /* Make the image fully visible */
    transform: translateX(
        0
    ); /* Move the image 100px to the right (adjust as needed) */
}
#switch,
#circle {
    cursor: pointer;
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
#switch {
    width: 60px;
    height: 8px;
    border: 2px solid var(--primary-color);
    border-radius: 27px;
    background: var(--text-color);
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
    opacity: 1;
    transform: translate(0);
    transition: all 300ms linear;
    transition-delay: 1900ms;
}
body.hero-anime #switch {
    opacity: 0;
    transform: translateY(40px);
    transition-delay: 1900ms;
}
#circle {
    position: absolute;
    top: -11px;
    left: -13px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--text-color);
}
.switched {
    border-color: var(--text-color) !important;
    background: var(--primary-color) !important;
}
.switched #circle {
    left: 43px;
    box-shadow: 0 4px 4px rgba(26, 53, 71, 0.25),
        0 0 0 1px rgba(26, 53, 71, 0.07);
    background: var(--body-color);
}
.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
    display: none;
}
.dropdown-toggle img {
    height: 20px;
}

.dropdown-item {
    padding: 3px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--body-color);
    background-color: var(--primary-color);
}

body.dark {
    color: var(--body-color);
    background-color: /*#1f2029*/ var(--text-color);
    border-color: var(--text-color);
}

body.dark .navbar-brand img {
    /* filter: brightness(100%); */
}
body.dark h1 {
    color: var(--body-color);
}
body.dark h1 span {
    transition-delay: 0ms !important;
}
body.dark p {
    color: var(--body-color);
    transition-delay: 0ms !important;
}
body.dark .bg-light {
    background-color: #14151a !important;
}
body.dark .start-header {
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
}
body.dark .start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}
body.dark .nav-link {
    color: var(--body-color) !important;
}
body.dark .nav-item.active .nav-link {
    color: #999 !important;
}
body.dark .dropdown-menu {
    color: var(--body-color);
    background-color: #1f2029;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
body.dark .dropdown-item {
    color: var(--body-color);
}
body.dark .navbar-light .navbar-toggler-icon {
    border-bottom: 1px solid var(--body-color);
}
body.dark .navbar-light .navbar-toggler-icon:after,
body.dark .navbar-light .navbar-toggler-icon:before {
    background-color: var(--body-color);
}
body.dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

/* #Media
================================================== */

@media (max-width: 767px) {
    h1 {
        font-size: 38px;
    }
    .nav-item:after {
        display: none;
    }
    .nav-item::before {
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: var(--text-color);
        vertical-align: 0;
    }
    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: var(--text-color);
        vertical-align: 0;
        transition: all 200ms linear;
    }
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }
    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }
    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
    body.dark .nav-item::before {
        background-color: var(--body-color);
    }
    body.dark .dropdown-toggle::after {
        background-color: var(--body-color);
    }
    body.dark .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
    }
}

/* #Link to page
================================================== */

.logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear;
}
.logo img {
    height: 26px;
    width: auto;
    display: block;
    filter: brightness(10%);
    transition: all 250ms linear;
}
body.dark .logo img {
    filter: brightness(100%);
}

.flex-div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.flex-1 {
    flex: 1;
}
.flex-02 {
    flex: 0.2;
}
.flex-08 {
    flex: 0.8;
}
.flex-04 {
    flex: 0.4;
}
.flex-06 {
    flex: 0.6;
}
.primary-coloring h1 span {
    color: var(--primary-color);
}

.scroll-line {
    position: fixed;
    right: 20px;
    bottom: 0;
    transition: all 0.5s ease-in-out;
}
.scroll-line::after {
    content: "";
    height: 100px;
    width: 2px;
    background-color: var(--text-color);
    position: absolute;
    bottom: 0;
    right: 21px;
}
.scroll-line::before {
    content: "Scroll";
    position: absolute;
    width: fit-content;
    bottom: 120px;
    color: var(--text-color);
    right: 0px;
    animation: scroll-line 3s infinite linear;
}

@keyframes scroll-line {
    0% {
        bottom: 120px;
    }
    25% {
        bottom: 110px;
    }
    50% {
        bottom: 100px;
    }
    75% {
        bottom: 110px;
    }
    50% {
        bottom: 120px;
    }
}
body.dark .scroll-line::before {
    color: var(--body-color);
}
body.dark .scroll-line::after {
    background-color: var(--body-color);
}

/*-------------About--------------*/
.SectionTitleContainer {
    display: inline-block; /* Ensures that the container only takes the width of the text */
    background-clip: text; /* Clip the background to the text */
    color: transparent; /* Make the text transparent */
    font-size: 24px; /* Adjust font size as needed */
    text-align: center;
}
.SectionTitle {
    font-size: 10rem;
    font-weight: 900;
    font-family: "Times New Roman", Times, serif;
    margin: 20px;
}
.SectionTitle.smaller {
    font-size: 7rem;
    font-weight: 900;
    font-family: "Times New Roman", Times, serif;
}
@media (max-width: 485px) {
    .SectionTitle {
        font-size: 4rem !important;
        font-weight: 900;
        font-family: "Times New Roman", Times, serif;
    }
    .SectionTitle.smaller {
        font-size: 2rem !important;
        font-weight: 900;
        font-family: "Times New Roman", Times, serif;
    }
}
@media (max-width: 767px) {
    .SectionTitle {
        font-size: 6rem;
        font-weight: 900;
        font-family: "Times New Roman", Times, serif;
    }
    .SectionTitle.smaller {
        font-size: 4rem;
        font-weight: 900;
        font-family: "Times New Roman", Times, serif;
    }
    .p-container {
        width: 100% !important;
    }
    .p-container::after {
        content: "" !important;
    }
    .p-container p {
        font-size: 0.8rem !important;
        font-weight: 600;
    }
}
.AboutSection {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: start;
    justify-content: start;
}
.AboutSection > h1 {
    width: 95%;
    text-align: end;
    margin-right: 40px;
}
.p-container {
    width: 50%;

    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-dark);
    margin: 20px auto;
    padding: 20px;
    position: relative;
}
.p-container::after {
    content: '"';
    position: absolute;
    font-size: 10rem;
    color: var(--text-color);
    font-family: "Times New Roman", Times, serif;
    top: -20px;
    left: -60px;
}
.p-container p {
    color: var(--body-color);
    font-size: 1rem;
    font-weight: 600;
}

/*-----journal---------------*/
@media (max-width: 485px) {
}
@media (max-width: 767px) {
    .journalMobile {
        display: flex !important;
        justify-content: flex-start; /* Start from the left edge */
        align-items: center; /* Vertically center child posts */
        width: 100%;
        overflow-x: auto;
        gap: 10px;
        padding: 10px;
    }
    .JournalRow {
        flex: 0 0 70%; /* Each child post takes up 70% of the parent's width */
        min-width: 200px;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 400px;
        gap: 20px;
        overflow: hidden;
    }
    body.dark .JournalRow {
        border: 2px solid var(--body-color);
    }
    .JournalRow img,
    .TitleSummary {
        height: 200px;
        width: 100%;
    }
    .TitleSummary {
        padding: 10px;
        color: var(--text-color);
    }
    .TitleSummary h1 {
        font-size: 1rem;
        font-weight: 900;
    }

    .TitleSummary p {
        font-size: 0.9rem;
        line-height: 15px;
    }
    .JournalSection {
        display: none !important;
    }
}

.journalMobile {
    display: flex !important;
    justify-content: flex-start; /* Start from the left edge */
    align-items: center; /* Vertically center child posts */
    width: 100%;
    overflow-x: auto;
    gap: 10px;

    padding: 30px 10px;
}
.bg-waves {
    background-image: url("/front/svg/pat-back.svg");
    background-position: center;
    background-repeat: repeat;
    background-size: 7%;
}
.JournalRow {
    flex: 0 0 70%; /* Each child post takes up 70% of the parent's width */
    min-width: 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-dark);
    gap: 20px;
    overflow: hidden;
    background-color: var(--body-color);
}
body.dark .JournalRow {
    background-color: var(--text-color);
    box-shadow: var(--box-shadow-light);
}

.JournalRow img,
.TitleSummary {
    height: 200px;
    width: 100%;
}
.TitleSummary {
    padding: 10px;
    color: var(--text-color);
}
.TitleSummary h1 {
    font-size: 1rem;
    font-weight: 900;
}

.TitleSummary p {
    font-size: 0.9rem;
    line-height: 15px;
}

.JournalSection {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    background-image: url("/front/svg/pat-back.svg");
    background-position: center;
    background-repeat: repeat;
    background-size: 7%;
}
.JournalSection > h1 {
    flex: 1;
    text-align: start;
    margin-left: 40px;
}
.JournalSection .newsHolder {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
    gap: 10px;
}
.JournalSection .newsHolder .summery {
    flex: 1;
    opacity: 0;
    text-align: start;
    margin: 20px;
    transform: translateX(-200%);
    transition: all 0.5s cubic-bezier(0.2, 0.4, 0.8, 1);
}

.JournalSection .newsHolder .Carossel {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 30px;
}

.JournalSection .newsHolder .Carossel .CarosselPostContainer {
    height: 322px;
    width: 297px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.JournalSection .newsHolder .Carossel .CarosselPostContainer:first-child,
.JournalSection .newsHolder .Carossel .CarosselPostContainer:last-child {
    height: 270px;
    width: 250px;
    position: relative;
}

.JournalSection .newsHolder .Carossel .CarosselPostContainer .shader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.JournalSection .newsHolder .Carossel .CarosselPostContainer .image {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 9;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}
.JournalSection .newsHolder .Carossel .CarosselPostContainer:hover .image {
    transform: scale(1.1);
}
.JournalSection .newsHolder .Carossel .CarosselPostContainer h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--body-color);
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    text-align: start;
    padding: 10px;
}

.imageContainer {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    max-height: 600px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
}
@media (max-width: 767px) {
    .postTitle {
        font-size: 1.5rem;
    }
    .postCenter {
        width: 100% !important;
    }
    .mbreadcrumb {
        font-size: 0.6rem;
    }
    .authorRead {
        font-size: 0.6rem;
        line-height: 5px;
    }
}

.postTitle {
    width: 80%;
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: start;
    color: var(--text-color);
    z-index: 10;
    font-weight: 900;
}
body.dark h1.postTitle {
    color: var(--body-color);
}

.imageContainer:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--body-color));
    z-index: 9;
}
body.dark .imageContainer:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--text-color));
}
.imageContainer img {
    width: 100%;
    height: 100%;
    background-position: center center;
}
.postContainer {
    width: 100%;
    background-image: url("/front/svg/pat-back.svg");
    background-position: center;
    background-repeat: repeat;
    background-size: 7%;
}
.summaryContent {
    font-weight: 900 !important;
    margin: 20px auto !important;
    font-style: italic;
}
.postCenter {
    margin: 0 auto 40px auto;
    width: 80%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.postBodyContainer p,
.postBodyContainer ol,
.postBodyContainer ul {
    text-align: start;
    margin: 10px auto;
    width: 80%;
    transition: none;
}

.mbreadcrumb {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-weight: 600;
    list-style: none;
    text-align: start;
    margin: 10px auto;
    width: 80%;
}
.postAuthor {
    text-align: start;
}
.shareButtons {
    width: 80%;
    margin: 20px auto !important;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
.relatedPostContainer {
    width: 100%;
    padding: 10px 20px;
}
.relatedPosts {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    overflow-x: auto;
    margin: 20px 0;
}
@media (max-width: 415px) {
    .shareButtons {
        flex-direction: column;
        gap: 10px;
    }
}
.sharingTitle {
    font-weight: 700;
    margin: 0;
}
.shareBtnContainer {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.share-btn {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
    text-decoration: none;
}
.share-btn i {
    font-size: 30px;
}
.mbreadcrumb > .mbreadcrumb-item:not(:first-child)::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: var(--text-color);
    content: "/";
}
.mbreadcrumb-item {
    color: var(--text-color);
    text-decoration: none;
}
body.dark .mbreadcrumb > .mbreadcrumb-item:not(:first-child)::before {
    color: var(--body-color);
}
body.dark .mbreadcrumb-item {
    color: var(--body-color);
}

.authorRead {
    display: flex;
    margin: 10px auto;
    width: 80%;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    font-size: 0.7rem;
}

.filter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    height: 100px;
}
.searchInput {
    width: 100%;
    max-width: 300px;
    outline: none;
    padding: 5px 10px;
    background-color: transparent;
}
.postsWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.post {
    width: 300px;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 20px 10px;
    cursor: pointer;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;

    text-decoration: none !important;
    transition: all 0.5s ease-in-out;
    position: relative;
}
.post h1 {
    text-shadow: 2px -1px 2px rgba(0, 0, 0, 0.6);
    padding: 10px;
    font-size: 1.3rem;
    text-align: start;
    color: var(--body-color);
    transform: translateY(calc(100% + 10px));
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease 0.2s;
}
.post div {
    display: flex;
    color: var(--text-color);
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: -40px;
    left: 10px;
    transition: opacity 0.5s ease 0.2s;
    opacity: 0;
}
body.dark .post div {
    color: var(--body-color);
}
.post div {
    display: flex;
    color: var(--text-color);
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: -40px;
    left: 10px;
    transition: opacity 0.5s ease 0.2s;
    opacity: 0;
}
.post div {
    display: flex;
    color: var(--text-color);
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: -40px;
    left: 10px;
    transition: opacity 0.5s ease 0.2s;
    opacity: 0;
}
.post:hover h1 {
    transform: translateY(0);
    opacity: 1;
}
.post:hover div {
    opacity: 1;
}
.post:hover {
    height: 150px;
}

@media (max-width: 485px) {
    .slogan h1 {
        font-size: 1.5rem;
        font-weight: 600;
    }
    .slogan h6 {
        font-size: 1rem;
    }
}
@media (max-width: 767px) {
    .sloganSection {
        height: 60vh;
    }
    .sloganContainer {
        display: flex;
        flex-direction: column;
        position: relative;
        height: 100% !important;
    }
    .slogan {
        height: auto;
        width: 100%;
        z-index: 11;
        position: absolute;
    }
    .slogan h1,
    .slogan h6 {
        width: 80% !important;
        text-align: start;
        font-weight: 400;
    }
    .sloganAction {
        width: 80% !important;
    }

    .sloganImages {
        z-index: 9;
        height: auto;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .sloganImageSkeleton {
        opacity: 1 !important;
    }
    .g-item {
        box-shadow: none !important;
    }
}

.sloganContainer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-holder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-container {
    z-index: 9;
    display: grid;
    grid-template-areas:
        "bg1 bg1 bg1 bg1 bg1 bg1"
        "bg2 bg2 bg3 bg3 bg4 bg4"
        "bg5 bg5 bg5 bg5 bg4 bg4";
    gap: 10px;
    position: relative;
}
.g-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-dark);
}
body.dark .g-item {
    box-shadow: var(--box-shadow-light);
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item1 {
    grid-area: bg1;
    width: 100%;
    height: 200px;
}
.item2 {
    grid-area: bg2;
    width: 200px;
    height: 200px;
}
.item3 {
    grid-area: bg3;
    width: 200px;
    height: 200px;
}
.item4 {
    grid-area: bg4;
    width: 200px;
    height: 410px;
}
.item5 {
    grid-area: bg5;
    width: 410px;
    height: 200px;
}

@media (max-width: 1341px) {
    .item1 {
        grid-area: bg1;
        width: 100%;
        height: 130px;
    }
    .item2 {
        grid-area: bg2;
        width: 130px;
        height: 130px;
    }
    .item3 {
        grid-area: bg3;
        width: 130px;
        height: 130px;
    }
    .item4 {
        grid-area: bg4;
        width: 130px;
        height: 270px;
    }
    .item5 {
        grid-area: bg5;
        width: 270px;
        height: 130px;
    }
    .sloganSection {
        height: auto;
        padding: 60px 0;
    }
    .slogan h1,
    .slogan h6 {
        width: 80% !important;
    }
}
@media (max-width: 920px) {
    .item1 {
        grid-area: bg1;
        width: 100%;
        height: 130px;
    }
    .item2 {
        grid-area: bg2;
        width: 130px;
        height: 130px;
    }
    .item3 {
        grid-area: bg3;
        width: 130px;
        height: 130px;
    }
    .item4 {
        grid-area: bg4;
        width: 130px;
        height: 270px;
    }
    .item5 {
        grid-area: bg5;
        width: 270px;
        height: 130px;
    }
    .slogan h1,
    .slogan h6 {
        width: 90% !important;
    }
}
.slogan {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
}
.slogan h1,
.slogan h6 {
    width: 50%;
    text-align: start;
    font-weight: 400;
}
.sloganImages {
    flex: 1;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: start;
    height: 100%;
    position: relative;
}
body.dark .sloganImageSkeleton {
    background: linear-gradient(
        to bottom,
        var(--a-text-color),
        var(--text-color)
    );
}
.sloganImageSkeleton {
    position: absolute;
    opacity: 0;
    background: linear-gradient(
        to bottom,
        var(--a-body-color),
        var(--body-color)
    );
    z-index: 10;
    width: 100%;
    height: 100%;
}

.sloganImages .shower {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: opacity 1s ease-in-out;
    background-position: center center;
}

.sloganImages .shower:not(:first-child) {
    opacity: 1;
}
.sloganImages img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.sloganImages img:nth-child(1) {
    transform: translate(-30%, -60%);
}
.sloganImages img:nth-child(2) {
    transform: translate(-70%, -45%);
}
.sloganAction {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: start;
    gap: 30px;
}
.butn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.butn:hover {
    font-weight: 900;
}
.butn.main {
    border: 1px solid var(--text-color);
    color: var(--text-color);
}
body.dark .butn.main {
    border: 1px solid var(--body-color);
    color: var(--body-color);
}

.section.dark {
    background-color: var(--text-color);
    color: var(--body-color);
}
/*--------foooter----------*/

@media (max-width: 485px) {
}
@media (max-width: 767px) {
    .site-footer p {
        font-size: 0.9rem;
    }
}
.site-footer {
    background-color: var(--body-color);
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: var(--text-color);
    box-shadow: 0 -10px 30px 0 rgba(138, 155, 165, 0.15);
}
.site-footer h6 {
    font-size: 15px;
    font-weight: 900;
}
.contactFooter {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.contact {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.contact p {
    margin: 0;
}
body.dark .site-footer {
    color: var(--body-color);
    background-color: /*#1f2029*/ var(--text-color);
    border-color: var(--text-color);
}
.site-footer hr {
    border-top-color: #bbb;
    opacity: 0.5;
}
.site-footer hr.small {
    margin: 20px 0;
}
.site-footer h6 {
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px;
}
/* .site-footer a {
    color: var(--primary-color);
    font-weight: 600;
}
.site-footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
} */
.footer-links {
    padding-left: 0;
    list-style: none;
}
.footer-links li {
    display: block;
}
.footer-links a {
}
/* .footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
} */
.footer-links.inline li {
    display: inline-block;
}
.site-footer .social-icons {
    text-align: right;
}
.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: var(--text-color);
}
.copyright-text {
    margin: 0;
}
@media (max-width: 991px) {
    .site-footer [class^="col-"] {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 0;
    }
    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center;
    }
}
.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.social-icons li {
    display: inline-block;
    margin-bottom: 4px;
}
.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: var(--body-color);
    font-weight: 700;
    font-size: 13px;
}
.social-icons a {
    background-color: var(--text-color);
    color: var(--body-color);
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #fff;
    background-color: #29aafe;
}
.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px;
}
.social-icons a.facebook:hover {
    background-color: #3b5998;
}
.social-icons a.twitter:hover {
    background-color: #00aced;
}
.social-icons a.linkedin:hover {
    background-color: #007bb6;
}
.social-icons a.dribbble:hover {
    background-color: #ea4c89;
}
@media (max-width: 767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600;
    }
}

.expertiseContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;

    flex-wrap: wrap;
    gap: 20px;
}
.expertise-area {
    width: 45%;
    min-width: 700px;
    display: flex;
    align-items: start;
    justify-content: start;
    border-radius: 10px;
    overflow: hidden;
    gap: 10px;
    height: 350px;
    box-shadow: var(--box-shadow-dark);
}
body.dark .expertise-area {
    box-shadow: var(--box-shadow-light);
}
.expertise-image {
    flex: 1;
    width: 50%;
    height: 100%;
}
.expertise-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.expertise-content {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.expertise-content h1,
.expertise-content h6 {
    text-align: center;
}
.expertise-content h6 {
    font-weight: 400;
}

@media (max-width: 1000px) {
    .expertise-area {
        width: 40%;
        height: auto;
        flex-direction: column;
        height: 700px;
        min-width: 310px;
    }
    .expertise-image {
        flex: 1;
        width: 100%;
        height: 50%;
    }
    .expertise-content {
        flex: 1;
        height: 50%;
    }
}

.bg1 {
    background-image: url("/front/images/exp-bg01.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.bg1 p,
.bg1 h1,
.bg1 h6,
.bg2 p,
.bg2 h1,
.bg2 h6,
.bg3 p,
.bg3 h1,
.bg3 h6,
.bg3 h3,
.bg2 h3,
.bg1 h3,
.bg-long h3,
.bg-long p,
.bg-long h1,
.bg-long h6 {
    color: var(--body-color) !important;
}
.bg2 {
    background-image: url("/front/images/exp-bg02.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.bg3 {
    background-image: url("/front/images/exp-bg03.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.bg-long {
    background-image: url("/front/images/exp-bglong.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.expertise-title {
    font-weight: 700;
    font-size: 1rem;
    margin: 5px;
    padding: 0 10px;
}

.subscribe-container {
    width: 1200px;
    height: 600px;
    display: flex;
    align-items: start;
    justify-content: start;
    border-radius: 10px;
    overflow: hidden;
    gap: 10px;
    background-color: var(--body-color);
    box-shadow: var(--box-shadow-dark);
}
.ver-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.subscribe-image {
    flex: 1;
    width: 50%;
    height: 100%;
}
.subscribe-image img {
    width: 100%;
    height: 100%;
}
.pd-60 {
    padding: 60px;
}
.custom-height {
    height: 800px;
}
@media (max-width: 1230px) {
    .subscribe-container {
        width: 1000px;
        height: 600px;
    }
    .subscribe-image img {
        object-fit: cover;
    }
}
@media (max-width: 1030px) {
    .subscribe-container {
        width: 800px;
        height: 800px;
    }
    .custom-height {
        height: auto;
        padding: 50px 20px;
    }
    .subscribe-image img {
        object-fit: cover;
    }
}
@media (max-width: 850px) {
    .subscribe-container {
        width: 600px;
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .custom-height {
        height: auto;
        padding: 50px 20px;
    }
    .subscribe-image {
        flex: 0.66;
        width: 100%;
        height: 66%;
    }
    .subscribe-content {
        flex: 0.33;
    }
}
@media (max-width: 425px) {
    .subscribe-container {
        width: 350px;
        display: flex;
        flex-direction: column;
    }
}
.subscribe-content {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 10px;
}
body.dark .subscribe-container {
    box-shadow: var(--box-shadow-light);
    background-color: var(--text-color);
}

.subscribe-container .titles h1 {
    font-weight: 900;
}
.subscribe-container .titles h6 {
    font-weight: 400;
}
.subscribe-input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid var(--text-color);
    background-color: transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 40px;
    margin: 30px 0 0 0;
    transform: translateX(0);
    transition: all 0.5s ease;
}
body.dark .subscribe-input {
    border: 1px solid var(--body-color);
}

.alert-success {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: var(--border-radius);
    background-color: var(--color-success);
    border: 1px solid var(--color-success-border);
    color: var(--body-color);
    transition: all 0.5s ease;
    margin: 20px auto;
    padding: 5px;

    transform: translateX(200%);
}
.subscribe-content.has-message .alert-success {
    transform: translateX(0);
}
.subscribe-content.has-message .subscribe-input {
    transform: translateX(200%);
}
.subscribe-input input[type="email"] {
    background-color: transparent;
    padding: 10px;
    height: 100%;
    flex: 0.9;
    outline: none;
    box-shadow: none;
    border: none;
    width: 100%;
    color: var(--text-color);
}
body.dark .subscribe-input input[type="email"] {
    color: var(--body-color);
}
.subscribe-input input[type="submit"] {
    flex: 0.1;
    font-weight: 900;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    border: none;
    background-color: var(--text-color);
    padding: 5px;
    color: var(--body-color);
    border-radius: 10px;
    margin-right: 2px;
}
body.dark .subscribe-input input[type="submit"] {
    background-color: var(--body-color);
    color: var(--text-color);
}
/*----------------------CONTACTUS---*******/
.contact-holder {
    width: 100%;
    background-image: url("/front/svg/pat-back.svg");
    background-position: center;
    background-repeat: repeat;
    background-size: 7%;
    padding: 50px 20px;
}
body.dark .contact-container {
    background-color: var(--text-color);
    box-shadow: var(--box-shadow-light);
}
.contact-container {
    background-color: var(--body-color);
    max-width: 800px;
    min-width: 324px;
    margin: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-dark);
    overflow: hidden;
}

.row {
    width: 100%;
    margin: 0 0 1em 0;
    padding: 0 2.5em;
}

.row.header {
    padding: 1.5em 2.5em;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
}

.row.body {
    padding: 0.5em 2.5em 1em;
}

.pull-right {
    float: right;
}

.contact-container .left {
    margin-right: 20px !important;
}
.contact-container h1 {
    font-weight: 900;
    font-size: 2.8125em;
}

.contact-container h3 {
    font-size: 1.25em;
}

.contact-container .btn {
    font-size: 1.0625em;
    display: inline-block;
    padding: 0.74em 1.5em;
    margin: 1.5em 0 0;
    color: #fff;
    font-weight: 900;
}

.contact-container .btn.btn-submit:hover {
    background-color: var(--primary-color) !important;
}
body.dark .contact-container .btn.btn-submit:hover {
    background-color: var(--secondary-color) !important;
}

.contact-container .btn.btn-submit {
    background-color: var(--secondary-color);
}
body.dark .contact-container .btn.btn-submit {
    background-color: var(--primary-color);
}

.contact-container form {
    max-width: 100%;
    display: block;
}

.contact-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-container li {
    clear: both;
    display: inline-block;
    width: 100%;
}

.contact-container li:last-child {
    margin: 0;
}

.contact-container p {
    margin: 0;
    padding: 0;
    float: left;
}

.contact-container p.right {
    float: right;
}

.divider {
    border: 0;
    height: 1px;
    width: 100%;
    display: block;
    background-color: var(--secondary-color);
    background-image: linear-gradient(
        to right,
        #ee9cb4,
        var(--secondary-color)
    );
}

.req {
    color: #ee9cb4;
}

.contact-container label {
    display: block;
    margin: 0 0 0.5em 0;
    color: var(--secondary-color);
    font-size: 1em;
    font-weight: 800;
}

body.dark .contact-container label {
    color: var(--primary-color);
}

.contact-container input {
    margin: 0 0 0.5em 0;
    border: 1px solid #ccc;
    padding: 6px 10px;
    color: var(--text-color);
    font-size: 1em;
    border-radius: 5px;
    background-color: transparent;
}

.contact-container textarea {
    border: 1px solid #ccc;
    padding: 6px 10px;
    width: 100%;
    color: var(--text-color);
    border-radius: 5px;
    background-color: transparent;
}
body.dark .contact-container textarea,
body.dark .contact-container input {
    color: var(--body-color);
    background-color: transparent;
}

@media (max-width: 480px) {
    .pull-right {
        float: none;
    }
    .contact-container .left {
        margin-right: 0 !important;
    }
    .contact-container input {
        width: 100%;
    }

    .contact-container label {
        width: 100%;
        display: inline-block;
        float: left;
        clear: both;
    }

    .contact-container li,
    .contact-container p {
        width: 100%;
    }

    .contact-container input.btn {
        margin: 1.5em 0 0.5em;
    }

    .contact-container h1 {
        font-size: 2.25em;
    }

    .contact-container h3 {
        font-size: 1.125em;
    }
}
