/* Varialbes */
:root {
	--font-default: 'Manrope', sans-serif;
	--font-heading: 'Manrope', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #171827;
	--white: #ffffff;
	--color-primary: #015FC9;
	--color-secondary: #25cdc7;
	--color-style-five: #05be8a;
	--color-heading: #04000b;
	--color-paragraph: #666666;
	--main: #009fd4;
	--border-radius: 3rem;
	--border-hover: transparent;
	--footer: #DDD;

}

::selection {
	background-color: var(--main);
	color: black;
}

.active-color {
	color: var(--main) !important;
	text-decoration: 3px underline;
}


/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
html {
	height: 100%;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

.color-style-five a:hover {
	color: var(--color-secondary);
}

.secondary a:hover {
	color: var(--color-primary);
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	min-height: 50px;
}

input:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

select:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

ul {
	list-style-type: none;
}

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


/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	overflow-x: hidden;
	background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Inter Tight", sans-serif;
}

a,
.btn,
button {
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	outline: medium none;
	text-decoration: none;
	font-weight: 700;
}

p {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
}

.bg-dark {
	background-color: var(--dark) !important;
}

.color-style-five .bg-theme {
	background-color: var(--color-secondary);
}

.text-light {
	color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
	color: var(--white);
}

.title {
	font-weight: 800;
	font-size: 50px;
}

@media (max-width: 767px) {
	.title {
		font-size: 36px;
		margin-top: 0;
	}
}

.bg-dark .title {
	color: var(--white);
}


button {
	display: inline-block;
	font-weight: 700;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 7px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	font-size: 16px;
	letter-spacing: 0;
	padding: 14px 40px;
	background: #E7EDF8;
	position: relative;
	z-index: 1;
	color: var(--white);
	border: none;
	background: var(--color-primary);
}

.color-style-five button {
	background: var(--color-secondary);
}

button i {
	margin-right: 4px;
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
	color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
	color: var(--white);
}

.scroll-top {
	width: 50px;
	height: 50px;
	line-height: 50px;
	position: fixed;
	bottom: 105%;
	right: 25px;
	font-size: 24px;
	z-index: 99;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	transition: 1s ease;
	border-radius: 50%;
}

.scroll-top:hover {
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.scroll-top.open {
	bottom: 100px;
}

.scroll-top i {
	color: #fff;
}

.scroll-top {
	background: var(--main);
}

/*-- ==================== Banner Section  ====================== --*/

.banner {
	background-image: url(../images/contact-us.webp);
	background-size: cover;
	background-position: center;
	height: 40vh;
	display: grid;
	place-items: center;
}

.banner h2 {
	font-size: clamp(27px, 3vw, 120px);
	color: white;
	font-weight: 700;
}

.banner p {
	color: var(--white);
}

.banner a {
	color: var(--white);
}


/*-- ==================== Address Section  ====================== --*/

.main-detail{
    box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%) !important;
	border-radius: 6px;
	background-color: white;
    padding: 30px;
    transition: all .5s ease-in-out;
	height: 100%;
	/* height: 140px; */
	display: flex;
	align-items: center;
}

.main-detail:hover{
    transform: translateY(-10px);
    cursor: pointer;
}

.main-detail .icon i{
    background-color: var(--main) !important;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 30px;
    color: var(--white);
    display: grid;
    place-items: center;
}

.main-detail .info h5{
    font-size: 20px;
}

.main-detail .info  p a{
    color: var(--main);
    font-size: 20px;
}

@media(max-width:1400px){
	.main-detail{
		height: 100%;
	}
}
/*-- ==================== Form Section  ====================== --*/

.form .contact h6{
    color: var(--main);
    font-weight: 700;
}

.form .contact h1{
    line-height: 1.4;
    font-weight: 700;
}

    /* Reset Bootstrap Styles */
        * {
            box-shadow: none !important;
            outline: none !important;
        }

        .form-control, .btn {
            border: 1px solid #ccc;
            border-radius: 5px;
            padding: 10px;
            font-size: 14px;
            background-color: #fff;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--black);
            background-color: #fff;
        }

        textarea.form-control {
            resize: none;
        }

        .btn {
            background-color: var(--main);
            color: #fff;
            border: none;
            cursor: pointer;
            padding: 10px 25px;
        }

        .btn:hover {
            background-color: var(--black);
            color: var(--white);
        }

        .form-floating label {
            font-size: 14px;
            color: var(--black) !important;
        }


        .map, .row, .col-lg-12, iframe {
            margin: 0;
            padding: 0;
        }
        

