@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&family=Tiro+Bangla:ital@0;1&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	width: 100vw;
	height: 100vh;
	font-family: "Poppins", sans-serif;
	font-family: "Anek Bangla", sans-serif;
}

.msg {
	padding-top: 1em;
	font-size: 2em;
	display: flex;
	flex-direction: column;
	height: fit-content;
	max-width: 100vw;
	align-items: center;
	background-color: #b00606;
}

.drawer-list {
	position: fixed;
	z-index: 9999;
	right: 0;
	top: 0;
	height: 100vh;
	width: 60%;
	transform: translate(100vw, 0);
	/* ie workaround */
	-ms-transform: translatex(-100vw);
	box-sizing: border-box;
	pointer-events: none;
	padding-top: 2.6em;
	transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
	border-bottom-left-radius: 100vw;
	background-color: #115d33;
	background-color: #115d33;
}

.drawer-list ul {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: auto;
	overflow-x: hidden;
	pointer-events: auto;
}

.drawer-list li {
	list-style: none;
	pointer-events: auto;
	white-space: nowrap;
	box-sizing: border-box;
	transform: translateX(100vw);
	/* ie workaround */
	-ms-transform: translateX(-100vw);
}

.drawer-list li:last-child {
	margin-bottom: 1em;
}

.drawer-list li a {
	text-decoration: none;
	color: #ffffff;
	text-shadow: 1px 1px #000;
	text-align: right;
	display: block;
	padding: 0.25em;
	font-size: 0.97em;
	letter-spacing: 5px;
	transition: all 0.5s ease-in-out;
}

.drawer-list li a:hover {
	cursor: pointer;
	letter-spacing: 0;
	color: #000;
	background: #b00606;
	text-shadow: 1px 1px #ffffff;
}

.menu-tab {
	display: flex;
	justify-content: space-evenly;

}

.menu-tab li {
	letter-spacing: 0;
	font-size: 1em;
	transition: all 5s ease-in-out;
}

.menu-tab li:nth-last-child() {
	margin-right: 20px;
}

.menu-tab li:hover a {
	transform: rotateX(360deg);
	background: transparent;
}

input.hamburger {
	display: none;
}

input.hamburger:checked~.drawer-list {
	transform: translateX(0);
	border-bottom-left-radius: 0;
}

input.hamburger:checked~.drawer-list li {
	transform: translateX(0);
}

input.hamburger:checked~.drawer-list li:nth-child(1) {
	transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(2) {
	transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(3) {
	transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(4) {
	transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(5) {
	transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(6) {
	transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(7) {
	transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(8) {
	transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li a {
	padding-right: 0.5em;
}

input.hamburger:checked~label>i {
	background-color: transparent;
	transform: rotate(90deg);
}

input.hamburger:checked~label>i:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

input.hamburger:checked~label>i:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

input.hamburger:checked~label close {
	color: #fefefe;
	width: 100%;

}

input.hamburger:checked~label open {
	color: #fefefe;
	width: 0;

}

label.hamburger {
	z-index: 99999;
	position: relative;
	display: block;
	height: 50px;
	width: 50px;
}

label.hamburger:hover {
	cursor: pointer;
}

label.hamburger text close,
label.hamburger text open {
	font-size: 0.4em;
	text-align: center;
	position: absolute;
	transform: translateY(50px);
	text-align: center;
	overflow: hidden;
	transition: width 0.25s 0.35s, color 0.45s 0.35s;
}

label.hamburger text close {
	color: #fefefe;
	right: 0;
	width: 0;
}

label.hamburger text open {
	color: #fefefe;
	width: 100%;
}

label.hamburger>i {
	position: absolute;
	width: 100%;
	height: 2px;
	top: 50%;
	background-color: #fefefe;
	pointer-events: auto;
	transition-duration: 0.35s;
	transition-delay: 0.35s;
}

label.hamburger>i:before,
label.hamburger>i:after {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	left: 50%;
	background-color: #fefefe;
	content: "";
	transition: transform 0.35s;
	transform-origin: 50% 50%;
}

label.hamburger>i:before {
	transform: translate(-50%, -14px);
}

label.hamburger>i:after {
	transform: translate(-50%, 14px);
}

label.hamburger {
	position: fixed;
	top: 0.5em;
	right: 2em;
}

.icon {
	display: inline-block;
	width: 5vw;
	height: 4vw;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

.menu-tab {
	font-size: 1em;
}
.msg h2 {
	color: #00ff73;
	margin-top: 0.5em;
	font-size: 1em;
}

.container-animation {
	text-align: center;
	position: relative;
}

.container-animation span {
	display: inline-block;
}

.text1 {
	color: #ffffff;
	text-shadow: 0.5px 0.5px #000000;
	font-size: 1.5em;
	font-weight: 800;
	position: relative;
	/*   shorthand animation property: name | duration | iteration count */
	animation-name: text;
	animation-duration: 4s;
}

@keyframes text {
	0% {
		margin-left: -40em;
	}

	100% {
		margin-left: 0em;
	}
}

.front-face {
	width: 95%;
	padding: 1em;
	border-radius: 0.5em;
	transition: all 0.5s ease-in-out;
}

.front-face:hover {
	box-shadow: 1px 1px 5px 2px #ffffff;
}

.front-face p {
	color: #daffec;
	text-align: justify;
	font-size: 0.7em;
}


.blog {
	background-color: #b00606;
	padding: 1em 2em;
	justify-content: center;
	align-items: center;
	text-align: justify;
}

.content {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.content img {
	width: 30vw;
	height: 40vh;
	box-shadow: 1px 1px 5px 2px #000;
}

.content p {
	font-size: 0.5em;
	padding: 0.5em 1em;
	color: #fff;
}

.paragraph {
	padding: 0.5em 1em;
	font-size: 0.5em;
	color: #fff;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.paragraph p {
	margin: 1em 0;
}

.paragraph h6 {
	font-size: 1.2em;
	text-align: center;
	text-decoration: underline;
}

.container-table {
	background-color: #115d33;
	margin-bottom: 2em;
	margin-left: 3.5em;
	border: 1px dotted #fff;
	width: 70em;
	padding: 1em;
	text-align: center;
}

.container-table ul {
	list-style: none;
}

.container-table ul li {
	text-align: center;
}

.container-table h5 {
	text-align: end;
}

.container-table h6 {
	font-size: 0.8em;
}



/*******************************************************************************************/
.footer {
    width: 100%;
    padding: 1.5em 2em;
    background-color: #115d33;
    color: #ffffff;
}

.contact_inner {
    border-radius: 0.5em;
    background-color: #b00606;
    box-shadow: 2px 2px 10px 5px #000000;
}

.row-line h3 {
    text-align: center;
    font-size: 2.5em;
    text-shadow: 2px 2px #000;
    text-transform: uppercase;
}

.row-line p {
    padding-top: 0.5em;
    text-align: center;
    font-size: 1.3em;
    text-shadow: 2px 2px #000;
    text-transform: uppercase;
}

.contact_form_inner {
    padding: 1em 0.5em;
    display: flex;
    justify-content: space-around;
}

.contact_field {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    width: 40%;
}

.contact_field input,
.contact_field textarea {
    background-color: #b00606;
    color: #fff;
}

.contact_field input::placeholder,
.contact_field textarea::placeholder {
    color: #ffffff;
    font-weight: 500;
}

.contact_field .form-control {
    margin-bottom: 2em;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #00ff73;
}

.contact_field .form-control::placeholder {
    font-size: 1em;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(90deg, #b00606, #115d33, #b00606);
    border: none;
    color: #ffffff;
    text-shadow: 1px 1px #000;
    padding: 0.5em 0;
    border-radius: 35px;
    cursor: pointer;
    font-size: 1em;
}

.contact_info_sec {
    color: #ffffff;
    text-shadow: 2px 2px #000;
    text-align: center;
    background: linear-gradient(90deg, #b00606, #115d33, #b00606);
    font-size: 1em;
    font-weight: 500;
    padding: 0.5em 5em;
    border-radius: 25px;
}

.contact_info_sec h4 {
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info_single {
    margin: 25px 0px;
}

.info_single i {
    margin-right: 10px;
}

.info_single span {
    font-size: 1em;
    letter-spacing: 1px;
}

.social_item_inner {
    background-color: #115d33;
    height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social_item_inner li {
    list-style: none;
    transition: all 0.5s ease-in-out;
}

.footer-tab li a i {
    font-size: 1.5em;
    color: #ffffff;

}

.social_item_inner li:hover {
    transform: rotateY(360deg)
}

.last {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
    margin-bottom: -1em;
}

.last>span {
    padding: 0.5em 2em;
    border-radius: 0.2em;
    box-shadow: inset 0.5px 0.5px 2px 0.5px #ffffff;
    text-align: center;
    color: #ffffff;
}

.last span a {
    text-decoration: none;
    color: #ffffff;
}




@media only screen and (min-width:210px) and (max-width:376px) {
	.msg {
		font-size: 0.8em;
		height: fit-content;
		padding-top: 3em;
	}

	.text1 {
		margin-top: 1em;
		font-size: 1.5em;
	}

	label.hamburger {
		top: 2em;
		right: 2em;
		height: 10px;
		width: 35px;
	}

	label.hamburger>i:before {
		transform: translate(-50%, -10px);
	}

	label.hamburger>i:after {
		transform: translate(-50%, 10px);
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 1em;
		transform: translateY(20px);
	}

	.drawer-list {
		width: 100%;
		padding-top: 5em;
	}

	.drawer-list li a {
		text-align: end;
		font-size: 2em;
	}

	.social_item_inner {
		margin: 0 auto;
	}

	.social_item_inner li {
		margin-left: 0.5em;
	}

	.menu-tab {
		margin-top: 1em;
	}

	.menu-tab>:last-child {
		padding-top: 15px;
	}

	.blog {
		width: 100%;
		padding: 0.5em 0em;
	}

	.content {
		width: 100%;
		flex-direction: column;
		padding: 0.5em;
	}

	.content img {
		width: 22em;
		height: 30vh;
	}

	.content p {
		font-size: 1em;
	}

	.paragraph {
		width: 100%;
		flex-direction: column;
		padding: 0 0.5em;
	}

	.paragraph p {
		font-size: 2em;
		padding: 0 1em;
	}

	.paragraph h6 {
		font-size: 2.5em;
	}

	.container-table {
		width: 90%;
		margin-left: 2.2em;
	}

	.container-table ul li {
		font-size: 2em;
	}

	.container-table h5,
	.container-table h4 {
		font-size: 2em;
		text-shadow: 0;
		font-weight: 400;
		font-style: oblique;
		margin-bottom: 1em;
	}

    .footer {
        padding: 0.5em;
    }

    .row-line {
        height: fit-content;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .row-line p {
        font-size: 1em;
    }

    .row-line h3 {
        font-size: 1.5em;
    }

    .contact_form_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.5em;
    }

    .contact_field {
        padding: 0.5em;
        width: 100%;
    }

    .contact_field input,
    .contact_field textarea,
    .contact_field button {
        width: 100%;
        margin: 0 auto
    }

    .contact_info_sec {
        position: relative;
        padding: 0.2em;
        width: 100%;
    }

    .info_single span {
        font-size: 0.8em;
    }

    .info_single i {
        font-size: 0.8em;
        margin-right: 0.5em;
    }

    .footer-tab li a i {
        font-size: 1.2em;
    }

    .last {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .last span,
    .last span a {
        text-transform: uppercase;
        font-size: 0.5em;
        box-shadow: none;
    }
}

@media only screen and (min-width: 377px) and (max-width: 426px) {
	.msg {
		font-size: 0.8em;
		height: fit-content;
		padding-top: 3em;
	}

	label.hamburger {
		top: 2em;
		right: 2em;
		height: 10px;
		width: 35px;
	}

	label.hamburger>i:before {
		transform: translate(-50%, -10px);
	}

	label.hamburger>i:after {
		transform: translate(-50%, 10px);
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 1em;
		transform: translateY(20px);
	}

	.drawer-list {
		width: 100%;
		padding-top: 5em;
	}

	.drawer-list li a {
		text-align: end;
		font-size: 2.2em;
	}

	.social_item_inner li {
		margin-left: 0.5em;
	}

	.menu-tab {
		margin-top: 1em;
	}

	.menu-tab>:last-child {
		padding-top: 15px;
	}

	.blog {
		width: 100%;
		padding: 0.5em 0em;
	}

	.content {
		width: 100%;
		flex-direction: column;
		padding: 0.5em;
	}

	.content img {
		width: 22em;
		height: 30vh;
	}

	.content p {
		font-size: 1em;
	}

	.paragraph {
		width: 100%;
		flex-direction: column;
		padding: 0 0.5em;
	}

	.paragraph p {
		font-size: 2em;
		padding: 0 1em;
	}

	.paragraph h6 {
		font-size: 2.5em;
	}

	.container-table {
		width: 90%;
		margin-left: 2.2em;
	}

	.container-table ul li {
		font-size: 2em;
	}

	.container-table h5,
	.container-table h4 {
		font-size: 2em;
		text-shadow: 0;
		font-weight: 400;
		font-style: oblique;
		margin-bottom: 1em;
	}

    .footer {
        padding: 0.5em;
    }

    .row-line {
        height: fit-content;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .row-line p {
        font-size: 1em;
    }

    .row-line h3 {
        font-size: 1.5em;
    }

    .contact_form_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.5em;
    }

    .contact_field {
        padding: 0.5em;
        width: 100%;
    }

    .contact_field input,
    .contact_field textarea,
    .contact_field button {
        width: 100%;
        margin: 0 auto
    }

    .contact_info_sec {
        position: relative;
        padding: 0.5em;
        width: 100%;
    }

    .info_single span {
        font-size: 0.8em;
    }

    .info_single i {
        font-size: 0.8em;
        margin-right: 1em;
    }

    .footer-tab li a i {
        font-size: 1.2em;
    }

    .last {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .last span,
    .last span a {
        text-transform: uppercase;
        font-size: 0.5em;
        box-shadow: none;
    }
}

@media only screen and (min-width: 427px) and (max-width:768px) {
	.msg {
		font-size: 1.5em;
		height: fit-content;
		padding-top: 1em;
	}

	.text1 {
		font-size: 1.5em;
		margin-top: 1em;
	}

	label.hamburger {
		top: 1em;
		right: 2em;
		height: 10px;
		width: 35px;
	}

	label.hamburger>i:before {
		transform: translate(-50%, -10px);
	}

	label.hamburger>i:after {
		transform: translate(-50%, 10px);
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 0.5em;
		transform: translateY(20px);
	}

	.drawer-list {
		width: 100%;
		padding-top: 4em;
	}

	.drawer-list li a {
		text-align: end;
		font-size: 1em;
	}

	.social_item_inner li {
		margin-left: 0.5em;
	}

	.menu-tab {
		margin-top: 1em;
	}

	.menu-tab>:last-child {
		padding-top: 20px;
	}

	.blog {
		width: 100%;
		padding: 0.5em 0em;
	}

	.content {
		width: 100%;
		flex-direction: column;
		padding: 0.5em;
	}

	.content img {
		width: 15em;
		height: 50vh;
	}

	.content p {
		font-size: 0.8em;
	}

	.paragraph {
		width: 100%;
		flex-direction: column;
		padding: 0 0.5em;
	}

	.paragraph p {
		font-size: 1.7em;
		padding: 0 1em;
	}

	.paragraph h6 {
		font-size: 2em;
	}

	.container-table {
		width: 90%;
		margin-left: 3em;
	}

	.container-table ul li {
		font-size: 1.8em;
	}

	.container-table h5,
	.container-table h4 {
		font-size: 1.8em;
		text-shadow: 0;
		font-weight: 400;
		font-style: oblique;
		margin-bottom: 1em;
	}

    .footer {
        padding: 1em;
    }

    .row-line {
        height: fit-content;
        width: 100%;
        justify-content: center;
        align-items: center;

    }

    .row-line p {
        font-size: 1em;
    }

    .row-line h3 {
        font-size: 1.5em;
    }

    .contact_form_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.5em;
    }

    .contact_field {
        padding: 0.5em 3em;
        width: 100%;
    }

    .contact_field input,
    .contact_field textarea,
    .contact_field button {
        width: 100%;
        margin: 0 auto
    }

    .contact_info_sec {
        position: relative;
    }

    .info_single span {
        font-size: 0.8em;
    }

    .info_single i {
        font-size: 0.8em;
        margin-right: 1em;
    }

    .last {
        display: flex;
        flex-direction: column;
    }

    .last span,
    .last span a {
        text-transform: uppercase;
        font-size: 0.5rem;
        box-shadow: none;
    }
}
@media only screen and (min-width: 769px) and (max-width:1024px) {
	.msg {
		font-size: 1.5em;
		height: fit-content;
		padding-top: 1em;
	}

	label.hamburger {
		top: 2em;
		right: 2em;
		height: 10px;
		width: 40px;
	}

	label.hamburger>i:before {
		transform: translate(-50%, -10px);
	}

	label.hamburger>i:after {
		transform: translate(-50%, 10px);
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 0.5em;
		transform: translateY(20px);
	}

	.drawer-list {
		width: 60%;
		padding-top: 4em;
	}

	.drawer-list li a {
		text-align: end;
		font-size: 1em;
	}

	.social_item_inner li {
		margin-left: 0.5em;
	}

	.menu-tab {
		margin-top: 1em;
	}

	.menu-tab li a i {
		font-size: 1.5em;
	}
	.menu-tab>:last-child {
		padding-top: 25px;
	}

	.blog {
		width: 100%;
		padding: 0.5em 0em;
	}

	.content {
		width: 100%;
		padding: 0.5em;
	}

	.content img {
		width: 15em;
		height: 50vh;
	}

	.content p {
		font-size: 0.8em;
	}

	.paragraph {
		width: 100%;
		flex-direction: column;
		padding: 0 0.5em;
	}

	.paragraph p {
		font-size: 1.7em;
		padding: 0 1em;
	}

	.paragraph h6 {
		font-size: 2em;
	}

	.container-table {
		width: 90%;
		margin-left: 5em;
	}

	.container-table ul li {
		font-size: 1.8em;
	}

	.container-table h5,
	.container-table h4 {
		font-size: 1.8em;
		text-shadow: 0;
		font-weight: 400;
		font-style: oblique;
		margin-bottom: 1em;
	}

	.contact_form_inner {
		display: flex;
		align-items: center;
	}

	.contact_field {
		width: 50%;
		margin-bottom: 1em;
	}
	
	.contact_info_sec {
		width: 40%;
		height: fit-content;
		padding: 1em 0;
		text-align: center;
		height: fit-content;
		margin-top: 2em;
	}

	.contact_info_sec h4 {
		font-size: 1em;
	}

	.info_single span,
	.info_single i {
		font-size: 0.5em;
		text-shadow: none;
	}

	.footer-icon {
		height: 1.5em;
	}

	.footer-icon li a i {
		font-size: 0.8em;
	}
}

@media only screen and (min-width: 1441px) and (max-width:2561px) {
	.msg {
		font-size: 3em;
		height: fit-content;
		padding-top: 1em;
	}

	label.hamburger {
		top: 1em;
		right: 1em;
		height: 2em;
		width: 1.8em;
	}

	label.hamburger>i:before {
		transform: translate(-50%, -20px);
	}

	label.hamburger>i:after {
		transform: translate(-50%, 20px);
	}

	label.hamburger text close,
	label.hamburger text open {
		font-size: 0.8em;
		transform: translateY(70px);
	}

	.drawer-list {
		width: 60%;
		padding-top: 4em;
	}

	.drawer-list li a {
		text-align: end;
		font-size: 1.35em;
	}

	.social_item_inner li {
		margin-left: 0.5em;
	}

	.menu-tab {
		margin-top: 1em;
	}

	.blog {
		width: 100%;
		padding: 0.5em 1em;
	}

	.content {
		width: 100%;
		padding: 0.5em;
	}

	.content img {
		width: 15em;
		height: 50vh;
	}

	.content p {
		font-size: 0.8em;
	}

	.paragraph {
		width: 100%;
		flex-direction: column;
		padding: 0 0.5em;
	}

	.paragraph p {
		font-size: 1.7em;
		padding: 0 1em;
	}

	.paragraph h6 {
		font-size: 2em;
	}

	.container-table {
		width: 90%;
		margin-left: 5.2em;
	}

	.container-table ul li {
		font-size: 1.8em;
	}

	.container-table h5,
	.container-table h4 {
		font-size: 1.8em;
		text-shadow: 0;
		font-weight: 400;
		font-style: oblique;
		margin-bottom: 1em;
	}

 
    .row-line h3 {
        font-size: 5em;
    }

    .row-line p {
        font-size: 3em;
    }

    .contact_form_inner {
        padding: 1em 0.5em;
    }

    .contact_field input,
    .contact_field textarea {
        margin-top: 2em;
    }

    .contact_field textarea {
        padding-bottom: 1.5em;
        border-bottom: 3px solid #ccc;
    }

    .contact_field button {
        margin-top: 1em;
    }

    .contact_field .form-control {
        padding-top: 3em;
        border-bottom: 3px solid #ccc;
    }

    .contact_field:focus .form-control:focus {
        padding-bottom: 2em;
        border-bottom: 2px solid #00ff73;
    }

    .contact_field .form-control::placeholder {
        font-size: 3em;
    }

    button.contact_form_submit {
        font-size: 2em;
    }

    .contact_info_sec {
        width: 40%;
        height: auto;
        font-size: 2em;
        padding: 1.5em 1em;
    }

    .contact_info_sec h4 {
        font-size: 2em;
    }

    .social_item_inner {
        height: 5em;

    }

    .social_item_inner li a i {
        font-size: 3.5em;
    }

    .last>span {
        font-size: 1.5em;
    }

    .last span a {
        text-decoration: none;
        color: #e5ff00;
    }
}