/**Typeo CSS Start**/
/**Theme Color: #1089ff**/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
* {
box-sizing: border-box;
}
body {
font-family: "Poppins", sans-serif;
color: #444;
box-sizing: border-box;
margin: 0px;
}
.container {
max-width: 1200px;
width: 100%;
padding: 0px 15px;
margin: auto;
}
.container-fluid {
width: 100%;
padding: 0px 30px;
}
/**Typeo CSS End**/
.contact-group {
display: flex;
flex-flow: row wrap;
width: 100%;
justify-content: space-between;
padding-top: 20px;
padding-bottom: 40px;
}
.contact-group .contact-form-prt {
width: 66%;
background-color: #272a34;
padding: 40px 30px;
box-shadow: #ccc 0px 1px 11px;
border-radius: 10px 0 0px 10px;
}
.contact-info {
width: 34%;
background-color: #1c1e25;
color: #fff;
padding: 40px 30px;
border-radius: 0px 10px 10px 0px;
}
.contact-info p {
margin-top: 6px;
}
.contact-group h4 {
font-size: 26px;
font-weight: normal;
color: #fff;
margin: 0 0 10px 0px;
}
.contact-info h4 {
color: #fff;
}
.form {
display: flex;
flex-flow: row wrap;
width: 100%;
margin: auto;
justify-content: space-between;
}
.form-group {
width: calc(50% - 10px);
margin: 10px 0px;
}
.form-control {
width: 100%;
padding: 10px 0px;
color: #fff;
outline: none;
border:none;
border-bottom: #4e5057 1px solid;
font-size: 16px;
font-family: 'Poppins';
transition: 0.5s all;
background-color: #272a34;
resize: none;
}
select.form-control {
appearance: none;
padding: 5px 0;
line-height: 34px;
background-image: url(https://coderwrap.com/wp-content/uploads/2023/01/slt-arrow-down-white.svg);
background-repeat: no-repeat;
background-position: calc(100% - 5px) 20px;
}
.form-control:focus {
border-color: #fff;
}
.form-control::-webkit-input-placeholder {
color: #fff;
}
.form-control:-ms-input-placeholder {
color: #fff;
}
.form-control::placeholder {
color: #fff;
}
.fg-full-width {
width: 100%;
}
textarea.form-control {
height: 150px;
}
.submit-btn {
padding: 10px 40px;
border: none;
outline: none;
font-family: 'Poppins';
font-size: 20px;
text-transform: uppercase;
background-color: #fff;
color: #000;
cursor: pointer;
transition: 0.5s all;
}
.submit-btn:hover {
opacity: 0.8;
}
.c-info-item {
display: flex;
flex-flow: row wrap;
width: 100%;
margin: 30px 0px;
align-items: center;
}
.c-info-item .c-info-icon {
width: 60px;
height: 60px;
border-radius: 100%;
background-color: rgba(255, 255, 255, 0.1);
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: center;
}
.c-info-item .c-info-icon img {
width: 26px;
filter: brightness(0) invert(1);
}
.c-info-item .c-info-cont {
width: calc(100% - 60px);
padding-left: 17px;
display: inline-block;
}
@media(max-width:992px) {
.form-group {
width: 100%;
}
.contact-group .contact-form-prt, .contact-info {
width: 100%;
padding: 25px 15px;
}
}