@import "../../../css/css-var.css";
/* Reset ================================================================================= */
*{margin:0;padding:0}

body {
    font-size: var(--p-fs);
    font-weight: 400;
    font-family: var(--theme-font);
    background-color: var(--theme-white);
}

a {
    text-decoration: none;
    background-color: transparent;
    color: inherit;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:focus {
    outline: none;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: var(--theme-secondary-color);
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
@media (min-width: 1921px) {
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1.563vw white inset !important;
    }
}
input[type=text]::-moz-placeholder,
input[type=search]::-moz-placeholder,
.input-text::-moz-placeholder,
.input_text::-moz-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}

input[type=text]::-webkit-input-placeholder,
input[type=search]::-webkit-input-p,
.input-text::-webkit-input-placeholder,
.input_text::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}

input[type=text]::-ms-placeholder,
input[type=search]::-ms-placeholder,
.input-text::-ms-placeholder,
.input_text::-ms-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}

input[type=email]::-moz-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}

input[type=email]::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}

input[type=email]::-ms-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}

textarea::-moz-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}

textarea::-webkit-input-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}

textarea::-ms-input-placeholder {
	color: inherit;
	opacity: 1;
	font-family: inherit;
}
:focus{outline:none;}
a:focus{outline:none; text-decoration:none;}
a:hover { text-decoration:none;}

.none{display:none !important;}


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	color: var(--theme-secondary-color);
	margin: 0;
}
h1,
.h1 {
	font-size: var(--h1-fs);
    font-weight: 900;
    line-height: normal;
}
h2,
.h2 {
	font-size: var(--h2-fs);
    font-weight: 900;
    line-height: normal;
}
h3,
.h3 {
	font-size: var(--h3-fs);
    font-weight: 900;
    line-height: normal;
}
h4,
.h4 {
	font-size: var(--h4-fs);
    font-weight: 700;
    line-height: normal;
}
h5,
.h5 {
	font-size: var(--h5-fs);
}
h6,
.h6 {
	font-size: var(--h6-fs);
}
p {
	font-size: var(--p-fs);
    line-height: 1.444444;
	margin-bottom: 0;
}


.theme-title {
    padding-bottom: var(--section-title-bottom);
}

.theme-title h1 span,
.theme-title .h1 span,
.theme-title h2 span,
.theme-title .h2 span,
.theme-title h3 span,
.theme-title .h3 span,
.theme-title h4 span,
.theme-title .h4 span {
	color: var(--theme-primary-color);
}
p {
    font-weight: normal;
    font-size: var(--p-fs);
    line-height: 1.4444444;
    color: color-mix(in srgb, var(--theme-secondary-color) 70%, transparent);
    margin-bottom: 26px;
}
@media (min-width: 1921px) {
    p {
        margin-bottom: 1.354vw;
    }
}
.section-padding {
    padding-block: var(--section-padding);
}
.section-padding-top {
    padding-top: var(--section-padding);
}
.section-padding-bottom {
    padding-bottom: var(--section-padding);
}

/* Common CSS */
.flexcol-auto {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}
.flexcol-fix {
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

/* Forms */

fieldset { border:0; }
legend { display:none; }

/* Table */
table { border:0; border-collapse:collapse; border-spacing:0; empty-cells:show; font-size:100%; }
caption,th,td { vertical-align:top; text-align:left; font-weight:normal; }

/* Lists */
ul,ol{list-style:none; margin: 0;}

/* Container Setting */
@media (min-width:576px){
	.container {
        width:100%;
        max-width:100%;
	}
}
@media (min-width: 768px) {
	.container {
        width:750px;
        padding: 0 15px;;
	}
}
@media (min-width: 992px) {
	.container {
	    width:970px;
	}
}
@media (min-width: 1200px) {
	.container {
        width:1130px;
        max-width:1130px;
	}
}

@media (min-width: 1440px) {
	.container {
        width:1400px;
        max-width:1400px;
	}
}
@media (min-width: 1800px) {
	.container {
        width:1710px;
        max-width:1710px;
	}
}
@media (min-width: 1921px) {
    .container {
        width:89.063vw;
        max-width:89.063vw;
	}
}

/* Bootstrap Defult Setting */

.container {
    padding: 0 15px;
}
@media (min-width: 1921px) {
    .container {
        padding: 0 0.781vw;
    }
}

.row { 
    margin-left: -15px !important;
    margin-right: -15px !important;
}
@media (min-width: 1921px) {
    .row { 
        margin-left: -0.781vw !important;
        margin-right: -0.781vw !important;
    }
}
.row>* { 
    padding-left: 15px !important; 
    padding-right: 15px !important;
}
@media (min-width: 1921px) {
    .row>* { 
        padding-left: 0.781vw !important; 
        padding-right: 0.781vw !important;
    }
}

/* Global Styles ========================================================================= */




.form_invalid {
    border-radius: 4px;
    border: solid 2px #f8797f;
    padding: 12px 14px 11px 44px;
    background: url(../images/c-error.svg) no-repeat 15px 12px #f8797f;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;
    font-size: 15px;
    max-width: 576px;
    margin: 24px auto 8px;
}

.form_sent {
    border-radius: 4px;
    border: solid 2px #00ad8a;
    padding: 12px 14px 11px 44px;
    background: url(../images/c-check.svg) no-repeat 15px 12px #00ad8a;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 1px;
    color: #fff;
    font-size: 15px;
    max-width: 576px;
	margin: 24px auto 8px;
}

@media (min-width: 1921px) {
    .form_invalid {
        border-radius: 0.208vw;
        border: solid 0.104vw #f8797f;
        padding: 0.625vw 0.729vw 0.573vw 2.292vw;
        background: url(../images/c-error.svg) no-repeat 0.781vw 0.625vw #f8797f;
        letter-spacing: 0.052vw;
        font-size: 0.781vw;
        max-width: 30vw;
        margin: 1.25vw auto 0.417vw;
    }
    
    .form_sent {
        border-radius: 0.208vw;
        border: solid 0.104vw #00ad8a;
        padding: 0.625vw 0.729vw 0.573vw 2.292vw;
        background: url(../images/c-check.svg) no-repeat 0.781vw 0.625vw #00ad8a;
        letter-spacing: 0.052vw;
        font-size: 0.781vw;
        max-width: 30vw;
        margin: 1.25vw auto 0.417vw;
    }
}


.btn {
    padding: 8px 9px 8px 18px;
    border-radius: 50px;
    font-weight: 900;
    font-size: var(--p-fs);
    line-height: normal;
    min-height: 54px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.btn i {
    width: 36px;
    height: 36px;
    background-color: var(--theme-white);
    border-radius: 50%;
    margin: 0 0 0 18px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 6px;
}

.btn i svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.btn.btn-small {
    padding: 4px 5px 4px 14px;
    border-radius: 50px;
    font-weight: 900;
    font-size: var(--p-fs);
    line-height: normal;
    min-height: 38px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.btn.btn-small i {
    width: 28px;
    height: 28px;
    background-color: var(--theme-white);
    border-radius: 50%;
    margin: 0 0 0 18px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 6px;
}

.btn.btn-small.btn-filepond {
    padding: 4px 4px 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--p3-fs);
    line-height: normal;
    min-height: 30px; 
}
.btn.btn-small.btn-filepond i {
    width: 24px;
    height: 24px;
    margin: 0 0 0 10px;
    padding: 4px;
}
.btn.btn-small.btn-filepond:hover {
	background-color: #ffffff;
	border-color:#ffffff;
    color: var(--theme-primary-dark-color);
}

.btn.primary-btn {
    border: solid 1px var(--theme-primary-dark-color);
    color: var(--theme-white);
    background-color: var(--theme-primary-dark-color);
}
.btn.primary-btn i {
    color: var(--theme-primary-dark-color);
}
.btn.primary-btn:hover i {
    background-color: var(--theme-primary-dark-color);
    color: var(--theme-white);
}
.btn.primary-btn:hover {
    background-color: transparent;
    color: var(--theme-primary-dark-color);
}

.btn.secondary-btn {
    border: solid 1px var(--theme-secondary-color);
    color: var(--theme-white);
    background-color: var(--theme-secondary-color);
}
.btn.secondary-btn i {
    color: var(--theme-secondary-color);
    padding: 6px;
}
.btn.secondary-btn:hover i {
    background-color: var(--theme-secondary-color);
    color: var(--theme-white);
}
.btn.secondary-btn:hover {
    background-color: transparent;
    color: var(--theme-secondary-color);
}

.btn.no-icon {
    padding-left: 18px;
    padding-right: 18px;
}

@media (min-width: 1921px) {
    
    .btn {
        padding: 0.417vw 0.469vw 0.417vw 0.938vw;
        border-radius: 2.604vw;
        min-height: 2.813vw;
    }
    .btn i {
        width: 1.875vw;
        height: 1.875vw;
        margin: 0 0 0 0.938vw;
        padding: 0.313vw;
    }
    .btn i svg {
        width: 1.25vw;
    }

    .btn.primary-btn {
        border: solid 0.052vw var(--theme-primary-dark-color);
    }
    .btn.secondary-btn {
        border: solid 0.052vw var(--theme-secondary-color);
    }
    .btn.secondary-btn i {
        padding: 0.313vw;
    }
    .btn.no-icon {
        padding-left: 0.938vw;
        padding-right: 0.938vw;
    }
}