body{
    padding:0;
    margin:0;
    font-family: 'Jost';
    font-weight: normal;
    background-color: var(--white);
    overflow-x: hidden;
}
/* ------------------------
      General CSS
----------------------- */

:root{
	--primary: #e42326;
	--white: #fff;	
  --yellow-color: #ede201;
	--dark-color: #1c1c1c;
  --gray-color:#f5f5f5;
  --black: #000000;
}

.post, .page {
    margin: 0 0 0px !important;
}
/* Headings Styling */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;    
  }

  h1{
    font-size: 62px;    
    color: var(--dark-color);
    font-family: 'Jost';
    font-weight: 500;
    line-height: 68px;
  }

  h2 {
    font-size: 40px;
    color: var(--dark-color);
    font-family: 'Jost';
    font-weight: 500;
    line-height: 48px;
  }
  
  h3 {
    font-size: 32px;
    color: var(--dark-color);
    font-family: 'Jost';
    font-weight: 500;
    line-height: 38px;
  }
  
  h4{
    font-size: 30px;
    color: var(--dark-color);
    font-family: 'Jost';
    font-weight: 500;
    line-height: 36px;
  }

  h5{
    font-size: 24px;
    color: var(--dark-color);
    font-family: 'Jost';
    font-weight: 500;
    line-height: 30px;
  }

  h6{
    font-size: 20px;
    color: var(--dark-color);
    font-family: 'Jost';
    font-weight: 500;
    line-height: 24px;
  }

  /* Paragraphs and text styling */
  p {
    font-size: 20px;
    color: var(--dark-color);
    font-weight: 400;
    font-family: 'Jost';
    line-height: 26px;
    margin-bottom: 20px;
  }

  /* Links */
  a {
    display: flex;
    font-size: 20px;
    color: var(--dark-color);
    line-height: 28px;
    font-family: 'Jost';
    text-decoration: none;
  }
  
  /* Buttons */
  button,
  .btn{
    font-size: 20px;
    font-weight: 500;    
    color: var(--white) !important;
    font-family: 'Jost';
    text-align: center;
    border: 1px solid var(--primary);
    padding: 0 25px;
    line-height: 50px;
    cursor: pointer;    
    border-radius: 0px;
    background-color: var(--primary) !important;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: normal;
    transition: all 0.5s;
  }
  button span,
  .btn span{
    line-height: 12px;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    top: -2px;
    padding-left: 8px;
    margin-left: 5px;
    border-left:1px solid var(--white);
  }
  button span svg,
  .btn span svg{
    width: 18px;
    height: 18px;
  }
  /* .btn:hover {
    color: var(--black);
    border-color: var(--black);
  } */
  .outline-btn{
    background-color: transparent;
    color: var(--primary);
  }
  .outline-btn:hover{
    color: var(--white);
    background-color: var(--primary);
  }
  /* Form elements */
  .form-group{
    margin-bottom: 20px;
  }

  input.form-control, 
  textarea.form-control, 
  select.form-control {
    font-size: 18px;
    color: var(--dark-color) !important;
    font-weight: 400;
    font-family: 'Jost';
    width: 100%;
    height:50px;
    padding: 5px 20px;
    border: 1px solid var(--dark-color) !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 5px;
  }
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  input[type="date"]::-webkit-calendar-picker-indicator {  
    filter: invert(1);
    opacity:1;
  }  
  .form-group.select-box{
    background-color: var(--white);
    border-radius: 5px;
    position: relative;
  }
  .form-group.select-box::before{
    position: absolute;
    content:"\f078";
    font-size:18px;
    color: var(--black);
    top: 11px;
    right: 20px;    
    font-family:'fontawesome';
  }
  .form-group.select-box select.form-control{
    background-color: transparent !important;
    position: relative;
    z-index:1;
  }
  select.form-control option{
    color: var(--dark-color) !important;
  }
  textarea.form-control{
    height: 110px;
    resize: none;
    padding: 10px;
  }
  textarea.form-control::-webkit-input-placeholder,
  input.form-control::-webkit-input-placeholder {
    color: var(--dark-color); opacity: 1;
  }
  textarea.form-control::-moz-placeholder,
  input.form-control::-moz-placeholder {
    color: var(--dark-color); opacity: 1;
  }
  textarea.form-control:-ms-input-placeholder,
  input.form-control:-ms-input-placeholder {
    color: var(--dark-color); opacity: 1;
  }
  textarea.form-control:-moz-placeholder,
  input.form-control:-moz-placeholder {
    color: var(--dark-color); opacity: 1;
  }
  .form-label{
    font-size: 16px;
    font-weight:400;
    color: #da2d2d;
    font-family: 'Jost';
    line-height: 20px;    
  }


  /* Lists */
  ul, ol {
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 400;
    line-height: 20px;
    padding: 0;
    margin:0;
    list-style: none;
  }
  
  li {
    margin-bottom: 20px;
  }

  button.slick-arrow{
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translate(0 , -50%);
    width: 56px;
    height: 56px;
    line-height: 54px;
    text-align: center;
    border:1px solid var(--primary);
    background-color: var(--primary) !important;
    z-index: 1;
    padding: 0;
    border-radius: 50%;
  }
  button.slick-arrow::before{
    font-size: 24px;
    color: var(--white);
    position: absolute;
    content:'';
    font-family: 'fontawesome';
  }
  button.slick-arrow.slick-prev{
    left: -40px;
  }
  button.slick-arrow.slick-prev::before{
    /* content:"\f060"; */
    background-image: url('../images/right-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: rotate(180deg);
  }
  button.slick-arrow.slick-next{
    right: -40px;
  }
  button.slick-arrow.slick-next::before{
    /* content:"\f061"; */
    background-image: url('../images/right-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  /* header-bg */
  .header-bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 40px 0;
    background-color: transparent;
  }
  .navbar.navbar-expand-lg{
    padding: 0;
    justify-content: space-between;
  }
  .navbar-expand-lg .navbar-collapse {
    justify-content: center;
}
  .navbar.navbar-expand-lg .navbar-nav .nav-item{
    margin: 0 30px;
    position: relative;
  }
  .navbar.navbar-expand-lg .navbar-nav .nav-item a{
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    padding: 0;
    text-transform: capitalize;
    transition: all 0.5s;
  }
  .navbar.navbar-expand-lg .navbar-nav .nav-item a svg{
    font-size: 12px;
    position: relative;
    top: -1px;
    margin-left: 2px;
  }  
  .navbar.navbar-expand-lg .navbar-nav .nav-item a:hover,
  .navbar.navbar-expand-lg .navbar-nav .nav-item a.active{
    color: var(--primary);
  }
  .call-now .btn{
    font-size: 22px;
    font-weight: 600;
    padding: 0 30px;
    border: 1px solid var(--primary) !important;
    border-radius: 30px;
  }
  .call-now .btn:hover{
    color: var(--primary);    
    background-color: transparent !important;
  }
  .call-now .btn svg{
    font-size: 30px;
    position: relative;
    top: 3px;
    margin-right: 5px;
  }
  .call-now .btn svg path{
    fill: var(--yellow-color);
  }
  .order-now .btn{
    font-size: 22px;
    font-weight: 600;
    padding: 0 30px;
    border: 1px solid var(--primary) !important;
    border-radius: 30px;
  }
  .order-now .btn:hover{
    color: var(--primary);    
    background-color: transparent !important;
  }
  .order-now .btn svg{
    font-size: 30px;
    position: relative;
    top: 3px;
    margin-right: 5px;
  }
  .order-now .btn svg path{
    fill: var(--yellow-color);
  }

  /* banner-section */
  .banner-section{
    padding: 220px 0 120px 0;
    background-color: #1c1c1c;    
    background-image: url('../images/banner-shape.png');
    background-position: top left;
    background-repeat: no-repeat;
  }
  .banner-banner h1{
    color: var(--white);
    font-weight: 600;
    margin-bottom: 30px;
	   margin-top: 30px;
  }
  .traditional-pizzas-shape{
    font-size: 65px;
    font-weight: 400;
    color: var(--white);
    font-style: italic;
    text-align: center;
    line-height: 90px;
    font-family: "Italianno";
    border-radius: 15px;
    background-color: #269238;
    border-bottom: 5px solid var(--white);
    max-width: 380px;
    margin-bottom: 40px;
  }
  .banner-banner p{
    font-size: 24px;
    color: var(--white);
    line-height: 30px;
    margin-bottom: 40px;
  }
  .location-shape{
    padding: 10px 25px;
    display: flex;
    border-radius: 50px;
    max-width: 395px;
    background-color: var(--white);
  }
  .location-shape .content{
    padding-left: 10px;
  }
  .location-shape .content p{
    font-size: 16px;
    color: var(--black);
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 10px;
  }
  .banner-image-box{
    position: relative;
  }
  .banner-image-box .banner-image{
    max-width: 100%;
	      border-radius: 20px;
  }
  .banner-image-box .best-quality-food{
    font-size: 20px;
    color: #1C1C1C;
    font-weight: 600;
    font-family: 'Jost';
    position: absolute;
    left: -50px;
    top: 54%;
    transform: translate(0 , -40%);
    background-color: var(--white);
    border-radius: 50px;
    max-width: fit-content;
    display: flex;
    align-items: center;
    padding: 6px 30px 6px 10px;
  }
  .banner-image-box .best-quality-food img{
    height: 50px;
  }
  .banner-image-box .fast-delivery-food{
    font-size: 20px;
    color: #1C1C1C;
    font-weight: 600;
    font-family: 'Jost';
    position: absolute;
    right: -50px;
    top: 40%;
    transform: translate(0 , -40%);
    background-color: var(--white);
    border-radius: 50px;
    max-width: fit-content;
    display: flex;
    align-items: center;
    padding: 6px 30px 6px 10px;
  }
  .banner-image-box .fast-delivery-food img{
    height: 50px;
  }
  .banner-image-box .fast-delivery-call-number{    
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;    
  }
  .banner-image-box .fast-delivery-call-number a{
    font-size: 24px;
    color: #1C1C1C;
    font-weight: 600;
    font-family: 'Jost';
    background-color: var(--white);
    border-radius: 50px;
    max-width: fit-content;
    margin: auto;
    margin-bottom: -20px;
    display: flex;
    align-items: center;
    padding: 13px 35px;
  }
  .banner-image-box .fast-delivery-call-number a img{
    height: 40px;
    margin-right: 20px;
  }

  /* special-combo-section */
  .special-combo-section{
    padding: 60px 0 200px 0;
    background-image: url('../images/special-combo-bg.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .main-heading{
    text-align: center;
    margin-bottom: 50px;
  }
  .main-heading .italic-title{
    font-size:72px;
    color:#E42326;
    font-style: italic;
    line-height: 70px;
    font-family:"Italianno";
    margin-bottom: 15px;
  }
  .main-heading h2{
    font-size: 40px;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0;
  }
  .special-combo-item{
    padding: 0 30px;
  }
  .special-combo-box{
    border: 1px solid #1C1C1C;
    text-align: center;
    padding: 35px 20px 20px 20px;
    border-radius: 20px;
    transition: all 0.5s;
  }
  .special-combo-box h2{
    font-size: 60px;
    font-weight: 600;
    color: var(--dark-color);
  }
  .special-combo-box p{
    font-weight: 600;
    margin-bottom: 25px;
  }
  .special-combo-box h3{
    font-size: 55px;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 25px;
  }
  .special-combo-box .btn{
    font-size: 24px;
    font-weight: 500;
    border-radius: 50px;
    padding: 10px 20px;
    max-width: 265px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;
    transition: all 0.5s;
  }
  .special-combo-box .btn svg{
    margin-right: 15px;
  }
  .special-combo-box img{
    display: block;
    margin: auto;
    max-width: 225px;
  }
  .special-combo-box:hover{
    border-color: var(--primary);
    background-color: var(--primary);
  }
  .special-combo-box:hover h2{
    color: var(--white);
  }
  .special-combo-box:hover p{
    color: var(--white);
  }
  .special-combo-box:hover h3{
    color: var(--white);
  }
  .special-combo-box:hover .btn{
    color: var(--dark-color) !important;
    background-color: var(--white) !important;
  }
  .special-combo-box:hover .btn svg path{
    fill: var(--dark-color);
  }
  
  /* connect-section */
  .connect-section{
    background-color:#1C1C1C;
  }
  .connect-image{
    margin-top: -50px;
  }
  .connect-image img{
    max-width: 100%;
  }
  .connect-content h2{
    font-size: 64px;
    font-weight: 600;
    color: #E42326;
    margin-bottom: 30px;
  }
  .connect-content p{
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 30px;
  }
  .connect-subscribe-email{
    display: flex;
  }
  .connect-subscribe-email .form-control{
    font-size: 20px;
    font-weight: 400;
    color: #8B8B8B !important;
    border: 0 !important;
    padding: 10px 30px;
    width: 360px;
    height: 60px;
    background-color:var(--white) !important;
  }
  .connect-subscribe-email .btn{
    font-size: 20px;
    font-weight: 600;
    color: var(--white) !important;
    border-radius: 50px;
    min-width: 198px;
    height: 60px;
    background-color: var(--primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
  }
  .connect-subscribe-email .btn img{
    margin-right: 10px;
  }

  /* piza-menu-section */
 .piza-menu-section{
    padding: 100px 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
 }
  .piza-menu-item{
    width: 100%;
    padding: 0 20px;
  }
  .piza-menu-box{
    border-radius: 15px;
    border: 1px solid #a99c9c;
  }
  .piza-menu-image img{
    width: 100%;
  }
  .piza-menu-content{
    padding: 30px 20px 30px 30px;
    border-radius: 15px;
    box-shadow: 2px 3px 1.2px 0px #00000017;
    background-color: var(--white);
    margin-top: -25px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .piza-menu-content .piza-menu-price h3{
    font-size: 36px;
    color:#E42326;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .piza-menu-content .piza-menu-price h4{
    font-size: 32px;
    color: #1C1C1C;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .piza-menu-content .piza-menu-price p{    
    font-size: 20px;    
    color: #1C1C1C;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
  }
  .piza-menu-arrow a{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E42326;
    border-radius: 50%;    
    transform: rotate(-30deg);
    transition: all 0.5s;
  }
  .piza-menu-arrow a:hover{
    transform: rotate(0);    
  }
  .piza-menu-custom-arrow{
    padding-top: 50px;
    display: flex;
    justify-content: center;
  }
  .piza-menu-custom-arrow button.btn{
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 8px;
    border-radius: 50%;
  }
  .piza-menu-custom-arrow button.btn.prev-btn img{
    transform: rotate(180deg);
  }

  /* super-delicious-section */
  .super-delicious-section{
    padding: 50px 0 30px 0;
    background-image: url('../images/cta-bg.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .super-delicious-image{
    text-align: center;
  }
  .super-delicious-image .fast-delivery-food{
    display: flex;
    justify-content: center;
    margin-top: -70px;
  }
  .super-delicious-image .fast-delivery-food a{
    font-size: 20px;
    color: #1C1C1C;
    font-weight: 600;
    font-family: 'Jost';
    background-color: var(--white);
    border-radius: 50px;
    max-width: fit-content;
    display: flex;
    align-items: center;
    padding: 6px 30px 6px 20px;
  }
  .super-delicious-image .fast-delivery-food a img{
    height: 55px;
    margin-right: 8px;
  }

  /* available-section */
  .available-section{
    padding-top:40px;
    background-color:#ededed;
	  padding-bottom:40px;
  }
  .available-image-box{
    text-align: right;
  }
 .available-image-box img {
    max-width: 650px;
    border-radius: 20px;
}
  .available-right-box{
    padding-left: 50px;
  }
  .available-right-box h2{
    font-size: 58px;
    font-weight: 700;
    color: #E42326;
  }
  .available-right-box p{
    font-size: 20px;
    font-weight: 400;
    color: #1C1C1C;    
  }
  .available-right-box ul{
    margin: 0;
  }
  .available-right-box ul li{
    display: inline-block;
    margin: 0;
    margin-right: 5px;
  }

  /* footer-section */
  .footer-bg{
    padding-top: 70px;
    background-image: url('../images/footer-bg.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .footer-box{
    padding-bottom: 60px;
  }
  .footer-box img{
    margin-bottom: 30px;
  }
  .footer-box p{
    font-size: 18px;
    font-weight: 400;
    color: #E8E8E8;
    line-height: 28px;
    margin-bottom: 0;
  }
  .footer-box h3{
    font-size: 24px;
    font-weight: 500;
    color:#EEE200;
  }
  .footer-box .footer-nav li{
    font-size: 18px;
    font-weight: 400;
    color: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 20px;
    line-height: 28px;
  }
  .footer-box .footer-nav li a{    
    font-size: 18px;
    font-weight: 400;
    color: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.5s;
  }
  .footer-box .footer-nav li svg{
    margin-right: 15px;
  }
  .footer-box .footer-nav li a:hover{
    color: var(--primary);
  }
  .footer-box.subscribe-box input.form-control{
    font-size: 15px;
    font-weight: 400;
    color: #8B8B8B !important;
    width: 100%;
    height: 44px;
    background-color: var(--white) !important;
    border: 0 !important;
    padding: 5px 20px;
    margin-bottom: 15px;
  }
  .footer-box.subscribe-box button.btn{    
    font-size: 15px;
    font-weight: 600;
    line-height: 42px;
    padding: 0 15px;
    border-radius: 30px;
  }
  .footer-box.subscribe-box button.btn img{
    width: 22px;
    margin-right: 3px;
    margin-bottom: 0;
    position: relative;
    top: -3px;
  }

  /* copy-right */
  .copy-right-section{
    padding: 10px 0;
    border-top: 1px solid var(--white);
  }
  .copy-right p{
    color: var(--white);
    margin-bottom: 0;
  }
  .follow-us{
    font-size: 24px;
    color:#EEE200;
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .follow-us .facebook{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: all 0.5s;
    margin-left: 15px;
  }
  .follow-us .facebook:hover{
    background-color: var(--primary);
    transform: rotate(360deg);
  }
  .follow-us .facebook:hover svg{
    color: var(--white);
  }


  .follow-us .instagram:hover{
    background-color: var(--primary);
    transform: rotate(360deg);
  }
  .follow-us .instagram:hover svg{
    color: var(--white);
  }


  /* inner-banner-section */
  .inner-banner-section{
    padding: 200px 0 120px 0;
    background-color:#1c1c1c;
  }
  .inner-banner-content{
    text-align: center;
  }
  .inner-banner-content h2{
    color: var(--white);
    margin-bottom: 5px;
  }
  .breadcrumb-list{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .breadcrumb-list li{
    margin-bottom: 0;
  }
  .breadcrumb-list li a{
    font-size: 16px;
    color: var(--white);
  }
  .breadcrumb-list li svg{
    font-size: 14px;
    color: var(--white);
    margin: 0 5px;
  }

  /* gallery-section */
  .gallery-section{
    padding: 100px 0;
  }
  .gallery-box{
    height:350px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
  }
  .gallery-box img{
    width: 100%;
    height:100%;
    object-fit: cover;
    transition: all 0.5s;
    transform: scale(1);
  }
  .gallery-box:hover img{
    transform: scale(1.1);
  }

  /* about-section */
  .about-section{
    padding: 100px 0;
  }
  .about-image img{
    width: 100%;
  }
  .about-content{
    padding-left: 20px;
  }
  .about-content h2{
    font-size: 36px;
    color: var(--dark-color);
  }
  .about-content p{
      font-size: 18px;
  }
  .about-content p a{
    font-size: 18px;
  }

  /* why-section */
  .why-section{
    padding: 80px 0;
    background-image: url('../images/why-us-bg.png');
    background-position: center;
    background-repeat: no-repeat;
        background-size: cover;
  }

  .why-content{
    text-align: center;
  }
  .why-content h2{    
    color: var(--white);
    margin-bottom: 30px;
  }
  .why-content ul li{
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
  }
  .why-content ul li:last-child{
    margin-bottom: 0;
  }

  /* blog-section */
  .blog-section{
    padding: 100px 0 70px 0;
  }
  .blog-box{
    margin-bottom: 40px;
  }
  .blog-box .blog-image{
    width: 100%;
    margin-bottom: 15px;
  }
  .blog-box .blog-image img{
    width: 100%;
    max-height: 360px;
    object-fit: cover;
        border-radius: 20px;
  }
  .blog-box .blog-content h4{
    margin-bottom: 10px;
  }
  .blog-box .blog-content h4 a{
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
  }
  .blog-box .blog-content p{
    font-size: 18px;
    line-height: 28px;
  }
  .blog-box .blog-content .btn{    
    font-size: 16px;
    line-height: 42px;
    padding: 0 20px;
    border-radius: 5px;
  }

  /* blog-details */
  .blog-details{
    padding: 100px 0;
    background-color: #f5f5f5;
  }
  .blog-details h2{
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .blog-details p{
    font-size: 18px;
    line-height: 28px;
  }
  .blog-details img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  .related-section{
    padding: 100px 0 70px 0;
  }
  .related-section .main-heading{
    margin-bottom: 30px;
  }

  /* get-in-touch-section */
  .get-in-touch-section{
    padding: 100px 0;
    background-color: #f5f5f5;
  }
  .get-in-touch-section .main-heading{
    margin-bottom: 50px;
  }
  .get-in-touch-section .main-heading h2{
    margin-bottom: 10px;
  }
  .get-in-touch-section .main-heading p{
    font-size: 18px;
    margin-bottom: 0;
  }
  .get-in-touch-section .contact-box{
    padding: 30px 30px 20px 30px;
    text-align: center;
    height: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px 5px #dfdfdf;
  }
  .get-in-touch-section .contact-box svg{
    font-size: 35px;
    color: #EEE200;
    margin-bottom: 20px;
  }
  .get-in-touch-section .contact-box h3{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .get-in-touch-section .contact-box p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }
  .get-in-touch-section .contact-box ul li{
    line-height: 18px;
    margin-bottom: 10px;
  }
  .get-in-touch-section .contact-box ul li a{
    font-size: 18px;
  }

  /* contact-section */
  .contact-section{
    padding: 100px 0;
  }
  .contact-form .form-group{
    margin-bottom: 15px;
  }
  .contact-form .message-group{
    margin-bottom: 15px;
  }
  .contact-form button.btn{
    font-size: 18px;
    border-radius: 30px;
    padding: 0 30px;
    line-height: 44px;
    margin: auto;
    display: block;
  }
  .contact-map iframe{
    width: 100%;
    height: 500px;
  }