@import url("https://fonts.googleapis.com/css2?family=Belgrano&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400&display=swap");
@import url("https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css");

:root {
  --theme-color: #1b75bb;
  --theme-color-alt: #4dc7eb;
  --color-white: hsl(206, 5%, 100%);
  --color-black: hsl(220, 18%, 3%);
  --color-skyblue: hsl(206, 75%, 42%);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

html {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
  box-sizing: inherit;
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-white);
}

h1,
h2,
h3 {
  font-family: "Belgrano", serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: currentColor;
}

/* Start header*/

.upper-header {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
}

img.light-shadow {
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
}

header *,
header *::before,
header *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

header a,
header button {
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  box-shadow: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.brand {
  display: none;
  font-family: inherit;
  font-size: 2.56rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-skyblue);
}

.header {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  box-shadow: var(--shadow);
  background-color: var(--color-white);
  text-shadow: 0 0 3px var(--color-skyblue);
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  row-gap: 3.2rem;
  width: 100%;
  height: 6.4rem;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: var(--shadow);
    background-color: var(--color-white);
    transition: all 0.5s ease;
  }
  .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }
}

.menu-item {
  position: relative;
  display: inline-block;
  margin-left: 2.4rem;
}
.menu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.4rem;
  column-gap: 1.04rem;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  text-transform: capitalize;
  color: var(--color-black);
  transition: all 0.3s ease-in-out;
}
.menu-link > i.bx {
  font-size: 2.16rem;
  line-height: 1.5;
  color: inherit;
}
.menu-link:hover {
  outline: none;
  color: var(--color-skyblue);
}
@media only screen and (min-width: 993px) {
  .menu-dropdown:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 992px) {
  .menu {
    width: 100%;
    height: auto;
    padding: 1.6rem 0;
  }
  .menu-item {
    display: block;
    margin: 0 auto;
  }
  .menu-link {
    justify-content: space-between;
    padding: 0.8rem 2rem;
  }
}

.submenu {
  position: absolute;
  top: 3.76rem;
  left: -3.2rem;
  min-width: 20.8rem;
  height: auto;
  padding: 0 1.6rem 1.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.6rem);
  border-radius: 0 0 0.4rem 0.4rem;
  border-top: 2px solid var(--color-skyblue);
  box-shadow: var(--shadow);
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.submenu-item {
  display: block;
  margin-top: 1.2rem;
}
.submenu-link {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: inherit;
  cursor: pointer;
  color: var(--color-black);
  transition: all 0.35s ease;
}
.submenu-link:hover {
  outline: none;
  color: var(--color-skyblue);
}
@media only screen and (max-width: 992px) {
  .submenu {
    position: relative;
    top: -0.8rem;
    left: 4rem;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    transform: translateY(0px);
    box-shadow: none;
    background: transparent;
  }
}

.burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 2.56rem;
  height: 1.84rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 1.6rem;
  background: var(--color-black);
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.8rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1.6rem;
}
@media only screen and (max-width: 992px) {
  .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
  background-color: rgba(0, 0, 0, 0.65);
}
@media only screen and (max-width: 992px) {
  .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
/*New added my Nilanjan*/

@media screen and (max-width: 992px) {
  .upper-header {
    display: none;
  }
  .brand {
    display: block;
  }
  .container {
    max-width: 120rem;
    height: auto;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .wrapper {
    justify-content: space-between;
    height: 5.4rem;
  }
}

/* End header */

/* Start footer */
footer {
  background-color: #404041;
  line-height: 2;
}

.footer-title {
  font-weight: normal;
  font-size: 3.5rem;
}

.footer-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding-top: 3rem;
}

.footer-col.col-2 {
  margin: 0 5rem;
}

.copyright-text {
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3rem;
  margin-top: 2rem;
}

footer a {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

.footer-address {
  width: 70%;
  margin: 0 auto;
}

.footer-col.footer-hours ul li span {
  width: 116px;
  display: inline-block;
  text-align: left;
}
/* End footer */

/* Form */
form {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
}

input:not(:last-child),
select,
textarea,
.form-col-2 {
  margin-bottom: 1rem;
}

form input:not([type="submit"]),
textarea,
select {
  background: #f3f3f3;
  border: 1px solid #d9d9d9;
  padding: 1rem 0.5rem;
}

label {
  margin-bottom: 0.5rem;
}

input[type="submit"] {
  margin-top: 3rem;
  width: 16rem;
}

@media only screen and (min-width: 768px) {
  .form-col-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.form-col-flex .input-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
}

.form-col-flex .input-wrapper:not(:last-child) {
  margin-right: 1rem;
}
/* Form end */

/* Accordion */
.accordion .title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
  color: var(--theme-color);
}

.accordion .material-symbols-outlined {
  transform: rotate(90deg);
  margin-right: 1rem;
}

.accordion .description {
  visibility: hidden;
  height: 0;
}

.accordion.opened .description {
  visibility: visible;
  height: unset;
  margin-bottom: 3rem;
}

.accordion.opened .material-symbols-outlined {
  transform: rotate(180deg);
  transition: 0.3s all;
}
/* Accordion end */

.btn {
  background: var(--theme-color);
  padding: 2rem;
  border: 2px solid var(--theme-color);
  border-radius: 5rem;
  cursor: pointer;
  color: white;
}

.btn:hover {
  background: #424242;
  transition: 0.3s all;
}

h2.title {
  font-size: 4rem;
  font-weight: normal;
  color: var(--theme-color);
  line-height: 1.2;
}

main a {
  color: var(--theme-color);
}

@media only screen and (max-width: 1000px) {
  .mobile-padding {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* NIL CSS START */

/*====================================== Code is for index.html page ===============================================*/
.row {
  background: #141E23;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.column{
  float: left;
  width: 25%;
}
.column ul {
  list-style: none;
}
.column ul li::before {
  content: "";
  border-color: transparent red;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: inline-block;
  width: 0.3em;
}
.column li {
  padding-bottom: 0.5em;
  color: #f3f3f3;
}


/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1108px) {
  .column {
      width: 50%;
  }
}

/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 548px) {
  .column {
      width: 100%;
  }
}

/*=================================== Code is for tile-roofing.html page ===========================================*/

.column-1{
  float: left;
  width: 33.33%;
}
.column-1 ul {
  list-style: none;
}
.column-1 ul li::before {
  content: "";
  border-color: transparent red;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: inline-block;
}
.column-1 li{
  padding-bottom: 0.5em;
  color: #f3f3f3;
}
.row h2{
  display: flex;
  justify-content: center;
  color: #f3f3f3;
}
.row p{
  color: #f3f3f3;
}

/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1149px) {
  .column-1 {
      width: 100%;
  }
  .row h2{
      justify-content: flex-start;
  }
}

/*======================= DROP DOWN CSS FOR HEADER =====================*/

   /* Style the dropdown button */
.dropdown {
   position: relative;
   display: inline-block;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
  font-size: 15px;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
  background: #1B75BB;
  padding: 15px 20px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/*======================= SOCIAL ICONS =====================*/


.footer-col h1{
  font-family: sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 20px 0 20px;
  color: #007cc4;
  text-align: center;

}
.Social-media{
  display: flex;
  justify-content: center;
}
.Social-media a{
  display: flex;
  background: #404041;
  height: 30px;
  width: 30px;
  margin: 0 15px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /*box-shadow: 6px 6px 10px -1px rgba(0,124,196,0.15),*/
  /*-6px -6px 10px -1px rgba(255,255,255,0.7);*/
  border: 1px solid rgba(0, 124, 196, 0);
  transition: transform 0.5s
}
.Social-media a i{
  font-size: 30px;
  color: white;
  transition: transform 0.5s;
}
/*.Social-media a:hover{*/
/*    box-shadow:inset 4px 4px 6px -2px rgba(0,0,0,0.2),*/
/*    inset -4px -4px 6px -1px rgba(255,255,255,0.7),*/
/*    -0.5px -0.5px 0px -1px rgba(255,255,255,1),*/
/*    0.5px 0.5px 0px rgba(0,0,0,0.15),*/
/*    0px 12px 10px -10px rgba(0,0,0,0.05);*/
/*    border: 1px solid rgba(0, 124, 196, 0.1);*/
/*    transform: translateY(2px);*/
/*}*/
.Social-media a:hover i{
  transform: scale(0.90);
}
.Social-media a:hover .fa-facebook{
  color: #3b5998;
}
.Social-media a:hover .fa-twitter{
  color: #00acee;
}
.Social-media a:hover .fa-whatsapp{
  color: #4fce5d;
}
.Social-media a:hover .fa-instagram{
  color: #f14843;
}
.Social-media a:hover .fa-pinterest{
  color: #f00;
}
.Social-media a:hover .fa-linkedin{
  color: #3b5998;
}

.main-social{
  margin: 0;
  padding: 0;
  background: #404041;
}


/*======================= HOME PAGE CONTACT FORM =====================*/

.home-contact-form {
  margin: 10px;
  display: block;
  width: 30%;
  max-width: 30%;
  min-width: 30%;
  height: 80%;
  border: solid 2px #120A19;
  background-color: rgb(27, 117, 187, 0.5);
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.home-contact-form h1{
  display: flex;
  margin: 4% auto;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-size: 30px ;
}
.home-contact-form hr{
  width: 60%;
  border: 1px solid #120A19;
}
.home-contact-form label{
  display: block;
  margin: auto;
  padding: 1vh;

}

.home-contact-form input[type="text"], .home-contact-form input[type="email"], .home-contact-form input[type="number"] {
  display: block;
  margin: 2% auto;
  width: 85%;
  height: 4vh;
  max-height: 30px;
  border-radius: 5px;
  border: solid 2px #120A19;
  background-color: #DBD6DF;
}
.home-contact-form input[type="submit"]{
  display:block;
  margin: 4% auto;
  width: 30%;
  height: 4vh;
  background-color: #120A19;
  color: whitesmoke;
  border-radius: 10px;
  cursor: pointer;
}

.home-contact-form textarea{
  display: block;
  margin: 2% auto 0;
  width: 85%;
  height: 14vh;
  max-height: 100px;
  border-radius: 5px;
  border: solid 2px #120A19;
  background-color: #DBD6DF;
  font-family: "Roboto", sans-serif;
}

.home-contact-form input:hover {
  transform: scale(1.05);
}
.select-details{
  display: block;
  margin: 2% auto;
  width: 85%;
  border-radius: 5px;
  border: solid 2px #120A19;
  background-color: #DBD6DF;
  font-family: "Roboto", sans-serif;
}
