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

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

@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

:root{
    --primary-color: #DF0000;
    --Chonburi-font: "Chonburi", serif;;
    --Baskervville-font: "Baskervville", serif;;
}

main {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: all .3s ease-in-out;
}

figure {
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-family: var(--Baskervville-font);
}

p {
    color: #7A7A7A;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0px 0px 20px;
}

p::first-letter {
    text-transform: capitalize;
}

/* head */
.head{}
.head h2{
    font-size: 38px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
}
.head h2 span{
    font-family: var(--Baskervville-font);
    color: var(--primary-color);
}
.head h3{
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    /*margin: 0px 0px 20px;*/
}
/* head */

/**************************** Btn hover Start ***************************/
.btn {
    border-radius: 0px;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 20px;
    transition: all .3s ease-in-out;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 12px;
}

.btn-box .icon-wh {
    width: 25px;
    height: 25px;
    border-radius: 2px !important;
}

.btn-box .btn-primary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    color: #fff;
    background-color: #ff5722;
    border-radius: 0px;
    border: 1px double #ff5722;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-primary:hover {
    background-color: #ff5722;
}

.btn-box .btn-secondary {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
    color: #fff;
    background-color: #7c65ff;
    border-radius: 0px;
    border: 1px double #7c65ff;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.btn-box .btn-secondary:hover {
    background-color: #7c65ff;
}

.btn-box .btn-icon {
    color: #232F3F;
}

/* Bounce To Right */
.hvr-bounce-to-right {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: #ff5722 !important;
}

.hvr-bounce-to-right:hover:after,
.hvr-bounce-to-right:focus:after,
.hvr-bounce-to-right:active:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Right */
/* Bounce To left */
.hvr-bounce-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-left::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
    color: #7c65ff !important;
}

.hvr-bounce-to-left:hover::after,
.hvr-bounce-to-left:focus::after,
.hvr-bounce-to-left:active::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To left */
/**************************** Btn hover Close ***************************/

/**************************** Form css Start ***************************/
.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #313747;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.48px;
    opacity: 0.9;
}

select:focus,
textarea:focus,
input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #000 !important;
}

.frm .input-main {
    margin: 0 0 32px 0;
    overflow: hidden;
}

.input-main p,
.input-main label {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    margin: 0 0 10px 0;
    padding: 0;
    color: #000000;
    line-height: 20px;
    font-weight: 400;
    width: 100%;
}

.input-main p span,
.input-main label span {
    color: #FF6B6B;
}

.input-main .form-group {
    position: relative;
}

.frm .input-main .form-select, .frm .input-main .form-control {
    height: auto;
    background-color: #fff;
    border: 1px solid #69727d;
    border-radius: 3px;
    padding: 10px 14px;
    color: #000000;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    position: relative;
}
.frm .input-main textarea.form-control {
    height: 100px;
}
.frm .input-main .form-check {}

.frm .input-main .form-check .form-check-label {}

.frm .input-main .btn-Submit {
    width: 100%;
    border: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    min-height: 40px;
}
.input-main .form-group .field-icon1 {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 10px;
    color: #313747;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.input-main .form-group .field-icon1.fa-eye:before,
.input-main .form-group .field-icon1.fa-eye-slash:before {
    font-family: "FontAwesome";
}

.input-main .forgot {
    text-align: right;
    color: #313747;
    margin: 10px 0 0 0;
    font-size: 15px;
    line-height: 18px;
    text-transform: unset;
    font-weight: 400;
    display: block;
}

.form-check {
    margin: 0;
}

/* .form-check .form-check-input:checked {
    background-color: #ff5722;
    border-color: #ff5722;
}

.form-check .form-check-input:focus {
    border-color: #ff5722;
    box-shadow: none;
} */

.frm .input-main .form-check .form-check-label {
    letter-spacing: 0;
    text-transform: capitalize;
    margin: 0;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}
.frm .input-main p.note {
    font-size: 20px;
    line-height: 30px;
    margin: 0px;
}

.frm .input-main p.note span {
    color: #000;
    font-weight: 700;
}
/**************************** Form css End ***************************/

/************************************* header *************************************/
.navbar-toggler {
    background-color: rgba(0,0,0,.05);
    border: 0;
    padding: 6px 6px;
    border-radius: 4px;
}
.navbar-toggler i {
    color: #000;
    font-size: 16px;
}
/* header top */
header {
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}

/* header-btm */
header .header-btm {
    width: 100%;
}

header .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #151C22;
}

header .header-btm .navbar>.container-fluid {
    align-items: center;
}

header .header-btm .navbar {
    padding: 23px 0;
    transition: all 0.3s ease-in-out;
    position: relative;
}

header .header-btm.sticky .navbar {
    border-bottom: none !important;
}

header .header-btm .navbar .navbar-nav {
    align-items: center;
    gap: 30px;
}

header .header-btm .navbar .navbar-nav .nav-item {
    position: relative;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link {
    color: #000000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0;
    position: relative;
    transition: all 0.5s ease-in-out;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--primary-color) !important;
}

header .header-btm .navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}

header .header-btm .navbar .navbar-brand {
    margin: 0;
    padding: 0;
}
header .header-btm .navbar .navbar-brand h2{
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    font-family: var(--Chonburi-font);
}
header .header-btm .navbar .navbar-brand h2 span{
    color: var(--primary-color);
    display: block;
    font-family: var(--Chonburi-font);
}

header .header-btm .side-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.social-ul li a,
header .header-btm .side-ul .sd-li .search-bar {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    height: 38px;
    width: 38px;
    background: var(--primary-color);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-head {
    background: var(--primary-color);
    display: flex;
    min-height: 60px;
    align-items: center;
}

.top-head p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
/***************************** header close *****************************/
/***************************** Footer Start *****************************/
footer .footer-main {
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--primary-color);
    padding: 30px 0px;
}

footer .footer-top {text-align: center;}
footer .footer-top .foot-head {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer-top .foot-head h2 {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    font-family: var(--Chonburi-font);
}

footer .footer-top .foot-head h2 span {
    font-family: var(--Chonburi-font);
    color: var(--primary-color);
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 10px;
}

footer .footer-top .foot-head p {
    margin: 0;
    color: #000;
}

footer .footer-top .foot-head p a {
    color: #c36;
}

footer .footer-top .foot-head .social-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 15px 0px 0px;
}

footer .footer-top .foot-head .social-ul li {
}
footer .footer-bottom {
    padding: 10px;
    background: var(--primary-color);
    text-align: center;
}

footer .footer-bottom .copyright p {
    color: #FAFBFD;
    text-transform: capitalize;
    margin: 0;
    letter-spacing: 2.3px;
}

footer .footer-bottom .copyright p a {
    color: #FAFBFD;
}

footer .footer-bottom .copyright p a:hover {
    color: #002f8c;
}

/*********************** footer close ***********************/



/*********************** home-page css Start ***********************/
/* banner */
.home-banner-wrap {
    padding: 15px 0px 40px;
    overflow: hidden;
    position: relative;
}
.home-banner-wrap .main-img{
    width: 70%;
}
.home-banner-wrap .main-img img{
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: bottom center;
}
.home-banner-wrap .contant{}
.home-banner-wrap .contant h1{
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0px 30px;
    text-transform: capitalize;
}
.home-banner-wrap .contant h2{
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    color: #000000;
    margin: 20px 0px 10px;
}
.home-banner-wrap .contant p{
    padding: 0px 0px 20px;
}
/* banner */

/* bloodroot_wrp */
.bloodroot_wrp{
    position: relative;
    overflow: hidden;
    padding: 0px 0px 40px;
}
.bloodroot_wrp .head h2 {
    text-align: center;
    margin: 0px 0px 40px;
}
.bloodroot_wrp .head ul{display: flex;flex-direction: column;gap: 0px;}
.bloodroot_wrp .head ul li {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.bloodroot_wrp .head ul li p {
    /* width: 220px; */
}
.bloodroot_wrp .head ul li p, .bloodroot_wrp .head ul li a{
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    padding: 8px 10px;
    /*text-decoration: underline;*/
}
.bloodroot_wrp .head ul li a {
    text-decoration: underline;
}
.bloodroot_wrp .head ul li a p{
    padding: 0;
    width: fit-content;
}
.bloodroot_wrp .head ul li a p:hover{
    color: var(--primary-color);
}
.bloodroot_wrp .head ul li a:hover {
    color: #df0000;
}
.click-to-view{
    font-size: 20px;
    font-weight: 600;
    color: #df0000;
    font-family: "Baskervville", Sans-serif;
}
/* bloodroot_wrp */
/*********************** home-page css Close ***********************/



/*********************** inner-page css Start ***********************/
/* about-banner */
section.about-banner-wrap {
    padding: 20px 0px 40px;
}

section.about-banner-wrap .head h2 {
    text-align: center;
    padding: 40px;
    background: var(--primary-color);
    color: #fff;
    margin: 0px 0px 20px;
}
/* about-banner */

/* archives-wrap */
section.archives-wrap {
    padding: 20px 0px 20px;
}

section.archives-wrap .head h2 {
    background: transparent;
    color: #000;
}

section.archives-wrap .head .archi_box {
    background: transparent;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px 0px;
    width: 370px;
}

section.archives-wrap .head .archi_box .txt {
    padding: 20px 30px 0px;
}

section.archives-wrap .head .archi_box .time {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgb(234, 234, 234);
    padding: 15px 30px;
}

section.archives-wrap .head .archi_box .time p {
    margin: 0;
    color: rgb(173, 173, 173);
    font-size: 12px;
    line-height: 1.3em;
    font-family: math;
    font-weight: 500;
}

section.archives-wrap .head .archi_box .txt h3 {
    font-size: 21px;
    color: #54595F;
}

section.archives-wrap .head .archi_box .txt h3 a {
    color: #54595F;
}

section.archives-wrap .head .archi_box .txt p a {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}
/* archives-wrap */

/* submission-banner */
section.submission-banner-wrap {
    padding: 30px 0px 40px;
}

section.submission-banner-wrap .head {}

section.submission-banner-wrap .head h4 {
    color: var(--primary-color);
    margin: 0px 0px 30px;
    font-family: "Poppins", Sans-serif;
    font-size: 26px;
    font-weight: 400;
    font-style: italic;
}
section.submission-banner-wrap .head h2 {
    margin: 0px 0px 20px;
}

section.submission-banner-wrap .head h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0px 0px 15px;
    padding: 20px 0px 0px;
}

section.submission-banner-wrap .head ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: disc;
    padding: 0px 0px 0px 40px;
}

section.submission-banner-wrap .head ul li {
    color: #7A7A7A;
}

section.submission-banner-wrap .frm {
    padding: 50px 0px 0px;
}

/* submission-banner */

/* the-go-between */
section.go-between-wrp {
    padding: 30px 0px;
}

section.go-between-wrp .head {}

section.go-between-wrp .head h2 {
    text-transform: capitalize;
    margin: 0px 0px 20px;
    font-size: 35px;
}

section.go-between-wrp .head img {
    margin: 0px 0px 20px;
}

section.go-between-wrp .head p {
    margin: 0px 0px 12px;
}
section.go-between-wrp .shr {
    padding: 40px 0px 0px;
}

section.go-between-wrp .shr h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    margin: 0px 0px 20px;
}

section.go-between-wrp .shr .share_btn {
    display: flex;
    align-items: center;
    height: 45px;
}

section.go-between-wrp .shr .share_btn i {
    height: 100%;
    background: #3b5998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 25px;
    color: #fff;
    font-size: 18px;
    line-height: 33px;
}

section.go-between-wrp .shr .share_btn span {
    height: 100%;
    background: #355088;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
section.go-between-wrp .shr .mar {
    display: flex;
    align-items: center;
    gap: 10px;
}
section.go-between-wrp .shr .mar a:nth-child(2) .share_btn span,
section.go-between-wrp .shr .mar a:nth-child(2) .share_btn i{
    background: #000000;
}

section.go-between-wrp ol {
    list-style: auto;
}
/* the-go-between */

/* photo-mural-wrp */

section.photo-mural-wrp .head {
    text-align: center;
}

/* section.photo-mural-wrp .head img {
    width: 77%;
} */

section.photo-mural-wrp .head h6 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

section.photo-mural-wrp .head h6 span {
    font-family: var(--Baskervville-font);
    color: var(--primary-color);
}
/* photo-mural-wrp */

/*********************** inner-page css Close ***********************/