/*
    Theme Name: Artemas
    Author:  Artemas
    Author URL: https://movewith.digital/
    Description: ---- 2023.
    Document   : Framework
    Created on :  April 1 2024, 12.00 AM
*/

html {
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

body {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-size: 100%;
    color: var(--secondry-color);
    background: #F5F5F5;
    font-family: var(--font-two);
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-text-size-adjust: none;
    font-weight: 300;
}

::placeholder {
    color: #CACACA;
    font-family: var(--font-two);
    font-weight: 400;
}

.clear {
    clear: both;
    font-size: 0px;
    line-height: 0px;
    height: 0px;
    margin: 0px;
    padding: 0px;
}

:focus {
    outline: 0;
}

a,
a:link,
a:visited {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    color: #fff;
}

/* div {
    transition: all 0.3s ease-in-out;
} */

a:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:after {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

img {
    border: none;
    max-width: 100%;
}

ul,
li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--font-one);
}

p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1em;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--font-one);
}

h1 {
    margin: 0;
    padding: 0;
    color: var(--white-color);
    line-height: 1.1;
    font-size: 3.8em;
    font-weight: 700;
    font-family: var(--font-two);
}

h2 {
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-size: 1.5em;
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--font-two);
}

h3 {
    margin: 0;
    padding: 0;
    color: var(--white-color);
    line-height: 1.1;
    font-size: 2.8em;
    font-weight: 500;
    font-family: var(--font-two);
}

h4 {
    margin: 0;
    padding: 0;
    color: var(--text-color);
    font-size: 1.2em;
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--font-two);
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
    content: " ";
    display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
    clear: both;
}

.outer {
    width: 100%;
    padding: 0 0;
    margin: 0 auto;
    background: #F5F5F5;
    overflow: hidden;
}

:root {
    --font-one: "Roboto", sans-serif;
    --font-two: "Roboto", sans-serif;
    --font-three: "Inter", sans-serif;
    --second-btn: #0099FC;
    --text-color: #424242;
    --primary-color: #293C8F;
    --goldcolor: #A9946B;
    --btnradius: 80px;
    --radius: 80px;
    --small-radius: 50px;
    --white-color: #fff;
    --main-color: #FFF4F3;
}

/*grid-system-start*/
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Responsive styles for 2 columns */
@media (min-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Responsive styles for 3 columns */
@media (min-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Responsive styles for 4 columns */
@media (min-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/*grid-system-end*/
.container {
    margin: 0 auto;
    width: 85%;
    max-width: 1400px;
}

.medium-container {
    margin: 0 auto;
    width: 90%;
    max-width: 850px;
}




.flex {
    display: flex;
}

.set-logo {
    display: flex;
}

.logo a:nth-child(1) {
    border-right: 2px solid var(--goldcolor);
    padding: 0 10px 0 0;
}

.logo {
    width: 25%;
    max-width: 300px;
}

.header-contact {
    width: 75%;
}

.contact-link ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-link ul li {
    padding: 0 10px;

}

.contact-link ul li img {
    margin: 0 10px 0 0;
    border: 1px solid var(--goldcolor);
    padding: 9px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}

.contact-link ul li a {
    color: var(--text-color);
    font-size: 1.2em;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.accordian-sec {
    text-align: left;
    margin: 50px 0 100px 0;
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 0;
}

.accordion-items {
    width: 100%;
    background: linear-gradient(to bottom right, #fff, #f7f7f7);
    background: transparent;
    margin: 0 auto;
    border-radius: 3px;

}

.accordion-heading.open::after {
    background-color: var(--primary-color);
}

.accordion-heading.active::after {
    background-color: var(--text-color);
}

.accordion-heading h3 {
    color: var(--text-color);
    font-family: var(--font-two);
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.2;
    max-width: 750px;
}

.accordion-heading {
    counter-increment: accordion-heading;
    color: var(--text-color);
    font-family: var(--font-two);
    font-size: 1.1em;
    padding: 20px 20px 20px 60px;
    cursor: pointer;
    background-color: #fff;
    margin: 10px 0 0 0;
    font-weight: 600;
    position: relative;
}

.accordion-heading::after {
    content: counter(accordion-heading);
    position: absolute;
    left: 16px;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: #C2C2C2;
    color: var(--white-color);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    top: 20px;
    justify-content: center;
    align-items: center;
}

.accordion-heading.open,
.accordion-heading.active {


    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;

}

.accordion-heading:nth-last-child(2) {
    border-bottom: 0;
}

.accordion-heading.open::before {
    content: "-";
}

.accordion-heading::before {
    content: "+";
    vertical-align: middle;
    display: inline-block;
    float: right;
    transform: rotate(0);
    transition: all 0.5s;
    margin-top: 0;
    font-size: 1.8em;
    font-weight: 300;
    color: var(--primary-color);
}

.active.accordion-heading::before {
    content: "-";
}

.not-active.accordion-heading::before {
    transform: rotate(0deg);
}

.accordion-content {
    display: none;
    background: var(--white-color);
    padding: 0 40px 40px 60px;
    color: var(--text-color);
    font-family: var(--font-one);
    font-size: 1.1em;
    line-height: 1.6;
    font-weight: 400;


}

.accordion-content.open {
    display: block;
}

.banner {
    width: 100%;
    background: url(../img/banner.jpg) no-repeat center center/cover;
    margin: 130px 0 0 0;
    padding: 140px 0;
}

.banner-text {
    max-width: 750px;
}

.bottom-wrapper p {
    font-size: 1.5em;
    font-weight: 500;
    padding: 0 0 10px 0;
    color: var(--white-color);
}

a.btn {
    background-color: var(--second-btn);
    color: var(--white-color);
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1.2em;
    display: inline-block;
    text-transform: uppercase;
}

input#input:focus {
    border-bottom: 3px solid var(--primary-color);
}

a.btn:hover {
    background-color: var(--goldcolor);
}

a.btn.dark-blue {
    background-color: var(--primary-color);
}

.bottom-wrapper {
    margin: 80px 0 0 0;
}

.two-sec {
    width: 100%;
    padding: 100px 0;
}

.two-sec .flex {
    gap: 80px;
    justify-content: space-between;
    align-items: center;
}

.two-sec .left {
    width: 43%;
}

.two-sec .left h2 {
    padding: 0 0 20px 0;
}

.two-sec .left p {
    padding: 0 0 10px 0;
}

.two-sec .right {
    width: 45%;
}

.two-sec .right label {
    color: var(--text-color);
    font-weight: 500;
    padding: 0 0 10px 0;
    display: block;
    font-size: 1.2em;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #CACACA;
    font-size: 18px;
    height: auto;
    margin: 0;
    outline: 0;
    font-weight: 400;
    padding: 15px 0;
    width: 100%;
    color: #333;
    font-family: var(--font-one);
    margin-bottom: 20px;
}

.two-sec .right input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px 60px;
    margin:20px 0 0 0;
    font-weight: 600;
    font-size: 1.2em;
    display: inline-block;
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.first-accordian {
    width: 100%;
    background: url(../img/banner-one.jpg) no-repeat center center/cover;
    padding: 100px 0;
    background-attachment: fixed;
}

.btn-text {
    margin: 20px 0 0 0;
}

.btn-text strong {
    display: block;
    color: var(--white-color);
    font-size: 2em;
    padding: 0 0 10px 0;
}

.btn-set a.btn {
    margin: 0 10px 0 0;
    padding: 20px 68px;
    width: 50%;
}

.icon-sec {
    width: 100%;
    padding: 100px 0;
}

.icon-sec h3 {
    color: var(--text-color);
}

.icon-block .flex {
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px 0 0 0;
}

.icon-set {
    width: 46%;
    display: flex;
    align-items: flex-start;
}

.icon-set img {
    width: 70px;
    height: 70px;
    margin: 0px 20px 0 0;
    object-fit: contain;
}

.icv-block {
    background-color: #EEEDED;
    padding: 50px 0;
}

.icv-block .flex {
    gap: 100px;
    align-items: center;
    justify-content: center;
}

.icv-block .right h3 {
    display: block;
    color: var(--text-color);
    font-size: 1.5em;
    padding: 0 0 10px 0;
    font-weight: 500;
}

.icv-block .left {
    width: 22%;
}

.icv-block .right {
    width: 55%;
}

.icv-block .right a.btn {
    margin: 10px 0 0 0;
    padding: 15px 70px;
}

.second-accordian {
    background: url(../img/banner-two.jpg) no-repeat center center/cover;
}

.team-sec {
    width: 100%;
    padding: 100px 0;
}

.team-set {
    background-color: var(--white-color);
    text-align: center;
    width: 48%;
}

.team-block .flex {
    gap: 40px;
    margin: 40px 0 0 0;
}

.team-content a {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1em;
    opacity: 0.8;
    font-family: var(--font-three);
    line-height: 1.3;
}

.team-content strong {
    display: block;
    color: var(--text-color);
    font-weight: 700;
    padding: 5px 0 3px 0;
    font-size: 1em;
    font-family: var(--font-three);
}

.team-content h4 {
    color: var(--goldcolor);
    text-transform: capitalize;
    font-family: var(--font-three);
}

.team-content {
    padding: 30px;
}

.team-set img {
    width: 100%;
    padding: 10px 0 0 0;
    position: relative;
}

.team-content img {
    width: 20px;
    height: 20px;
    margin: 10px 0 0 0;
    padding: 0 0 0 0;
}

.team-sec h3 {
    color: var(--text-color);
}

.footer {
    width: 100%;
    padding: 100px 0;
    background-color: var(--white-color);
}

.footer .flex {
    justify-content: center;
    align-items: center;
}

.footer .left {
    width: 35%;
    border-right: 1px solid #C2C2C2;
}

.footer .right {
    width: 60%;
    padding: 0 0 0 40px;
}

.footer .left a {
    display: block;
    color: var(--text-color);
}

.footer .left ul li img {
    margin: 0 10px 0 0;
    border: 1px solid var(--text-color);
    padding: 6px;
    border-radius: 100%;
    width: 30px;
    height: 30px;
}

.footer .left ul {
    margin: 50px 0 0 20px;
}

.footer .left ul li {
    margin: 0 0 10px 0;
}

.footer .left ul li a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1em;
}

.footer .right a {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1em;
    color: var(--text-color);
    line-height: 1.4;
}

.address-set {
    width: 60%;
}

.footer .right .flex {
    gap: 50px;
    flex-wrap: wrap;

}

.footer .right strong {
    display: block;
    padding: 0 0 10px 0;
    font-size: 1.2em;
}

.footer .medium-container {
    max-width: 950px;
}

.icv-block .right a.btn:hover {
    background-color: var(--goldcolor);
}

.btn-set a.btn:hover {
    background-color: var(--goldcolor);
}

.mobile-only {
    display: none;
}

.btn-set {
    display: flex;
}

a.btn {
    white-space: nowrap;
}

.team-set {
    width: 47%;
}

.footer .right .flex {
    justify-content: flex-start;
}

.socail-links ul {
    display: flex;
    align-items: center;
    padding: 40px 0 0 0;
}

.socail-links ul li {
    margin: 0 20px 0 0;
}

.socail-links ul li img {
    width: 30px;
    height: 30px;
}

.other-services {
    width: 100%;
    padding: 0 0 50px 0;
}

.other-services .flex {
    align-items: center;
}

.other-services .left {
    width: 35%;
}

.other-services .right {
    width: 70%;
}

.other-services .left h3 {
    color: var(--text-color);
    font-size: 2.2em;
}

.other-services .right ul {
    display: flex;
}

.other-services .right ul li {
    font-weight: 500;
    color: var(--primary-color);
    padding: 0 10px 0 10px;
    font-size: 1.5em;
    border-right: 2px solid var(--primary-color);
}

.other-services .right ul li:last-child {
    border: 0;
}