@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');
body{
  box-sizing:border-box; 
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding:0px;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--red-color);
  outline: 1px solid var(--primary-color);
}
::selection {
  color: #000;
  background: var(--yellow-color);
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#000;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p{
  font-size: 16px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a, button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
section{
  padding:70px 0 70px;
}
.inlineHeader{
  display: flex;
  padding:0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading{
  font-size:50px;
}
.heading{
  font-size: 40px;
  line-height: 50px;
}
.sub_heading{
  font-size: 30px;
}
.small_heading{
  font-size: 26px;
}
.title{
  font-size: 20px;
}
.text{
  font-size: 18px;
}
.fontWeight300{
  font-weight: 300;
}
.fontWeight400{
  font-weight: 400;
}
.fontWeight500{
  font-weight: 500;
}
.fontWeight600{
  font-weight: 600;
}
.fontWeight700{
  font-weight: 700;
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900;
}

.rightSideVideo video{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.leftSideLogo{
  background: var(--primary-color);
  height: 100vh;
  display: flex;
  align-items:center;
  justify-content: center;
  padding:0 60px;
}
.leftSideLogo img{
  max-width: 100%;
}
.rightSideVideo{
  position: relative;       
  overflow: hidden;
}
.videoText{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.6);
  z-index: 1;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  right: 0px;
  padding:40px;
}
.number{
  text-align: right;
}
.number a{
  display: inline-flex;
  align-items: center;
}
.phoneIcon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  border:1px solid #000;
}
.phoneIcon i{
  color: #000;
  font-size: 25px;
}
.phoneRight{
  font-weight: 600;
  margin-left: 10px;
}
.bannerForm h1{
  color: #000;
  letter-spacing: 2px;
}
.bannerForm p{
 letter-spacing: 2px; 
}
.formVideo{
  margin-top: 15px;
}
.formVideo input, .formVideo select{
  width: 100%;
  margin: 5px 0;
  border:none;
  padding:10px;
  border-radius: 10px;
}
.formVideo textarea{
    width: 100%;
  margin: 10px 0;
  border:none;
  padding:10px;
  border-radius: 10px;
  height:60px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}
.btnSubmit{
  background: #dc2831;
  padding:10px 30px;
  color: #fff;
  border-radius: 10px;
  border:none;
  font-size: 15px;
  margin-top: 10px;
}
.socialLink ul{
  display: flex;
  transform: translateY(10px);
  align-items: center;
  justify-content: flex-end;
}
.socialLink ul li a{
  display: inline-flex;
  line-height: 20px;
  align-items: center;
  margin:0 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.socialLink ul li p{
  font-size: 14px;
}
.socialLink ul li img{
  width: 30px;
  margin-right: 10px
}
.socialLink ul li:last-child{
  margin-right: 0px;
}
#otherTextArea{
    display:none;
}